Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 #
6 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
7 set -e
8
9 ONLY=${ONLY:-"$*"}
10 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 12653 12653 5188 10764 16260
11 ALWAYS_EXCEPT="                27u   42a  42b  42c  42d  45   51d   65a   65e   68   75    119d  $SANITY_EXCEPT"
12 # bug number for skipped test: 2108 9789 3637 9789 3561 5188/5749 1443
13 #ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"27m 42a 42b 42c 42d 45 68 76"}
14 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15
16 # Tests that fail on uml
17 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
18 #                                    buffer i/o errs             sock spc runas
19 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 27m 27n 27o 27p 27q 27r 31d 54a  64b 99a 99b 99c 99d 99e 99f 101"
20
21 # test76 is not valid with FIDs because inode numbers are not reused
22 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 76"
23
24 case `uname -r` in
25 2.4*) FSTYPE=${FSTYPE:-ext3} ;;
26 2.6*) FSTYPE=${FSTYPE:-ldiskfs} ;;
27 *) error "unsupported kernel" ;;
28 esac
29
30 SRCDIR=$(cd $(dirname $0); echo $PWD)
31 export PATH=$PATH:/sbin
32
33 TMP=${TMP:-/tmp}
34
35 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
36 CREATETEST=${CREATETEST:-createtest}
37 LFS=${LFS:-lfs}
38 SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
39 GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
40 LSTRIPE=${LSTRIPE:-"$LFS setstripe"}
41 LFIND=${LFIND:-"$LFS find"}
42 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
43 LSTRIPEINFO=${LSTRIPEINFO:-ll_getstripe_info}
44 LCTL=${LCTL:-lctl}
45 MCREATE=${MCREATE:-mcreate}
46 OPENFILE=${OPENFILE:-openfile}
47 OPENUNLINK=${OPENUNLINK:-openunlink}
48 READS=${READS:-"reads"}
49 TOEXCL=${TOEXCL:-toexcl}
50 TRUNCATE=${TRUNCATE:-truncate}
51 MUNLINK=${MUNLINK:-munlink}
52 SOCKETSERVER=${SOCKETSERVER:-socketserver}
53 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
54 IOPENTEST1=${IOPENTEST1:-iopentest1}
55 IOPENTEST2=${IOPENTEST2:-iopentest2}
56 MEMHOG=${MEMHOG:-memhog}
57 DIRECTIO=${DIRECTIO:-directio}
58 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
59 UMOUNT=${UMOUNT:-"umount -d"}
60 STRIPES_PER_OBJ=-1
61 CHECK_GRANT=${CHECK_GRANT:-"yes"}
62 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
63
64 export NAME=${NAME:-local}
65
66 SAVE_PWD=$PWD
67
68 CLEANUP=${CLEANUP:-:}
69 SETUP=${SETUP:-:}
70 TRACE=${TRACE:-""}
71 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
72 . $LUSTRE/tests/test-framework.sh
73 init_test_env $@
74 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
75
76 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 36f 36g 51b 51c 60c 63 64b 68 71 73 77f 78 101 103 115 120g 124b"
77
78 SANITYLOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
79 FAIL_ON_ERROR=false
80
81 cleanup() {
82         echo -n "cln.."
83         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
84         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
85 }
86 setup() {
87         echo -n "mnt.."
88         load_modules
89         setupall || exit 10
90         echo "done"
91 }
92
93 check_kernel_version() {
94         VERSION_FILE=version
95         WANT_VER=$1
96         GOT_VER=$(lctl get_param -n $VERSION_FILE | awk '/kernel:/ {print $2}')
97         [ $GOT_VER == "patchless" ] && return 0
98         [ $GOT_VER -ge $WANT_VER ] && return 0
99         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
100         return 1
101 }
102
103 if [ "$ONLY" == "cleanup" ]; then
104        sh llmountcleanup.sh
105        exit 0
106 fi
107
108 [ "$SANITYLOG" ] && rm -f $SANITYLOG || true
109
110 check_and_setup_lustre
111
112 DIR=${DIR:-$MOUNT}
113 assert_DIR
114
115 LOVNAME=`lctl get_param -n llite.*.lov.common_name | tail -n 1`
116 OSTCOUNT=`lctl get_param -n lov.$LOVNAME.numobd`
117 STRIPECOUNT=`lctl get_param -n lov.$LOVNAME.stripecount`
118 STRIPESIZE=`lctl get_param -n lov.$LOVNAME.stripesize`
119 ORIGFREE=`lctl get_param -n lov.$LOVNAME.kbytesavail`
120 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
121
122 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
123 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
124 rm -rf $DIR/[Rdfs][0-9]*
125
126 # $RUNAS_ID may get set incorrectly somewhere else
127 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
128
129 check_runas_id $RUNAS_ID $RUNAS
130
131 build_test_filter
132
133 if [ "${ONLY}" = "MOUNT" ] ; then
134         echo "Lustre is up, please go on"
135         exit
136 fi
137
138 echo "preparing for tests involving mounts"
139 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
140 touch $EXT2_DEV
141 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
142 echo # add a newline after mke2fs.
143
144 umask 077
145
146 OLDDEBUG="`lctl get_param -n debug 2> /dev/null`"
147 lctl set_param debug=-1 2> /dev/null || true
148 test_0() {
149         touch $DIR/$tfile
150         $CHECKSTAT -t file $DIR/$tfile || error
151         rm $DIR/$tfile
152         $CHECKSTAT -a $DIR/$tfile || error
153 }
154 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
155
156 test_0b() {
157         chmod 0755 $DIR || error
158         $CHECKSTAT -p 0755 $DIR || error
159 }
160 run_test 0b "chmod 0755 $DIR ============================="
161
162 test_0c() {
163     $LCTL get_param mdc.*.import | grep  "state: FULL" || error "import not FULL"
164     $LCTL get_param mdc.*.import | grep  "target: $FSNAME-MDT" || error "bad target"
165 }
166 run_test 0c "check import proc ============================="
167
168 test_1a() {
169         mkdir $DIR/d1
170         mkdir $DIR/d1/d2
171         mkdir $DIR/d1/d2 && error "we expect EEXIST, but not returned"
172         $CHECKSTAT -t dir $DIR/d1/d2 || error
173 }
174 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
175
176 test_1b() {
177         rmdir $DIR/d1/d2
178         rmdir $DIR/d1
179         $CHECKSTAT -a $DIR/d1 || error
180 }
181 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
182
183 test_2a() {
184         mkdir $DIR/d2
185         touch $DIR/d2/f
186         $CHECKSTAT -t file $DIR/d2/f || error
187 }
188 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
189
190 test_2b() {
191         rm -r $DIR/d2
192         $CHECKSTAT -a $DIR/d2 || error
193 }
194 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
195
196 test_3a() {
197         mkdir $DIR/d3
198         $CHECKSTAT -t dir $DIR/d3 || error
199 }
200 run_test 3a "mkdir .../d3 ======================================"
201
202 test_3b() {
203         if [ ! -d $DIR/d3 ]; then
204                 mkdir $DIR/d3
205         fi
206         touch $DIR/d3/f
207         $CHECKSTAT -t file $DIR/d3/f || error
208 }
209 run_test 3b "touch .../d3/f ===================================="
210
211 test_3c() {
212         rm -r $DIR/d3
213         $CHECKSTAT -a $DIR/d3 || error
214 }
215 run_test 3c "rm -r .../d3 ======================================"
216
217 test_4a() {
218         mkdir $DIR/d4
219         $CHECKSTAT -t dir $DIR/d4 || error
220 }
221 run_test 4a "mkdir .../d4 ======================================"
222
223 test_4b() {
224         if [ ! -d $DIR/d4 ]; then
225                 mkdir $DIR/d4
226         fi
227         mkdir $DIR/d4/d2
228         $CHECKSTAT -t dir $DIR/d4/d2 || error
229 }
230 run_test 4b "mkdir .../d4/d2 ==================================="
231
232 test_5() {
233         mkdir $DIR/d5
234         mkdir $DIR/d5/d2
235         chmod 0707 $DIR/d5/d2
236         $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
237 }
238 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
239
240 test_6a() {
241         touch $DIR/f6a
242         chmod 0666 $DIR/f6a || error
243         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
244 }
245 run_test 6a "touch .../f6a; chmod .../f6a ======================"
246
247 test_6b() {
248         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
249         if [ ! -f $DIR/f6a ]; then
250                 touch $DIR/f6a
251                 chmod 0666 $DIR/f6a
252         fi
253         $RUNAS chmod 0444 $DIR/f6a && error
254         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
255 }
256 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
257
258 test_6c() {
259         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
260         touch $DIR/f6c
261         chown $RUNAS_ID $DIR/f6c || error
262         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
263 }
264 run_test 6c "touch .../f6c; chown .../f6c ======================"
265
266 test_6d() {
267         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
268         if [ ! -f $DIR/f6c ]; then
269                 touch $DIR/f6c
270                 chown $RUNAS_ID $DIR/f6c
271         fi
272         $RUNAS chown $UID $DIR/f6c && error
273         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
274 }
275 run_test 6d "$RUNAS chown .../f6c (should return error) =="
276
277 test_6e() {
278         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
279         touch $DIR/f6e
280         chgrp $RUNAS_ID $DIR/f6e || error
281         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
282 }
283 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
284
285 test_6f() {
286         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
287         if [ ! -f $DIR/f6e ]; then
288                 touch $DIR/f6e
289                 chgrp $RUNAS_ID $DIR/f6e
290         fi
291         $RUNAS chgrp $UID $DIR/f6e && error
292         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
293 }
294 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
295
296 test_6g() {
297         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
298         mkdir $DIR/d6g || error
299         chmod 777 $DIR/d6g || error
300         $RUNAS mkdir $DIR/d6g/d || error
301         chmod g+s $DIR/d6g/d || error
302         mkdir $DIR/d6g/d/subdir
303         $CHECKSTAT -g \#$RUNAS_ID $DIR/d6g/d/subdir || error
304 }
305 run_test 6g "Is new dir in sgid dir inheriting group?"
306
307 test_6h() { # bug 7331
308         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
309         touch $DIR/f6h || error "touch failed"
310         chown $RUNAS_ID:$RUNAS_ID $DIR/f6h || error "initial chown failed"
311         $RUNAS -G$RUNAS_ID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
312         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_ID $DIR/f6h || error
313 }
314 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
315
316 test_7a() {
317         mkdir $DIR/d7
318         $MCREATE $DIR/d7/f
319         chmod 0666 $DIR/d7/f
320         $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
321 }
322 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
323
324 test_7b() {
325         if [ ! -d $DIR/d7 ]; then
326                 mkdir $DIR/d7
327         fi
328         $MCREATE $DIR/d7/f2
329         echo -n foo > $DIR/d7/f2
330         [ "`cat $DIR/d7/f2`" = "foo" ] || error
331         $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
332 }
333 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
334
335 test_8() {
336         mkdir $DIR/d8
337         touch $DIR/d8/f
338         chmod 0666 $DIR/d8/f
339         $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
340 }
341 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
342
343 test_9() {
344         mkdir $DIR/d9
345         mkdir $DIR/d9/d2
346         mkdir $DIR/d9/d2/d3
347         $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
348 }
349 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
350
351 test_10() {
352         mkdir $DIR/d10
353         mkdir $DIR/d10/d2
354         touch $DIR/d10/d2/f
355         $CHECKSTAT -t file $DIR/d10/d2/f || error
356 }
357 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
358
359 test_11() {
360         mkdir $DIR/d11
361         mkdir $DIR/d11/d2
362         chmod 0666 $DIR/d11/d2
363         chmod 0705 $DIR/d11/d2
364         $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
365 }
366 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
367
368 test_12() {
369         mkdir $DIR/d12
370         touch $DIR/d12/f
371         chmod 0666 $DIR/d12/f
372         chmod 0654 $DIR/d12/f
373         $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
374 }
375 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
376
377 test_13() {
378         mkdir $DIR/d13
379         dd if=/dev/zero of=$DIR/d13/f count=10
380         >  $DIR/d13/f
381         $CHECKSTAT -t file -s 0 $DIR/d13/f || error
382 }
383 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
384
385 test_14() {
386         mkdir $DIR/d14
387         touch $DIR/d14/f
388         rm $DIR/d14/f
389         $CHECKSTAT -a $DIR/d14/f || error
390 }
391 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
392
393 test_15() {
394         mkdir $DIR/d15
395         touch $DIR/d15/f
396         mv $DIR/d15/f $DIR/d15/f2
397         $CHECKSTAT -t file $DIR/d15/f2 || error
398 }
399 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
400
401 test_16() {
402         mkdir $DIR/d16
403         touch $DIR/d16/f
404         rm -rf $DIR/d16/f
405         $CHECKSTAT -a $DIR/d16/f || error
406 }
407 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
408
409 test_17a() {
410         mkdir -p $DIR/d17
411         touch $DIR/d17/f
412         ln -s $DIR/d17/f $DIR/d17/l-exist
413         ls -l $DIR/d17
414         $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
415         $CHECKSTAT -f -t f $DIR/d17/l-exist || error
416         rm -f $DIR/d17/l-exist
417         $CHECKSTAT -a $DIR/d17/l-exist || error
418 }
419 run_test 17a "symlinks: create, remove (real) =================="
420
421 test_17b() {
422         mkdir -p $DIR/d17
423         ln -s no-such-file $DIR/d17/l-dangle
424         ls -l $DIR/d17
425         $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
426         $CHECKSTAT -fa $DIR/d17/l-dangle || error
427         rm -f $DIR/d17/l-dangle
428         $CHECKSTAT -a $DIR/d17/l-dangle || error
429 }
430 run_test 17b "symlinks: create, remove (dangling) =============="
431
432 test_17c() { # bug 3440 - don't save failed open RPC for replay
433         mkdir -p $DIR/d17
434         ln -s foo $DIR/d17/f17c
435         cat $DIR/d17/f17c && error "opened non-existent symlink" || true
436 }
437 run_test 17c "symlinks: open dangling (should return error) ===="
438
439 test_17d() {
440         mkdir -p $DIR/d17
441         ln -s foo $DIR/d17/f17d
442         touch $DIR/d17/f17d || error "creating to new symlink"
443 }
444 run_test 17d "symlinks: create dangling ========================"
445
446 test_17e() {
447         mkdir -p $DIR/$tdir
448         local foo=$DIR/$tdir/$tfile
449         ln -s $foo $foo || error "create symlink failed"
450         ls -l $foo || error "ls -l failed"
451         ls $foo && error "ls not failed" || true
452 }
453 run_test 17e "symlinks: create recursive symlink (should return error) ===="
454
455 test_17f() {
456         mkdir -p $DIR/d17f
457         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
458         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
459         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
460         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
461         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
462         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
463         ls -l  $DIR/d17f
464 }
465 run_test 17f "symlinks: long and very long symlink name ========================"
466
467 test_17g() {
468         mkdir -p $DIR/$tdir
469         for ((i = 0; i < 511; ++i)); do
470                 LONGSYMLINK="${LONGSYMLINK}01234567"
471         done
472         ln -s $LONGSYMLINK $DIR/$tdir/$tfile
473         ls -l $DIR/$tdir
474 }
475 run_test 17g "symlinks: really long symlink name ==============================="
476
477 test_18() {
478         touch $DIR/f
479         ls $DIR || error
480 }
481 run_test 18 "touch .../f ; ls ... =============================="
482
483 test_19a() {
484         touch $DIR/f19
485         ls -l $DIR
486         rm $DIR/f19
487         $CHECKSTAT -a $DIR/f19 || error
488 }
489 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
490
491 test_19b() {
492         ls -l $DIR/f19 && error || true
493 }
494 run_test 19b "ls -l .../f19 (should return error) =============="
495
496 test_19c() {
497         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
498         $RUNAS touch $DIR/f19 && error || true
499 }
500 run_test 19c "$RUNAS touch .../f19 (should return error) =="
501
502 test_19d() {
503         cat $DIR/f19 && error || true
504 }
505 run_test 19d "cat .../f19 (should return error) =============="
506
507 test_20() {
508         touch $DIR/f
509         rm $DIR/f
510         log "1 done"
511         touch $DIR/f
512         rm $DIR/f
513         log "2 done"
514         touch $DIR/f
515         rm $DIR/f
516         log "3 done"
517         $CHECKSTAT -a $DIR/f || error
518 }
519 run_test 20 "touch .../f ; ls -l ... ==========================="
520
521 test_21() {
522         mkdir $DIR/d21
523         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
524         ln -s dangle $DIR/d21/link
525         echo foo >> $DIR/d21/link
526         cat $DIR/d21/dangle
527         $CHECKSTAT -t link $DIR/d21/link || error
528         $CHECKSTAT -f -t file $DIR/d21/link || error
529 }
530 run_test 21 "write to dangling link ============================"
531
532 test_22() {
533         WDIR=$DIR/$tdir
534         mkdir -p $WDIR
535         chown $RUNAS_ID $WDIR
536         (cd $WDIR || error "cd $WDIR failed";
537         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
538         $RUNAS tar xf -)
539         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
540         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
541         $CHECKSTAT -u \#$RUNAS_ID $WDIR/etc || error "checkstat -u failed"
542 }
543 run_test 22 "unpack tar archive as non-root user ==============="
544
545 test_23() {
546         mkdir $DIR/d23
547         $TOEXCL $DIR/d23/f23
548         $TOEXCL -e $DIR/d23/f23 || error
549 }
550 run_test 23 "O_CREAT|O_EXCL in subdir =========================="
551
552 test_24a() {
553         echo '== rename sanity =============================================='
554         echo '-- same directory rename'
555         mkdir $DIR/R1
556         touch $DIR/R1/f
557         mv $DIR/R1/f $DIR/R1/g
558         $CHECKSTAT -t file $DIR/R1/g || error
559 }
560 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
561
562 test_24b() {
563         mkdir $DIR/R2
564         touch $DIR/R2/{f,g}
565         mv $DIR/R2/f $DIR/R2/g
566         $CHECKSTAT -a $DIR/R2/f || error
567         $CHECKSTAT -t file $DIR/R2/g || error
568 }
569 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
570
571 test_24c() {
572         mkdir $DIR/R3
573         mkdir $DIR/R3/f
574         mv $DIR/R3/f $DIR/R3/g
575         $CHECKSTAT -a $DIR/R3/f || error
576         $CHECKSTAT -t dir $DIR/R3/g || error
577 }
578 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
579
580 test_24d() {
581         mkdir $DIR/R4
582         mkdir $DIR/R4/{f,g}
583         mrename $DIR/R4/f $DIR/R4/g
584         $CHECKSTAT -a $DIR/R4/f || error
585         $CHECKSTAT -t dir $DIR/R4/g || error
586 }
587 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
588
589 test_24e() {
590         echo '-- cross directory renames --'
591         mkdir $DIR/R5{a,b}
592         touch $DIR/R5a/f
593         mv $DIR/R5a/f $DIR/R5b/g
594         $CHECKSTAT -a $DIR/R5a/f || error
595         $CHECKSTAT -t file $DIR/R5b/g || error
596 }
597 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
598
599 test_24f() {
600         mkdir $DIR/R6{a,b}
601         touch $DIR/R6a/f $DIR/R6b/g
602         mv $DIR/R6a/f $DIR/R6b/g
603         $CHECKSTAT -a $DIR/R6a/f || error
604         $CHECKSTAT -t file $DIR/R6b/g || error
605 }
606 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
607
608 test_24g() {
609         mkdir $DIR/R7{a,b}
610         mkdir $DIR/R7a/d
611         mv $DIR/R7a/d $DIR/R7b/e
612         $CHECKSTAT -a $DIR/R7a/d || error
613         $CHECKSTAT -t dir $DIR/R7b/e || error
614 }
615 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
616
617 test_24h() {
618         mkdir $DIR/R8{a,b}
619         mkdir $DIR/R8a/d $DIR/R8b/e
620         mrename $DIR/R8a/d $DIR/R8b/e
621         $CHECKSTAT -a $DIR/R8a/d || error
622         $CHECKSTAT -t dir $DIR/R8b/e || error
623 }
624 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
625
626 test_24i() {
627         echo "-- rename error cases"
628         mkdir $DIR/R9
629         mkdir $DIR/R9/a
630         touch $DIR/R9/f
631         mrename $DIR/R9/f $DIR/R9/a
632         $CHECKSTAT -t file $DIR/R9/f || error
633         $CHECKSTAT -t dir  $DIR/R9/a || error
634         $CHECKSTAT -a file $DIR/R9/a/f || error
635 }
636 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
637
638 test_24j() {
639         mkdir $DIR/R10
640         mrename $DIR/R10/f $DIR/R10/g
641         $CHECKSTAT -t dir $DIR/R10 || error
642         $CHECKSTAT -a $DIR/R10/f || error
643         $CHECKSTAT -a $DIR/R10/g || error
644 }
645 run_test 24j "source does not exist ============================"
646
647 test_24k() {
648         mkdir $DIR/R11a $DIR/R11a/d
649         touch $DIR/R11a/f
650         mv $DIR/R11a/f $DIR/R11a/d
651         $CHECKSTAT -a $DIR/R11a/f || error
652         $CHECKSTAT -t file $DIR/R11a/d/f || error
653 }
654 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
655
656 # bug 2429 - rename foo foo foo creates invalid file
657 test_24l() {
658         f="$DIR/f24l"
659         multiop $f OcNs || error
660 }
661 run_test 24l "Renaming a file to itself ========================"
662
663 test_24m() {
664         f="$DIR/f24m"
665         multiop $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
666         # on ext3 this does not remove either the source or target files
667         # though the "expected" operation would be to remove the source
668         $CHECKSTAT -t file ${f} || error "${f} missing"
669         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
670 }
671 run_test 24m "Renaming a file to a hard link to itself ========="
672
673 test_24n() {
674     f="$DIR/f24n"
675     # this stats the old file after it was renamed, so it should fail
676     touch ${f}
677     $CHECKSTAT ${f}
678     mv ${f} ${f}.rename
679     $CHECKSTAT ${f}.rename
680     $CHECKSTAT -a ${f}
681 }
682 run_test 24n "Statting the old file after renaming (Posix rename 2)"
683
684 test_24o() {
685         check_kernel_version 37 || return 0
686         mkdir -p $DIR/d24o
687         rename_many -s random -v -n 10 $DIR/d24o
688 }
689 run_test 24o "rename of files during htree split ==============="
690
691 test_24p() {
692         mkdir $DIR/R12{a,b}
693         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
694         mrename $DIR/R12a $DIR/R12b
695         $CHECKSTAT -a $DIR/R12a || error
696         $CHECKSTAT -t dir $DIR/R12b || error
697         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
698         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
699 }
700 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
701
702 test_24q() {
703         mkdir $DIR/R13{a,b}
704         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
705         multiop_bg_pause $DIR/R13b D_c || return 1
706         MULTIPID=$!
707
708         mrename $DIR/R13a $DIR/R13b
709         $CHECKSTAT -a $DIR/R13a || error
710         $CHECKSTAT -t dir $DIR/R13b || error
711         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
712         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
713         kill -USR1 $MULTIPID
714         wait $MULTIPID || error "multiop close failed"
715 }
716 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
717
718 test_24r() { #bug 3789
719         mkdir $DIR/R14a $DIR/R14a/b
720         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
721         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
722         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
723 }
724 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
725
726 test_24s() {
727         mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
728         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
729         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
730         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
731 }
732 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
733 test_24t() {
734         mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
735         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
736         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
737         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
738 }
739 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
740
741 test_24u() { # bug12192
742         multiop $DIR/$tfile C2w$((2048 * 1024))c || error
743         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
744 }
745 run_test 24u "create stripe file"
746
747 test_25a() {
748         echo '== symlink sanity ============================================='
749
750         mkdir $DIR/d25
751         ln -s d25 $DIR/s25
752         touch $DIR/s25/foo || error
753 }
754 run_test 25a "create file in symlinked directory ==============="
755
756 test_25b() {
757         [ ! -d $DIR/d25 ] && test_25a
758         $CHECKSTAT -t file $DIR/s25/foo || error
759 }
760 run_test 25b "lookup file in symlinked directory ==============="
761
762 test_26a() {
763         mkdir $DIR/d26
764         mkdir $DIR/d26/d26-2
765         ln -s d26/d26-2 $DIR/s26
766         touch $DIR/s26/foo || error
767 }
768 run_test 26a "multiple component symlink ======================="
769
770 test_26b() {
771         mkdir -p $DIR/d26b/d26-2
772         ln -s d26b/d26-2/foo $DIR/s26-2
773         touch $DIR/s26-2 || error
774 }
775 run_test 26b "multiple component symlink at end of lookup ======"
776
777 test_26c() {
778         mkdir $DIR/d26.2
779         touch $DIR/d26.2/foo
780         ln -s d26.2 $DIR/s26.2-1
781         ln -s s26.2-1 $DIR/s26.2-2
782         ln -s s26.2-2 $DIR/s26.2-3
783         chmod 0666 $DIR/s26.2-3/foo
784 }
785 run_test 26c "chain of symlinks ================================"
786
787 # recursive symlinks (bug 439)
788 test_26d() {
789         ln -s d26-3/foo $DIR/d26-3
790 }
791 run_test 26d "create multiple component recursive symlink ======"
792
793 test_26e() {
794         [ ! -h $DIR/d26-3 ] && test_26d
795         rm $DIR/d26-3
796 }
797 run_test 26e "unlink multiple component recursive symlink ======"
798
799 # recursive symlinks (bug 7022)
800 test_26f() {
801         mkdir -p $DIR/$tdir
802         mkdir $DIR/$tdir/$tfile        || error "mkdir $DIR/$tdir/$tfile failed"
803         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
804         mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
805         mkdir $tfile             || error "mkdir $tfile failed"
806         cd $tfile                || error "cd $tfile failed"
807         ln -s .. dotdot          || error "ln dotdot failed"
808         ln -s dotdot/lndir lndir || error "ln lndir failed"
809         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
810         output=`ls $tfile/$tfile/lndir/bar1`
811         [ "$output" = bar1 ] && error "unexpected output"
812         rm -r $tfile             || error "rm $tfile failed"
813         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
814 }
815 run_test 26f "rm -r of a directory which has recursive symlink ="
816
817 test_27a() {
818         echo '== stripe sanity =============================================='
819         mkdir -p $DIR/d27 || error "mkdir failed"
820         $SETSTRIPE $DIR/d27/f0 -c 1 || error "lstripe failed"
821         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
822         pass
823         log "== test_27a: write to one stripe file ========================="
824         cp /etc/hosts $DIR/d27/f0 || error
825 }
826 run_test 27a "one stripe file =================================="
827
828 test_27c() {
829         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
830         mkdir -p $DIR/d27
831         $SETSTRIPE $DIR/d27/f01 -c 2 || error "lstripe failed"
832         [ `$GETSTRIPE $DIR/d27/f01 | grep -A 10 obdidx | wc -l` -eq 4 ] ||
833                 error "two-stripe file doesn't have two stripes"
834         pass
835         log "== test_27c: write to two stripe file file f01 ================"
836         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
837 }
838 run_test 27c "create two stripe file f01 ======================="
839
840 test_27d() {
841         mkdir -p $DIR/d27
842         $SETSTRIPE -c0 -i-1 -s0 $DIR/d27/fdef || error "lstripe failed"
843         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
844         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
845 }
846 run_test 27d "create file with default settings ================"
847
848 test_27e() {
849         mkdir -p $DIR/d27
850         $SETSTRIPE $DIR/d27/f12 -c 2 || error "lstripe failed"
851         $SETSTRIPE $DIR/d27/f12 -c 2 && error "lstripe succeeded twice"
852         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
853 }
854 run_test 27e "lstripe existing file (should return error) ======"
855
856 test_27f() {
857         mkdir -p $DIR/d27
858         $SETSTRIPE $DIR/d27/fbad -s 100 -i 0 -c 1 && error "lstripe failed"
859         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
860         $GETSTRIPE $DIR/d27/fbad || error "lfs getstripe failed"
861 }
862 run_test 27f "lstripe with bad stripe size (should return error)"
863
864 test_27g() {
865         mkdir -p $DIR/d27
866         $MCREATE $DIR/d27/fnone || error "mcreate failed"
867         pass
868         log "== test 27h: lfs getstripe with no objects ===================="
869         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" || error "has object"
870         pass
871         log "== test 27i: lfs getstripe with some objects =================="
872         touch $DIR/d27/fsome || error "touch failed"
873         $GETSTRIPE $DIR/d27/fsome | grep obdidx || error "missing objects"
874 }
875 run_test 27g "test lfs getstripe ==========================================="
876
877 test_27j() {
878         mkdir -p $DIR/d27
879         $SETSTRIPE $DIR/d27/f27j -i $OSTCOUNT && error "lstripe failed"||true
880 }
881 run_test 27j "lstripe with bad stripe offset (should return error)"
882
883 test_27k() { # bug 2844
884         mkdir -p $DIR/d27
885         FILE=$DIR/d27/f27k
886         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
887         [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
888         $SETSTRIPE $FILE -s 67108864 || error "lstripe failed"
889         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
890         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
891         dd if=/dev/zero of=$FILE bs=4k count=1
892         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
893         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
894 }
895 run_test 27k "limit i_blksize for broken user apps ============="
896
897 test_27l() {
898         mkdir -p $DIR/d27
899         mcreate $DIR/f27l || error "creating file"
900         $RUNAS $SETSTRIPE $DIR/f27l -c 1 && \
901                 error "lstripe should have failed" || true
902 }
903 run_test 27l "check setstripe permissions (should return error)"
904
905 test_27m() {
906         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs -- skipping" && return
907         if [ $ORIGFREE -gt $MAXFREE ]; then
908                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
909                 return
910         fi
911         mkdir -p $DIR/d27
912         $SETSTRIPE $DIR/d27/f27m_1 -i 0 -c 1
913         dd if=/dev/zero of=$DIR/d27/f27m_1 bs=1024 count=$MAXFREE && \
914                 error "dd should fill OST0"
915         i=2
916         while $SETSTRIPE $DIR/d27/f27m_$i -i 0 -c 1 ; do
917                 i=`expr $i + 1`
918                 [ $i -gt 256 ] && break
919         done
920         i=`expr $i + 1`
921         touch $DIR/d27/f27m_$i
922         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
923                 error "OST0 was full but new created file still use it"
924         i=`expr $i + 1`
925         touch $DIR/d27/f27m_$i
926         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
927                 error "OST0 was full but new created file still use it"
928         rm -r $DIR/d27
929         sleep 15
930 }
931 run_test 27m "create file while OST0 was full =================="
932
933 # osc's keep a NOSPC stick flag that gets unset with rmdir
934 reset_enospc() {
935         [ "$1" ] && FAIL_LOC=$1 || FAIL_LOC=0
936         mkdir -p $DIR/d27/nospc
937         rmdir $DIR/d27/nospc
938         do_nodes $(comma_list $(osts_nodes)) lctl set_param fail_loc=$FAIL_LOC
939 }
940
941 exhaust_precreations() {
942         OSTIDX=$1
943
944         OST=$(lfs osts | grep ${OSTIDX}": " | \
945             awk '{print $2}' | sed -e 's/_UUID$//')
946         # on the mdt's osc
947         last_id=$(do_facet $SINGLEMDS lctl get_param -n osc.*${OST}-osc-MDT0000.prealloc_last_id)
948         next_id=$(do_facet $SINGLEMDS lctl get_param -n osc.*${OST}-osc-MDT0000.prealloc_next_id)
949
950         mkdir -p $DIR/d27/${OST}
951         $SETSTRIPE $DIR/d27/${OST} -i $OSTIDX -c 1
952 #define OBD_FAIL_OST_ENOSPC              0x215
953         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
954         echo "Creating to objid $last_id on ost $OST..."
955         createmany -o $DIR/d27/${OST}/f $next_id $((last_id - next_id + 2))
956         do_facet $SINGLEMDS lctl get_param -n osc.*${OST}-osc-MDT0000.prealloc* | grep '[0-9]'
957         reset_enospc $2
958 }
959
960 exhaust_all_precreations() {
961         local i
962         for (( i=0; i < OSTCOUNT; i++ )) ; do
963                 exhaust_precreations $i 0x215
964         done
965         reset_enospc $1
966 }
967
968 test_27n() {
969         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
970         remote_mds_nodsh && skip "remote MDS with nodsh" && return
971         remote_ost_nodsh && skip "remote OST with nodsh" && return
972
973         reset_enospc
974         rm -f $DIR/d27/f27n
975         exhaust_precreations 0 0x80000215
976
977         touch $DIR/d27/f27n || error
978
979         reset_enospc
980 }
981 run_test 27n "create file with some full OSTs =================="
982
983 test_27o() {
984         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
985         remote_mds_nodsh && skip "remote MDS with nodsh" && return
986         remote_ost_nodsh && skip "remote OST with nodsh" && return
987
988         reset_enospc
989         rm -f $DIR/d27/f27o
990         exhaust_all_precreations 0x215
991         sleep 5
992
993         touch $DIR/d27/f27o && error "able to create $DIR/d27/f27o"
994
995         reset_enospc
996         rm -rf $DIR/d27/*
997 }
998 run_test 27o "create file with all full OSTs (should error) ===="
999
1000 test_27p() {
1001         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1002         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1003         remote_ost_nodsh && skip "remote OST with nodsh" && return
1004
1005         reset_enospc
1006         rm -f $DIR/d27/f27p
1007
1008         $MCREATE $DIR/d27/f27p || error
1009         $TRUNCATE $DIR/d27/f27p 80000000 || error
1010         $CHECKSTAT -s 80000000 $DIR/d27/f27p || error
1011
1012         exhaust_precreations 0 0x80000215
1013         echo foo >> $DIR/d27/f27p || error
1014         $CHECKSTAT -s 80000004 $DIR/d27/f27p || error
1015
1016         reset_enospc
1017 }
1018 run_test 27p "append to a truncated file with some full OSTs ==="
1019
1020 test_27q() {
1021         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1022         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1023         remote_ost_nodsh && skip "remote OST with nodsh" && return
1024
1025         reset_enospc
1026         rm -f $DIR/d27/f27q
1027
1028         $MCREATE $DIR/d27/f27q || error "mcreate $DIR/d27/f27q failed"
1029         $TRUNCATE $DIR/d27/f27q 80000000 ||error "truncate $DIR/d27/f27q failed"
1030         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat failed"
1031
1032         exhaust_all_precreations 0x215
1033
1034         echo foo >> $DIR/d27/f27q && error "append succeeded"
1035         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat 2 failed"
1036
1037         reset_enospc
1038 }
1039 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1040
1041 test_27r() {
1042         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1043         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1044         remote_ost_nodsh && skip "remote OST with nodsh" && return
1045
1046         reset_enospc
1047         rm -f $DIR/d27/f27r
1048         exhaust_precreations 0 0x80000215
1049
1050         $SETSTRIPE $DIR/d27/f27r -i 0 -c 2 # && error
1051
1052         reset_enospc
1053 }
1054 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1055
1056 test_27s() { # bug 10725
1057        mkdir -p $DIR/$tdir
1058        $LSTRIPE $DIR/$tdir $((2048 * 1024 * 1024)) -1 2 && \
1059                error "stripe width >= 2^32 succeeded" || true
1060 }
1061 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1062
1063 test_27t() { # bug 10864
1064         WDIR=`pwd`
1065         WLFS=`which lfs`
1066         cd $DIR
1067         touch $tfile
1068         $WLFS getstripe $tfile
1069         cd $WDIR
1070 }
1071 run_test 27t "check that utils parse path correctly"
1072
1073 test_27u() { # bug 4900
1074         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1075         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1076
1077         #define OBD_FAIL_MDS_OSC_PRECREATE      0x13d
1078
1079         do_facet $SINGLEMDS lctl set_param fail_loc=0x13d
1080         mkdir -p $DIR/d27u
1081         createmany -o $DIR/d27u/t- 1000
1082         do_facet $SINGLEMDS lctl set_param fail_loc=0
1083
1084         TLOG=$DIR/$tfile.getstripe
1085         $GETSTRIPE $DIR/d27u > $TLOG
1086         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1087         unlinkmany $DIR/d27u/t- 1000
1088         [ $OBJS -gt 0 ] && \
1089                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1090 }
1091 run_test 27u "skip object creation on OSC w/o objects =========="
1092
1093 test_27v() { # bug 4900
1094         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1095         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1096         remote_ost_nodsh && skip "remote OST with nodsh" && return
1097
1098         exhaust_all_precreations
1099
1100         mkdir -p $DIR/$tdir
1101         $SETSTRIPE $DIR/$tdir -c 1         # 1 stripe / file
1102
1103         touch $DIR/$tdir/$tfile
1104         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1105         lctl set_param fail_loc=0x705
1106         START=`date +%s`
1107         for F in `seq 1 32`; do
1108                 touch $DIR/$tdir/$tfile.$F
1109         done
1110         lctl set_param fail_loc=0
1111
1112         FINISH=`date +%s`
1113         TIMEOUT=`lctl get_param -n timeout`
1114         [ $((FINISH - START)) -ge $((TIMEOUT / 2)) ] && \
1115                error "$FINISH - $START >= $TIMEOUT / 2"
1116
1117         reset_enospc
1118 }
1119 run_test 27v "skip object creation on slow OST ================="
1120
1121 test_27w() { # bug 10997
1122         mkdir -p $DIR/d27w || error "mkdir failed"
1123         $LSTRIPE $DIR/d27w/f0 -s 65536 || error "lstripe failed"
1124         size=`$LSTRIPEINFO $DIR/d27w/f0 | awk {'print $1'}`
1125         [ $size -ne 65536 ] && error "stripe size $size != 65536" || true
1126
1127         [ "$OSTCOUNT" -lt "2" ] && skip "skipping multiple stripe count/offset test" && return
1128         for i in `seq 1 $OSTCOUNT`; do
1129                 offset=$(($i-1))
1130                 $LSTRIPE $DIR/d27w/f$i -c $i -i $offset || error "lstripe -c $i -i $offset failed"
1131                 count=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $2'}`
1132                 index=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $3'}`
1133                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1134                 [ $index -ne $offset ] && error "stripe offset $index != $offset" || true
1135         done
1136 }
1137 run_test 27w "check lfs setstripe -c -s -i options ============="
1138
1139 test_28() {
1140         mkdir $DIR/d28
1141         $CREATETEST $DIR/d28/ct || error
1142 }
1143 run_test 28 "create/mknod/mkdir with bad file types ============"
1144
1145 test_29() {
1146         cancel_lru_locks mdc
1147         mkdir $DIR/d29
1148         touch $DIR/d29/foo
1149         log 'first d29'
1150         ls -l $DIR/d29
1151
1152         declare -i LOCKCOUNTORIG=0
1153         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1154                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1155         done
1156         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1157
1158         declare -i LOCKUNUSEDCOUNTORIG=0
1159         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1160                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1161         done
1162
1163         log 'second d29'
1164         ls -l $DIR/d29
1165         log 'done'
1166
1167         declare -i LOCKCOUNTCURRENT=0
1168         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1169                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1170         done
1171
1172         declare -i LOCKUNUSEDCOUNTCURRENT=0
1173         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1174                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1175         done
1176
1177         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1178                 lctl set_param -n ldlm.dump_namespaces ""
1179                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1180                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1181                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1182                 return 2
1183         fi
1184         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1185                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1186                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1187                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1188                 return 3
1189         fi
1190 }
1191 run_test 29 "IT_GETATTR regression  ============================"
1192
1193 test_30() {
1194         cp `which ls` $DIR || cp /bin/ls $DIR
1195         $DIR/ls /
1196         rm $DIR/ls
1197 }
1198 run_test 30 "run binary from Lustre (execve) ==================="
1199
1200 test_31a() {
1201         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1202         $CHECKSTAT -a $DIR/f31 || error
1203 }
1204 run_test 31a "open-unlink file =================================="
1205
1206 test_31b() {
1207         touch $DIR/f31 || error
1208         ln $DIR/f31 $DIR/f31b || error
1209         multiop $DIR/f31b Ouc || error
1210         $CHECKSTAT -t file $DIR/f31 || error
1211 }
1212 run_test 31b "unlink file with multiple links while open ======="
1213
1214 test_31c() {
1215         touch $DIR/f31 || error
1216         ln $DIR/f31 $DIR/f31c || error
1217         multiop_bg_pause $DIR/f31 O_uc || return 1
1218         MULTIPID=$!
1219         multiop $DIR/f31c Ouc
1220         kill -USR1 $MULTIPID
1221         wait $MULTIPID
1222 }
1223 run_test 31c "open-unlink file with multiple links ============="
1224
1225 test_31d() {
1226         opendirunlink $DIR/d31d $DIR/d31d || error
1227         $CHECKSTAT -a $DIR/d31d || error
1228 }
1229 run_test 31d "remove of open directory ========================="
1230
1231 test_31e() { # bug 2904
1232         check_kernel_version 34 || return 0
1233         openfilleddirunlink $DIR/d31e || error
1234 }
1235 run_test 31e "remove of open non-empty directory ==============="
1236
1237 test_31f() { # bug 4554
1238         set -vx
1239         mkdir $DIR/d31f
1240         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1241         cp /etc/hosts $DIR/d31f
1242         ls -l $DIR/d31f
1243         $GETSTRIPE $DIR/d31f/hosts
1244         multiop_bg_pause $DIR/d31f D_c || return 1
1245         MULTIPID=$!
1246
1247         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1248         mkdir $DIR/d31f
1249         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1250         cp /etc/hosts $DIR/d31f
1251         ls -l $DIR/d31f
1252         $DIR/d31f/hosts
1253         multiop_bg_pause $DIR/d31f D_c || return 1
1254         MULTIPID2=$!
1255
1256         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1257         wait $MULTIPID || error "first opendir $MULTIPID failed"
1258
1259         sleep 6
1260
1261         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1262         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1263         set +vx
1264 }
1265 run_test 31f "remove of open directory with open-unlink file ==="
1266
1267 test_31g() {
1268         echo "-- cross directory link --"
1269         mkdir $DIR/d31g{a,b}
1270         touch $DIR/d31ga/f
1271         ln $DIR/d31ga/f $DIR/d31gb/g
1272         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1273         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1274         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1275         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1276 }
1277 run_test 31g "cross directory link==============="
1278
1279 test_31h() {
1280         echo "-- cross directory link --"
1281         mkdir $DIR/d31h
1282         mkdir $DIR/d31h/dir
1283         touch $DIR/d31h/f
1284         ln $DIR/d31h/f $DIR/d31h/dir/g
1285         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1286         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1287         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1288         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1289 }
1290 run_test 31h "cross directory link under child==============="
1291
1292 test_31i() {
1293         echo "-- cross directory link --"
1294         mkdir $DIR/d31i
1295         mkdir $DIR/d31i/dir
1296         touch $DIR/d31i/dir/f
1297         ln $DIR/d31i/dir/f $DIR/d31i/g
1298         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1299         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1300         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1301         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1302 }
1303 run_test 31i "cross directory link under parent==============="
1304
1305
1306 test_31j() {
1307         mkdir $DIR/d31j
1308         mkdir $DIR/d31j/dir1
1309         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1310         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1311         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1312         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1313         return 0
1314 }
1315 run_test 31j "link for directory==============="
1316
1317
1318 test_31k() {
1319         mkdir $DIR/d31k
1320         touch $DIR/d31k/s
1321         touch $DIR/d31k/exist
1322         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1323         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1324         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1325         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1326         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1327         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1328         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1329         return 0
1330 }
1331 run_test 31k "link to file: the same, non-existing, dir==============="
1332
1333 test_31m() {
1334         mkdir $DIR/d31m
1335         touch $DIR/d31m/s
1336         mkdir $DIR/d31m2
1337         touch $DIR/d31m2/exist
1338         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1339         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1340         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1341         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1342         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1343         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1344         return 0
1345 }
1346 run_test 31m "link to file: the same, non-existing, dir==============="
1347
1348 test_32a() {
1349         echo "== more mountpoints and symlinks ================="
1350         [ -e $DIR/d32a ] && rm -fr $DIR/d32a
1351         mkdir -p $DIR/d32a/ext2-mountpoint
1352         mount -t ext2 -o loop $EXT2_DEV $DIR/d32a/ext2-mountpoint || error
1353         $CHECKSTAT -t dir $DIR/d32a/ext2-mountpoint/.. || error
1354         $UMOUNT $DIR/d32a/ext2-mountpoint || error
1355 }
1356 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1357
1358 test_32b() {
1359         [ -e $DIR/d32b ] && rm -fr $DIR/d32b
1360         mkdir -p $DIR/d32b/ext2-mountpoint
1361         mount -t ext2 -o loop $EXT2_DEV $DIR/d32b/ext2-mountpoint || error
1362         ls -al $DIR/d32b/ext2-mountpoint/.. || error
1363         $UMOUNT $DIR/d32b/ext2-mountpoint || error
1364 }
1365 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1366
1367 test_32c() {
1368         [ -e $DIR/d32c ] && rm -fr $DIR/d32c
1369         mkdir -p $DIR/d32c/ext2-mountpoint
1370         mount -t ext2 -o loop $EXT2_DEV $DIR/d32c/ext2-mountpoint || error
1371         mkdir -p $DIR/d32c/d2/test_dir
1372         $CHECKSTAT -t dir $DIR/d32c/ext2-mountpoint/../d2/test_dir || error
1373         $UMOUNT $DIR/d32c/ext2-mountpoint || error
1374 }
1375 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1376
1377 test_32d() {
1378         [ -e $DIR/d32d ] && rm -fr $DIR/d32d
1379         mkdir -p $DIR/d32d/ext2-mountpoint
1380         mount -t ext2 -o loop $EXT2_DEV $DIR/d32d/ext2-mountpoint || error
1381         mkdir -p $DIR/d32d/d2/test_dir
1382         ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
1383         $UMOUNT $DIR/d32d/ext2-mountpoint || error
1384 }
1385 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1386
1387 test_32e() {
1388         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1389         mkdir -p $DIR/d32e/tmp
1390         TMP_DIR=$DIR/d32e/tmp
1391         ln -s $DIR/d32e $TMP_DIR/symlink11
1392         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1393         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1394         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1395 }
1396 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1397
1398 test_32f() {
1399         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1400         mkdir -p $DIR/d32f/tmp
1401         TMP_DIR=$DIR/d32f/tmp
1402         ln -s $DIR/d32f $TMP_DIR/symlink11
1403         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1404         ls $DIR/d32f/tmp/symlink11  || error
1405         ls $DIR/d32f/symlink01 || error
1406 }
1407 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1408
1409 test_32g() {
1410         TMP_DIR=$DIR/$tdir/tmp
1411         mkdir -p $TMP_DIR $DIR/${tdir}2
1412         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1413         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1414         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1415         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1416         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1417         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1418 }
1419 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1420
1421 test_32h() {
1422         rm -fr $DIR/$tdir $DIR/${tdir}2
1423         TMP_DIR=$DIR/$tdir/tmp
1424         mkdir -p $TMP_DIR $DIR/${tdir}2
1425         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1426         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1427         ls $TMP_DIR/symlink12 || error
1428         ls $DIR/$tdir/symlink02  || error
1429 }
1430 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1431
1432 test_32i() {
1433         [ -e $DIR/d32i ] && rm -fr $DIR/d32i
1434         mkdir -p $DIR/d32i/ext2-mountpoint
1435         mount -t ext2 -o loop $EXT2_DEV $DIR/d32i/ext2-mountpoint || error
1436         touch $DIR/d32i/test_file
1437         $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error
1438         $UMOUNT $DIR/d32i/ext2-mountpoint || error
1439 }
1440 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1441
1442 test_32j() {
1443         [ -e $DIR/d32j ] && rm -fr $DIR/d32j
1444         mkdir -p $DIR/d32j/ext2-mountpoint
1445         mount -t ext2 -o loop $EXT2_DEV $DIR/d32j/ext2-mountpoint || error
1446         touch $DIR/d32j/test_file
1447         cat $DIR/d32j/ext2-mountpoint/../test_file || error
1448         $UMOUNT $DIR/d32j/ext2-mountpoint || error
1449 }
1450 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1451
1452 test_32k() {
1453         rm -fr $DIR/d32k
1454         mkdir -p $DIR/d32k/ext2-mountpoint
1455         mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint
1456         mkdir -p $DIR/d32k/d2
1457         touch $DIR/d32k/d2/test_file || error
1458         $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
1459         $UMOUNT $DIR/d32k/ext2-mountpoint || error
1460 }
1461 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1462
1463 test_32l() {
1464         rm -fr $DIR/d32l
1465         mkdir -p $DIR/d32l/ext2-mountpoint
1466         mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
1467         mkdir -p $DIR/d32l/d2
1468         touch $DIR/d32l/d2/test_file
1469         cat  $DIR/d32l/ext2-mountpoint/../d2/test_file || error
1470         $UMOUNT $DIR/d32l/ext2-mountpoint || error
1471 }
1472 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1473
1474 test_32m() {
1475         rm -fr $DIR/d32m
1476         mkdir -p $DIR/d32m/tmp
1477         TMP_DIR=$DIR/d32m/tmp
1478         ln -s $DIR $TMP_DIR/symlink11
1479         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1480         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1481         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1482 }
1483 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1484
1485 test_32n() {
1486         rm -fr $DIR/d32n
1487         mkdir -p $DIR/d32n/tmp
1488         TMP_DIR=$DIR/d32n/tmp
1489         ln -s $DIR $TMP_DIR/symlink11
1490         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1491         ls -l $DIR/d32n/tmp/symlink11  || error
1492         ls -l $DIR/d32n/symlink01 || error
1493 }
1494 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1495
1496 test_32o() {
1497         rm -fr $DIR/d32o $DIR/$tfile
1498         touch $DIR/$tfile
1499         mkdir -p $DIR/d32o/tmp
1500         TMP_DIR=$DIR/d32o/tmp
1501         ln -s $DIR/$tfile $TMP_DIR/symlink12
1502         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1503         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1504         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1505         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1506         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1507 }
1508 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1509
1510 test_32p() {
1511     log 32p_1
1512         rm -fr $DIR/d32p
1513     log 32p_2
1514         rm -f $DIR/$tfile
1515     log 32p_3
1516         touch $DIR/$tfile
1517     log 32p_4
1518         mkdir -p $DIR/d32p/tmp
1519     log 32p_5
1520         TMP_DIR=$DIR/d32p/tmp
1521     log 32p_6
1522         ln -s $DIR/$tfile $TMP_DIR/symlink12
1523     log 32p_7
1524         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1525     log 32p_8
1526         cat $DIR/d32p/tmp/symlink12 || error
1527     log 32p_9
1528         cat $DIR/d32p/symlink02 || error
1529     log 32p_10
1530 }
1531 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1532
1533 test_32q() {
1534         [ -e $DIR/d32q ] && rm -fr $DIR/d32q
1535         mkdir -p $DIR/d32q
1536         touch $DIR/d32q/under_the_mount
1537         mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
1538         ls $DIR/d32q/under_the_mount && error || true
1539         $UMOUNT $DIR/d32q || error
1540 }
1541 run_test 32q "stat follows mountpoints in Lustre (should return error)"
1542
1543 test_32r() {
1544         [ -e $DIR/d32r ] && rm -fr $DIR/d32r
1545         mkdir -p $DIR/d32r
1546         touch $DIR/d32r/under_the_mount
1547         mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
1548         ls $DIR/d32r | grep -q under_the_mount && error || true
1549         $UMOUNT $DIR/d32r || error
1550 }
1551 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
1552
1553 test_33() {
1554         rm -f $DIR/$tfile
1555         touch $DIR/$tfile
1556         chmod 444 $DIR/$tfile
1557         chown $RUNAS_ID $DIR/$tfile
1558         log 33_1
1559         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
1560         log 33_2
1561 }
1562 run_test 33 "write file with mode 444 (should return error) ===="
1563
1564 test_33a() {
1565         rm -fr $DIR/d33
1566         mkdir -p $DIR/d33
1567         chown $RUNAS_ID $DIR/d33
1568         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
1569         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
1570                 error "open RDWR" || true
1571 }
1572 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
1573
1574 test_33b() {
1575         rm -fr $DIR/d33
1576         mkdir -p $DIR/d33
1577         chown $RUNAS_ID $DIR/d33
1578         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
1579 }
1580 run_test 33b "test open file with malformed flags (No panic and return error)"
1581
1582 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
1583 test_34a() {
1584         rm -f $DIR/f34
1585         $MCREATE $DIR/f34 || error
1586         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1587         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
1588         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1589         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1590 }
1591 run_test 34a "truncate file that has not been opened ==========="
1592
1593 test_34b() {
1594         [ ! -f $DIR/f34 ] && test_34a
1595         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1596         $OPENFILE -f O_RDONLY $DIR/f34
1597         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1598         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1599 }
1600 run_test 34b "O_RDONLY opening file doesn't create objects ====="
1601
1602 test_34c() {
1603         [ ! -f $DIR/f34 ] && test_34a
1604         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1605         $OPENFILE -f O_RDWR $DIR/f34
1606         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
1607         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1608 }
1609 run_test 34c "O_RDWR opening file-with-size works =============="
1610
1611 test_34d() {
1612         [ ! -f $DIR/f34 ] && test_34a
1613         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
1614         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1615         rm $DIR/f34
1616 }
1617 run_test 34d "write to sparse file ============================="
1618
1619 test_34e() {
1620         rm -f $DIR/f34e
1621         $MCREATE $DIR/f34e || error
1622         $TRUNCATE $DIR/f34e 1000 || error
1623         $CHECKSTAT -s 1000 $DIR/f34e || error
1624         $OPENFILE -f O_RDWR $DIR/f34e
1625         $CHECKSTAT -s 1000 $DIR/f34e || error
1626 }
1627 run_test 34e "create objects, some with size and some without =="
1628
1629 test_34f() { # bug 6242, 6243
1630         SIZE34F=48000
1631         rm -f $DIR/f34f
1632         $MCREATE $DIR/f34f || error
1633         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
1634         dd if=$DIR/f34f of=$TMP/f34f
1635         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
1636         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
1637         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
1638         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
1639         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
1640 }
1641 run_test 34f "read from a file with no objects until EOF ======="
1642
1643 test_35a() {
1644         cp /bin/sh $DIR/f35a
1645         chmod 444 $DIR/f35a
1646         chown $RUNAS_ID $DIR/f35a
1647         $RUNAS $DIR/f35a && error || true
1648         rm $DIR/f35a
1649 }
1650 run_test 35a "exec file with mode 444 (should return and not leak) ====="
1651
1652 test_36a() {
1653         rm -f $DIR/f36
1654         utime $DIR/f36 || error
1655 }
1656 run_test 36a "MDS utime check (mknod, utime) ==================="
1657
1658 test_36b() {
1659         echo "" > $DIR/f36
1660         utime $DIR/f36 || error
1661 }
1662 run_test 36b "OST utime check (open, utime) ===================="
1663
1664 test_36c() {
1665         rm -f $DIR/d36/f36
1666         mkdir $DIR/d36
1667         chown $RUNAS_ID $DIR/d36
1668         $RUNAS utime $DIR/d36/f36 || error
1669 }
1670 run_test 36c "non-root MDS utime check (mknod, utime) =========="
1671
1672 test_36d() {
1673         [ ! -d $DIR/d36 ] && test_36c
1674         echo "" > $DIR/d36/f36
1675         $RUNAS utime $DIR/d36/f36 || error
1676 }
1677 run_test 36d "non-root OST utime check (open, utime) ==========="
1678
1679 test_36e() {
1680         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
1681         mkdir -p $DIR/$tdir
1682         touch $DIR/$tdir/$tfile
1683         $RUNAS utime $DIR/$tdir/$tfile && \
1684                 error "utime worked, expected failure" || true
1685 }
1686 run_test 36e "utime on non-owned file (should return error) ===="
1687
1688 test_36f() {
1689         export LANG=C LC_LANG=C # for date language
1690
1691         DATESTR="Dec 20  2000"
1692         mkdir -p $DIR/$tdir
1693         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
1694         lctl set_param fail_loc=0x80000214
1695         date; date +%s
1696         cp /etc/hosts $DIR/$tdir/$tfile
1697         sync & # write RPC generated with "current" inode timestamp, but delayed
1698         sleep 1
1699         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
1700         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
1701         cancel_lru_locks osc
1702         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
1703         date; date +%s
1704         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
1705                 echo "BEFORE: $LS_BEFORE" && \
1706                 echo "AFTER : $LS_AFTER" && \
1707                 echo "WANT  : $DATESTR" && \
1708                 error "$DIR/$tdir/$tfile timestamps changed" || true
1709 }
1710 run_test 36f "utime on file racing with OST BRW write =========="
1711
1712 test_36g() {
1713         remote_ost_nodsh && skip "remote OST with nodsh" && return
1714
1715         mkdir -p $DIR/$tdir
1716         export FMD_MAX_AGE=`do_facet ost1 lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | head -n 1`
1717         FMD_BEFORE="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1718         touch $DIR/$tdir/$tfile
1719         sleep $((FMD_MAX_AGE + 12))
1720         FMD_AFTER="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1721         [ "$FMD_AFTER" -gt "$FMD_BEFORE" ] && \
1722                 echo "AFTER : $FMD_AFTER > BEFORE $FMD_BEFORE" && \
1723                 error "fmd didn't expire after ping" || true
1724 }
1725 run_test 36g "filter mod data cache expiry ====================="
1726
1727 test_37() {
1728         mkdir -p $DIR/$tdir
1729         echo f > $DIR/$tdir/fbugfile
1730         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
1731         ls $DIR/$tdir | grep "\<fbugfile\>" && error
1732         $UMOUNT $DIR/$tdir || error
1733         rm -f $DIR/$tdir/fbugfile || error
1734 }
1735 run_test 37 "ls a mounted file system to check old content ====="
1736
1737 test_38() {
1738         o_directory $DIR/$tfile
1739 }
1740 run_test 38 "open a regular file with O_DIRECTORY =============="
1741
1742 test_39() {
1743         touch $DIR/$tfile
1744         touch $DIR/${tfile}2
1745 #       ls -l  $DIR/$tfile $DIR/${tfile}2
1746 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
1747 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
1748         sleep 2
1749         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
1750         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
1751                 echo "mtime"
1752                 ls -l  $DIR/$tfile $DIR/${tfile}2
1753                 echo "atime"
1754                 ls -lu  $DIR/$tfile $DIR/${tfile}2
1755                 echo "ctime"
1756                 ls -lc  $DIR/$tfile $DIR/${tfile}2
1757                 error "O_TRUNC didn't change timestamps"
1758         fi
1759 }
1760 run_test 39 "mtime changed on create ==========================="
1761
1762 test_40() {
1763         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
1764         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
1765         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
1766 }
1767 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
1768
1769 test_41() {
1770         # bug 1553
1771         small_write $DIR/f41 18
1772 }
1773 run_test 41 "test small file write + fstat ====================="
1774
1775 count_ost_writes() {
1776         lctl get_param -n osc.*.stats |
1777             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
1778 }
1779
1780 # decent default
1781 WRITEBACK_SAVE=500
1782 DIRTY_RATIO_SAVE=40
1783 MAX_DIRTY_RATIO=50
1784 BG_DIRTY_RATIO_SAVE=10
1785 MAX_BG_DIRTY_RATIO=25
1786
1787 start_writeback() {
1788         trap 0
1789         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
1790         # dirty_ratio, dirty_background_ratio
1791         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1792                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
1793                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
1794                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
1795         else
1796                 # if file not here, we are a 2.4 kernel
1797                 kill -CONT `pidof kupdated`
1798         fi
1799 }
1800
1801 stop_writeback() {
1802         # setup the trap first, so someone cannot exit the test at the
1803         # exact wrong time and mess up a machine
1804         trap start_writeback EXIT
1805         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
1806         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1807                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
1808                 sysctl -w vm.dirty_writeback_centisecs=0
1809                 sysctl -w vm.dirty_writeback_centisecs=0
1810                 # save and increase /proc/sys/vm/dirty_ratio
1811                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
1812                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
1813                 # save and increase /proc/sys/vm/dirty_background_ratio
1814                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
1815                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
1816         else
1817                 # if file not here, we are a 2.4 kernel
1818                 kill -STOP `pidof kupdated`
1819         fi
1820 }
1821
1822 # ensure that all stripes have some grant before we test client-side cache
1823 setup_test42() {
1824         [ "$SETUP_TEST42" ] && return
1825         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
1826                 dd if=/dev/zero of=$i bs=4k count=1
1827                 rm $i
1828         done
1829         SETUP_TEST42=DONE
1830 }
1831
1832 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
1833 # file truncation, and file removal.
1834 test_42a() {
1835         setup_test42
1836         cancel_lru_locks osc
1837         stop_writeback
1838         sync; sleep 1; sync # just to be safe
1839         BEFOREWRITES=`count_ost_writes`
1840         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
1841         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
1842         AFTERWRITES=`count_ost_writes`
1843         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1844                 error "$BEFOREWRITES < $AFTERWRITES"
1845         start_writeback
1846 }
1847 run_test 42a "ensure that we don't flush on close =============="
1848
1849 test_42b() {
1850         setup_test42
1851         cancel_lru_locks osc
1852         stop_writeback
1853         sync
1854         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
1855         BEFOREWRITES=`count_ost_writes`
1856         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
1857         AFTERWRITES=`count_ost_writes`
1858         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1859                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
1860         fi
1861         BEFOREWRITES=`count_ost_writes`
1862         sync || error "sync: $?"
1863         AFTERWRITES=`count_ost_writes`
1864         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1865                 error "$BEFOREWRITES < $AFTERWRITES on sync"
1866         fi
1867         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
1868         start_writeback
1869         return 0
1870 }
1871 run_test 42b "test destroy of file with cached dirty data ======"
1872
1873 # if these tests just want to test the effect of truncation,
1874 # they have to be very careful.  consider:
1875 # - the first open gets a {0,EOF}PR lock
1876 # - the first write conflicts and gets a {0, count-1}PW
1877 # - the rest of the writes are under {count,EOF}PW
1878 # - the open for truncate tries to match a {0,EOF}PR
1879 #   for the filesize and cancels the PWs.
1880 # any number of fixes (don't get {0,EOF} on open, match
1881 # composite locks, do smarter file size management) fix
1882 # this, but for now we want these tests to verify that
1883 # the cancellation with truncate intent works, so we
1884 # start the file with a full-file pw lock to match against
1885 # until the truncate.
1886 trunc_test() {
1887         test=$1
1888         file=$DIR/$test
1889         offset=$2
1890         cancel_lru_locks osc
1891         stop_writeback
1892         # prime the file with 0,EOF PW to match
1893         touch $file
1894         $TRUNCATE $file 0
1895         sync; sync
1896         # now the real test..
1897         dd if=/dev/zero of=$file bs=1024 count=100
1898         BEFOREWRITES=`count_ost_writes`
1899         $TRUNCATE $file $offset
1900         cancel_lru_locks osc
1901         AFTERWRITES=`count_ost_writes`
1902         start_writeback
1903 }
1904
1905 test_42c() {
1906         trunc_test 42c 1024
1907         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
1908             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
1909         rm $file
1910 }
1911 run_test 42c "test partial truncate of file with cached dirty data"
1912
1913 test_42d() {
1914         trunc_test 42d 0
1915         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1916             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
1917         rm $file
1918 }
1919 run_test 42d "test complete truncate of file with cached dirty data"
1920
1921 test_43() {
1922         mkdir -p $DIR/$tdir
1923         cp -p /bin/ls $DIR/$tdir/$tfile
1924         multiop $DIR/$tdir/$tfile Ow_c &
1925         pid=$!
1926         # give multiop a chance to open
1927         sleep 1
1928
1929         $DIR/$tdir/$tfile && error || true
1930         kill -USR1 $pid
1931 }
1932 run_test 43 "execution of file opened for write should return -ETXTBSY"
1933
1934 test_43a() {
1935         mkdir -p $DIR/d43
1936         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
1937         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
1938         MULTIOP_PID=$!
1939         multiop $DIR/d43/multiop Oc && error "expected error, got success"
1940         kill -USR1 $MULTIOP_PID || return 2
1941         wait $MULTIOP_PID || return 3
1942         rm $TMP/test43.junk
1943 }
1944 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
1945
1946 test_43b() {
1947         mkdir -p $DIR/d43
1948         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
1949         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
1950         MULTIOP_PID=$!
1951         truncate $DIR/d43/multiop 0 && error "expected error, got success"
1952         kill -USR1 $MULTIOP_PID || return 2
1953         wait $MULTIOP_PID || return 3
1954         rm $TMP/test43.junk
1955 }
1956 run_test 43b "truncate of file being executed should return -ETXTBSY"
1957
1958 test_43c() {
1959         local testdir="$DIR/d43c"
1960         mkdir -p $testdir
1961         cp $SHELL $testdir/
1962         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
1963                 ( cd $testdir && md5sum -c)
1964 }
1965 run_test 43c "md5sum of copy into lustre========================"
1966
1967 test_44() {
1968         [  "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
1969         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
1970         dd if=$DIR/f1 bs=4k count=1 > /dev/null
1971 }
1972 run_test 44 "zero length read from a sparse stripe ============="
1973
1974 test_44a() {
1975     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
1976                          awk '{print $2}'`
1977     [ -z "$nstripe" ] && skip "can't get stripe info" && return
1978     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
1979     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
1980                       awk '{print $2}'`
1981     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
1982         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
1983     fi
1984
1985     OFFSETS="0 $((stride/2)) $((stride-1))"
1986     for offset in $OFFSETS ; do
1987       for i in `seq 0 $((nstripe-1))`; do
1988         local GLOBALOFFSETS=""
1989         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
1990         local myfn=$DIR/d44a-$size
1991         echo "--------writing $myfn at $size"
1992         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
1993         GLOBALOFFSETS="$GLOBALOFFSETS $size"
1994         ll_sparseness_verify $myfn $GLOBALOFFSETS \
1995                             || error "ll_sparseness_verify $GLOBALOFFSETS"
1996
1997         for j in `seq 0 $((nstripe-1))`; do
1998             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
1999             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
2000             GLOBALOFFSETS="$GLOBALOFFSETS $size"
2001         done
2002         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2003                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2004         rm -f $myfn
2005       done
2006     done
2007 }
2008 run_test 44a "test sparse pwrite ==============================="
2009
2010 dirty_osc_total() {
2011         tot=0
2012         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
2013                 tot=$(($tot + $d))
2014         done
2015         echo $tot
2016 }
2017 do_dirty_record() {
2018         before=`dirty_osc_total`
2019         echo executing "\"$*\""
2020         eval $*
2021         after=`dirty_osc_total`
2022         echo before $before, after $after
2023 }
2024 test_45() {
2025         f="$DIR/f45"
2026         # Obtain grants from OST if it supports it
2027         echo blah > ${f}_grant
2028         stop_writeback
2029         sync
2030         do_dirty_record "echo blah > $f"
2031         [ $before -eq $after ] && error "write wasn't cached"
2032         do_dirty_record "> $f"
2033         [ $before -gt $after ] || error "truncate didn't lower dirty count"
2034         do_dirty_record "echo blah > $f"
2035         [ $before -eq $after ] && error "write wasn't cached"
2036         do_dirty_record "sync"
2037         [ $before -gt $after ] || error "writeback didn't lower dirty count"
2038         do_dirty_record "echo blah > $f"
2039         [ $before -eq $after ] && error "write wasn't cached"
2040         do_dirty_record "cancel_lru_locks osc"
2041         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
2042         start_writeback
2043 }
2044 run_test 45 "osc io page accounting ============================"
2045
2046 page_size() {
2047         getconf PAGE_SIZE
2048 }
2049
2050 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
2051 # test tickles a bug where re-dirtying a page was failing to be mapped to the
2052 # objects offset and an assert hit when an rpc was built with 1023's mapped
2053 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
2054 test_46() {
2055         f="$DIR/f46"
2056         stop_writeback
2057         sync
2058         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2059         sync
2060         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
2061         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2062         sync
2063         start_writeback
2064 }
2065 run_test 46 "dirtying a previously written page ================"
2066
2067 # Check that device nodes are created and then visible correctly (#2091)
2068 test_47() {
2069         cmknod $DIR/test_47_node || error
2070 }
2071 run_test 47 "Device nodes check ================================"
2072
2073 test_48a() { # bug 2399
2074         check_kernel_version 34 || return 0
2075         mkdir -p $DIR/d48a
2076         cd $DIR/d48a
2077         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
2078         mkdir $DIR/d48a || error "recreate directory failed"
2079         touch foo || error "'touch foo' failed after recreating cwd"
2080         mkdir bar || error "'mkdir foo' failed after recreating cwd"
2081         if check_kernel_version 44; then
2082                 touch .foo || error "'touch .foo' failed after recreating cwd"
2083                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
2084         fi
2085         ls . > /dev/null || error "'ls .' failed after recreating cwd"
2086         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2087         cd . || error "'cd .' failed after recreating cwd"
2088         mkdir . && error "'mkdir .' worked after recreating cwd"
2089         rmdir . && error "'rmdir .' worked after recreating cwd"
2090         ln -s . baz || error "'ln -s .' failed after recreating cwd"
2091         cd .. || error "'cd ..' failed after recreating cwd"
2092 }
2093 run_test 48a "Access renamed working dir (should return errors)="
2094
2095 test_48b() { # bug 2399
2096         check_kernel_version 34 || return 0
2097         mkdir -p $DIR/d48b
2098         cd $DIR/d48b
2099         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
2100         touch foo && error "'touch foo' worked after removing cwd"
2101         mkdir foo && error "'mkdir foo' worked after removing cwd"
2102         if check_kernel_version 44; then
2103                 touch .foo && error "'touch .foo' worked after removing cwd"
2104                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2105         fi
2106         ls . > /dev/null && error "'ls .' worked after removing cwd"
2107         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2108         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
2109         mkdir . && error "'mkdir .' worked after removing cwd"
2110         rmdir . && error "'rmdir .' worked after removing cwd"
2111         ln -s . foo && error "'ln -s .' worked after removing cwd"
2112         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
2113 }
2114 run_test 48b "Access removed working dir (should return errors)="
2115
2116 test_48c() { # bug 2350
2117         check_kernel_version 36 || return 0
2118         #lctl set_param debug=-1
2119         #set -vx
2120         mkdir -p $DIR/d48c/dir
2121         cd $DIR/d48c/dir
2122         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
2123         $TRACE touch foo && error "'touch foo' worked after removing cwd"
2124         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
2125         if check_kernel_version 44; then
2126                 touch .foo && error "'touch .foo' worked after removing cwd"
2127                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2128         fi
2129         $TRACE ls . && error "'ls .' worked after removing cwd"
2130         $TRACE ls .. || error "'ls ..' failed after removing cwd"
2131         is_patchless || ( $TRACE cd . && error "'cd .' worked after removing cwd" )
2132         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
2133         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
2134         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
2135         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
2136 }
2137 run_test 48c "Access removed working subdir (should return errors)"
2138
2139 test_48d() { # bug 2350
2140         check_kernel_version 36 || return 0
2141         #lctl set_param debug=-1
2142         #set -vx
2143         mkdir -p $DIR/d48d/dir
2144         cd $DIR/d48d/dir
2145         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
2146         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
2147         $TRACE touch foo && error "'touch foo' worked after removing parent"
2148         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
2149         if check_kernel_version 44; then
2150                 touch .foo && error "'touch .foo' worked after removing parent"
2151                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
2152         fi
2153         $TRACE ls . && error "'ls .' worked after removing parent"
2154         $TRACE ls .. && error "'ls ..' worked after removing parent"
2155         is_patchless || ( $TRACE cd . && error "'cd .' worked after recreate parent" )
2156         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
2157         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
2158         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
2159         is_patchless || ( $TRACE cd .. && error "'cd ..' worked after removing parent" || true )
2160 }
2161 run_test 48d "Access removed parent subdir (should return errors)"
2162
2163 test_48e() { # bug 4134
2164         check_kernel_version 41 || return 0
2165         #lctl set_param debug=-1
2166         #set -vx
2167         mkdir -p $DIR/d48e/dir
2168         cd $DIR/d48e/dir
2169         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
2170         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
2171         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
2172         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
2173         # On a buggy kernel addition of "touch foo" after cd .. will
2174         # produce kernel oops in lookup_hash_it
2175         touch ../foo && error "'cd ..' worked after recreate parent"
2176         cd $DIR
2177         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
2178 }
2179 run_test 48e "Access to recreated parent subdir (should return errors)"
2180
2181 test_50() {
2182         # bug 1485
2183         mkdir $DIR/d50
2184         cd $DIR/d50
2185         ls /proc/$$/cwd || error
2186 }
2187 run_test 50 "special situations: /proc symlinks  ==============="
2188
2189 test_51a() {    # was test_51
2190         # bug 1516 - create an empty entry right after ".." then split dir
2191         mkdir $DIR/d51
2192         touch $DIR/d51/foo
2193         $MCREATE $DIR/d51/bar
2194         rm $DIR/d51/foo
2195         createmany -m $DIR/d51/longfile 201
2196         FNUM=202
2197         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
2198                 $MCREATE $DIR/d51/longfile$FNUM
2199                 FNUM=$(($FNUM + 1))
2200                 echo -n "+"
2201         done
2202         echo
2203         ls -l $DIR/d51 > /dev/null || error
2204 }
2205 run_test 51a "special situations: split htree with empty entry =="
2206
2207 #export NUMTEST=70000
2208 # FIXME: I select a relatively small number to do basic test.
2209 # large number may give panic(). debugging on this is going on.
2210 export NUMTEST=70
2211 test_51b() {
2212         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2213         [ $NUMFREE -lt 21000 ] && \
2214                 skip "not enough free inodes ($NUMFREE)" && \
2215                 return
2216
2217         check_kernel_version 40 || NUMTEST=31000
2218         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
2219
2220         mkdir -p $DIR/d51b
2221         createmany -d $DIR/d51b/t- $NUMTEST
2222 }
2223 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
2224
2225 test_51bb() {
2226         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2227
2228         local ndirs=${TEST51BB_NDIRS:-10}
2229         local nfiles=${TEST51BB_NFILES:-100}
2230
2231         local numfree=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2232
2233         [ $numfree -lt $(( ndirs * nfiles)) ] && \
2234                 nfiles=$(( numfree / ndirs - 10 ))
2235
2236         local dir=$DIR/d51bb
2237         mkdir -p $dir
2238         local savePOLICY=$(lctl get_param -n lmv.*.placement)
2239         lctl set_param -n lmv.*.placement=CHAR
2240
2241         lfs df -i $dir
2242         local IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2243         OLDUSED=($IUSED)
2244
2245         declare -a dirs
2246         for ((i=0; i < $ndirs; i++)); do
2247                 dirs[i]=$dir/$RANDOM
2248                 echo Creating directory ${dirs[i]}
2249                 mkdir -p ${dirs[i]}
2250                 ls $dir
2251                 echo Creating $nfiles in dir ${dirs[i]} ...
2252                 echo "createmany -o ${dirs[i]}/$tfile- $nfiles"
2253                 createmany -o ${dirs[i]}/$tfile- $nfiles
2254         done
2255         ls $dir
2256
2257         sleep 1
2258
2259         IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2260         NEWUSED=($IUSED)
2261
2262         local rc=0
2263         for ((i=0; i<${#NEWUSED[@]}; i++)); do
2264                 echo "mds $i: inodes count OLD ${OLDUSED[$i]} NEW ${NEWUSED[$i]}"
2265                 [ ${OLDUSED[$i]} -lt ${NEWUSED[$i]} ] || rc=$((rc + 1))
2266         done
2267         
2268         lctl set_param -n lmv.*.placement=$savePOLICY
2269
2270         [ $rc -ne $MDSCOUNT ] || \
2271                 error "Objects/inodes are not distributed over all mds servers"
2272 }
2273 run_test 51bb "mkdir createmany CMD $MDSCOUNT  ===================="
2274
2275
2276 test_51c() {
2277         [ ! -d $DIR/d51b ] && skip "$DIR/51b missing" && \
2278                 return
2279
2280         unlinkmany -d $DIR/d51b/t- $NUMTEST
2281 }
2282 run_test 51c "rmdir .../t-0 --- .../t-$NUMTEST ===================="
2283
2284 test_51d() {
2285         [  "$OSTCOUNT" -lt "3" ] && skip "skipping test with few OSTs" && return
2286         mkdir -p $DIR/d51d
2287         createmany -o $DIR/d51d/t- 1000
2288         $LFS getstripe $DIR/d51d > $TMP/files
2289         for N in `seq 0 $((OSTCOUNT - 1))`; do
2290             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
2291             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
2292             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
2293         done
2294         unlinkmany $DIR/d51d/t- 1000
2295
2296         NLAST=0
2297         for N in `seq 1 $((OSTCOUNT - 1))`; do
2298             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
2299                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2300             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
2301                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2302
2303             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
2304                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2305             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
2306                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2307             NLAST=$N
2308         done
2309 }
2310 run_test 51d "check object distribution ===================="
2311
2312 test_52a() {
2313         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
2314         mkdir -p $DIR/d52a
2315         touch $DIR/d52a/foo
2316         chattr =a $DIR/d52a/foo || error "chattr =a failed"
2317         echo bar >> $DIR/d52a/foo || error "append bar failed"
2318         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
2319         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
2320         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
2321         echo foo >> $DIR/d52a/foo || error "append foo failed"
2322         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
2323         lsattr $DIR/d52a/foo | egrep -q "^-+a-+ $DIR/d52a/foo" || error "lsattr"
2324         chattr -a $DIR/d52a/foo || error "chattr -a failed"
2325
2326         rm -fr $DIR/d52a || error "cleanup rm failed"
2327 }
2328 run_test 52a "append-only flag test (should return errors) ====="
2329
2330 test_52b() {
2331         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
2332         mkdir -p $DIR/d52b
2333         touch $DIR/d52b/foo
2334         chattr =i $DIR/d52b/foo || error
2335         cat test > $DIR/d52b/foo && error
2336         cp /etc/hosts $DIR/d52b/foo && error
2337         rm -f $DIR/d52b/foo 2>/dev/null && error
2338         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error
2339         echo foo >> $DIR/d52b/foo && error
2340         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error
2341         [ -f $DIR/d52b/foo ] || error
2342         [ -f $DIR/d52b/foo_ren ] && error
2343         lsattr $DIR/d52b/foo | egrep -q "^-+i-+ $DIR/d52b/foo" || error
2344         chattr -i $DIR/d52b/foo || error
2345
2346         rm -fr $DIR/d52b || error
2347 }
2348 run_test 52b "immutable flag test (should return errors) ======="
2349
2350 test_53() {
2351         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2352         remote_ost_nodsh && skip "remote OST with nodsh" && return
2353
2354         local param
2355         local ostname
2356         local mds_last
2357         local ost_last
2358         local ostnum
2359
2360         # only test MDT0000
2361         for value in $(do_facet $SINGLEMDS lctl get_param osc.*-osc-MDT0000.prealloc_last_id) ; do
2362                 param=`echo ${value[0]} | cut -d "=" -f1`
2363                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
2364                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
2365                 ostnum=$(echo $ostname | sed "s/${FSNAME}-OST//g" | awk '{print ($1+1)}' )
2366                 ost_last=$(do_facet ost$ostnum lctl get_param -n obdfilter.$ostname.last_id | head -n 1)
2367                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2368                 if [ $ost_last != $mds_last ]; then
2369                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2370                 fi
2371         done
2372 }
2373 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
2374
2375 test_54a() {
2376         [ ! -f "$SOCKETSERVER" ] && skip "no socketserver, skipping" && return
2377         [ ! -f "$SOCKETCLIENT" ] && skip "no socketclient, skipping" && return
2378         $SOCKETSERVER $DIR/socket
2379         $SOCKETCLIENT $DIR/socket || error
2380         $MUNLINK $DIR/socket
2381 }
2382 run_test 54a "unix domain socket test =========================="
2383
2384 test_54b() {
2385         f="$DIR/f54b"
2386         mknod $f c 1 3
2387         chmod 0666 $f
2388         dd if=/dev/zero of=$f bs=`page_size` count=1
2389 }
2390 run_test 54b "char device works in lustre ======================"
2391
2392 find_loop_dev() {
2393         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
2394         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
2395         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
2396
2397         for i in `seq 3 7`; do
2398                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
2399                 LOOPDEV=$LOOPBASE$i
2400                 LOOPNUM=$i
2401                 break
2402         done
2403 }
2404
2405 test_54c() {
2406         tfile="$DIR/f54c"
2407         tdir="$DIR/d54c"
2408         loopdev="$DIR/loop54c"
2409
2410         find_loop_dev
2411         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
2412         mknod $loopdev b 7 $LOOPNUM
2413         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
2414         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
2415         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
2416         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
2417         mkdir -p $tdir
2418         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
2419         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
2420         df $tdir
2421         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
2422         $UMOUNT $tdir
2423         losetup -d $loopdev
2424         rm $loopdev
2425 }
2426 run_test 54c "block device works in lustre ====================="
2427
2428 test_54d() {
2429         f="$DIR/f54d"
2430         string="aaaaaa"
2431         mknod $f p
2432         [ "$string" = `echo $string > $f | cat $f` ] || error
2433 }
2434 run_test 54d "fifo device works in lustre ======================"
2435
2436 test_54e() {
2437         check_kernel_version 46 || return 0
2438         f="$DIR/f54e"
2439         string="aaaaaa"
2440         cp -aL /dev/console $f
2441         echo $string > $f || error
2442 }
2443 run_test 54e "console/tty device works in lustre ======================"
2444
2445 check_fstype() {
2446         grep -q $FSTYPE /proc/filesystems && return 1
2447         modprobe $FSTYPE
2448         grep -q $FSTYPE /proc/filesystems && return 1
2449         insmod ../$FSTYPE/$FSTYPE.o
2450         grep -q $FSTYPE /proc/filesystems && return 1
2451         insmod ../$FSTYPE/$FSTYPE.ko
2452         grep -q $FSTYPE /proc/filesystems && return 1
2453         return 0
2454 }
2455
2456 test_55() {
2457         rm -rf $DIR/d55
2458         mkdir $DIR/d55
2459         check_fstype && skip "can't find fs $FSTYPE" && return
2460         mount -t $FSTYPE -o loop,iopen $EXT2_DEV $DIR/d55 || error "mounting"
2461         touch $DIR/d55/foo
2462         $IOPENTEST1 $DIR/d55/foo $DIR/d55 || error "running $IOPENTEST1"
2463         $IOPENTEST2 $DIR/d55 || error "running $IOPENTEST2"
2464         echo "check for $EXT2_DEV. Please wait..."
2465         rm -rf $DIR/d55/*
2466         $UMOUNT $DIR/d55 || error "unmounting"
2467 }
2468 run_test 55 "check iopen_connect_dentry() ======================"
2469
2470 test_56a() {    # was test_56
2471         rm -rf $DIR/d56
2472         $SETSTRIPE -d $DIR
2473         mkdir $DIR/d56
2474         mkdir $DIR/d56/dir
2475         NUMFILES=3
2476         NUMFILESx2=$(($NUMFILES * 2))
2477         for i in `seq 1 $NUMFILES` ; do
2478                 touch $DIR/d56/file$i
2479                 touch $DIR/d56/dir/file$i
2480         done
2481
2482         # test lfs getstripe with --recursive
2483         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
2484         [ $FILENUM -eq $NUMFILESx2 ] || error \
2485                 "lfs getstripe --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
2486         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
2487         [ $FILENUM -eq $NUMFILES ] || error \
2488                 "lfs getstripe $DIR/d56 without --recursive wrong: found $FILENUM, expected $NUMFILES"
2489         echo "lfs getstripe --recursive passed."
2490
2491         # test lfs getstripe with file instead of dir
2492         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
2493         [ $FILENUM  -eq 1 ] || error \
2494                  "lfs getstripe $DIR/d56/file1 wrong:found $FILENUM, expected 1"
2495         echo "lfs getstripe file passed."
2496
2497         #test lfs getstripe with --verbose
2498         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
2499                 error "lfs getstripe --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
2500         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
2501                 "lfs getstripe $DIR/d56 without --verbose wrong: should not show lmm_magic info"
2502         echo "lfs getstripe --verbose passed."
2503
2504         #test lfs getstripe with --obd
2505         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
2506                 error "lfs getstripe --obd wrong_uuid should return error message"
2507
2508         [  "$OSTCOUNT" -lt 2 ] && \
2509                 skip "skipping other lfs getstripe --obd test" && return
2510         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1[    ]/p' | wc -l`
2511         OBDUUID=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1:/p' | awk '{print $2}'`
2512         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | wc -l`
2513         [ $FOUND -eq $FILENUM ] || \
2514                 error "lfs getstripe --obd wrong: found $FOUND, expected $FILENUM"
2515         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 | sed '/^[   ]*1[    ]/d' |\
2516                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
2517                 error "lfs getstripe --obd wrong: should not show file on other obd"
2518         echo "lfs getstripe --obd passed."
2519 }
2520 run_test 56a "check lfs getstripe ===================================="
2521
2522 NUMFILES=3
2523 NUMDIRS=3
2524 setup_56() {
2525         LOCAL_NUMFILES=$1
2526         LOCAL_NUMDIRS=$2
2527         if [ ! -d "$DIR/${tdir}g" ] ; then
2528                 mkdir -p $DIR/${tdir}g
2529                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2530                         touch $DIR/${tdir}g/file$i
2531                 done
2532                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2533                         mkdir $DIR/${tdir}g/dir$i
2534                         for j in `seq 1 $LOCAL_NUMFILES` ; do
2535                                 touch $DIR/${tdir}g/dir$i/file$j
2536                         done
2537                 done
2538         fi
2539 }
2540
2541 setup_56_special() {
2542         LOCAL_NUMFILES=$1
2543         LOCAL_NUMDIRS=$2
2544         TDIR=$DIR/${tdir}g
2545         setup_56 $1 $2
2546         if [ ! -e "$TDIR/loop1b" ] ; then
2547                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2548                         mknod $TDIR/loop${i}b b 7 $i
2549                         mknod $TDIR/null${i}c c 1 3
2550                         ln -s $TDIR/file1 $TDIR/link${i}l
2551                 done
2552                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2553                         mknod $TDIR/dir$i/loop${i}b b 7 $i
2554                         mknod $TDIR/dir$i/null${i}c c 1 3
2555                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
2556                 done
2557         fi
2558 }
2559
2560 test_56g() {
2561         $LSTRIPE -d $DIR
2562
2563         setup_56 $NUMFILES $NUMDIRS
2564
2565         EXPECTED=$(($NUMDIRS + 2))
2566         # test lfs find with -name
2567         for i in `seq 1 $NUMFILES` ; do
2568                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
2569                 [ $NUMS -eq $EXPECTED ] || error \
2570                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2571         done
2572         echo "lfs find -name passed."
2573 }
2574 run_test 56g "check lfs find -name ============================="
2575
2576 test_56h() {
2577         $LSTRIPE -d $DIR
2578
2579         setup_56 $NUMFILES $NUMDIRS
2580
2581         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
2582         # test lfs find with ! -name
2583         for i in `seq 1 $NUMFILES` ; do
2584                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
2585                 [ $NUMS -eq $EXPECTED ] || error \
2586                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2587         done
2588         echo "lfs find ! -name passed."
2589 }
2590 run_test 56h "check lfs find ! -name ============================="
2591
2592 test_56i() {
2593        tdir=${tdir}i
2594        mkdir -p $DIR/$tdir
2595        UUID=`$GETSTRIPE $DIR/$tdir | awk '/0: / { print $2 }'`
2596        OUT="`$LFIND -ost $UUID $DIR/$tdir`"
2597        [ "$OUT" ] && error "$LFIND returned directory '$OUT'" || true
2598 }
2599 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
2600
2601 test_56j() {
2602         setup_56_special $NUMFILES $NUMDIRS
2603
2604         EXPECTED=$((NUMDIRS+1))
2605         NUMS=`$LFIND -type d $DIR/${tdir}g | wc -l`
2606         [ $NUMS -eq $EXPECTED ] || \
2607                 error "lfs find -type d $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2608 }
2609 run_test 56j "check lfs find -type d ============================="
2610
2611 test_56k() {
2612         setup_56_special $NUMFILES $NUMDIRS
2613
2614         EXPECTED=$(((NUMDIRS+1) * NUMFILES))
2615         NUMS=`$LFIND -type f $DIR/${tdir}g | wc -l`
2616         [ $NUMS -eq $EXPECTED ] || \
2617                 error "lfs find -type f $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2618 }
2619 run_test 56k "check lfs find -type f ============================="
2620
2621 test_56l() {
2622         setup_56_special $NUMFILES $NUMDIRS
2623
2624         EXPECTED=$((NUMDIRS + NUMFILES))
2625         NUMS=`$LFIND -type b $DIR/${tdir}g | wc -l`
2626         [ $NUMS -eq $EXPECTED ] || \
2627                 error "lfs find -type b $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2628 }
2629 run_test 56l "check lfs find -type b ============================="
2630
2631 test_56m() {
2632         setup_56_special $NUMFILES $NUMDIRS
2633
2634         EXPECTED=$((NUMDIRS + NUMFILES))
2635         NUMS=`$LFIND -type c $DIR/${tdir}g | wc -l`
2636         [ $NUMS -eq $EXPECTED ] || \
2637                 error "lfs find -type c $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2638 }
2639 run_test 56m "check lfs find -type c ============================="
2640
2641 test_56n() {
2642         setup_56_special $NUMFILES $NUMDIRS
2643
2644         EXPECTED=$((NUMDIRS + NUMFILES))
2645         NUMS=`$LFIND -type l $DIR/${tdir}g | wc -l`
2646         [ $NUMS -eq $EXPECTED ] || \
2647                 error "lfs find -type l $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2648 }
2649 run_test 56n "check lfs find -type l ============================="
2650
2651 test_56o() {
2652         setup_56 $NUMFILES $NUMDIRS
2653         TDIR=$DIR/${tdir}g
2654
2655         utime $TDIR/file1 > /dev/null || error
2656         utime $TDIR/file2 > /dev/null || error
2657         utime $TDIR/dir1 > /dev/null || error
2658         utime $TDIR/dir2 > /dev/null || error
2659         utime $TDIR/dir1/file1 > /dev/null || error
2660
2661         EXPECTED=5
2662         NUMS=`$LFIND -mtime +1 $TDIR | wc -l`
2663         [ $NUMS -eq $EXPECTED ] || \
2664                 error "lfs find -mtime $TDIR wrong: found $NUMS, expected $EXPECTED"
2665 }
2666 run_test 56o "check lfs find -mtime for old files =========================="
2667
2668 test_56p() {
2669         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
2670
2671         TDIR=$DIR/${tdir}g
2672         rm -rf $TDIR
2673
2674         setup_56 $NUMFILES $NUMDIRS
2675
2676         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
2677         EXPECTED=$NUMFILES
2678         NUMS="`$LFIND -uid $RUNAS_ID $TDIR | wc -l`"
2679         [ $NUMS -eq $EXPECTED ] || \
2680                 error "lfs find -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
2681
2682         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
2683         NUMS="`$LFIND ! -uid $RUNAS_ID $TDIR | wc -l`"
2684         [ $NUMS -eq $EXPECTED ] || \
2685                 error "lfs find ! -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
2686
2687         echo "lfs find -uid and ! -uid passed."
2688 }
2689 run_test 56p "check lfs find -uid and ! -uid ==============================="
2690
2691 test_56q() {
2692         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
2693
2694         TDIR=$DIR/${tdir}g
2695         rm -rf $TDIR
2696
2697         setup_56 $NUMFILES $NUMDIRS
2698
2699         chgrp $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
2700         EXPECTED=$NUMFILES
2701         NUMS="`$LFIND -gid $RUNAS_ID $TDIR | wc -l`"
2702         [ $NUMS -eq $EXPECTED ] || \
2703                 error "lfs find -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
2704
2705         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
2706         NUMS="`$LFIND ! -gid $RUNAS_ID $TDIR | wc -l`"
2707         [ $NUMS -eq $EXPECTED ] || \
2708                 error "lfs find ! -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
2709
2710         echo "lfs find -gid and ! -gid passed."
2711 }
2712 run_test 56q "check lfs find -gid and ! -gid ==============================="
2713
2714 test_57a() {
2715         # note test will not do anything if MDS is not local
2716         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2717
2718         local MNTDEV="osd.*MDT*.mntdev"
2719         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
2720         [ -z "$DEV" ] && error "can't access $MNTDEV"
2721         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
2722                 do_facet $SINGLEMDS dumpe2fs -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
2723                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
2724                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
2725                 rm $TMP/t57a.dump
2726         done
2727 }
2728 run_test 57a "verify MDS filesystem created with large inodes =="
2729
2730 test_57b() {
2731         FILECOUNT=100
2732         FILE1=$DIR/d57b/f1
2733         FILEN=$DIR/d57b/f$FILECOUNT
2734         rm -rf $DIR/d57b || error "removing $DIR/d57b"
2735         mkdir -p $DIR/d57b || error "creating $DIR/d57b"
2736         echo "mcreating $FILECOUNT files"
2737         createmany -m $DIR/d57b/f 1 $FILECOUNT || \
2738                 error "creating files in $DIR/d57b"
2739
2740         # verify that files do not have EAs yet
2741         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
2742         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
2743
2744         MDSFREE="`lctl get_param -n osd.*MDT0000.kbytesfree 2> /dev/null`"
2745         MDCFREE="`lctl get_param -n mdc.*.kbytesfree | head -n 1`"
2746         echo "opening files to create objects/EAs"
2747         for FILE in `seq -f $DIR/d57b/f%g 1 $FILECOUNT`; do
2748                 $OPENFILE -f O_RDWR $FILE > /dev/null || error "opening $FILE"
2749         done
2750
2751         # verify that files have EAs now
2752         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
2753         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
2754
2755         sleep 1 # make sure we get new statfs data
2756 #       MDSFREE2="`lctl get_param -n mds.*.kbytesfree`"
2757 #       MDCFREE2="`lctl get_param -n mdc.*.kbytesfree`"
2758 #       if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
2759 #               if [ "$MDSFREE" != "$MDSFREE2" ]; then
2760 #                       error "MDC before $MDCFREE != after $MDCFREE2"
2761 #               else
2762 #                       echo "MDC before $MDCFREE != after $MDCFREE2"
2763 #                       echo "unable to confirm if MDS has large inodes"
2764 #               fi
2765 #       fi
2766         rm -rf $DIR/d57b
2767 }
2768 run_test 57b "default LOV EAs are stored inside large inodes ==="
2769
2770 test_58() {
2771     [ -z "$(which wiretest 2>/dev/null)" ] && skip "could not find wiretest" && return
2772     wiretest
2773 }
2774 run_test 58 "verify cross-platform wire constants =============="
2775
2776 test_59() {
2777         echo "touch 130 files"
2778         createmany -o $DIR/f59- 130
2779         echo "rm 130 files"
2780         unlinkmany $DIR/f59- 130
2781         sync
2782         sleep 2
2783         # wait for commitment of removal
2784 }
2785 run_test 59 "verify cancellation of llog records async ========="
2786
2787 TEST60_HEAD="test_60 run $RANDOM"
2788 test_60a() {
2789         [ ! -f run-llog.sh ] && skip "missing subtest run-llog.sh" && return
2790         log "$TEST60_HEAD - from kernel mode"
2791         sh run-llog.sh
2792 }
2793 run_test 60a "llog sanity tests run from kernel module =========="
2794
2795 test_60b() { # bug 6411
2796         dmesg > $DIR/$tfile
2797         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
2798                                  /llog.test/ {
2799                                          if (marker)
2800                                                  from_marker++
2801                                          from_begin++
2802                                  }
2803                                  END {
2804                                          if (marker)
2805                                                  print from_marker
2806                                          else
2807                                                  print from_begin
2808                                  }"`
2809         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
2810 }
2811 run_test 60b "limit repeated messages from CERROR/CWARN ========"
2812
2813 test_60c() {
2814         echo "create 5000 files"
2815         createmany -o $DIR/f60c- 5000
2816 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x13c
2817         lctl set_param fail_loc=0x8000013c
2818         unlinkmany $DIR/f60c- 5000
2819         lctl set_param fail_loc=0
2820 }
2821 run_test 60c "unlink file when mds full"
2822
2823 test_60d() {
2824         SAVEPRINTK=$(lctl get_param -n printk)
2825
2826         # verify "lctl mark" is even working"
2827         MESSAGE="test message ID $RANDOM $$"
2828         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
2829         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
2830
2831         lctl set_param printk=0 || error "set lnet.printk failed"
2832         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
2833         MESSAGE="new test message ID $RANDOM $$"
2834         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
2835         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
2836         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
2837
2838         lctl set_param -n printk="$SAVEPRINTK"
2839 }
2840 run_test 60d "test printk console message masking"
2841
2842 test_61() {
2843         f="$DIR/f61"
2844         dd if=/dev/zero of=$f bs=`page_size` count=1
2845         cancel_lru_locks osc
2846         multiop $f OSMWUc || error
2847         sync
2848 }
2849 run_test 61 "mmap() writes don't make sync hang ================"
2850
2851 # bug 2330 - insufficient obd_match error checking causes LBUG
2852 test_62() {
2853         f="$DIR/f62"
2854         echo foo > $f
2855         cancel_lru_locks osc
2856         lctl set_param fail_loc=0x405
2857         cat $f && error "cat succeeded, expect -EIO"
2858         lctl set_param fail_loc=0
2859 }
2860 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
2861 # match every page all of the time.
2862 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
2863
2864 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
2865 test_63a() {    # was test_63
2866         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
2867         lctl set_param -n osc.*.max_dirty_mb 0
2868         for i in `seq 10` ; do
2869                 dd if=/dev/zero of=$DIR/f63 bs=8k &
2870                 sleep 5
2871                 kill $!
2872                 sleep 1
2873         done
2874
2875         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
2876         rm -f $DIR/f63 || true
2877 }
2878 run_test 63a "Verify oig_wait interruption does not crash ======="
2879
2880 # bug 2248 - async write errors didn't return to application on sync
2881 # bug 3677 - async write errors left page locked
2882 test_63b() {
2883         debugsave
2884         lctl set_param debug=-1
2885
2886         # ensure we have a grant to do async writes
2887         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
2888         rm $DIR/$tfile
2889
2890         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
2891         lctl set_param fail_loc=0x80000406
2892         multiop $DIR/$tfile Owy && \
2893                 error "sync didn't return ENOMEM"
2894         sync; sleep 2; sync     # do a real sync this time to flush page
2895         lctl get_param -n llite.*.dump_page_cache | grep locked && \
2896                 error "locked page left in cache after async error" || true
2897         debugrestore
2898 }
2899 run_test 63b "async write errors should be returned to fsync ==="
2900
2901 test_64a () {
2902         df $DIR
2903         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
2904 }
2905 run_test 64a "verify filter grant calculations (in kernel) ====="
2906
2907 test_64b () {
2908         [ ! -f oos.sh ] && skip "missing subtest oos.sh" && return
2909         sh oos.sh $MOUNT
2910 }
2911 run_test 64b "check out-of-space detection on client ==========="
2912
2913 # bug 1414 - set/get directories' stripe info
2914 test_65a() {
2915         mkdir -p $DIR/d65
2916         touch $DIR/d65/f1
2917         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
2918 }
2919 run_test 65a "directory with no stripe info ===================="
2920
2921 test_65b() {
2922         mkdir -p $DIR/d65
2923         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2924         touch $DIR/d65/f2
2925         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
2926 }
2927 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
2928
2929 test_65c() {
2930         if [ $OSTCOUNT -gt 1 ]; then
2931                 mkdir -p $DIR/d65
2932                 $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 4)) -i 1 \
2933                         -c $(($OSTCOUNT - 1)) || error "setstripe"
2934                 touch $DIR/d65/f3
2935                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
2936         fi
2937 }
2938 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
2939
2940 test_65d() {
2941         mkdir -p $DIR/d65
2942         if [ $STRIPECOUNT -le 0 ]; then
2943                 sc=1
2944         elif [ $STRIPECOUNT -gt 160 ]; then
2945 #LOV_MAX_STRIPE_COUNT is 160
2946                 [ $OSTCOUNT -gt 160 ] && sc=160 || sc=$(($OSTCOUNT - 1))
2947         else
2948                 sc=$(($STRIPECOUNT - 1))
2949         fi
2950         $SETSTRIPE $DIR/d65 -s $STRIPESIZE -c $sc || error "setstripe"
2951         touch $DIR/d65/f4 $DIR/d65/f5
2952         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
2953 }
2954 run_test 65d "directory setstripe $STRIPESIZE -1 stripe_count =============="
2955
2956 test_65e() {
2957         mkdir -p $DIR/d65
2958
2959         $SETSTRIPE $DIR/d65 || error "setstripe"
2960         $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
2961         touch $DIR/d65/f6
2962         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
2963 }
2964 run_test 65e "directory setstripe defaults ======================="
2965
2966 test_65f() {
2967         mkdir -p $DIR/d65f
2968         $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
2969 }
2970 run_test 65f "dir setstripe permission (should return error) ==="
2971
2972 test_65g() {
2973         mkdir -p $DIR/d65
2974         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2975         $SETSTRIPE -d $DIR/d65 || error "setstripe"
2976         $GETSTRIPE -v $DIR/d65 | grep "Default" || \
2977                 error "delete default stripe failed"
2978 }
2979 run_test 65g "directory setstripe -d ==========================="
2980
2981 test_65h() {
2982         mkdir -p $DIR/d65
2983         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2984         mkdir -p $DIR/d65/dd1
2985         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
2986           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
2987 }
2988 run_test 65h "directory stripe info inherit ===================="
2989
2990 test_65i() { # bug6367
2991         $SETSTRIPE $MOUNT -s 65536 -c -1
2992 }
2993 run_test 65i "set non-default striping on root directory (bug 6367)="
2994
2995 test_65j() { # bug6367
2996         sync; sleep 1
2997         # if we aren't already remounting for each test, do so for this test
2998         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
2999                 cleanup || error "failed to unmount"
3000                 setup
3001         fi
3002         $SETSTRIPE -d $MOUNT || error "setstripe failed"
3003 }
3004 run_test 65j "set default striping on root directory (bug 6367)="
3005
3006 test_65k() { # bug11679
3007         [ "$OSTCOUNT" -lt 2 ] && skip "too few OSTs" && return
3008         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3009
3010         echo "Check OST status: "
3011         MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
3012         for OSC in $MDS_OSCS; do
3013                 echo $OSC "is activate"
3014                 do_facet $SINGLEMDS lctl --device %$OSC activate
3015         done
3016         do_facet client mkdir -p $DIR/$tdir
3017         for INACTIVE_OSC in $MDS_OSCS; do
3018                 echo $INACTIVE_OSC "is Deactivate:"
3019                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC deactivate
3020                 for STRIPE_OSC in $MDS_OSCS; do
3021                         STRIPE_OST=`osc_to_ost $STRIPE_OSC`
3022                         STRIPE_INDEX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
3023                                       grep $STRIPE_OST | awk -F: '{print $1}' | head -n 1`
3024
3025                         [ -f $DIR/$tdir/${STRIPE_INDEX} ] && continue
3026                         echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1"
3027                         do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1
3028                         RC=$?
3029                         [ $RC -ne 0 ] && error "setstripe should have succeeded"
3030                 done
3031                 do_facet client rm -f $DIR/$tdir/*
3032                 echo $INACTIVE_OSC "is Activate."
3033                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
3034         done
3035 }
3036 run_test 65k "validate manual striping works properly with deactivated OSCs"
3037
3038 test_65l() { # bug 12836
3039         mkdir -p $DIR/$tdir/test_dir
3040         $SETSTRIPE $DIR/$tdir/test_dir -c -1
3041         $LFS find -mtime -1 $DIR/$tdir >/dev/null
3042 }
3043 run_test 65l "lfs find on -1 stripe dir ========================"
3044
3045 # bug 2543 - update blocks count on client
3046 test_66() {
3047         COUNT=${COUNT:-8}
3048         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
3049         sync; sleep 1; sync
3050         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
3051         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
3052 }
3053 run_test 66 "update inode blocks count on client ==============="
3054
3055 LLOOP=
3056 cleanup_68() {
3057         trap 0
3058         if [ ! -z "$LLOOP" ]; then
3059                 swapoff $LLOOP || error "swapoff failed"
3060                 $LCTL blockdev_detach $LLOOP || error "detach failed"
3061                 rm -f $LLOOP
3062                 unset LLOOP
3063         fi
3064         rm -f $DIR/f68
3065 }
3066
3067 meminfo() {
3068         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
3069 }
3070
3071 swap_used() {
3072         swapon -s | awk '($1 == "'$1'") { print $4 }'
3073 }
3074
3075
3076 # excercise swapping to lustre by adding a high priority swapfile entry
3077 # and then consuming memory until it is used.
3078 test_68() {
3079         [ "$UID" != 0 ] && skip "must run as root" && return
3080         lctl get_param -n devices | grep -q obdfilter && \
3081                 skip "local OST" && return
3082
3083         grep -q llite_lloop /proc/modules
3084         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
3085
3086         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
3087                 skip "can't reliably test swap with TCP" && return
3088
3089         MEMTOTAL=`meminfo MemTotal`
3090         NR_BLOCKS=$((MEMTOTAL>>8))
3091         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
3092
3093         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3094         dd if=/dev/zero of=$DIR/f68 bs=64k seek=$NR_BLOCKS count=1
3095         mkswap $DIR/f68
3096
3097         $LCTL blockdev_attach $DIR/f68 $LLOOP || error "attach failed"
3098
3099         trap cleanup_68 EXIT
3100
3101         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
3102
3103         echo "before: `swapon -s | grep $LLOOP`"
3104         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
3105         echo "after: `swapon -s | grep $LLOOP`"
3106         SWAPUSED=`swap_used $LLOOP`
3107
3108         cleanup_68
3109
3110         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
3111 }
3112 run_test 68 "support swapping to Lustre ========================"
3113
3114 # bug5265, obdfilter oa2dentry return -ENOENT
3115 # #define OBD_FAIL_OST_ENOENT 0x217
3116 test_69() {
3117         remote_ost_nodsh && skip "remote OST with nodsh" && return
3118
3119         f="$DIR/$tfile"
3120         $SETSTRIPE $f -c 1 -i 0
3121
3122         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
3123
3124         do_facet ost1 lctl set_param fail_loc=0x217
3125         truncate $f 1 # vmtruncate() will ignore truncate() error.
3126         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
3127
3128         do_facet ost1 lctl set_param fail_loc=0
3129         $DIRECTIO write $f 0 2 || error "write error"
3130
3131         cancel_lru_locks osc
3132         $DIRECTIO read $f 0 1 || error "read error"
3133
3134         do_facet ost1 lctl set_param fail_loc=0x217
3135         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
3136
3137         do_facet ost1 lctl set_param fail_loc=0
3138         rm -f $f
3139 }
3140 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
3141
3142 test_71() {
3143     sh rundbench -C -D $DIR 2 || error "dbench failed!"
3144 }
3145 run_test 71 "Running dbench on lustre (don't segment fault) ===="
3146
3147 test_72() { # bug 5695 - Test that on 2.6 remove_suid works properly
3148         check_kernel_version 43 || return 0
3149         [ "$RUNAS_ID" = "$UID" ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
3150
3151         # Check that testing environment is properly set up. Skip if not
3152         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS || {
3153                 skip "User $RUNAS_ID does not exist - skipping"
3154                 return 0
3155         }
3156         # We had better clear the $DIR to get enough space for dd
3157         rm -rf $DIR/*
3158         touch $DIR/f72
3159         chmod 777 $DIR/f72
3160         chmod ug+s $DIR/f72
3161         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
3162         # See if we are still setuid/sgid
3163         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
3164         # Now test that MDS is updated too
3165         cancel_lru_locks mdc
3166         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
3167         true
3168 }
3169 run_test 72 "Test that remove suid works properly (bug5695) ===="
3170
3171 # bug 3462 - multiple simultaneous MDC requests
3172 test_73() {
3173         mkdir $DIR/d73-1
3174         mkdir $DIR/d73-2
3175         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
3176         pid1=$!
3177
3178         lctl set_param fail_loc=0x80000129
3179         multiop $DIR/d73-1/f73-2 Oc &
3180         sleep 1
3181         lctl set_param fail_loc=0
3182
3183         multiop $DIR/d73-2/f73-3 Oc &
3184         pid3=$!
3185
3186         kill -USR1 $pid1
3187         wait $pid1 || return 1
3188
3189         sleep 25
3190
3191         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
3192         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
3193         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
3194
3195         rm -rf $DIR/d73-*
3196 }
3197 run_test 73 "multiple MDC requests (should not deadlock)"
3198
3199 test_74a() { # bug 6149, 6184
3200         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
3201         #
3202         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
3203         # will spin in a tight reconnection loop
3204         touch $DIR/f74a
3205         lctl set_param fail_loc=0x8000030e
3206         # get any lock that won't be difficult - lookup works.
3207         ls $DIR/f74a
3208         lctl set_param fail_loc=0
3209         true
3210 }
3211 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
3212
3213 test_74b() { # bug 13310
3214         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
3215         #
3216         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
3217         # will spin in a tight reconnection loop
3218         lctl set_param fail_loc=0x8000030e
3219         # get a "difficult" lock
3220         touch $DIR/f74b
3221         lctl set_param fail_loc=0
3222         true
3223 }
3224 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
3225
3226 JOIN=${JOIN:-"lfs join"}
3227 F75=$DIR/f75
3228 F128k=${F75}_128k
3229 FHEAD=${F75}_head
3230 FTAIL=${F75}_tail
3231 export T75_PREP=no
3232 test75_prep() {
3233         [ $T75_PREP = "yes" ] && return
3234         echo "using F75=$F75, F128k=$F128k, FHEAD=$FHEAD, FTAIL=$FTAIL"
3235
3236         dd if=/dev/urandom of=${F75}_128k bs=128k count=1 || error "dd failed"
3237         log "finished dd"
3238         chmod 777 ${F128k}
3239         T75_PREP=yes
3240 }
3241
3242 test_75a() {
3243 #       skipped temporarily: we do not have join file currently
3244 #       please remove this when ready - huanghua
3245         return
3246         test75_prep
3247
3248         cp -p ${F128k} ${FHEAD}
3249         log "finished cp to $FHEAD"
3250         cp -p ${F128k} ${FTAIL}
3251         log "finished cp to $FTAIL"
3252         cat ${F128k} ${F128k} > ${F75}_sim_sim
3253
3254         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3255         log "finished join $FHEAD to ${F75}_sim_sim"
3256         cmp ${FHEAD} ${F75}_sim_sim || error "${FHEAD} ${F75}_sim_sim differ"
3257         log "finished cmp $FHEAD to ${F75}_sim_sim"
3258         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} still exist after join"
3259 }
3260 run_test 75a "TEST join file ===================================="
3261
3262 test_75b() {
3263 #       skipped temporarily: we do not have join file currently
3264 #       please remove this when ready - huanghua
3265         return
3266         test75_prep
3267
3268         cp -p ${F128k} ${FTAIL}
3269         cat ${F75}_sim_sim >> ${F75}_join_sim
3270         cat ${F128k} >> ${F75}_join_sim
3271         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3272         cmp ${FHEAD} ${F75}_join_sim || \
3273                 error "${FHEAD} ${F75}_join_sim are different"
3274         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join"
3275 }
3276 run_test 75b "TEST join file 2 =================================="
3277
3278 test_75c() {
3279 #       skipped temporarily: we do not have join file currently
3280 #       please remove this when ready - huanghua
3281         return
3282         test75_prep
3283
3284         cp -p ${F128k} ${FTAIL}
3285         cat ${F128k} >> ${F75}_sim_join
3286         cat ${F75}_join_sim >> ${F75}_sim_join
3287         $JOIN ${FTAIL} ${FHEAD} || error "join error"
3288         cmp ${FTAIL} ${F75}_sim_join || \
3289                 error "${FTAIL} ${F75}_sim_join are different"
3290         $CHECKSTAT -a ${FHEAD} || error "tail ${FHEAD} exist after join"
3291 }
3292 run_test 75c "TEST join file 3 =================================="
3293
3294 test_75d() {
3295 #       skipped temporarily: we do not have join file currently
3296 #       please remove this when ready - huanghua
3297         return
3298         test75_prep
3299
3300         cp -p ${F128k} ${FHEAD}
3301         cp -p ${F128k} ${FHEAD}_tmp
3302         cat ${F75}_sim_sim >> ${F75}_join_join
3303         cat ${F75}_sim_join >> ${F75}_join_join
3304         $JOIN ${FHEAD} ${FHEAD}_tmp || error "join ${FHEAD} ${FHEAD}_tmp error"
3305         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3306         cmp ${FHEAD} ${F75}_join_join ||error "${FHEAD} ${F75}_join_join differ"        $CHECKSTAT -a ${FHEAD}_tmp || error "${FHEAD}_tmp exist after join"
3307         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join (2)"
3308 }
3309 run_test 75d "TEST join file 4 =================================="
3310
3311 test_75e() {
3312 #       skipped temporarily: we do not have join file currently
3313 #       please remove this when ready - huanghua
3314         return
3315         test75_prep
3316
3317         rm -rf ${FHEAD} || "delete join file error"
3318 }
3319 run_test 75e "TEST join file 5 (remove joined file) ============="
3320
3321 test_75f() {
3322 #       skipped temporarily: we do not have join file currently
3323 #       please remove this when ready - huanghua
3324         return
3325         test75_prep
3326
3327         cp -p ${F128k} ${F75}_join_10_compare
3328         cp -p ${F128k} ${F75}_join_10
3329         for ((i = 0; i < 10; i++)); do
3330                 cat ${F128k} >> ${F75}_join_10_compare
3331                 cp -p ${F128k} ${FTAIL}
3332                 $JOIN ${F75}_join_10 ${FTAIL} || \
3333                         error "join ${F75}_join_10 ${FTAIL} error"
3334                 $CHECKSTAT -a ${FTAIL} || error "tail file exist after join"
3335         done
3336         cmp ${F75}_join_10 ${F75}_join_10_compare || \
3337                 error "files ${F75}_join_10 ${F75}_join_10_compare differ"
3338 }
3339 run_test 75f "TEST join file 6 (join 10 files) =================="
3340
3341 test_75g() {
3342 #       skipped temporarily: we do not have join file currently
3343 #       please remove this when ready - huanghua
3344         return
3345         [ ! -f ${F75}_join_10 ] && echo "${F75}_join_10 missing" && return
3346         $LFS getstripe ${F75}_join_10
3347
3348         $OPENUNLINK ${F75}_join_10 ${F75}_join_10 || error "files unlink open"
3349
3350         ls -l $F75*
3351 }
3352 run_test 75g "TEST join file 7 (open unlink) ===================="
3353
3354 num_inodes() {
3355         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
3356 }
3357
3358 test_76() { # bug 1443
3359         DETH=$(grep deathrow /proc/kallsyms /proc/ksyms 2> /dev/null | wc -l)
3360         [ $DETH -eq 0 ] && skip "No _iget." && return 0
3361         BEFORE_INODES=`num_inodes`
3362         echo "before inodes: $BEFORE_INODES"
3363         local COUNT=1000
3364         [ "$SLOW" = "no" ] && COUNT=100
3365         for i in `seq $COUNT`; do
3366                 touch $DIR/$tfile
3367                 rm -f $DIR/$tfile
3368         done
3369         AFTER_INODES=`num_inodes`
3370         echo "after inodes: $AFTER_INODES"
3371         [ $AFTER_INODES -gt $((BEFORE_INODES + 32)) ] && \
3372                 error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
3373         true
3374 }
3375 run_test 76 "destroy duplicate inodes in client inode cache ===="
3376
3377 export ORIG_CSUM=""
3378 set_checksums()
3379 {
3380         # Note: in sptlrpc modes which enable its own bulk checksum, the
3381         # original crc32_le bulk checksum will be automatically disabled,
3382         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
3383         # will be checked by sptlrpc code against sptlrpc bulk checksum.
3384         # In this case set_checksums() will not be no-op, because sptlrpc
3385         # bulk checksum will be enabled all through the test.
3386
3387         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
3388         lctl set_param -n osc.*.checksums $1
3389         return 0
3390 }
3391
3392 export ORIG_CSUM_TYPE=""
3393 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
3394 set_checksum_type()
3395 {
3396         [ "$ORIG_CSUM_TYPE" ] || \
3397                 ORIG_CSUM_TYPE=`lctl get_param -n osc/*osc-[^mM]*/checksum_type |
3398                                 sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`
3399         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
3400         log "set checksum type to $1"
3401         return 0
3402 }
3403 F77_TMP=$TMP/f77-temp
3404 F77SZ=8
3405 setup_f77() {
3406         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
3407                 error "error writing to $F77_TMP"
3408 }
3409
3410 test_77a() { # bug 10889
3411         [ ! -f $F77_TMP ] && setup_f77
3412         set_checksums 1
3413         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
3414         set_checksums 0
3415 }
3416 run_test 77a "normal checksum read/write operation ============="
3417
3418 test_77b() { # bug 10889
3419         [ ! -f $F77_TMP ] && setup_f77
3420         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3421         lctl set_param fail_loc=0x80000409
3422         set_checksums 1
3423         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
3424                 error "dd error: $?"
3425         lctl set_param fail_loc=0
3426         set_checksums 0
3427 }
3428 run_test 77b "checksum error on client write ===================="
3429
3430 test_77c() { # bug 10889
3431         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
3432         set_checksums 1
3433         for algo in $CKSUM_TYPES; do
3434                 cancel_lru_locks osc
3435                 set_checksum_type $algo
3436                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3437                 lctl set_param fail_loc=0x80000408
3438                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
3439                 lctl set_param fail_loc=0
3440         done
3441         set_checksums 0
3442         set_checksum_type $ORIG_CSUM_TYPE
3443 }
3444 run_test 77c "checksum error on client read ==================="
3445
3446 test_77d() { # bug 10889
3447         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3448         lctl set_param fail_loc=0x80000409
3449         set_checksums 1
3450         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3451                 error "direct write: rc=$?"
3452         lctl set_param fail_loc=0
3453         set_checksums 0
3454 }
3455 run_test 77d "checksum error on OST direct write ==============="
3456
3457 test_77e() { # bug 10889
3458         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
3459         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3460         lctl set_param fail_loc=0x80000408
3461         set_checksums 1
3462         cancel_lru_locks osc
3463         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3464                 error "direct read: rc=$?"
3465         lctl set_param fail_loc=0
3466         set_checksums 0
3467 }
3468 run_test 77e "checksum error on OST direct read ================"
3469
3470 test_77f() { # bug 10889
3471         set_checksums 1
3472         for algo in $CKSUM_TYPES; do
3473                 cancel_lru_locks osc
3474                 set_checksum_type $algo
3475                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3476                 lctl set_param fail_loc=0x409
3477                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
3478                         error "direct write succeeded"
3479                 lctl set_param fail_loc=0
3480         done
3481         set_checksum_type $ORIG_CSUM_TYPE
3482         set_checksums 0
3483 }
3484 run_test 77f "repeat checksum error on write (expect error) ===="
3485
3486 test_77g() { # bug 10889
3487         remote_ost_nodsh && skip "remote OST with nodsh" && return
3488
3489         [ ! -f $F77_TMP ] && setup_f77
3490
3491         $SETSTRIPE $DIR/f77g -c 1 -i 0
3492         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
3493         do_facet ost1 lctl set_param fail_loc=0x8000021a
3494         set_checksums 1
3495         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
3496                 error "write error: rc=$?"
3497         do_facet ost1 lctl set_param fail_loc=0
3498         set_checksums 0
3499 }
3500 run_test 77g "checksum error on OST write ======================"
3501
3502 test_77h() { # bug 10889
3503         remote_ost_nodsh && skip "remote OST with nodsh" && return
3504
3505         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
3506         cancel_lru_locks osc
3507         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
3508         do_facet ost1 lctl set_param fail_loc=0x8000021b
3509         set_checksums 1
3510         cmp $F77_TMP $DIR/f77g || error "file compare failed"
3511         do_facet ost1 lctl set_param fail_loc=0
3512         set_checksums 0
3513 }
3514 run_test 77h "checksum error on OST read ======================="
3515
3516 test_77i() { # bug 13805
3517         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
3518         lctl set_param fail_loc=0x40b
3519         remount_client $MOUNT
3520         lctl set_param fail_loc=0
3521         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
3522                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
3523                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
3524                 [ "$algo" = "crc32" ] || error "algo set to $algo instead of crc32"
3525         done
3526         remount_client $MOUNT
3527 }
3528 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
3529
3530 test_77j() { # bug 13805
3531         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
3532         lctl set_param fail_loc=0x40c
3533         remount_client $MOUNT
3534         lctl set_param fail_loc=0
3535         sleep 2 # wait async osc connect to finish
3536         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
3537                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
3538                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
3539                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
3540         done
3541         remount_client $MOUNT
3542 }
3543 run_test 77j "client only supporting ADLER32 ===================="
3544
3545 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
3546 rm -f $F77_TMP
3547 unset F77_TMP
3548
3549 test_78() { # bug 10901
3550         NSEQ=5
3551         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
3552         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
3553         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
3554         echo "MemTotal: $MEMTOTAL"
3555 # reserve 256MB of memory for the kernel and other running processes,
3556 # and then take 1/2 of the remaining memory for the read/write buffers.
3557         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
3558         echo "Mem to use for directio: $MEMTOTAL"
3559         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
3560         [ $F78SIZE -gt 512 ] && F78SIZE=512
3561         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
3562         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
3563         echo "Smallest OST: $SMALLESTOST"
3564         [ $SMALLESTOST -lt 10240 ] && \
3565                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
3566
3567         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 5)) ] && \
3568                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 5))
3569         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
3570         echo "File size: $F78SIZE"
3571         $SETSTRIPE $DIR/$tfile -c -1 || error "setstripe failed"
3572         for i in `seq 1 $NSEQ`
3573         do
3574                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
3575                 echo directIO rdwr round $i of $NSEQ
3576                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
3577         done
3578
3579         rm -f $DIR/$tfile
3580 }
3581 run_test 78 "handle large O_DIRECT writes correctly ============"
3582
3583 test_79() { # bug 12743
3584         wait_delete_completed
3585
3586         BKTOTAL=$(calc_osc_kbytes kbytestotal)
3587         BKFREE=$(calc_osc_kbytes kbytesfree)
3588         BKAVAIL=$(calc_osc_kbytes kbytesavail)
3589
3590         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
3591         DFTOTAL=`echo $STRING | cut -d, -f1`
3592         DFUSED=`echo $STRING  | cut -d, -f2`
3593         DFAVAIL=`echo $STRING | cut -d, -f3`
3594         DFFREE=$(($DFTOTAL - $DFUSED))
3595
3596         ALLOWANCE=$((64 * $OSTCOUNT))
3597
3598         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
3599            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
3600                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
3601         fi
3602         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
3603            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
3604                 error "df free($DFFREE) mismatch OST free($BKFREE)"
3605         fi
3606         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
3607            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
3608                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
3609         fi
3610 }
3611 run_test 79 "df report consistency check ======================="
3612
3613 test_80() { # bug 10718
3614         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
3615         sync; sleep 1; sync
3616         BEFORE=`date +%s`
3617         cancel_lru_locks OSC
3618         AFTER=`date +%s`
3619         DIFF=$((AFTER-BEFORE))
3620         if [ $DIFF -gt 1 ] ; then
3621                 error "elapsed for 1M@1T = $DIFF"
3622         fi
3623         true
3624 }
3625 run_test 80 "Page eviction is equally fast at high offsets too  ===="
3626
3627 # on the LLNL clusters, runas will still pick up root's $TMP settings,
3628 # which will not be writable for the runas user, and then you get a CVS
3629 # error message with a corrupt path string (CVS bug) and panic.
3630 # We're not using much space, so just stick it in /tmp, which is safe.
3631 OLDTMPDIR=$TMPDIR
3632 OLDTMP=$TMP
3633 TMPDIR=/tmp
3634 TMP=/tmp
3635 OLDHOME=$HOME
3636 [ $RUNAS_ID -ne $UID ] && HOME=/tmp
3637
3638 test_99a() {
3639         mkdir -p $DIR/d99cvsroot
3640         chown $RUNAS_ID $DIR/d99cvsroot
3641         $RUNAS cvs -d $DIR/d99cvsroot init || error
3642 }
3643 run_test 99a "cvs init ========================================="
3644
3645 test_99b() {
3646         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3647         [ ! -d $DIR/d99cvsroot ] && test_99a
3648         cd /etc/init.d
3649         # some versions of cvs import exit(1) when asked to import links or
3650         # files they can't read.  ignore those files.
3651         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
3652                         ! -perm +4 -printf '-I %f\n')
3653         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
3654                 d99reposname vtag rtag
3655 }
3656 run_test 99b "cvs import ======================================="
3657
3658 test_99c() {
3659         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3660         [ ! -d $DIR/d99cvsroot ] && test_99b
3661         cd $DIR
3662         mkdir -p $DIR/d99reposname
3663         chown $RUNAS_ID $DIR/d99reposname
3664         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
3665 }
3666 run_test 99c "cvs checkout ====================================="
3667
3668 test_99d() {
3669         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3670         [ ! -d $DIR/d99cvsroot ] && test_99c
3671         cd $DIR/d99reposname
3672         $RUNAS touch foo99
3673         $RUNAS cvs add -m 'addmsg' foo99
3674 }
3675 run_test 99d "cvs add =========================================="
3676
3677 test_99e() {
3678         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3679         [ ! -d $DIR/d99cvsroot ] && test_99c
3680         cd $DIR/d99reposname
3681         $RUNAS cvs update
3682 }
3683 run_test 99e "cvs update ======================================="
3684
3685 test_99f() {
3686         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3687         [ ! -d $DIR/d99cvsroot ] && test_99d
3688         cd $DIR/d99reposname
3689         $RUNAS cvs commit -m 'nomsg' foo99
3690 }
3691 run_test 99f "cvs commit ======================================="
3692
3693 test_100() {
3694         remote_ost_nodsh && skip "remote OST with nodsh" && return
3695         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3696         remote_servers || \
3697                 { skip "useless for local single node setup" && return; }
3698
3699         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
3700                 [ "$PROT" != "$NETTYPE" ] && continue
3701                 RPORT=$(echo $REMOTE | cut -d: -f2)
3702                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
3703
3704                 rc=0
3705                 LPORT=`echo $LOCAL | cut -d: -f2`
3706                 if [ $LPORT -ge 1024 ]; then
3707                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
3708                         netstat -tna
3709                         error "local: $LPORT > 1024, remote: $RPORT"
3710                 fi
3711         done
3712         [ "$rc" = 0 ] || error "privileged port not found" )
3713 }
3714 run_test 100 "check local port using privileged port ==========="
3715
3716 function get_named_value()
3717 {
3718     local tag
3719
3720     tag=$1
3721     while read ;do
3722         line=$REPLY
3723         case $line in
3724         $tag*)
3725             echo $line | sed "s/^$tag//"
3726             break
3727             ;;
3728         esac
3729     done
3730 }
3731
3732 export CACHE_MAX=`lctl get_param -n llite.*.max_cached_mb | head -n 1`
3733 cleanup_101() {
3734         lctl set_param -n llite.*.max_cached_mb $CACHE_MAX
3735         trap 0
3736 }
3737
3738 test_101() {
3739         local s
3740         local discard
3741         local nreads=10000
3742         [ "$CPU" = "UML" ] && nreads=1000
3743         local cache_limit=32
3744
3745         lctl set_param -n osc.*-osc*.rpc_stats 0
3746         trap cleanup_101 EXIT
3747         lctl set_param -n llite.*.read_ahead_stats 0
3748         lctl set_param -n llite.*.max_cached_mb $cache_limit
3749
3750         #
3751         # randomly read 10000 of 64K chunks from file 3x 32MB in size
3752         #
3753         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
3754         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
3755
3756         discard=0
3757         for s in `lctl get_param -n llite.*.read_ahead_stats | \
3758                 get_named_value 'read but discarded' | cut -d" " -f1`; do
3759                         discard=$(($discard + $s))
3760         done
3761         cleanup_101
3762
3763         if [ $(($discard * 10)) -gt $nreads ] ;then
3764                 lctl get_param osc.*-osc*.rpc_stats
3765                 lctl get_param llite.*.read_ahead_stats
3766                 error "too many ($discard) discarded pages"
3767         fi
3768         rm -f $DIR/$tfile || true
3769 }
3770 run_test 101 "check read-ahead for random reads ================"
3771
3772 export SETUP_TEST101=no
3773 setup_test101() {
3774         [ "$SETUP_TEST101" = "yes" ] && return
3775         mkdir -p $DIR/$tdir
3776         STRIPE_SIZE=1048576
3777         STRIPE_COUNT=$OSTCOUNT
3778         STRIPE_OFFSET=0
3779
3780         trap cleanup_test101 EXIT
3781         # prepare the read-ahead file
3782         $SETSTRIPE $DIR/$tfile -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT
3783
3784         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
3785         SETUP_TEST101=yes
3786 }
3787
3788 cleanup_test101() {
3789         [ "$SETUP_TEST101" = "yes" ] || return
3790         trap 0
3791         rm -rf $DIR/$tdir
3792         SETUP_TEST101=no
3793 }
3794
3795 calc_total() {
3796         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
3797 }
3798
3799 ra_check_101() {
3800         local READ_SIZE=$1
3801         local STRIPE_SIZE=1048576
3802         local RA_INC=1048576
3803         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
3804         local FILE_LENGTH=$((64*100))
3805         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
3806                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
3807         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
3808                         get_named_value 'read but discarded' | \
3809                         cut -d" " -f1 | calc_total`
3810
3811         if [ $DISCARD -gt $discard_limit ]; then
3812                 lctl get_param llite.*.read_ahead_stats
3813                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
3814         else
3815                 echo "Read-ahead success for size ${READ_SIZE}"
3816         fi
3817 }
3818
3819 test_101b() {
3820         [ "$OSTCOUNT" -lt "2" ] && skip "skipping stride IO stride-ahead test" && return
3821         local STRIPE_SIZE=1048576
3822         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
3823         local FILE_LENGTH=$((STRIPE_SIZE*100))
3824         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
3825         # prepare the read-ahead file
3826         setup_test101
3827         cancel_lru_locks osc
3828         for BIDX in 2 4 8 16 32 64 128 256
3829         do
3830                 local BSIZE=$((BIDX*4096))
3831                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
3832                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
3833                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
3834                 $LCTL set_param -n llite.*.read_ahead_stats 0
3835                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
3836                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
3837                 cancel_lru_locks osc
3838                 ra_check_101 $BSIZE
3839         done
3840         cleanup_test101
3841         true
3842 }
3843 run_test 101b "check stride-io mode read-ahead ================="
3844
3845 export SETUP_TEST102=no
3846 setup_test102() {
3847         [ "$SETUP_TEST102" = "yes" ] && return
3848         mkdir -p $DIR/$tdir
3849         STRIPE_SIZE=65536
3850         STRIPE_COUNT=4
3851         STRIPE_OFFSET=2
3852
3853         trap cleanup_test102 EXIT
3854         cd $DIR
3855         $SETSTRIPE $tdir -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT
3856         cd $DIR/$tdir
3857         for num in 1 2 3 4
3858         do
3859                 for count in 1 2 3 4
3860                 do
3861                         for offset in 0 1 2 3
3862                         do
3863                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
3864                                 local file=file"$num-$offset-$count"
3865                                 $SETSTRIPE $file -s $stripe_size -i $offset -c $count
3866                         done
3867                 done
3868         done
3869
3870         cd $DIR
3871         star -c  f=$TMP/f102.tar $tdir
3872         SETUP_TEST102=yes
3873 }
3874
3875 cleanup_test102() {
3876         [ "$SETUP_TEST102" = "yes" ] || return
3877         trap 0
3878         rm -f $TMP/f102.tar
3879         rm -rf $DIR/$tdir
3880         SETUP_TEST102=no
3881 }
3882
3883 test_102a() {
3884         local testfile=$DIR/xattr_testfile
3885
3886         rm -f $testfile
3887         touch $testfile
3888
3889         [ "$UID" != 0 ] && skip "must run as root" && return
3890         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] && skip "must have user_xattr" && return
3891
3892         [ -z "$(which setfattr 2>/dev/null)" ] && skip "could not find setfattr" && return
3893
3894         echo "set/get xattr..."
3895         setfattr -n trusted.name1 -v value1 $testfile || error
3896         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
3897         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
3898
3899         setfattr -n user.author1 -v author1 $testfile || error
3900         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
3901         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
3902
3903         echo "listxattr..."
3904         setfattr -n trusted.name2 -v value2 $testfile || error
3905         setfattr -n trusted.name3 -v value3 $testfile || error
3906         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3907         grep "trusted.name" | wc -l` -eq 3 ] || error
3908
3909
3910         setfattr -n user.author2 -v author2 $testfile || error
3911         setfattr -n user.author3 -v author3 $testfile || error
3912         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
3913         grep "user" | wc -l` -eq 3 ] || error
3914
3915         echo "remove xattr..."
3916         setfattr -x trusted.name1 $testfile || error
3917         getfattr -d -m trusted $testfile 2> /dev/null | \
3918         grep "trusted.name1" && error || true
3919
3920         setfattr -x user.author1 $testfile || error
3921         getfattr -d -m user $testfile 2> /dev/null | \
3922         grep "user.author1" && error || true
3923
3924         # b10667: setting lustre special xattr be silently discarded
3925         echo "set lustre special xattr ..."
3926         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
3927
3928         rm -f $testfile
3929 }
3930 run_test 102a "user xattr test =================================="
3931
3932 test_102b() {
3933         # b10930: get/set/list trusted.lov xattr
3934         echo "get/set/list trusted.lov xattr ..."
3935         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
3936         local testfile=$DIR/$tfile
3937         $SETSTRIPE $testfile -s 65536 -i 1 -c 2
3938         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3939         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
3940
3941         local testfile2=${testfile}2
3942         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3943                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
3944         
3945         $MCREATE $testfile2
3946         setfattr -n trusted.lov -v $value $testfile2    
3947         local tmp_file=${testfile}3
3948         $GETSTRIPE -v $testfile2 > $tmp_file
3949         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3950         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3951         [ "$stripe_size" -eq 65536 ] || error "stripe size $stripe_size != 65536"
3952         [ "$stripe_count" -eq 2 ] || error "stripe count $stripe_count != 2"
3953 }
3954 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
3955
3956 test_102c() {
3957         # b10930: get/set/list lustre.lov xattr
3958         echo "get/set/list lustre.lov xattr ..."
3959         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
3960         mkdir -p $DIR/$tdir
3961         chown $RUNAS_ID $DIR/$tdir
3962         local testfile=$DIR/$tdir/$tfile
3963         $RUNAS $SETSTRIPE $testfile -s 65536 -i 1 -c 2
3964         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
3965         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
3966
3967         local testfile2=${testfile}2
3968         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
3969                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
3970         
3971         $RUNAS $MCREATE $testfile2
3972         $RUNAS setfattr -n lustre.lov -v $value $testfile2      
3973         local tmp_file=${testfile}3
3974         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
3975         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3976         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3977         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
3978         [ $stripe_count -eq 2 ] || error "stripe count $stripe_count != 2"
3979 }
3980 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
3981
3982 get_stripe_info() {
3983         stripe_size=0
3984         stripe_count=0
3985         stripe_offset=0
3986         local lines=`sed -n '/obdidx/=' $1`
3987         stripe_size=`awk '{if($1~/size/) print $2}' $1`
3988         stripe_count=`awk '{if($1~/count/) print $2}' $1`
3989         lines=`expr $lines + 1`
3990         stripe_offset=`sed -n ${lines}p $1 |awk '{print $1}'`
3991 }
3992
3993 compare_stripe_info1() {
3994         for num in 1 2 3 4
3995         do
3996                 for count in 1 2 3 4
3997                 do
3998                         for offset in 0 1 2 3
3999                         do
4000                                 local size=`expr $STRIPE_SIZE \* $num`
4001                                 local file=file"$num-$offset-$count"
4002                                 local tmp_file=out
4003                                 $GETSTRIPE -v $file > $tmp_file
4004                                 get_stripe_info  $tmp_file
4005                                 if test $stripe_size -ne $size
4006                                 then
4007                                         error "$file: different stripe size" && return
4008                                 fi
4009                                 if test $stripe_count -ne $count
4010                                 then
4011                                         error "$file: different stripe count" && return
4012                                 fi
4013                                 if test $stripe_offset -ne 0
4014                                 then
4015                                         error "$file: different stripe offset" && return
4016                                 fi
4017                                 rm -f $tmp_file
4018                         done
4019                 done
4020         done
4021 }
4022
4023 compare_stripe_info2() {
4024         for num in 1 2 3 4
4025         do
4026                 for count in 1 2 3 4
4027                 do
4028                         for offset in 0 1 2 3
4029                         do
4030                                 local size=`expr $STRIPE_SIZE \* $num`
4031                                 local file=file"$num-$offset-$count"
4032                                 local tmp_file=out
4033                                 $GETSTRIPE -v $file > $tmp_file
4034                                 get_stripe_info  $tmp_file
4035                                 if test $stripe_size -ne $size
4036                                 then
4037                                         error "$file: different stripe size" && return  
4038                                 fi
4039                                 if test $stripe_count -ne $count
4040                                 then
4041                                         error "$file: different stripe count" && return
4042                                 fi
4043                                 if test $stripe_offset -ne $offset
4044                                 then
4045                                         error "$file: different stripe offset" && return
4046                                 fi
4047                                 rm -f $tmp_file
4048                         done
4049                 done
4050         done
4051 }
4052
4053 test_102d() {
4054         # b10930: star test for trusted.lov xattr
4055         star --xhelp 2>&1 | grep -q nolustre
4056         if [ $? -ne 0 ]
4057         then
4058                 skip "being skipped because a lustre-aware star is not installed." && return
4059         fi
4060         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
4061         setup_test102
4062         mkdir -p $DIR/d102d
4063         star -x  f=$TMP/f102.tar -C $DIR/d102d
4064         cd $DIR/d102d/$tdir
4065         compare_stripe_info1
4066
4067 }
4068 run_test 102d "star restore stripe info from tarfile,not keep osts ==========="
4069
4070 test_102e() {
4071         # b10930: star test for trusted.lov xattr
4072         star --xhelp 2>&1 | grep -q nolustre
4073         [ $? -ne 0 ] && skip "lustre-aware star is not installed" && return
4074         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
4075         setup_test102
4076         mkdir -p $DIR/d102e
4077         star -x  -preserve-osts f=$TMP/f102.tar -C $DIR/d102e
4078         cd $DIR/d102e/$tdir
4079         compare_stripe_info2
4080 }
4081 run_test 102e "star restore stripe info from tarfile, keep osts ==========="
4082
4083 test_102f() {
4084         # b10930: star test for trusted.lov xattr
4085         star --xhelp 2>&1 | grep -q nolustre
4086         [ $? -ne 0 ] && skip "lustre-aware star is not installed" && return
4087         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
4088         setup_test102
4089         mkdir -p $DIR/d102f
4090         cd $DIR
4091         star -copy  $tdir $DIR/d102f
4092         cd $DIR/d102f/$tdir
4093         compare_stripe_info1
4094 }
4095 run_test 102f "star copy files, not keep osts ==========="
4096
4097 test_102g() {
4098         # b10930: star test for trusted.lov xattr
4099         star --xhelp 2>&1 | grep -q nolustre
4100         [ $? -ne 0 ] && skip "lustre-aware star is not installed" && return
4101         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
4102         setup_test102
4103         mkdir -p $DIR/d102g
4104         cd $DIR
4105         star -copy -preserve-osts $tdir $DIR/d102g
4106         cd $DIR/d102g/$tdir
4107         compare_stripe_info2
4108         cleanup_test102
4109 }
4110 run_test 102g "star copy files, keep osts ==========="
4111
4112 test_102h() { # bug 15777
4113         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
4114                 skip "must have user_xattr" && return
4115         [ -z "$(which setfattr 2>/dev/null)" ] &&
4116                 skip "could not find setfattr" && return
4117
4118         XBIG=trusted.big
4119         XSIZE=1024
4120         touch $DIR/$tfile
4121         VALUE=datadatadatadatadatadatadatadata
4122         while [ $(echo $VALUE | wc -c) -lt $XSIZE ]; do
4123                 VALUE="$VALUE$VALUE"
4124         done
4125         log "save $XBIG on $DIR/$tfile"
4126         setfattr -n $XBIG -v "$VALUE" $DIR/$tfile ||
4127                 error "saving $XBIG on $DIR/$tfile failed"
4128         ORIG=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4129         OSIZE=$(echo $ORIG | wc -c)
4130         [ $OSIZE -lt $XSIZE ] && error "set $XBIG too small ($OSIZE < $XSIZE)"
4131
4132         XSML=trusted.sml
4133         log "save $XSML on $DIR/$tfile"
4134         setfattr -n $XSML -v val $DIR/$tfile ||
4135                 error "saving $XSML on $DIR/$tfile failed"
4136         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4137         if [ "$NEW" != "$ORIG" ]; then
4138                 log "orig: $ORIG"
4139                 log "new: $NEW"
4140                 error "$XBIG different after saving $XSML"
4141         fi
4142
4143         log "grow $XSML on $DIR/$tfile"
4144         setfattr -n $XSML -v "$VALUE" $DIR/$tfile ||
4145                 error "growing $XSML on $DIR/$tfile failed"
4146         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4147         if [ "$NEW" != "$ORIG" ]; then
4148                 log "orig: $ORIG"
4149                 log "new: $NEW"
4150                 error "$XBIG different after growing $XSML"
4151         fi
4152         log "$XBIG still valid after growing $XSML"
4153 }
4154 run_test 102h "grow xattr from inside inode to external block"
4155
4156 test_102i() { # bug 17038
4157         touch $DIR/$tfile
4158         ln -s $DIR/$tfile $DIR/${tfile}link
4159         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
4160         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"
4161         rm -f $DIR/$tfile $DIR/${tfile}link
4162 }
4163 run_test 102i "lgetxattr test on symbolic link ============"
4164
4165 run_acl_subtest()
4166 {
4167     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
4168     return $?
4169 }
4170
4171 test_103 () {
4172     [ "$UID" != 0 ] && skip "must run as root" && return
4173     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
4174     [ -z "$(which setfacl 2>/dev/null)" ] && skip "could not find setfacl" && return
4175     $GSS && skip "could not run under gss" && return
4176
4177     declare -a identity_old
4178
4179     for num in `seq $MDSCOUNT`; do
4180         switch_identity $num true || identity_old[$num]=$?
4181     done
4182
4183     SAVE_UMASK=`umask`
4184     umask 0022
4185     cd $DIR
4186
4187     echo "performing cp ..."
4188     run_acl_subtest cp || error
4189     echo "performing getfacl-noacl..."
4190     run_acl_subtest getfacl-noacl || error
4191     echo "performing misc..."
4192     run_acl_subtest misc || error
4193     echo "performing permissions..."
4194     run_acl_subtest permissions || error
4195     echo "performing setfacl..."
4196     run_acl_subtest setfacl || error
4197
4198     # inheritance test got from HP
4199     echo "performing inheritance..."
4200     cp $LUSTRE/tests/acl/make-tree . || error
4201     chmod +x make-tree || error
4202     run_acl_subtest inheritance || error
4203     rm -f make-tree
4204
4205     cd $SAVE_PWD
4206     umask $SAVE_UMASK
4207
4208     for num in `seq $MDSCOUNT`; do
4209         if [ "${identity_old[$num]}" = 1 ]; then
4210             switch_identity $num false || identity_old[$num]=$?
4211         fi
4212     done
4213 }
4214 run_test 103 "acl test ========================================="
4215
4216 test_104() {
4217         touch $DIR/$tfile
4218         lfs df || error "lfs df failed"
4219         lfs df -ih || error "lfs df -ih failed"
4220         lfs df -h $DIR || error "lfs df -h $DIR failed"
4221         lfs df -i $DIR || error "lfs df -i $DIR failed"
4222         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
4223         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
4224         
4225         OSC=`lctl get_param -n devices | awk '/-osc-/ {print $4}' | head -n 1`
4226         lctl --device %$OSC deactivate
4227         lfs df || error "lfs df with deactivated OSC failed"
4228         lctl --device %$OSC recover
4229         lfs df || error "lfs df with reactivated OSC failed"
4230 }
4231 run_test 104 "lfs df [-ih] [path] test ========================="
4232
4233 test_105a() {
4234         # doesn't work on 2.4 kernels
4235         touch $DIR/$tfile
4236         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
4237         then
4238                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
4239         else
4240                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
4241         fi
4242 }
4243 run_test 105a "flock when mounted without -o flock test ========"
4244
4245 test_105b() {
4246         touch $DIR/$tfile
4247         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
4248         then
4249                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
4250         else
4251                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
4252         fi
4253 }
4254 run_test 105b "fcntl when mounted without -o flock test ========"
4255
4256 test_105c() {
4257         touch $DIR/$tfile
4258         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
4259         then
4260                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
4261         else
4262                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
4263         fi
4264 }
4265 run_test 105c "lockf when mounted without -o flock test ========"
4266
4267 test_105d() { # bug 15924
4268         mkdir -p $DIR/$tdir
4269         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
4270                 skip "mount w/o flock enabled" && return
4271         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
4272         $LCTL set_param fail_loc=0x80000315
4273         flocks_test 2 $DIR/$tdir
4274 }
4275 run_test 105d "flock race (should not freeze) ========"
4276
4277 test_106() { #bug 10921
4278         mkdir -p $DIR/$tdir
4279         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
4280         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
4281 }
4282 run_test 106 "attempt exec of dir followed by chown of that dir"
4283
4284 test_107() {
4285         CDIR=`pwd`
4286         cd $DIR
4287
4288         local file=core
4289         rm -f $file
4290
4291         local save_pattern=$(sysctl -n kernel.core_pattern)
4292         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
4293         sysctl -w kernel.core_pattern=$file
4294         sysctl -w kernel.core_uses_pid=0
4295
4296         ulimit -c unlimited
4297         sleep 60 &
4298         SLEEPPID=$!
4299
4300         sleep 1
4301
4302         kill -s 11 $SLEEPPID
4303         wait $SLEEPPID
4304         if [ -e $file ]; then
4305                 size=`stat -c%s $file`
4306                 [ $size -eq 0 ] && error "Fail to create core file $file"
4307         else
4308                 error "Fail to create core file $file"
4309         fi
4310         rm -f $file
4311         sysctl -w kernel.core_pattern=$save_pattern
4312         sysctl -w kernel.core_uses_pid=$save_uses_pid
4313         cd $CDIR
4314 }
4315 run_test 107 "Coredump on SIG"
4316
4317 test_110() {
4318         mkdir -p $DIR/d110
4319         mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
4320         mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
4321         touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
4322         touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
4323
4324         ls -l $DIR/d110
4325 }
4326 run_test 110 "filename length checking"
4327
4328 test_115() {
4329         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
4330             cut -c11-20)
4331         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
4332             return
4333         echo "Starting with $OSTIO_pre threads"
4334
4335         NUMTEST=20000
4336         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
4337         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
4338         echo "$NUMTEST creates/unlinks"
4339         mkdir -p $DIR/$tdir
4340         createmany -o $DIR/$tdir/$tfile $NUMTEST
4341         unlinkmany $DIR/$tdir/$tfile $NUMTEST
4342
4343         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
4344             cut -c11-20)
4345
4346         # don't return an error
4347         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
4348             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&\
4349             echo "This may be fine, depending on what ran before this test" &&\
4350             echo "and how fast this system is." && return
4351
4352         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
4353 }
4354 run_test 115 "verify dynamic thread creation===================="
4355
4356 free_min_max () {
4357         wait_delete_completed
4358         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
4359         echo OST kbytes available: ${AVAIL[@]}
4360         MAXI=0; MAXV=${AVAIL[0]}
4361         MINI=0; MINV=${AVAIL[0]}
4362         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
4363             #echo OST $i: ${AVAIL[i]}kb
4364             if [ ${AVAIL[i]} -gt $MAXV ]; then
4365                 MAXV=${AVAIL[i]}; MAXI=$i
4366             fi
4367             if [ ${AVAIL[i]} -lt $MINV ]; then
4368                 MINV=${AVAIL[i]}; MINI=$i
4369             fi
4370         done
4371         echo Min free space: OST $MINI: $MINV
4372         echo Max free space: OST $MAXI: $MAXV
4373 }
4374
4375 test_116() {
4376         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs" && return
4377
4378         echo -n "Free space priority "
4379         lctl get_param -n lov.*-clilov-*.qos_prio_free
4380         DELAY=$(lctl get_param -n lov.*-clilov-*.qos_maxage | head -1 | awk '{print $1}')
4381         declare -a AVAIL
4382         free_min_max
4383         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
4384                 return
4385
4386         # generate uneven OSTs
4387         mkdir -p $DIR/$tdir/OST${MINI}
4388         declare -i FILL
4389         FILL=$(($MINV / 4))
4390         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
4391         $SETSTRIPE $DIR/$tdir/OST${MINI} -i $MINI -c 1
4392         i=0
4393         while [ $FILL -gt 0 ]; do
4394             i=$(($i + 1))
4395             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
4396             FILL=$(($FILL - 2048))
4397             echo -n .
4398         done
4399         FILL=$(($MINV / 4))
4400         sync
4401         sleep $DELAY
4402
4403         free_min_max
4404         DIFF=$(($MAXV - $MINV))
4405         DIFF2=$(($DIFF * 100 / $MINV))
4406         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
4407         if [ $DIFF2 -gt 20 ]; then
4408             echo "ok"
4409         else
4410             echo "failed - QOS mode won't be used"
4411             error_ignore "QOS imbalance criteria not met"
4412             return
4413         fi
4414
4415         MINI1=$MINI; MINV1=$MINV
4416         MAXI1=$MAXI; MAXV1=$MAXV
4417
4418         # now fill using QOS
4419         echo writing a bunch of files to QOS-assigned OSTs
4420         $SETSTRIPE $DIR/$tdir -c 1
4421         i=0
4422         while [ $FILL -gt 0 ]; do
4423             i=$(($i + 1))
4424             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
4425             FILL=$(($FILL - 200))
4426             echo -n .
4427         done
4428         echo "wrote $i 200k files"
4429         sync
4430         sleep $DELAY
4431
4432         echo "Note: free space may not be updated, so measurements might be off"
4433         free_min_max
4434         DIFF2=$(($MAXV - $MINV))
4435         echo "free space delta: orig $DIFF final $DIFF2"
4436         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
4437         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
4438         echo "Wrote $DIFF to smaller OST $MINI1"
4439         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
4440         echo "Wrote $DIFF2 to larger OST $MAXI1"
4441         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
4442
4443         # Figure out which files were written where
4444         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
4445                awk '/'$MINI1': / {print $2; exit}')
4446         echo $UUID
4447         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
4448         echo "$MINC files created on smaller OST $MINI1"
4449         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
4450                awk '/'$MAXI1': / {print $2; exit}')
4451         echo $UUID
4452         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
4453         echo "$MAXC files created on larger OST $MAXI1"
4454         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
4455         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
4456 }
4457 run_test 116 "stripe QOS: free space balance ==================="
4458
4459 test_117() # bug 10891
4460 {
4461         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
4462         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
4463         lctl set_param fail_loc=0x21e
4464         > $DIR/$tfile || error "truncate failed"
4465         lctl set_param fail_loc=0
4466         echo "Truncate succeeded."
4467 }
4468 run_test 117 "verify fsfilt_extend =========="
4469
4470 export OLD_RESENDCOUNT=""
4471 set_resend_count () {
4472         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
4473         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
4474         lctl set_param -n $PROC_RESENDCOUNT $1
4475         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
4476 }
4477
4478 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
4479
4480 # Reset async IO behavior after error case
4481 reset_async() {
4482         FILE=$DIR/reset_async
4483
4484         # Ensure all OSCs are cleared
4485         $LSTRIPE $FILE 0 -1 -1
4486         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
4487         sync
4488         rm $FILE
4489 }
4490
4491 test_118a() #bug 11710
4492 {
4493         reset_async
4494         
4495         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4496         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4497         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
4498
4499         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4500                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4501                 return 1;
4502         fi
4503 }
4504 run_test 118a "verify O_SYNC works =========="
4505
4506 test_118b()
4507 {
4508         remote_ost_nodsh && skip "remote OST with nodsh" && return
4509
4510         reset_async
4511
4512         #define OBD_FAIL_OST_ENOENT 0x217
4513         set_nodes_failloc "$(osts_nodes)" 0x217
4514         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4515         RC=$?
4516         set_nodes_failloc "$(osts_nodes)" 0
4517         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4518         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4519                     grep -c writeback)
4520
4521         if [[ $RC -eq 0 ]]; then
4522                 error "Must return error due to dropped pages, rc=$RC"
4523                 return 1;
4524         fi
4525
4526         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4527                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4528                 return 1;
4529         fi
4530
4531         echo "Dirty pages not leaked on ENOENT"
4532
4533         # Due to the above error the OSC will issue all RPCs syncronously
4534         # until a subsequent RPC completes successfully without error.
4535         multiop $DIR/$tfile Ow4096yc
4536         rm -f $DIR/$tfile
4537         
4538         return 0
4539 }
4540 run_test 118b "Reclaim dirty pages on fatal error =========="
4541
4542 test_118c()
4543 {
4544         remote_ost_nodsh && skip "remote OST with nodsh" && return
4545
4546         reset_async
4547
4548         #define OBD_FAIL_OST_EROFS               0x216
4549         set_nodes_failloc "$(osts_nodes)" 0x216
4550
4551         # multiop should block due to fsync until pages are written
4552         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4553         MULTIPID=$!
4554         sleep 1
4555
4556         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4557                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4558         fi
4559
4560         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4561                     grep -c writeback)
4562         if [[ $WRITEBACK -eq 0 ]]; then
4563                 error "No page in writeback, writeback=$WRITEBACK"
4564         fi
4565
4566         set_nodes_failloc "$(osts_nodes)" 0
4567         wait $MULTIPID
4568         RC=$?
4569         if [[ $RC -ne 0 ]]; then
4570                 error "Multiop fsync failed, rc=$RC"
4571         fi
4572
4573         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4574         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4575                     grep -c writeback)
4576         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4577                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4578         fi
4579         
4580         rm -f $DIR/$tfile
4581         echo "Dirty pages flushed via fsync on EROFS"
4582         return 0
4583 }
4584 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
4585
4586 test_118d()
4587 {
4588         remote_ost_nodsh && skip "remote OST with nodsh" && return
4589
4590         reset_async
4591
4592         #define OBD_FAIL_OST_BRW_PAUSE_BULK
4593         set_nodes_failloc "$(osts_nodes)" 0x214
4594         # multiop should block due to fsync until pages are written
4595         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &     
4596         MULTIPID=$!
4597         sleep 1
4598
4599         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4600                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4601         fi
4602
4603         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4604                     grep -c writeback)
4605         if [[ $WRITEBACK -eq 0 ]]; then
4606                 error "No page in writeback, writeback=$WRITEBACK"
4607         fi
4608
4609         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
4610         set_nodes_failloc "$(osts_nodes)" 0
4611
4612         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4613         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4614                     grep -c writeback)
4615         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4616                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4617         fi
4618
4619         rm -f $DIR/$tfile
4620         echo "Dirty pages gaurenteed flushed via fsync"
4621         return 0
4622 }
4623 run_test 118d "Fsync validation inject a delay of the bulk =========="
4624
4625 test_118f() {
4626         reset_async
4627
4628         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
4629         lctl set_param fail_loc=0x8000040a
4630
4631         # Should simulate EINVAL error which is fatal
4632         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4633         RC=$?
4634         if [[ $RC -eq 0 ]]; then
4635                 error "Must return error due to dropped pages, rc=$RC"
4636         fi
4637         
4638         lctl set_param fail_loc=0x0
4639
4640         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4641         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4642         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4643                     grep -c writeback)
4644         if [[ $LOCKED -ne 0 ]]; then
4645                 error "Locked pages remain in cache, locked=$LOCKED"
4646         fi
4647
4648         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4649                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4650         fi
4651
4652         rm -f $DIR/$tfile
4653         echo "No pages locked after fsync"
4654
4655         reset_async
4656         return 0
4657 }
4658 run_test 118f "Simulate unrecoverable OSC side error =========="
4659
4660 test_118g() {
4661         reset_async
4662
4663         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4664         lctl set_param fail_loc=0x406
4665
4666         # simulate local -ENOMEM
4667         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4668         RC=$?
4669         
4670         lctl set_param fail_loc=0
4671         if [[ $RC -eq 0 ]]; then
4672                 error "Must return error due to dropped pages, rc=$RC"
4673         fi
4674
4675         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4676         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4677         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4678                         grep -c writeback)
4679         if [[ $LOCKED -ne 0 ]]; then
4680                 error "Locked pages remain in cache, locked=$LOCKED"
4681         fi
4682         
4683         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4684                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4685         fi
4686
4687         rm -f $DIR/$tfile
4688         echo "No pages locked after fsync"
4689
4690         reset_async
4691         return 0
4692 }
4693 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
4694
4695 test_118h() {
4696         remote_ost_nodsh && skip "remote OST with nodsh" && return
4697
4698         reset_async
4699
4700         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4701         set_nodes_failloc "$(osts_nodes)" 0x20e
4702         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4703         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4704         RC=$?
4705         
4706         set_nodes_failloc "$(osts_nodes)" 0
4707         if [[ $RC -eq 0 ]]; then
4708                 error "Must return error due to dropped pages, rc=$RC"
4709         fi
4710
4711         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4712         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4713         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4714                     grep -c writeback)
4715         if [[ $LOCKED -ne 0 ]]; then
4716                 error "Locked pages remain in cache, locked=$LOCKED"
4717         fi
4718         
4719         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4720                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4721         fi
4722
4723         rm -f $DIR/$tfile
4724         echo "No pages locked after fsync"
4725
4726         return 0
4727 }
4728 run_test 118h "Verify timeout in handling recoverables errors  =========="
4729
4730 test_118i() {
4731         remote_ost_nodsh && skip "remote OST with nodsh" && return
4732
4733         reset_async
4734
4735         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4736         set_nodes_failloc "$(osts_nodes)" 0x20e
4737         
4738         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4739         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4740         PID=$!
4741         sleep 5
4742         set_nodes_failloc "$(osts_nodes)" 0
4743         
4744         wait $PID
4745         RC=$?
4746         if [[ $RC -ne 0 ]]; then
4747                 error "got error, but should be not, rc=$RC"
4748         fi
4749
4750         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4751         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4752         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
4753         if [[ $LOCKED -ne 0 ]]; then
4754                 error "Locked pages remain in cache, locked=$LOCKED"
4755         fi
4756         
4757         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4758                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4759         fi
4760
4761         rm -f $DIR/$tfile
4762         echo "No pages locked after fsync"
4763
4764         return 0
4765 }
4766 run_test 118i "Fix error before timeout in recoverable error  =========="
4767
4768 test_118j() {
4769         remote_ost_nodsh && skip "remote OST with nodsh" && return
4770
4771         reset_async
4772
4773         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
4774         set_nodes_failloc "$(osts_nodes)" 0x220
4775
4776         # return -EIO from OST
4777         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4778         RC=$?
4779         set_nodes_failloc "$(osts_nodes)" 0x0
4780         if [[ $RC -eq 0 ]]; then
4781                 error "Must return error due to dropped pages, rc=$RC"
4782         fi
4783
4784         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4785         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4786         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
4787         if [[ $LOCKED -ne 0 ]]; then
4788                 error "Locked pages remain in cache, locked=$LOCKED"
4789         fi
4790         
4791         # in recoverable error on OST we want resend and stay until it finished
4792         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4793                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4794         fi
4795
4796         rm -f $DIR/$tfile
4797         echo "No pages locked after fsync"
4798
4799         return 0
4800 }
4801 run_test 118j "Simulate unrecoverable OST side error =========="
4802
4803 test_118k()
4804 {
4805         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
4806
4807         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4808         set_nodes_failloc "$(osts_nodes)" 0x20e
4809         mkdir -p $DIR/$tdir
4810
4811         for ((i=0;i<10;i++)); do
4812                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
4813                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
4814                 SLEEPPID=$!
4815                 sleep 0.500s
4816                 kill $SLEEPPID
4817                 wait $SLEEPPID
4818         done
4819
4820         set_nodes_failloc "$(osts_nodes)" 0
4821 }
4822 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
4823
4824 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
4825
4826 test_119a() # bug 11737
4827 {
4828         BSIZE=$((512 * 1024))
4829         directio write $DIR/$tfile 0 1 $BSIZE
4830         # We ask to read two blocks, which is more than a file size.
4831         # directio will indicate an error when requested and actual
4832         # sizes aren't equeal (a normal situation in this case) and
4833         # print actual read amount.
4834         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
4835         if [ "$NOB" != "$BSIZE" ]; then
4836                 error "read $NOB bytes instead of $BSIZE"
4837         fi
4838         rm -f $DIR/$tfile
4839 }
4840 run_test 119a "Short directIO read must return actual read amount"
4841
4842 test_119b() # bug 11737
4843 {
4844         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
4845
4846         $SETSTRIPE $DIR/$tfile -c 2
4847         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
4848         sync
4849         multiop $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
4850                 error "direct read failed"
4851         rm -f $DIR/$tfile
4852 }
4853 run_test 119b "Sparse directIO read must return actual read amount"
4854
4855 test_119c() # bug 13099
4856 {
4857         BSIZE=1048576
4858         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
4859         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
4860         rm -f $DIR/$tfile
4861 }
4862 run_test 119c "Testing for direct read hitting hole"
4863
4864 test_119d() # bug 15950
4865 {
4866         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
4867         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
4868         BSIZE=1048576
4869         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
4870         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
4871         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
4872         lctl set_param fail_loc=0x40d
4873         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
4874         pid_dio=$!
4875         sleep 1
4876         cat $DIR/$tfile > /dev/null &
4877         lctl set_param fail_loc=0
4878         pid_reads=$!
4879         wait $pid_dio
4880         log "the DIO writes have completed, now wait for the reads (should not block very long)"
4881         sleep 2
4882         [ -n "`ps h -p $pid_reads -o comm`" ] && \
4883         error "the read rpcs have not completed in 2s"
4884         rm -f $DIR/$tfile
4885         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
4886 }
4887 run_test 119d "The DIO path should try to send a new rpc once one is completed"
4888
4889 test_120a() {
4890         mkdir -p $DIR/$tdir
4891         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4892                skip "no early lock cancel on server" && return 0
4893         lru_resize_disable mdc
4894         lru_resize_disable osc
4895         cancel_lru_locks mdc
4896         stat $DIR/$tdir > /dev/null
4897         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4898         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4899         mkdir $DIR/$tdir/d1
4900         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4901         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4902         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4903         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4904         lru_resize_enable mdc
4905         lru_resize_enable osc
4906 }
4907 run_test 120a "Early Lock Cancel: mkdir test"
4908
4909 test_120b() {
4910         mkdir -p $DIR/$tdir
4911         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4912                skip "no early lock cancel on server" && return 0
4913         lru_resize_disable mdc
4914         lru_resize_disable osc
4915         cancel_lru_locks mdc
4916         stat $DIR/$tdir > /dev/null
4917         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4918         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4919         touch $DIR/$tdir/f1
4920         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4921         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4922         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4923         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4924         lru_resize_enable mdc
4925         lru_resize_enable osc
4926 }
4927 run_test 120b "Early Lock Cancel: create test"
4928
4929 test_120c() {
4930         mkdir -p $DIR/$tdir
4931         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4932                skip "no early lock cancel on server" && return 0
4933         lru_resize_disable mdc
4934         lru_resize_disable osc
4935         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
4936         touch $DIR/$tdir/d1/f1
4937         cancel_lru_locks mdc
4938         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
4939         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4940         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4941         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
4942         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4943         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4944         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4945         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4946         lru_resize_enable mdc
4947         lru_resize_enable osc
4948 }
4949 run_test 120c "Early Lock Cancel: link test"
4950
4951 test_120d() {
4952         mkdir -p $DIR/$tdir
4953         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4954                skip "no early lock cancel on server" && return 0
4955         lru_resize_disable mdc
4956         lru_resize_disable osc
4957         touch $DIR/$tdir
4958         cancel_lru_locks mdc
4959         stat $DIR/$tdir > /dev/null
4960         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4961         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4962         chmod a+x $DIR/$tdir
4963         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4964         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4965         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4966         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4967         lru_resize_enable mdc
4968         lru_resize_enable osc
4969 }
4970 run_test 120d "Early Lock Cancel: setattr test"
4971
4972 test_120e() {
4973         mkdir -p $DIR/$tdir
4974         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4975                skip "no early lock cancel on server" && return 0
4976         lru_resize_disable mdc
4977         lru_resize_disable osc
4978         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
4979         cancel_lru_locks mdc
4980         cancel_lru_locks osc
4981         dd if=$DIR/$tdir/f1 of=/dev/null
4982         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
4983         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
4984               awk '/ldlm_cancel/ {print $2}'`
4985         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
4986               awk '/ldlm_bl_callback/ {print $2}'`
4987         unlink $DIR/$tdir/f1
4988         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
4989               awk '/ldlm_cancel/ {print $2}'`
4990         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
4991               awk '/ldlm_bl_callback/ {print $2}'`
4992         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4993         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4994         lru_resize_enable mdc
4995         lru_resize_enable osc
4996 }
4997 run_test 120e "Early Lock Cancel: unlink test"
4998
4999 test_120f() {
5000         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5001                skip "no early lock cancel on server" && return 0
5002         mkdir -p $DIR/$tdir
5003         lru_resize_disable mdc
5004         lru_resize_disable osc
5005         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5006         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
5007         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
5008         cancel_lru_locks mdc
5009         cancel_lru_locks osc
5010         dd if=$DIR/$tdir/d1/f1 of=/dev/null
5011         dd if=$DIR/$tdir/d2/f2 of=/dev/null
5012         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
5013         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5014               awk '/ldlm_cancel/ {print $2}'`
5015         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5016               awk '/ldlm_bl_callback/ {print $2}'`
5017         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5018         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5019               awk '/ldlm_cancel/ {print $2}'`
5020         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5021               awk '/ldlm_bl_callback/ {print $2}'`
5022         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5023         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5024         lru_resize_enable mdc
5025         lru_resize_enable osc
5026 }
5027 run_test 120f "Early Lock Cancel: rename test"
5028
5029 test_120g() {
5030         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5031                skip "no early lock cancel on server" && return 0
5032         lru_resize_disable mdc
5033         lru_resize_disable osc
5034         count=10000
5035         echo create $count files
5036         mkdir -p $DIR/$tdir
5037         cancel_lru_locks mdc
5038         cancel_lru_locks osc
5039         t0=`date +%s`
5040
5041         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5042               awk '/ldlm_cancel/ {print $2}'`
5043         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5044               awk '/ldlm_bl_callback/ {print $2}'`
5045         createmany -o $DIR/$tdir/f $count
5046         sync
5047         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5048               awk '/ldlm_cancel/ {print $2}'`
5049         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5050               awk '/ldlm_bl_callback/ {print $2}'`
5051         t1=`date +%s`
5052         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
5053         echo rm $count files
5054         rm -r $DIR/$tdir
5055         sync
5056         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5057               awk '/ldlm_cancel/ {print $2}'`
5058         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5059               awk '/ldlm_bl_callback/ {print $2}'`
5060         t2=`date +%s`
5061         echo total: $count removes in $((t2-t1))
5062         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
5063         sleep 2
5064         # wait for commitment of removal
5065         lru_resize_enable mdc
5066         lru_resize_enable osc
5067 }
5068 run_test 120g "Early Lock Cancel: performance test"
5069
5070 test_121() { #bug #10589
5071         rm -rf $DIR/$tfile
5072         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out/ {print $1}')
5073 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
5074         lctl set_param fail_loc=0x310
5075         cancel_lru_locks osc > /dev/null
5076         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in/ {print $1}')
5077         lctl set_param fail_loc=0
5078         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
5079 }
5080 run_test 121 "read cancel race ========="
5081
5082 test_123a() { # was test 123, statahead(bug 11401)
5083         SLOWOK=0
5084         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
5085                 log "testing on UP system. Performance may be not as good as expected."
5086                 SLOWOK=1
5087         fi
5088
5089         remount_client $MOUNT
5090         mkdir -p $DIR/$tdir
5091         error=0
5092         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5093         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
5094         MULT=10
5095         for ((i=1, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
5096                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
5097
5098                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
5099                 cancel_lru_locks mdc
5100                 cancel_lru_locks osc
5101                 stime=`date +%s`
5102                 ls -l $DIR/$tdir > /dev/null
5103                 etime=`date +%s`
5104                 delta_sa=$((etime - stime))
5105                 log "ls $i files with statahead:    $delta_sa sec"
5106                 lctl get_param -n llite.*.statahead_stats
5107
5108                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5109                 lctl set_param -n llite.*.statahead_max 0
5110                 lctl get_param llite.*.statahead_max
5111                 cancel_lru_locks mdc
5112                 cancel_lru_locks osc
5113                 stime=`date +%s`
5114                 ls -l $DIR/$tdir > /dev/null
5115                 etime=`date +%s`
5116                 delta=$((etime - stime))
5117                 log "ls $i files without statahead: $delta sec"
5118
5119                 lctl set_param llite.*.statahead_max=$max
5120                 if [ $delta_sa -gt $(($delta + 2)) ]; then
5121                         log "ls $i files is slower with statahead!"
5122                         error=1
5123                 fi
5124
5125                 [ $delta -gt 20 ] && break
5126                 [ $delta -gt 8 ] && MULT=$((50 / delta))
5127                 [ "$SLOW" = "no" -a $delta -gt 3 ] && break
5128         done
5129         log "ls done"
5130
5131         stime=`date +%s`
5132         rm -r $DIR/$tdir
5133         sync
5134         etime=`date +%s`
5135         delta=$((etime - stime))
5136         log "rm -r $DIR/$tdir/: $delta seconds"
5137         log "rm done"
5138         lctl get_param -n llite.*.statahead_stats
5139         # wait for commitment of removal
5140         sleep 2
5141         [ $error -ne 0 -a $SLOWOK -eq 0 ] && error "statahead is slow!"
5142         return 0
5143 }
5144 run_test 123a "verify statahead work"
5145
5146 test_123b () { # statahead(bug 15027)
5147         mkdir -p $DIR/$tdir
5148         createmany -o $DIR/$tdir/$tfile-%d 1000
5149         
5150         cancel_lru_locks mdc
5151         cancel_lru_locks osc
5152
5153 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
5154         lctl set_param fail_loc=0x80000803
5155         ls -lR $DIR/$tdir > /dev/null
5156         log "ls done"
5157         lctl set_param fail_loc=0x0
5158         lctl get_param -n llite.*.statahead_stats
5159         rm -r $DIR/$tdir
5160         sync
5161
5162 }
5163 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
5164
5165 test_124a() {
5166         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
5167                skip "no lru resize on server" && return 0
5168         NR=2000
5169         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
5170
5171         # use touch to produce $NR new locks
5172         log "create $NR files at $DIR/$tdir"
5173         createmany -o $DIR/$tdir/f $NR ||
5174                 error "failed to create $NR files in $DIR/$tdir"
5175
5176         cancel_lru_locks mdc
5177         ls -l $DIR/$tdir > /dev/null
5178
5179         NSDIR=""
5180         LRU_SIZE=0
5181         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
5182                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5183                 LRU_SIZE=$(lctl get_param -n $PARAM)
5184                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
5185                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
5186                         log "using $(basename $NSDIR) namespace"
5187                         break
5188                 fi
5189         done
5190
5191         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
5192                 skip "Not enough cached locks created!"
5193                 return 0
5194         fi
5195         log "created $LRU_SIZE lock(s)"
5196
5197         # we want to sleep 30s to not make test too long
5198         SLEEP=30
5199         SLEEP_ADD=2
5200
5201         # we know that lru resize allows one client to hold $LIMIT locks for 10h
5202         MAX_HRS=10
5203
5204         # get the pool limit
5205         LIMIT=`lctl get_param -n $NSDIR.pool.limit`
5206
5207         # calculate lock volume factor taking into account data set size and the
5208         # rule that number of locks will be getting smaller durring sleep interval
5209         # and we need to additionally enforce LVF to take this into account.
5210         # Use $LRU_SIZE_B here to take into account real number of locks created
5211         # in the case of CMD, LRU_SIZE_B != $NR in most of cases
5212         LVF=$(($MAX_HRS * 60 * 60 * $LIMIT / $SLEEP))
5213         LRU_SIZE_B=$LRU_SIZE
5214         log "make client drop locks $LVF times faster so that ${SLEEP}s is enough to cancel $LRU_SIZE lock(s)"
5215         OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
5216         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
5217         log "sleep for $((SLEEP+SLEEP_ADD))s"
5218         sleep $((SLEEP+SLEEP_ADD))
5219         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
5220         LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
5221
5222         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
5223                 error "No locks dropped in "$((SLEEP+SLEEP_ADD))"s. LRU size: $LRU_SIZE_A"
5224                 unlinkmany $DIR/$tdir/f $NR
5225                 return
5226         }
5227
5228         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in "$((SLEEP+SLEEP_ADD))"s"
5229         log "unlink $NR files at $DIR/$tdir"
5230         unlinkmany $DIR/$tdir/f $NR
5231 }
5232 run_test 124a "lru resize ======================================="
5233
5234 get_max_pool_limit()
5235 {
5236         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
5237         local max=0
5238         for l in $limit; do
5239                 if test $l -gt $max; then
5240                         max=$l
5241                 fi
5242         done
5243         echo $max
5244 }
5245
5246 test_124b() {
5247         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
5248                skip "no lru resize on server" && return 0
5249
5250         LIMIT=`get_max_pool_limit`
5251
5252         NR=$(($(default_lru_size)*20))
5253         if [ $NR -gt $LIMIT ]; then
5254                 log "Limit lock number by $LIMIT locks"
5255                 NR=$LIMIT
5256         fi
5257         lru_resize_disable mdc
5258         mkdir -p $DIR/$tdir/disable_lru_resize ||
5259                 error "failed to create $DIR/$tdir/disable_lru_resize"
5260
5261         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
5262         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
5263         cancel_lru_locks mdc
5264         stime=`date +%s`
5265         PID=""
5266         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
5267         PID="$PID $!"
5268         sleep 2
5269         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
5270         PID="$PID $!"
5271         sleep 2
5272         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
5273         PID="$PID $!"
5274         wait $PID
5275         etime=`date +%s`
5276         nolruresize_delta=$((etime-stime))
5277         log "ls -la time: $nolruresize_delta seconds"
5278         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
5279         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
5280
5281         lru_resize_enable mdc
5282         mkdir -p $DIR/$tdir/enable_lru_resize ||
5283                 error "failed to create $DIR/$tdir/enable_lru_resize"
5284
5285         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
5286         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
5287         cancel_lru_locks mdc
5288         stime=`date +%s`
5289         PID=""
5290         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
5291         PID="$PID $!"
5292         sleep 2
5293         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
5294         PID="$PID $!"
5295         sleep 2
5296         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
5297         PID="$PID $!"
5298         wait $PID
5299         etime=`date +%s`
5300         lruresize_delta=$((etime-stime))
5301         log "ls -la time: $lruresize_delta seconds"
5302         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
5303
5304         if [ $lruresize_delta -gt $nolruresize_delta ]; then
5305                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
5306         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
5307                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
5308         else
5309                 log "lru resize performs the same with no lru resize"
5310         fi
5311         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
5312 }
5313 run_test 124b "lru resize (performance test) ======================="
5314
5315 test_125() { # 13358
5316         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
5317         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
5318         mkdir -p $DIR/d125 || error "mkdir failed"
5319         $SETSTRIPE $DIR/d125 -s 65536 -c -1 || error "setstripe failed"
5320         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
5321         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
5322 }
5323 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
5324
5325 test_126() { # bug 12829/13455
5326         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
5327         [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
5328         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
5329         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
5330         rm -f $DIR/$tfile
5331         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
5332 }
5333 run_test 126 "check that the fsgid provided by the client is taken into account"
5334
5335 test_127() { # bug 15521
5336         $LSTRIPE -i 0 -c 1 $DIR/$tfile
5337         $LCTL set_param osc.*.stats=0
5338         FSIZE=$((2048 * 1024))
5339         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
5340         cancel_lru_locks osc
5341         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
5342
5343         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
5344         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
5345                 echo "got $COUNT $NAME"
5346                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
5347                 eval $NAME=$COUNT || error "Wrong proc format"
5348                 
5349                 case $NAME in
5350                         read_bytes|write_bytes)
5351                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
5352                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
5353                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
5354                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
5355                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
5356                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
5357                                 error "sumsquare is too small: $SUMSQ"
5358                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
5359                                 error "sumsquare is too big: $SUMSQ"
5360                         ;;
5361                         *) ;;
5362                 esac
5363         done < $DIR/${tfile}.tmp
5364
5365         #check that we actually got some stats
5366         [ "$read_bytes" ] || error "Missing read_bytes stats"
5367         [ "$write_bytes" ] || error "Missing write_bytes stats"
5368         [ "$read_bytes" != 0 ] || error "no read done"
5369         [ "$write_bytes" != 0 ] || error "no write done"
5370 }
5371 run_test 127 "verify the client stats are sane"
5372
5373 test_128() { # bug 15212
5374         touch $DIR/$tfile
5375         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
5376                 find $DIR/$tfile
5377                 find $DIR/$tfile
5378         EOF
5379
5380         result=$(grep error $TMP/$tfile.log)
5381         rm -f $DIR/$tfile
5382         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
5383 }
5384 run_test 128 "interactive lfs for 2 consecutive find's"
5385
5386 set_dir_limits () {
5387         local mntdev
5388         local node
5389
5390         local LDPROC=/proc/fs/ldiskfs
5391
5392         for node in $(mdts_nodes); do
5393                 devs=$(do_node $node "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
5394                 for dev in $devs; do
5395                         mntdev=$(do_node $node "lctl get_param -n osd.$dev.mntdev")
5396                         do_node $node "echo $1 >$LDPROC/\\\$(basename $mntdev)/max_dir_size"
5397                 done
5398         done
5399 }
5400 test_129() {
5401         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return 0
5402         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5403
5404         EFBIG=27
5405         MAX=16384
5406
5407         set_dir_limits $MAX
5408
5409         mkdir -p $DIR/$tdir
5410
5411         I=0
5412         J=0
5413         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
5414                 multiop $DIR/$tdir/$J Oc
5415                 rc=$?
5416                 if [ $rc -eq $EFBIG ]; then
5417                         set_dir_limits 0
5418                         echo "return code $rc received as expected"
5419                         return 0
5420                 elif [ $rc -ne 0 ]; then
5421                         set_dir_limits 0
5422                         error_exit "return code $rc received instead of expected $EFBIG"
5423                 fi
5424                 J=$((J+1))
5425                 I=$(stat -c%s "$DIR/$tdir")
5426         done
5427
5428         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
5429         do_facet $SINGLEMDS "echo 0 >$LDPROC"
5430 }
5431 run_test 129 "test directory size limit ========================"
5432
5433 test_130a() {
5434         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5435         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5436
5437         local fm_file=$DIR/$tfile
5438         lfs setstripe -s 65536 -c 1 $fm_file || error "setstripe failed on $fm_file"
5439         dd if=/dev/zero of=$fm_file bs=65536 count=1 || error "dd failed for $fm_file"
5440
5441         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5442         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5443
5444         lun=`$GETSTRIPE $fm_file  | grep -A 10 obdidx | awk '{print $1}' | grep -v "obdidx"`
5445
5446         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
5447         IFS=$'\n'
5448         tot_len=0
5449         for line in $filefrag_op
5450         do
5451                 frag_lun=`echo $line | cut -d: -f5`
5452                 ext_len=`echo $line | cut -d: -f4`
5453                 if (( $frag_lun != $lun )); then
5454                         error "FIEMAP on 1-stripe file($fm_file) failed"
5455                         return
5456                 fi
5457                 (( tot_len += ext_len ))
5458         done
5459
5460         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
5461                 error "FIEMAP on 1-stripe file($fm_file) failed;"
5462                 return
5463         fi
5464         echo "FIEMAP on single striped file succeeded"
5465 }
5466 run_test 130a "FIEMAP (1-stripe file)"
5467
5468 test_130b() {
5469         [ "$OSTCOUNT" -lt "2" ] && skip "skipping FIEMAP on 2-stripe file test" && return
5470
5471         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5472         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5473
5474         local fm_file=$DIR/$tfile
5475         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
5476         dd if=/dev/zero of=$fm_file bs=1M count=2 || error "dd failed on $fm_file"
5477
5478         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5479         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5480
5481         last_lun=`echo $filefrag_op | cut -d: -f5`
5482
5483         IFS=$'\n'
5484         tot_len=0
5485         num_luns=1
5486         for line in $filefrag_op
5487         do
5488                 frag_lun=`echo $line | cut -d: -f5`
5489                 ext_len=`echo $line | cut -d: -f4`
5490                 if (( $frag_lun != $last_lun )); then
5491                         if (( tot_len != 1024 )); then
5492                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
5493                                 return
5494                         else
5495                                 (( num_luns += 1 ))
5496                                 tot_len=0
5497                         fi
5498                 fi
5499                 (( tot_len += ext_len ))
5500                 last_lun=$frag_lun
5501         done
5502         if (( num_luns != 2 || tot_len != 1024 )); then
5503                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5504                 return
5505         fi
5506
5507         echo "FIEMAP on 2-stripe file succeeded"
5508 }
5509 run_test 130b "FIEMAP (2-stripe file)"
5510
5511 test_130c() {
5512         [ "$OSTCOUNT" -lt "2" ] && skip "skipping FIEMAP on 2-stripe file with hole test" && return
5513
5514         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5515         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5516
5517         local fm_file=$DIR/$tfile
5518         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
5519         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
5520
5521         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5522         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5523
5524         last_lun=`echo $filefrag_op | cut -d: -f5`
5525
5526         IFS=$'\n'
5527         tot_len=0
5528         num_luns=1
5529         for line in $filefrag_op
5530         do
5531                 frag_lun=`echo $line | cut -d: -f5`
5532                 ext_len=`echo $line | cut -d: -f4`
5533                 if (( $frag_lun != $last_lun )); then
5534                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
5535                         if (( logical != 512 )); then
5536                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
5537                                 return
5538                         fi
5539                         if (( tot_len != 512 )); then
5540                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
5541                                 return
5542                         else
5543                                 (( num_luns += 1 ))
5544                                 tot_len=0
5545                         fi
5546                 fi
5547                 (( tot_len += ext_len ))
5548                 last_lun=$frag_lun
5549         done
5550         if (( num_luns != 2 || tot_len != 512 )); then
5551                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5552                 return
5553         fi
5554
5555         echo "FIEMAP on 2-stripe file with hole succeeded"
5556 }
5557 run_test 130c "FIEMAP (2-stripe file with hole)"
5558
5559 test_130d() {
5560         [ "$OSTCOUNT" -lt "3" ] && skip "skipping FIEMAP on N-stripe file test" && return
5561
5562         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5563         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5564
5565         local fm_file=$DIR/$tfile
5566         lfs setstripe -s 65536 -c $OSTCOUNT $fm_file || error "setstripe failed on $fm_file"
5567         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
5568
5569         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5570         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5571
5572         last_lun=`echo $filefrag_op | cut -d: -f5`
5573
5574         IFS=$'\n'
5575         tot_len=0
5576         num_luns=1
5577         for line in $filefrag_op
5578         do
5579                 frag_lun=`echo $line | cut -d: -f5`
5580                 ext_len=`echo $line | cut -d: -f4`
5581                 if (( $frag_lun != $last_lun )); then
5582                         if (( tot_len != 1024 )); then
5583                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
5584                                 return
5585                         else
5586                                 (( num_luns += 1 ))
5587                                 tot_len=0
5588                         fi
5589                 fi
5590                 (( tot_len += ext_len ))
5591                 last_lun=$frag_lun
5592         done
5593         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
5594                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5595                 return
5596         fi
5597
5598         echo "FIEMAP on N-stripe file succeeded"
5599 }
5600 run_test 130d "FIEMAP (N-stripe file)"
5601
5602 test_130e() {
5603         [ "$OSTCOUNT" -lt "2" ] && skip "skipping continuation FIEMAP test" && return
5604
5605         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5606         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5607
5608         local fm_file=$DIR/$tfile
5609         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
5610         NUM_BLKS=512
5611         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 4 ))
5612         for ((i = 0; i < $NUM_BLKS; i++))
5613         do
5614                 dd if=/dev/zero of=$fm_file count=1 bs=4096 seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
5615         done
5616
5617         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5618         filefrag_op=`filefrag -ve $fm_file | grep -A 750 "ext:" | grep -v "ext:" | grep -v "found"`
5619
5620         last_lun=`echo $filefrag_op | cut -d: -f5`
5621
5622         IFS=$'\n'
5623         tot_len=0
5624         num_luns=1
5625         for line in $filefrag_op
5626         do
5627                 frag_lun=`echo $line | cut -d: -f5`
5628                 ext_len=`echo $line | cut -d: -f4`
5629                 if (( $frag_lun != $last_lun )); then
5630                         if (( tot_len != $EXPECTED_LEN )); then
5631                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
5632                                 return
5633                         else
5634                                 (( num_luns += 1 ))
5635                                 tot_len=0
5636                         fi
5637                 fi
5638                 (( tot_len += ext_len ))
5639                 last_lun=$frag_lun
5640         done
5641         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
5642                 echo "$num_luns $tot_len"
5643                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5644                 return
5645         fi
5646
5647         echo "FIEMAP with continuation calls succeeded"
5648 }
5649 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
5650
5651 test_140() { #bug-17379
5652         mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
5653         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
5654         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
5655
5656         # VFS limits max symlink depth to 5(4KSTACK) or 8
5657         local i=0
5658         while i=`expr $i + 1`; do
5659                 mkdir -p $i || error "Creating dir $i"
5660                 cd $i || error "Changing to $i"
5661                 ln -s ../stat stat || error "Creating stat symlink"
5662                 # Read the symlink until ELOOP present,
5663                 # not LBUGing the system is considered success,
5664                 # we didn't overrun the stack.
5665                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
5666                 [ $ret -ne 0 ] && {
5667                         if [ $ret -eq 40 ]; then
5668                                 break  # -ELOOP
5669                         else
5670                                 error "Open stat symlink"
5671                                 return
5672                         fi
5673                 }
5674         done
5675         i=`expr $i - 1`
5676         [ $i -eq 5 -o $i -eq 8 ] || error "Invalid symlink depth"
5677         echo "The symlink depth = $i"
5678 }
5679 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
5680
5681 test_150() {
5682         local TF="$TMP/$tfile"
5683
5684         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
5685         cp $TF $DIR/$tfile
5686         cancel_lru_locks osc
5687         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
5688         remount_client $MOUNT
5689         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
5690
5691         $TRUNCATE $TF 6000
5692         $TRUNCATE $DIR/$tfile 6000
5693         cancel_lru_locks osc
5694         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
5695
5696         echo "12345" >>$TF
5697         echo "12345" >>$DIR/$tfile
5698         cancel_lru_locks osc
5699         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
5700
5701         echo "12345" >>$TF
5702         echo "12345" >>$DIR/$tfile
5703         cancel_lru_locks osc
5704         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
5705
5706         rm -f $TF
5707         true
5708 }
5709 run_test 150 "truncate/append tests"
5710
5711 function roc_access() {
5712         ACCNUM=`$LCTL get_param -n obdfilter.*.stats | \
5713                 grep 'cache_access'| awk '{print $2}' | \
5714                 awk '{sum=sum+$3} END{print sum}'`
5715         echo $ACCNUM
5716 }
5717
5718 function roc_hit() {
5719         ACCNUM=`$LCTL get_param -n obdfilter.*.stats | \
5720                 grep 'cache_hit'|awk '{print $2}' | \
5721                 awk '{sum=sum+$1} END{print sum}'`
5722         echo $ACCNUM
5723 }
5724
5725 test_151() {
5726         local CPAGES=3
5727
5728         # check whether obdfilter is cache capable at all
5729         if ! $LCTL get_param -n obdfilter.*.read_cache_enable; then
5730                 echo "not cache-capable obdfilter"
5731                 return 0
5732         fi
5733
5734         # check cache is enabled on all obdfilters
5735         if $LCTL get_param -n obdfilter.*.read_cache_enable | grep 0 >&/dev/null; then
5736                 echo "oss cache is disabled"
5737                 return 0
5738         fi
5739
5740         $LCTL set_param -n obdfilter.*.writethrough_cache_enable 1
5741
5742         # pages should be in the case right after write
5743         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
5744         BEFORE=`roc_hit`
5745         cancel_lru_locks osc
5746         cat $DIR/$tfile >/dev/null
5747         AFTER=`roc_hit`
5748         if ! let "AFTER - BEFORE == CPAGES"; then
5749                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
5750         fi
5751
5752         # the following read invalidates the cache
5753         cancel_lru_locks osc
5754         $LCTL set_param -n obdfilter.*.read_cache_enable 0
5755         cat $DIR/$tfile >/dev/null
5756
5757         # now data shouldn't be found in the cache
5758         BEFORE=`roc_hit`
5759         cancel_lru_locks osc
5760         cat $DIR/$tfile >/dev/null
5761         AFTER=`roc_hit`
5762         if ! let "AFTER - BEFORE == CPAGES"; then
5763                 error "IN CACHE: before: $BEFORE, after: $AFTER"
5764         fi
5765
5766         $LCTL set_param -n obdfilter.*.read_cache_enable 1
5767         rm -f $DIR/$tfile
5768 }
5769 run_test 151 "test cache on oss and controls ==============================="
5770
5771 test_152() {
5772         local TF="$TMP/$tfile"
5773
5774         # simulate ENOMEM during write
5775 #define OBD_FAIL_OST_NOMEM      0x226
5776         lctl set_param fail_loc=0x80000226
5777         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
5778         cp $TF $DIR/$tfile
5779         sync || error "sync failed"
5780         lctl set_param fail_loc=0
5781         
5782         # discard client's cache
5783         cancel_lru_locks osc
5784
5785         # simulate ENOMEM during read
5786         lctl set_param fail_loc=0x80000226
5787         cmp $TF $DIR/$tfile || error "cmp failed"
5788         lctl set_param fail_loc=0
5789
5790         rm -f $TF
5791 }
5792 run_test 152 "test read/write with enomem ============================"
5793
5794 POOL=${POOL:-cea1}
5795 TGT_COUNT=$OSTCOUNT
5796 TGTPOOL_FIRST=1
5797 TGTPOOL_MAX=$(($TGT_COUNT - 1))
5798 TGTPOOL_STEP=2
5799 TGTPOOL_LIST=`seq $TGTPOOL_FIRST $TGTPOOL_STEP $TGTPOOL_MAX`
5800 POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
5801 POOL_DIR=$POOL_ROOT/dir_tst
5802 POOL_FILE=$POOL_ROOT/file_tst
5803
5804 check_file_in_pool()
5805 {
5806         file=$1
5807         res=$($GETSTRIPE $file | grep 0x | cut -f2)
5808         for i in $res
5809         do
5810                 found=$(echo :$TGTPOOL_LIST: | tr " " ":"  | grep :$i:)
5811                 if [[ "$found" == "" ]]
5812                 then
5813                         echo "pool list: $TGTPOOL_LIST"
5814                         echo "striping: $res"
5815                         error "$file not allocated in $POOL"
5816                         return 1
5817                 fi
5818         done
5819         return 0
5820 }
5821
5822 test_200a() {
5823         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5824         do_facet mgs $LCTL pool_new $FSNAME.$POOL
5825         do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL
5826         [ $? == 0 ] || error "Pool creation of $POOL failed"
5827 }
5828 run_test 200a "Create new pool =========================================="
5829
5830 test_200b() {
5831         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5832         TGT=$(seq -f $FSNAME-OST%04g_UUID $TGTPOOL_FIRST $TGTPOOL_STEP \
5833                 $TGTPOOL_MAX | tr '\n' ' ')
5834         do_facet mgs $LCTL pool_add $FSNAME.$POOL \
5835                 $FSNAME-OST[$TGTPOOL_FIRST-$TGTPOOL_MAX/$TGTPOOL_STEP]_UUID
5836         res=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL | sort \
5837                         | tr '\n' ' ')
5838         [ "$res" = "$TGT" ] || error "Pool content ($res) do not match requested ($TGT)"
5839 }
5840 run_test 200b "Add targets to a pool ===================================="
5841
5842 test_200c() {
5843         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5844         mkdir -p $POOL_DIR
5845         $SETSTRIPE -c 2 -p $POOL $POOL_DIR
5846         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR"
5847 }
5848 run_test 200c "Set pool on a directory ================================="
5849
5850 test_200d() {
5851         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5852         res=$($GETSTRIPE $POOL_DIR | grep pool: | cut -f8 -d " ")
5853         [ "$res" = $POOL ] || error "Pool on $POOL_DIR is not $POOL"
5854 }
5855 run_test 200d "Check pool on a directory ==============================="
5856
5857 test_200e() {
5858         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5859         failed=0
5860         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
5861         do
5862                 file=$POOL_DIR/file-$i
5863                 touch $file
5864                 check_file_in_pool $file
5865                 if [[ $? != 0 ]]
5866                 then
5867                         failed=$(($failed + 1))
5868                 fi
5869         done
5870         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
5871 }
5872 run_test 200e "Check files allocation from directory pool =============="
5873
5874 test_200f() {
5875         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5876         mkdir -p $POOL_FILE
5877         failed=0
5878         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
5879         do
5880                 file=$POOL_FILE/spoo-$i
5881                 $SETSTRIPE -p $POOL $file
5882                 check_file_in_pool $file
5883                 if [[ $? != 0 ]]
5884                 then
5885                         failed=$(($failed + 1))
5886                 fi
5887         done
5888         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
5889 }
5890 run_test 200f "Create files in a pool ==================================="
5891
5892 test_200g() {
5893         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5894         TGT=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL | head -1)
5895         do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
5896         res=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL | grep $TGT)
5897         [ "$res" = "" ] || error "$TGT not removed from $FSNAME.$POOL"
5898 }
5899 run_test 200g "Remove a target from a pool ============================="
5900
5901 test_200h() {
5902         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5903         for TGT in $(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL)
5904         do
5905                 do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
5906         done
5907         res=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL)
5908         [ "$res" = "" ] || error "Pool $FSNAME.$POOL cannot be drained"
5909 }
5910 run_test 200h "Remove all targets from a pool =========================="
5911
5912 test_200i() {
5913         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5914         do_facet mgs $LCTL pool_destroy $FSNAME.$POOL
5915         res=$(do_facet mgs "$LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL 2>/dev/null")
5916         [ "$res" = "" ] || error "Pool $FSNAME.$POOL is not destroyed"
5917 }
5918 run_test 200i "Remove a pool ============================================"
5919
5920 TMPDIR=$OLDTMPDIR
5921 TMP=$OLDTMP
5922 HOME=$OLDHOME
5923
5924 log "cleanup: ======================================================"
5925 check_and_cleanup_lustre
5926 if [ "$I_MOUNTED" != "yes" ]; then
5927         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
5928 fi
5929
5930 echo '=========================== finished ==============================='
5931 [ -f "$SANITYLOG" ] && cat $SANITYLOG && grep -q FAIL $SANITYLOG && exit 1 || true
5932 echo "$0: completed"