Whamcloud - gitweb
b1fb9a76db77a37edad26310076cfd3ab7dc2f6c
[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: 4900 4900 2108 9789 3637 9789 3561 5188/5749 10764
11 ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"27o 27q  42a  42b  42c  42d  45   68        75"}
12 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
13
14 [ "$SLOW" = "no" ] && EXCEPT="$EXCEPT 24o 27m 36f 36g 51b 51c 63 64b 71 73 77 101 115"
15
16 # Tests that fail on uml, maybe elsewhere, FIXME
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 case `uname -r` in
22 2.4*) FSTYPE=${FSTYPE:-ext3};    ALWAYS_EXCEPT="$ALWAYS_EXCEPT 76"
23         [ "$CPU" = "UML" ] && ALWAYS_EXCEPT="$ALWAYS_EXCEPT 105a";;
24 2.6*) FSTYPE=${FSTYPE:-ldiskfs}; ALWAYS_EXCEPT="$ALWAYS_EXCEPT " ;;
25 *) error "unsupported kernel" ;;
26 esac
27
28 SRCDIR=`dirname $0`
29 export PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH:/sbin
30
31 TMP=${TMP:-/tmp}
32
33 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
34 CREATETEST=${CREATETEST:-createtest}
35 LFS=${LFS:-lfs}
36 SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
37 GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
38 LSTRIPE=${LSTRIPE:-"$LFS setstripe"}
39 LFIND=${LFIND:-"$LFS find"}
40 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
41 LSTRIPEINFO=${LSTRIPEINFO:-ll_getstripe_info}
42 LCTL=${LCTL:-lctl}
43 MCREATE=${MCREATE:-mcreate}
44 OPENFILE=${OPENFILE:-openfile}
45 OPENUNLINK=${OPENUNLINK:-openunlink}
46 RANDOM_READS=${RANDOM_READS:-"random-reads"}
47 TOEXCL=${TOEXCL:-toexcl}
48 TRUNCATE=${TRUNCATE:-truncate}
49 MUNLINK=${MUNLINK:-munlink}
50 SOCKETSERVER=${SOCKETSERVER:-socketserver}
51 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
52 IOPENTEST1=${IOPENTEST1:-iopentest1}
53 IOPENTEST2=${IOPENTEST2:-iopentest2}
54 MEMHOG=${MEMHOG:-memhog}
55 DIRECTIO=${DIRECTIO:-directio}
56 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
57 UMOUNT=${UMOUNT:-"umount -d"}
58
59 if [ $UID -ne 0 ]; then
60         echo "Warning: running as non-root uid $UID"
61         RUNAS_ID="$UID"
62         RUNAS=""
63 else
64         RUNAS_ID=${RUNAS_ID:-500}
65         RUNAS=${RUNAS:-"runas -u $RUNAS_ID"}
66
67         # $RUNAS_ID may get set incorrectly somewhere else
68         if [ $RUNAS_ID -eq 0 ]; then
69                 echo "Error: \$RUNAS_ID set to 0, but \$UID is also 0!"
70                 exit 1
71         fi
72 fi
73
74 SANITYLOG=${SANITYLOG:-/tmp/sanity.log}
75
76 export NAME=${NAME:-local}
77
78 SAVE_PWD=$PWD
79
80 LUSTRE=${LUSTRE:-`dirname $0`/..}
81 . $LUSTRE/tests/test-framework.sh
82 init_test_env $@
83 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
84
85 cleanup() {
86         echo -n "cln.."
87         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
88 }
89 CLEANUP=${CLEANUP:-:}
90
91 setup() {
92         echo -n "mnt.."
93         load_modules
94         setupall || exit 10
95         echo "done"
96 }
97 SETUP=${SETUP:-:}
98
99 log() {
100         echo "$*"
101         $LCTL mark "$*" 2> /dev/null || true
102 }
103
104 trace() {
105         log "STARTING: $*"
106         strace -o $TMP/$1.strace -ttt $*
107         RC=$?
108         log "FINISHED: $*: rc $RC"
109         return 1
110 }
111 TRACE=${TRACE:-""}
112
113 check_kernel_version() {
114         VERSION_FILE=$LPROC/version
115         WANT_VER=$1
116         [ ! -f $VERSION_FILE ] && echo "can't find kernel version" && return 1
117         GOT_VER=$(awk '/kernel:/ {print $2}' $VERSION_FILE)
118         [ $GOT_VER == "patchless" ] && return 0
119         [ $GOT_VER -ge $WANT_VER ] && return 0
120         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
121         return 1
122 }
123
124 _basetest() {
125     echo $*
126 }
127
128 basetest() {
129     IFS=abcdefghijklmnopqrstuvwxyz _basetest $1
130 }
131
132 run_one() {
133         if ! grep -q $DIR /proc/mounts; then
134                 $SETUP
135         fi
136         testnum=$1
137         message=$2
138         BEFORE=`date +%s`
139         log "== test $testnum: $message= `date +%H:%M:%S` ($BEFORE)"
140         export TESTNAME=test_$testnum
141         export tfile=f${testnum}
142         export tdir=d${base}
143         test_${testnum} || error "exit with rc=$?"
144         unset TESTNAME
145         pass "($((`date +%s` - $BEFORE))s)"
146         cd $SAVE_PWD
147         $CLEANUP
148 }
149
150 build_test_filter() {
151         [ "$ALWAYS_EXCEPT$EXCEPT$SANITY_EXCEPT" ] && \
152             echo "Skipping tests: `echo $ALWAYS_EXCEPT $EXCEPT $SANITY_EXCEPT`"
153
154         for O in $ONLY; do
155             eval ONLY_${O}=true
156         done
157         for E in $EXCEPT $ALWAYS_EXCEPT $SANITY_EXCEPT; do
158             eval EXCEPT_${E}=true
159         done
160 }
161
162 _basetest() {
163         echo $*
164 }
165
166 basetest() {
167         IFS=abcdefghijklmnopqrstuvwxyz _basetest $1
168 }
169
170 run_test() {
171          export base=`basetest $1`
172          if [ "$ONLY" ]; then
173                  testname=ONLY_$1
174                  if [ ${!testname}x != x ]; then
175                         run_one $1 "$2"
176                         return $?
177                  fi
178                  testname=ONLY_$base
179                  if [ ${!testname}x != x ]; then
180                          run_one $1 "$2"
181                          return $?
182                  fi
183                  echo -n "."
184                  return 0
185         fi
186         testname=EXCEPT_$1
187         if [ ${!testname}x != x ]; then
188                  echo "skipping excluded test $1"
189                  return 0
190         fi
191         testname=EXCEPT_$base
192         if [ ${!testname}x != x ]; then
193                  echo "skipping excluded test $1 (base $base)"
194                  return 0
195         fi
196         run_one $1 "$2"
197         return $?
198 }
199
200 [ "$SANITYLOG" ] && rm -f $SANITYLOG || true
201
202 error() { 
203         sysctl -w lustre.fail_loc=0
204         log "$0: FAIL: $TESTNAME $@"
205         $LCTL dk $TMP/lustre-log-$TESTNAME.log
206         if [ "$SANITYLOG" ]; then
207                 echo "$0: FAIL: $TESTNAME $@" >> $SANITYLOG
208         else
209                 exit 1
210         fi
211         sysctl -w lustre.fail_loc=0
212 }
213
214 pass() { 
215         echo PASS $@
216 }
217
218 mounted_lustre_filesystems() {
219         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
220 }
221
222 MOUNTED="`mounted_lustre_filesystems`"
223 if [ -z "$MOUNTED" ]; then
224         formatall
225         setupall
226         MOUNTED="`mounted_lustre_filesystems`"
227         [ -z "$MOUNTED" ] && error "NAME=$NAME not mounted"
228         I_MOUNTED=yes
229 fi
230
231 [ `echo $MOUNT | wc -w` -gt 1 ] && error "NAME=$NAME mounted more than once"
232
233 DIR=${DIR:-$MOUNT}
234 [ -z "`echo $DIR | grep $MOUNT`" ] && echo "$DIR not in $MOUNT" && exit 99
235
236 LOVNAME=`cat $LPROC/llite/*/lov/common_name | tail -n 1`
237 OSTCOUNT=`cat $LPROC/lov/$LOVNAME/numobd`
238 STRIPECOUNT=`cat $LPROC/lov/$LOVNAME/stripecount`
239 STRIPESIZE=`cat $LPROC/lov/$LOVNAME/stripesize`
240 ORIGFREE=`cat $LPROC/lov/$LOVNAME/kbytesavail`
241 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
242 MDS=$(\ls $LPROC/mds 2> /dev/null | grep -v num_refs | tail -n 1)
243
244 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
245 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
246 rm -rf $DIR/[Rdfs][1-9]*
247
248 build_test_filter
249
250 echo "preparing for tests involving mounts"
251 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
252 touch $EXT2_DEV
253 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
254 echo # add a newline after mke2fs.
255
256 umask 077
257
258 test_0() {
259         touch $DIR/$tfile
260         $CHECKSTAT -t file $DIR/$tfile || error
261         rm $DIR/$tfile
262         $CHECKSTAT -a $DIR/$tfile || error
263 }
264 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
265
266 test_0b() {
267         chmod 0755 $DIR || error
268         $CHECKSTAT -p 0755 $DIR || error
269 }
270 run_test 0b "chmod 0755 $DIR ============================="
271
272 test_1a() {
273         mkdir $DIR/d1
274         mkdir $DIR/d1/d2
275         $CHECKSTAT -t dir $DIR/d1/d2 || error
276 }
277 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
278
279 test_1b() {
280         rmdir $DIR/d1/d2
281         rmdir $DIR/d1
282         $CHECKSTAT -a $DIR/d1 || error
283 }
284 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
285
286 test_2a() {
287         mkdir $DIR/d2
288         touch $DIR/d2/f
289         $CHECKSTAT -t file $DIR/d2/f || error
290 }
291 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
292
293 test_2b() {
294         rm -r $DIR/d2
295         $CHECKSTAT -a $DIR/d2 || error
296 }
297 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
298
299 test_3a() {
300         mkdir $DIR/d3
301         $CHECKSTAT -t dir $DIR/d3 || error
302 }
303 run_test 3a "mkdir .../d3 ======================================"
304
305 test_3b() {
306         if [ ! -d $DIR/d3 ]; then
307                 mkdir $DIR/d3
308         fi
309         touch $DIR/d3/f
310         $CHECKSTAT -t file $DIR/d3/f || error
311 }
312 run_test 3b "touch .../d3/f ===================================="
313
314 test_3c() {
315         rm -r $DIR/d3
316         $CHECKSTAT -a $DIR/d3 || error
317 }
318 run_test 3c "rm -r .../d3 ======================================"
319
320 test_4a() {
321         mkdir $DIR/d4
322         $CHECKSTAT -t dir $DIR/d4 || error
323 }
324 run_test 4a "mkdir .../d4 ======================================"
325
326 test_4b() {
327         if [ ! -d $DIR/d4 ]; then
328                 mkdir $DIR/d4
329         fi
330         mkdir $DIR/d4/d2
331         $CHECKSTAT -t dir $DIR/d4/d2 || error
332 }
333 run_test 4b "mkdir .../d4/d2 ==================================="
334
335 test_5() {
336         mkdir $DIR/d5
337         mkdir $DIR/d5/d2
338         chmod 0707 $DIR/d5/d2
339         $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
340 }
341 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
342
343 test_6a() {
344         touch $DIR/f6a
345         chmod 0666 $DIR/f6a || error
346         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
347 }
348 run_test 6a "touch .../f6a; chmod .../f6a ======================"
349
350 test_6b() {
351         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
352         if [ ! -f $DIR/f6a ]; then
353                 touch $DIR/f6a
354                 chmod 0666 $DIR/f6a
355         fi
356         $RUNAS chmod 0444 $DIR/f6a && error
357         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
358 }
359 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
360
361 test_6c() {
362         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
363         touch $DIR/f6c
364         chown $RUNAS_ID $DIR/f6c || error
365         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
366 }
367 run_test 6c "touch .../f6c; chown .../f6c ======================"
368
369 test_6d() {
370         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
371         if [ ! -f $DIR/f6c ]; then
372                 touch $DIR/f6c
373                 chown $RUNAS_ID $DIR/f6c
374         fi
375         $RUNAS chown $UID $DIR/f6c && error
376         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
377 }
378 run_test 6d "$RUNAS chown .../f6c (should return error) =="
379
380 test_6e() {
381         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
382         touch $DIR/f6e
383         chgrp $RUNAS_ID $DIR/f6e || error
384         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
385 }
386 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
387
388 test_6f() {
389         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
390         if [ ! -f $DIR/f6e ]; then
391                 touch $DIR/f6e
392                 chgrp $RUNAS_ID $DIR/f6e
393         fi
394         $RUNAS chgrp $UID $DIR/f6e && error
395         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
396 }
397 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
398
399 test_6g() {
400         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
401         mkdir $DIR/d6g || error
402         chmod 777 $DIR/d6g || error
403         $RUNAS mkdir $DIR/d6g/d || error
404         chmod g+s $DIR/d6g/d || error
405         mkdir $DIR/d6g/d/subdir
406         $CHECKSTAT -g \#$RUNAS_ID $DIR/d6g/d/subdir || error
407 }
408 run_test 6g "Is new dir in sgid dir inheriting group?"
409
410 test_6h() { # bug 7331
411         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
412         touch $DIR/f6h || error "touch failed"
413         chown $RUNAS_ID:$RUNAS_ID $DIR/f6h || error "initial chown failed"
414         $RUNAS -G$RUNAS_ID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
415         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_ID $DIR/f6h || error
416 }
417 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
418
419 test_7a() {
420         mkdir $DIR/d7
421         $MCREATE $DIR/d7/f
422         chmod 0666 $DIR/d7/f
423         $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
424 }
425 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
426
427 test_7b() {
428         if [ ! -d $DIR/d7 ]; then
429                 mkdir $DIR/d7
430         fi
431         $MCREATE $DIR/d7/f2
432         echo -n foo > $DIR/d7/f2
433         [ "`cat $DIR/d7/f2`" = "foo" ] || error
434         $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
435 }
436 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
437
438 test_8() {
439         mkdir $DIR/d8
440         touch $DIR/d8/f
441         chmod 0666 $DIR/d8/f
442         $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
443 }
444 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
445
446 test_9() {
447         mkdir $DIR/d9
448         mkdir $DIR/d9/d2
449         mkdir $DIR/d9/d2/d3
450         $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
451 }
452 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
453
454 test_10() {
455         mkdir $DIR/d10
456         mkdir $DIR/d10/d2
457         touch $DIR/d10/d2/f
458         $CHECKSTAT -t file $DIR/d10/d2/f || error
459 }
460 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
461
462 test_11() {
463         mkdir $DIR/d11
464         mkdir $DIR/d11/d2
465         chmod 0666 $DIR/d11/d2
466         chmod 0705 $DIR/d11/d2
467         $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
468 }
469 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
470
471 test_12() {
472         mkdir $DIR/d12
473         touch $DIR/d12/f
474         chmod 0666 $DIR/d12/f
475         chmod 0654 $DIR/d12/f
476         $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
477 }
478 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
479
480 test_13() {
481         mkdir $DIR/d13
482         dd if=/dev/zero of=$DIR/d13/f count=10
483         >  $DIR/d13/f
484         $CHECKSTAT -t file -s 0 $DIR/d13/f || error
485 }
486 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
487
488 test_14() {
489         mkdir $DIR/d14
490         touch $DIR/d14/f
491         rm $DIR/d14/f
492         $CHECKSTAT -a $DIR/d14/f || error
493 }
494 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
495
496 test_15() {
497         mkdir $DIR/d15
498         touch $DIR/d15/f
499         mv $DIR/d15/f $DIR/d15/f2
500         $CHECKSTAT -t file $DIR/d15/f2 || error
501 }
502 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
503
504 test_16() {
505         mkdir $DIR/d16
506         touch $DIR/d16/f
507         rm -rf $DIR/d16/f
508         $CHECKSTAT -a $DIR/d16/f || error
509 }
510 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
511
512 test_17a() {
513         mkdir -p $DIR/d17
514         touch $DIR/d17/f
515         ln -s $DIR/d17/f $DIR/d17/l-exist
516         ls -l $DIR/d17
517         $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
518         $CHECKSTAT -f -t f $DIR/d17/l-exist || error
519         rm -f $DIR/d17/l-exist
520         $CHECKSTAT -a $DIR/d17/l-exist || error
521 }
522 run_test 17a "symlinks: create, remove (real) =================="
523
524 test_17b() {
525         mkdir -p $DIR/d17
526         ln -s no-such-file $DIR/d17/l-dangle
527         ls -l $DIR/d17
528         $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
529         $CHECKSTAT -fa $DIR/d17/l-dangle || error
530         rm -f $DIR/d17/l-dangle
531         $CHECKSTAT -a $DIR/d17/l-dangle || error
532 }
533 run_test 17b "symlinks: create, remove (dangling) =============="
534
535 test_17c() { # bug 3440 - don't save failed open RPC for replay
536         mkdir -p $DIR/d17
537         ln -s foo $DIR/d17/f17c
538         cat $DIR/d17/f17c && error "opened non-existent symlink" || true
539 }
540 run_test 17c "symlinks: open dangling (should return error) ===="
541
542 test_17d() {
543         mkdir -p $DIR/d17
544         ln -s foo $DIR/d17/f17d
545         touch $DIR/d17/f17d || error "creating to new symlink"
546 }
547 run_test 17d "symlinks: create dangling ========================"
548
549 test_18() {
550         touch $DIR/f
551         ls $DIR || error
552 }
553 run_test 18 "touch .../f ; ls ... =============================="
554
555 test_19a() {
556         touch $DIR/f19
557         ls -l $DIR
558         rm $DIR/f19
559         $CHECKSTAT -a $DIR/f19 || error
560 }
561 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
562
563 test_19b() {
564         ls -l $DIR/f19 && error || true
565 }
566 run_test 19b "ls -l .../f19 (should return error) =============="
567
568 test_19c() {
569         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
570         $RUNAS touch $DIR/f19 && error || true
571 }
572 run_test 19c "$RUNAS touch .../f19 (should return error) =="
573
574 test_19d() {
575         cat $DIR/f19 && error || true
576 }
577 run_test 19d "cat .../f19 (should return error) =============="
578
579 test_20() {
580         touch $DIR/f
581         rm $DIR/f
582         log "1 done"
583         touch $DIR/f
584         rm $DIR/f
585         log "2 done"
586         touch $DIR/f
587         rm $DIR/f
588         log "3 done"
589         $CHECKSTAT -a $DIR/f || error
590 }
591 run_test 20 "touch .../f ; ls -l ... ==========================="
592
593 test_21() {
594         mkdir $DIR/d21
595         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
596         ln -s dangle $DIR/d21/link
597         echo foo >> $DIR/d21/link
598         cat $DIR/d21/dangle
599         $CHECKSTAT -t link $DIR/d21/link || error
600         $CHECKSTAT -f -t file $DIR/d21/link || error
601 }
602 run_test 21 "write to dangling link ============================"
603
604 test_22() {
605         mkdir $DIR/d22
606         chown $RUNAS_ID $DIR/d22
607         # Tar gets pissy if it can't access $PWD *sigh*
608         (cd $TMP || error "cd $TMP failed";
609         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
610         $RUNAS tar xfC - $DIR/d22)
611         ls -lR $DIR/d22/etc || error "ls -lR $DIR/d22/etc failed"
612         $CHECKSTAT -t dir $DIR/d22/etc || error "checkstat -t dir failed"
613         $CHECKSTAT -u \#$RUNAS_ID $DIR/d22/etc || error "checkstat -u failed"
614 }
615 run_test 22 "unpack tar archive as non-root user ==============="
616
617 test_23() {
618         mkdir $DIR/d23
619         $TOEXCL $DIR/d23/f23
620         $TOEXCL -e $DIR/d23/f23 || error
621 }
622 run_test 23 "O_CREAT|O_EXCL in subdir =========================="
623
624 test_24a() {
625         echo '== rename sanity =============================================='
626         echo '-- same directory rename'
627         mkdir $DIR/R1
628         touch $DIR/R1/f
629         mv $DIR/R1/f $DIR/R1/g
630         $CHECKSTAT -t file $DIR/R1/g || error
631 }
632 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
633
634 test_24b() {
635         mkdir $DIR/R2
636         touch $DIR/R2/{f,g}
637         mv $DIR/R2/f $DIR/R2/g
638         $CHECKSTAT -a $DIR/R2/f || error
639         $CHECKSTAT -t file $DIR/R2/g || error
640 }
641 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
642
643 test_24c() {
644         mkdir $DIR/R3
645         mkdir $DIR/R3/f
646         mv $DIR/R3/f $DIR/R3/g
647         $CHECKSTAT -a $DIR/R3/f || error
648         $CHECKSTAT -t dir $DIR/R3/g || error
649 }
650 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
651
652 test_24d() {
653         mkdir $DIR/R4
654         mkdir $DIR/R4/{f,g}
655         mrename $DIR/R4/f $DIR/R4/g
656         $CHECKSTAT -a $DIR/R4/f || error
657         $CHECKSTAT -t dir $DIR/R4/g || error
658 }
659 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
660
661 test_24e() {
662         echo '-- cross directory renames --' 
663         mkdir $DIR/R5{a,b}
664         touch $DIR/R5a/f
665         mv $DIR/R5a/f $DIR/R5b/g
666         $CHECKSTAT -a $DIR/R5a/f || error
667         $CHECKSTAT -t file $DIR/R5b/g || error
668 }
669 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
670
671 test_24f() {
672         mkdir $DIR/R6{a,b}
673         touch $DIR/R6a/f $DIR/R6b/g
674         mv $DIR/R6a/f $DIR/R6b/g
675         $CHECKSTAT -a $DIR/R6a/f || error
676         $CHECKSTAT -t file $DIR/R6b/g || error
677 }
678 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
679
680 test_24g() {
681         mkdir $DIR/R7{a,b}
682         mkdir $DIR/R7a/d
683         mv $DIR/R7a/d $DIR/R7b/e
684         $CHECKSTAT -a $DIR/R7a/d || error
685         $CHECKSTAT -t dir $DIR/R7b/e || error
686 }
687 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R5b/e ======"
688
689 test_24h() {
690         mkdir $DIR/R8{a,b}
691         mkdir $DIR/R8a/d $DIR/R8b/e
692         mrename $DIR/R8a/d $DIR/R8b/e
693         $CHECKSTAT -a $DIR/R8a/d || error
694         $CHECKSTAT -t dir $DIR/R8b/e || error
695 }
696 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
697
698 test_24i() {
699         echo "-- rename error cases"
700         mkdir $DIR/R9
701         mkdir $DIR/R9/a
702         touch $DIR/R9/f
703         mrename $DIR/R9/f $DIR/R9/a
704         $CHECKSTAT -t file $DIR/R9/f || error
705         $CHECKSTAT -t dir  $DIR/R9/a || error
706         $CHECKSTAT -a file $DIR/R9/a/f || error
707 }
708 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
709
710 test_24j() {
711         mkdir $DIR/R10
712         mrename $DIR/R10/f $DIR/R10/g
713         $CHECKSTAT -t dir $DIR/R10 || error
714         $CHECKSTAT -a $DIR/R10/f || error
715         $CHECKSTAT -a $DIR/R10/g || error
716 }
717 run_test 24j "source does not exist ============================" 
718
719 test_24k() {
720         mkdir $DIR/R11a $DIR/R11a/d
721         touch $DIR/R11a/f
722         mv $DIR/R11a/f $DIR/R11a/d
723         $CHECKSTAT -a $DIR/R11a/f || error
724         $CHECKSTAT -t file $DIR/R11a/d/f || error
725 }
726 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
727
728 # bug 2429 - rename foo foo foo creates invalid file
729 test_24l() {
730         f="$DIR/f24l"
731         multiop $f OcNs || error
732 }
733 run_test 24l "Renaming a file to itself ========================"
734
735 test_24m() {
736         f="$DIR/f24m"
737         multiop $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
738         # on ext3 this does not remove either the source or target files
739         # though the "expected" operation would be to remove the source
740         $CHECKSTAT -t file ${f} || error "${f} missing"
741         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
742 }
743 run_test 24m "Renaming a file to a hard link to itself ========="
744
745 test_24n() {
746     f="$DIR/f24n"
747     # this stats the old file after it was renamed, so it should fail
748     touch ${f}
749     $CHECKSTAT ${f}
750     mv ${f} ${f}.rename
751     $CHECKSTAT ${f}.rename
752     $CHECKSTAT -a ${f}
753 }
754 run_test 24n "Statting the old file after renaming (Posix rename 2)"
755
756 test_24o() {
757         check_kernel_version 37 || return 0
758         mkdir -p $DIR/d24o
759         rename_many -s random -v -n 10 $DIR/d24o
760 }
761 run_test 24o "rename of files during htree split ==============="
762
763 test_24p() {
764         mkdir $DIR/R12{a,b}
765         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
766         mrename $DIR/R12a $DIR/R12b
767         $CHECKSTAT -a $DIR/R12a || error
768         $CHECKSTAT -t dir $DIR/R12b || error
769         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
770         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
771 }
772 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
773
774 test_24q() {
775         mkdir $DIR/R13{a,b}
776         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
777         multiop $DIR/R13b D_c &
778         MULTIPID=$!
779         usleep 500
780
781         mrename $DIR/R13a $DIR/R13b
782         $CHECKSTAT -a $DIR/R13a || error
783         $CHECKSTAT -t dir $DIR/R13b || error
784         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
785         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
786         kill -USR1 $MULTIPID
787         wait $MULTIPID || error "multiop close failed"
788 }
789 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
790
791 test_24r() { #bug 3789
792         mkdir $DIR/R14a $DIR/R14a/b
793         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
794         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
795         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
796 }
797 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
798
799 test_24s() {
800         mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
801         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
802         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
803         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
804 }
805 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
806 test_24t() {
807         mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
808         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
809         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
810         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
811 }
812 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
813
814 test_25a() {
815         echo '== symlink sanity ============================================='
816
817         mkdir $DIR/d25
818         ln -s d25 $DIR/s25
819         touch $DIR/s25/foo || error
820 }
821 run_test 25a "create file in symlinked directory ==============="
822
823 test_25b() {
824         [ ! -d $DIR/d25 ] && test_25a
825         $CHECKSTAT -t file $DIR/s25/foo || error
826 }
827 run_test 25b "lookup file in symlinked directory ==============="
828
829 test_26a() {
830         mkdir $DIR/d26
831         mkdir $DIR/d26/d26-2
832         ln -s d26/d26-2 $DIR/s26
833         touch $DIR/s26/foo || error
834 }
835 run_test 26a "multiple component symlink ======================="
836
837 test_26b() {
838         mkdir -p $DIR/d26b/d26-2
839         ln -s d26b/d26-2/foo $DIR/s26-2
840         touch $DIR/s26-2 || error
841 }
842 run_test 26b "multiple component symlink at end of lookup ======"
843
844 test_26c() {
845         mkdir $DIR/d26.2
846         touch $DIR/d26.2/foo
847         ln -s d26.2 $DIR/s26.2-1
848         ln -s s26.2-1 $DIR/s26.2-2
849         ln -s s26.2-2 $DIR/s26.2-3
850         chmod 0666 $DIR/s26.2-3/foo
851 }
852 run_test 26c "chain of symlinks ================================"
853
854 # recursive symlinks (bug 439)
855 test_26d() {
856         ln -s d26-3/foo $DIR/d26-3
857 }
858 run_test 26d "create multiple component recursive symlink ======"
859
860 test_26e() {
861         [ ! -h $DIR/d26-3 ] && test_26d
862         rm $DIR/d26-3
863 }
864 run_test 26e "unlink multiple component recursive symlink ======"
865
866 # recursive symlinks (bug 7022)
867 test_26f() {
868         mkdir $DIR/$tfile        || error "mkdir $DIR/$tfile failed"
869         cd $DIR/$tfile           || error "cd $DIR/$tfile failed"
870         mkdir -p $tdir/bar1      || error "mkdir $tdir/bar1 failed"
871         mkdir $tfile             || error "mkdir $tfile failed"
872         cd $tfile                || error "cd $tfile failed"
873         ln -s .. dotdot          || error "ln dotdot failed"
874         ln -s dotdot/$tdir $tdir || error "ln $tdir failed"
875         cd ../..                 || error "cd ../.. failed"
876         output=`ls $tfile/$tfile/$tdir/bar1`
877         [ "$output" = bar1 ] && error "unexpected output"
878         rm -r $tfile             || error "rm $tfile failed"
879         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
880 }
881 run_test 26f "rm -r of a directory which has recursive symlink ="
882
883 test_27a() {
884         echo '== stripe sanity =============================================='
885         mkdir -p $DIR/d27 || error "mkdir failed"
886         $SETSTRIPE $DIR/d27/f0 65536 0 1 || error "lstripe failed"
887         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
888         pass
889         log "== test_27b: write to one stripe file ========================="
890         cp /etc/hosts $DIR/d27/f0 || error
891 }
892 run_test 27a "one stripe file =================================="
893
894 test_27c() {
895         [ "$OSTCOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
896         mkdir -p $DIR/d27
897         $SETSTRIPE $DIR/d27/f01 65536 0 2 || error "lstripe failed"
898         [ `$GETSTRIPE $DIR/d27/f01 | grep -A 10 obdidx | wc -l` -eq 4 ] ||
899                 error "two-stripe file doesn't have two stripes"
900         pass
901         log "== test_27d: write to two stripe file file f01 ================"
902         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
903 }
904 run_test 27c "create two stripe file f01 ======================="
905
906 test_27d() {
907         mkdir -p $DIR/d27
908         $SETSTRIPE $DIR/d27/fdef 0 -1 0 || error "lstripe failed"
909         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
910         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
911 }
912 run_test 27d "create file with default settings ================"
913
914 test_27e() {
915         mkdir -p $DIR/d27
916         $SETSTRIPE $DIR/d27/f12 65536 0 2 || error "lstripe failed"
917         $SETSTRIPE $DIR/d27/f12 65536 0 2 && error "lstripe succeeded twice"
918         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
919 }
920 run_test 27e "lstripe existing file (should return error) ======"
921
922 test_27f() {
923         mkdir -p $DIR/d27
924         $SETSTRIPE $DIR/d27/fbad 100 0 1 && error "lstripe failed"
925         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
926         $GETSTRIPE $DIR/d27/fbad || error "lfs getstripe failed"
927 }
928 run_test 27f "lstripe with bad stripe size (should return error)"
929
930 test_27g() {
931         mkdir -p $DIR/d27
932         $MCREATE $DIR/d27/fnone || error "mcreate failed"
933         pass
934         log "== test 27h: lfs getstripe with no objects ===================="
935         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" || error "has object"
936         pass
937         log "== test 27i: lfs getstripe with some objects =================="
938         touch $DIR/d27/fsome || error "touch failed"
939         $GETSTRIPE $DIR/d27/fsome | grep obdidx || error "missing objects"
940 }
941 run_test 27g "test lfs getstripe ==========================================="
942
943 test_27j() {
944         mkdir -p $DIR/d27
945         $SETSTRIPE $DIR/d27/f27j 65536 $OSTCOUNT 1 && error "lstripe failed"||true
946 }
947 run_test 27j "lstripe with bad stripe offset (should return error)"
948
949 test_27k() { # bug 2844
950         mkdir -p $DIR/d27
951         FILE=$DIR/d27/f27k
952         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
953         [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
954         $SETSTRIPE $FILE 67108864 -1 0 || error "lstripe failed"
955         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
956         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
957         dd if=/dev/zero of=$FILE bs=4k count=1
958         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
959         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
960 }
961 run_test 27k "limit i_blksize for broken user apps ============="
962
963 test_27l() {
964         mkdir -p $DIR/d27
965         mcreate $DIR/f27l || error "creating file"
966         $RUNAS $SETSTRIPE $DIR/f27l 65536 -1 1 && \
967                 error "lstripe should have failed" || true
968 }
969 run_test 27l "check setstripe permissions (should return error)"
970
971 test_27m() {
972         [ "$OSTCOUNT" -lt "2" ] && echo "skipping out-of-space test on OST0" && return
973         if [ $ORIGFREE -gt $MAXFREE ]; then
974                 echo "skipping out-of-space test on OST0"
975                 return
976         fi
977         mkdir -p $DIR/d27
978         $SETSTRIPE $DIR/d27/f27m_1 0 0 1
979         dd if=/dev/zero of=$DIR/d27/f27m_1 bs=1024 count=$MAXFREE && \
980                 error "dd should fill OST0"
981         i=2
982         while $SETSTRIPE $DIR/d27/f27m_$i 0 0 1 ; do
983                 i=`expr $i + 1`
984                 [ $i -gt 256 ] && break
985         done
986         i=`expr $i + 1`
987         touch $DIR/d27/f27m_$i
988         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
989                 error "OST0 was full but new created file still use it"
990         i=`expr $i + 1`
991         touch $DIR/d27/f27m_$i
992         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
993                 error "OST0 was full but new created file still use it"
994         rm -r $DIR/d27
995 }
996 run_test 27m "create file while OST0 was full =================="
997
998 # osc's keep a NOSPC stick flag that gets unset with rmdir
999 reset_enospc() {
1000         [ "$1" ] && FAIL_LOC=$1 || FAIL_LOC=0
1001         mkdir -p $DIR/d27/nospc
1002         rmdir $DIR/d27/nospc
1003         sysctl -w lustre.fail_loc=$FAIL_LOC
1004 }
1005
1006 exhaust_precreations() {
1007         OSTIDX=$1
1008         OST=$(grep ${OSTIDX}": " $LPROC/lov/${LOVNAME}/target_obd | \
1009             awk '{print $2}' | sed -e 's/_UUID$//')
1010         # on the mdt's osc
1011         last_id=$(cat $LPROC/osc/${OST}-osc/prealloc_last_id)
1012         next_id=$(cat $LPROC/osc/${OST}-osc/prealloc_next_id)
1013
1014         mkdir -p $DIR/d27/${OST}
1015         $SETSTRIPE $DIR/d27/${OST} 0 $OSTIDX 1
1016 #define OBD_FAIL_OST_ENOSPC              0x215
1017         sysctl -w lustre.fail_loc=0x215
1018         echo "Creating to objid $last_id on ost $OST..."
1019         createmany -o $DIR/d27/${OST}/f $next_id $((last_id - next_id + 2))
1020         grep '[0-9]' $LPROC/osc/${OST}-osc/prealloc*
1021         reset_enospc $2
1022 }
1023
1024 exhaust_all_precreations() {
1025         local i
1026         for (( i=0; i < OSTCOUNT; i++ )) ; do
1027                 exhaust_precreations $i 0x215
1028         done
1029         reset_enospc $1
1030 }
1031
1032 test_27n() {
1033         [ "$OSTCOUNT" -lt "2" -o -z "$MDS" ] && \
1034                 echo "skip $TESTNAME for remote MDS or OST count" && return
1035
1036         reset_enospc
1037         rm -f $DIR/d27/f27n
1038         exhaust_precreations 0 0x80000215
1039
1040         touch $DIR/d27/f27n || error
1041
1042         reset_enospc
1043 }
1044 run_test 27n "create file with some full OSTs =================="
1045
1046 test_27o() {
1047         [ "$OSTCOUNT" -lt "2" -o -z "$MDS" ] && echo "skipping $TESTNAME" && return
1048
1049         reset_enospc
1050         rm -f $DIR/d27/f27o
1051         exhaust_all_precreations 0x215
1052         sleep 5
1053
1054         touch $DIR/d27/f27o && error "able to create $DIR/d27/f27o"
1055
1056         reset_enospc
1057 }
1058 run_test 27o "create file with all full OSTs (should error) ===="
1059
1060 test_27p() {
1061         [ "$OSTCOUNT" -lt "2" -o -z "$MDS" ] && echo "skipping $TESTNAME" && return
1062
1063         reset_enospc
1064         rm -f $DIR/d27/f27p
1065
1066         $MCREATE $DIR/d27/f27p || error
1067         $TRUNCATE $DIR/d27/f27p 80000000 || error
1068         $CHECKSTAT -s 80000000 $DIR/d27/f27p || error
1069
1070         exhaust_precreations 0 0x80000215
1071         echo foo >> $DIR/d27/f27p || error
1072         $CHECKSTAT -s 80000004 $DIR/d27/f27p || error
1073
1074         reset_enospc
1075 }
1076 run_test 27p "append to a truncated file with some full OSTs ==="
1077
1078 test_27q() {
1079         [ "$OSTCOUNT" -lt "2" -o -z "$MDS" ] && echo "skipping $TESTNAME" && return
1080
1081         reset_enospc
1082         rm -f $DIR/d27/f27q
1083
1084         $MCREATE $DIR/d27/f27q || error "mcreate $DIR/d27/f27q failed"
1085         $TRUNCATE $DIR/d27/f27q 80000000 ||error "truncate $DIR/d27/f27q failed"
1086         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat failed"
1087
1088         exhaust_all_precreations 0x215
1089
1090         echo foo >> $DIR/d27/f27q && error "append succeeded"
1091         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat 2 failed"
1092
1093         reset_enospc
1094 }
1095 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1096
1097 test_27r() {
1098         [ "$OSTCOUNT" -lt "2" -o -z "$MDS" ] && echo "skipping $TESTNAME" && return
1099
1100         reset_enospc
1101         rm -f $DIR/d27/f27r
1102         exhaust_precreations 0 0x80000215
1103
1104         $SETSTRIPE $DIR/d27/f27r 0 0 2 # && error
1105
1106         reset_enospc
1107 }
1108 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1109
1110 test_27s() { # bug 10725
1111         mkdir -p $DIR/$tdir
1112         $LSTRIPE $DIR/$tdir $((2048 * 1024 * 1024)) -1 2 && \
1113                 error "stripe width >= 2^32 succeeded" || true
1114 }
1115 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1116
1117 test_27t() { # bug 10864
1118         WDIR=`pwd`
1119         WLFS=`which lfs`
1120         cd $DIR
1121         touch $tfile
1122         $WLFS getstripe $tfile
1123         cd $WDIR
1124 }
1125 run_test 27t "check that utils parse path correctly"
1126
1127 test_27x() { # bug 10997
1128         mkdir -p $DIR/d27w || error "mkdir failed"
1129         $LSTRIPE $DIR/d27w/f0 -s 65536 || error "lstripe failed"
1130         size=`$LSTRIPEINFO $DIR/d27w/f0 | awk {'print $1'}`
1131         [ $size -ne 65536 ] && error "stripe size $size != 65536" || true
1132
1133         [ "$OSTCOUNT" -lt "2" ] && echo "skipping multiple stripe count/offset test" && return
1134         for i in `seq 1 $OSTCOUNT`; do
1135                 offset=$(($i-1))
1136                 $LSTRIPE $DIR/d27w/f$i -c $i -i $offset || error "lstripe -c $i -i $offset failed"
1137                 count=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $2'}`
1138                 index=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $3'}`
1139                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1140                 [ $index -ne $offset ] && error "stripe offset $index != $offset" || true
1141         done
1142 }
1143 run_test 27x "check lfs setstripe -c -s -i options ============="
1144
1145 test_28() {
1146         mkdir $DIR/d28
1147         $CREATETEST $DIR/d28/ct || error
1148 }
1149 run_test 28 "create/mknod/mkdir with bad file types ============"
1150
1151 test_29() {
1152         cancel_lru_locks mdc
1153         mkdir $DIR/d29
1154         touch $DIR/d29/foo
1155         log 'first d29'
1156         ls -l $DIR/d29
1157         MDCDIR=${MDCDIR:-`find $LPROC/ldlm/namespaces | grep mdc | head -1`}
1158         LOCKCOUNTORIG=`cat $MDCDIR/lock_count`
1159         LOCKUNUSEDCOUNTORIG=`cat $MDCDIR/lock_unused_count`
1160         [ -z $"LOCKCOUNTORIG" ] && echo "No mdc lock count" && return 1
1161         log 'second d29'
1162         ls -l $DIR/d29
1163         log 'done'
1164         LOCKCOUNTCURRENT=`cat $MDCDIR/lock_count`
1165         LOCKUNUSEDCOUNTCURRENT=`cat $MDCDIR/lock_unused_count`
1166         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1167                 echo > $LPROC/ldlm/dump_namespaces
1168                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1169                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1170                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1171                 return 2
1172         fi
1173         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1174                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1175                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1176                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1177                 return 3
1178         fi
1179 }
1180 run_test 29 "IT_GETATTR regression  ============================"
1181
1182 test_30() {
1183         cp `which ls` $DIR
1184         $DIR/ls /
1185         rm $DIR/ls
1186 }
1187 run_test 30 "run binary from Lustre (execve) ==================="
1188
1189 test_31a() {
1190         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1191         $CHECKSTAT -a $DIR/f31 || error
1192 }
1193 run_test 31a "open-unlink file =================================="
1194
1195 test_31b() {
1196         touch $DIR/f31 || error
1197         ln $DIR/f31 $DIR/f31b || error
1198         multiop $DIR/f31b Ouc || error
1199         $CHECKSTAT -t file $DIR/f31 || error
1200 }
1201 run_test 31b "unlink file with multiple links while open ======="
1202
1203 test_31c() {
1204         touch $DIR/f31 || error
1205         ln $DIR/f31 $DIR/f31c || error
1206         multiop $DIR/f31 O_uc &
1207         MULTIPID=$!
1208         multiop $DIR/f31c Ouc
1209         usleep 500
1210         kill -USR1 $MULTIPID
1211         wait $MULTIPID
1212 }
1213 run_test 31c "open-unlink file with multiple links ============="
1214
1215 test_31d() {
1216         opendirunlink $DIR/d31d $DIR/d31d || error
1217         $CHECKSTAT -a $DIR/d31d || error
1218 }
1219 run_test 31d "remove of open directory ========================="
1220
1221 test_31e() { # bug 2904
1222         check_kernel_version 34 || return 0
1223         openfilleddirunlink $DIR/d31e || error
1224 }
1225 run_test 31e "remove of open non-empty directory ==============="
1226
1227 test_31f() { # bug 4554
1228         set -vx
1229         mkdir $DIR/d31f
1230         lfs setstripe $DIR/d31f 1048576 -1 1
1231         cp /etc/hosts $DIR/d31f
1232         ls -l $DIR/d31f
1233         lfs getstripe $DIR/d31f/hosts
1234         multiop $DIR/d31f D_c &
1235         MULTIPID=$!
1236
1237         sleep 1
1238
1239         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1240         mkdir $DIR/d31f
1241         lfs setstripe $DIR/d31f 1048576 -1 1
1242         cp /etc/hosts $DIR/d31f
1243         ls -l $DIR/d31f
1244         lfs getstripe $DIR/d31f/hosts
1245         multiop $DIR/d31f D_c &
1246         MULTIPID2=$!
1247
1248         sleep 6
1249
1250         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1251         wait $MULTIPID || error "first opendir $MULTIPID failed"
1252
1253         sleep 6
1254
1255         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1256         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1257         set +vx
1258 }
1259 run_test 31f "remove of open directory with open-unlink file ==="
1260
1261 test_32a() {
1262         echo "== more mountpoints and symlinks ================="
1263         [ -e $DIR/d32a ] && rm -fr $DIR/d32a
1264         mkdir -p $DIR/d32a/ext2-mountpoint 
1265         mount -t ext2 -o loop $EXT2_DEV $DIR/d32a/ext2-mountpoint || error
1266         $CHECKSTAT -t dir $DIR/d32a/ext2-mountpoint/.. || error  
1267         $UMOUNT $DIR/d32a/ext2-mountpoint || error
1268 }
1269 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1270
1271 test_32b() {
1272         [ -e $DIR/d32b ] && rm -fr $DIR/d32b
1273         mkdir -p $DIR/d32b/ext2-mountpoint 
1274         mount -t ext2 -o loop $EXT2_DEV $DIR/d32b/ext2-mountpoint || error
1275         ls -al $DIR/d32b/ext2-mountpoint/.. || error
1276         $UMOUNT $DIR/d32b/ext2-mountpoint || error
1277 }
1278 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1279  
1280 test_32c() {
1281         [ -e $DIR/d32c ] && rm -fr $DIR/d32c
1282         mkdir -p $DIR/d32c/ext2-mountpoint 
1283         mount -t ext2 -o loop $EXT2_DEV $DIR/d32c/ext2-mountpoint || error
1284         mkdir -p $DIR/d32c/d2/test_dir    
1285         $CHECKSTAT -t dir $DIR/d32c/ext2-mountpoint/../d2/test_dir || error
1286         $UMOUNT $DIR/d32c/ext2-mountpoint || error
1287 }
1288 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1289
1290 test_32d() {
1291         [ -e $DIR/d32d ] && rm -fr $DIR/d32d
1292         mkdir -p $DIR/d32d/ext2-mountpoint 
1293         mount -t ext2 -o loop $EXT2_DEV $DIR/d32d/ext2-mountpoint || error
1294         mkdir -p $DIR/d32d/d2/test_dir    
1295         ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
1296         $UMOUNT $DIR/d32d/ext2-mountpoint || error
1297 }
1298 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1299
1300 test_32e() {
1301         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1302         mkdir -p $DIR/d32e/tmp    
1303         TMP_DIR=$DIR/d32e/tmp       
1304         ln -s $DIR/d32e $TMP_DIR/symlink11 
1305         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1306         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1307         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1308 }
1309 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1310
1311 test_32f() {
1312         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1313         mkdir -p $DIR/d32f/tmp    
1314         TMP_DIR=$DIR/d32f/tmp       
1315         ln -s $DIR/d32f $TMP_DIR/symlink11 
1316         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1317         ls $DIR/d32f/tmp/symlink11  || error
1318         ls $DIR/d32f/symlink01 || error
1319 }
1320 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1321
1322 test_32g() {
1323         TMP_DIR=$DIR/$tdir/tmp       
1324         mkdir -p $TMP_DIR $DIR/${tdir}2
1325         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12 
1326         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1327         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1328         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1329         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1330         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1331 }
1332 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1333
1334 test_32h() {
1335         rm -fr $DIR/$tdir $DIR/${tdir}2
1336         TMP_DIR=$DIR/$tdir/tmp       
1337         mkdir -p $TMP_DIR $DIR/${tdir}2 
1338         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12 
1339         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1340         ls $TMP_DIR/symlink12 || error
1341         ls $DIR/$tdir/symlink02  || error
1342 }
1343 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1344
1345 test_32i() {
1346         [ -e $DIR/d32i ] && rm -fr $DIR/d32i
1347         mkdir -p $DIR/d32i/ext2-mountpoint 
1348         mount -t ext2 -o loop $EXT2_DEV $DIR/d32i/ext2-mountpoint || error
1349         touch $DIR/d32i/test_file
1350         $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error  
1351         $UMOUNT $DIR/d32i/ext2-mountpoint || error
1352 }
1353 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1354
1355 test_32j() {
1356         [ -e $DIR/d32j ] && rm -fr $DIR/d32j
1357         mkdir -p $DIR/d32j/ext2-mountpoint 
1358         mount -t ext2 -o loop $EXT2_DEV $DIR/d32j/ext2-mountpoint || error
1359         touch $DIR/d32j/test_file
1360         cat $DIR/d32j/ext2-mountpoint/../test_file || error
1361         $UMOUNT $DIR/d32j/ext2-mountpoint || error
1362 }
1363 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1364
1365 test_32k() {
1366         rm -fr $DIR/d32k
1367         mkdir -p $DIR/d32k/ext2-mountpoint 
1368         mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint  
1369         mkdir -p $DIR/d32k/d2
1370         touch $DIR/d32k/d2/test_file || error
1371         $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
1372         $UMOUNT $DIR/d32k/ext2-mountpoint || error
1373 }
1374 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1375
1376 test_32l() {
1377         rm -fr $DIR/d32l
1378         mkdir -p $DIR/d32l/ext2-mountpoint 
1379         mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
1380         mkdir -p $DIR/d32l/d2
1381         touch $DIR/d32l/d2/test_file
1382         cat  $DIR/d32l/ext2-mountpoint/../d2/test_file || error
1383         $UMOUNT $DIR/d32l/ext2-mountpoint || error
1384 }
1385 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1386
1387 test_32m() {
1388         rm -fr $DIR/d32m
1389         mkdir -p $DIR/d32m/tmp    
1390         TMP_DIR=$DIR/d32m/tmp       
1391         ln -s $DIR $TMP_DIR/symlink11 
1392         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1393         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1394         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1395 }
1396 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1397
1398 test_32n() {
1399         rm -fr $DIR/d32n
1400         mkdir -p $DIR/d32n/tmp    
1401         TMP_DIR=$DIR/d32n/tmp       
1402         ln -s $DIR $TMP_DIR/symlink11 
1403         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1404         ls -l $DIR/d32n/tmp/symlink11  || error
1405         ls -l $DIR/d32n/symlink01 || error
1406 }
1407 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1408
1409 test_32o() {
1410         rm -fr $DIR/d32o $DIR/$tfile
1411         touch $DIR/$tfile 
1412         mkdir -p $DIR/d32o/tmp    
1413         TMP_DIR=$DIR/d32o/tmp       
1414         ln -s $DIR/$tfile $TMP_DIR/symlink12 
1415         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1416         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1417         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1418         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1419         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1420 }
1421 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1422
1423 test_32p() {
1424     log 32p_1
1425         rm -fr $DIR/d32p
1426     log 32p_2
1427         rm -f $DIR/$tfile
1428     log 32p_3
1429         touch $DIR/$tfile 
1430     log 32p_4
1431         mkdir -p $DIR/d32p/tmp    
1432     log 32p_5
1433         TMP_DIR=$DIR/d32p/tmp       
1434     log 32p_6
1435         ln -s $DIR/$tfile $TMP_DIR/symlink12 
1436     log 32p_7
1437         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1438     log 32p_8
1439         cat $DIR/d32p/tmp/symlink12 || error
1440     log 32p_9
1441         cat $DIR/d32p/symlink02 || error
1442     log 32p_10
1443 }
1444 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1445
1446 test_32q() {
1447         [ -e $DIR/d32q ] && rm -fr $DIR/d32q
1448         mkdir -p $DIR/d32q
1449         touch $DIR/d32q/under_the_mount
1450         mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
1451         ls $DIR/d32q/under_the_mount && error || true
1452         $UMOUNT $DIR/d32q || error
1453 }
1454 run_test 32q "stat follows mountpoints in Lustre (should return error)"
1455
1456 test_32r() {
1457         [ -e $DIR/d32r ] && rm -fr $DIR/d32r
1458         mkdir -p $DIR/d32r
1459         touch $DIR/d32r/under_the_mount
1460         mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
1461         ls $DIR/d32r | grep -q under_the_mount && error || true
1462         $UMOUNT $DIR/d32r || error
1463 }
1464 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
1465
1466 test_33() {
1467         rm -f $DIR/$tfile
1468         touch $DIR/$tfile
1469         chmod 444 $DIR/$tfile
1470         chown $RUNAS_ID $DIR/$tfile
1471         log 33_1
1472         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
1473         log 33_2
1474 }
1475 run_test 33 "write file with mode 444 (should return error) ===="
1476
1477 test_33a() {
1478         rm -fr $DIR/d33
1479         mkdir -p $DIR/d33
1480         chown $RUNAS_ID $DIR/d33
1481         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
1482         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
1483                 error "open RDWR" || true
1484 }
1485 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
1486
1487 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
1488 test_34a() {
1489         rm -f $DIR/f34
1490         $MCREATE $DIR/f34 || error
1491         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1492         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
1493         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1494         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1495 }
1496 run_test 34a "truncate file that has not been opened ==========="
1497
1498 test_34b() {
1499         [ ! -f $DIR/f34 ] && test_34a
1500         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1501         $OPENFILE -f O_RDONLY $DIR/f34
1502         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1503         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1504 }
1505 run_test 34b "O_RDONLY opening file doesn't create objects ====="
1506
1507 test_34c() {
1508         [ ! -f $DIR/f34 ] && test_34a 
1509         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1510         $OPENFILE -f O_RDWR $DIR/f34
1511         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
1512         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1513 }
1514 run_test 34c "O_RDWR opening file-with-size works =============="
1515
1516 test_34d() {
1517         [ ! -f $DIR/f34 ] && test_34a 
1518         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
1519         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1520         rm $DIR/f34
1521 }
1522 run_test 34d "write to sparse file ============================="
1523
1524 test_34e() {
1525         rm -f $DIR/f34e
1526         $MCREATE $DIR/f34e || error
1527         $TRUNCATE $DIR/f34e 1000 || error
1528         $CHECKSTAT -s 1000 $DIR/f34e || error
1529         $OPENFILE -f O_RDWR $DIR/f34e
1530         $CHECKSTAT -s 1000 $DIR/f34e || error
1531 }
1532 run_test 34e "create objects, some with size and some without =="
1533
1534 test_34f() { # bug 6242, 6243
1535         SIZE34F=48000
1536         rm -f $DIR/f34f
1537         $MCREATE $DIR/f34f || error
1538         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
1539         dd if=$DIR/f34f of=$TMP/f34f
1540         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
1541         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
1542         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
1543         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
1544         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
1545 }
1546 run_test 34f "read from a file with no objects until EOF ======="
1547
1548 test_35a() {
1549         cp /bin/sh $DIR/f35a
1550         chmod 444 $DIR/f35a
1551         chown $RUNAS_ID $DIR/f35a
1552         $RUNAS $DIR/f35a && error || true
1553         rm $DIR/f35a
1554 }
1555 run_test 35a "exec file with mode 444 (should return and not leak) ====="
1556
1557 test_36a() {
1558         rm -f $DIR/f36
1559         utime $DIR/f36 || error
1560 }
1561 run_test 36a "MDS utime check (mknod, utime) ==================="
1562
1563 test_36b() {
1564         echo "" > $DIR/f36
1565         utime $DIR/f36 || error
1566 }
1567 run_test 36b "OST utime check (open, utime) ===================="
1568
1569 test_36c() {
1570         rm -f $DIR/d36/f36
1571         mkdir $DIR/d36
1572         chown $RUNAS_ID $DIR/d36
1573         $RUNAS utime $DIR/d36/f36 || error
1574 }
1575 run_test 36c "non-root MDS utime check (mknod, utime) =========="
1576
1577 test_36d() {
1578         [ ! -d $DIR/d36 ] && test_36c
1579         echo "" > $DIR/d36/f36
1580         $RUNAS utime $DIR/d36/f36 || error
1581 }
1582 run_test 36d "non-root OST utime check (open, utime) ==========="
1583
1584 test_36e() {
1585         [ $RUNAS_ID -eq $UID ] && echo "skipping $TESTNAME" && return
1586         mkdir -p $DIR/$tdir
1587         touch $DIR/$tdir/$tfile
1588         $RUNAS utime $DIR/$tdir/$tfile && \
1589                 error "utime worked, expected failure" || true
1590 }
1591 run_test 36e "utime on non-owned file (should return error) ===="
1592
1593 test_36f() {
1594         export LANG=C LC_LANG=C # for date language
1595
1596         DATESTR="Dec 20  2000"
1597         mkdir -p $DIR/$tdir
1598         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
1599         sysctl -w lustre.fail_loc=0x80000214
1600         date; date +%s
1601         cp /etc/hosts $DIR/$tdir/$tfile
1602         sync & # write RPC generated with "current" inode timestamp, but delayed
1603         sleep 1
1604         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
1605         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
1606         cancel_lru_locks osc
1607         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
1608         date; date +%s
1609         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
1610                 echo "BEFORE: $LS_BEFORE" && \
1611                 echo "AFTER : $LS_AFTER" && \
1612                 echo "WANT  : $DATESTR" && \
1613                 error "$DIR/$tdir/$tfile timestamps changed" || true
1614 }
1615 run_test 36f "utime on file racing with OST BRW write =========="
1616
1617 export FMD_MAX_AGE=`cat $LPROC/obdfilter/*/client_cache_seconds 2> /dev/null | head -n 1`
1618 test_36g() {
1619         [ -z "$FMD_MAX_AGE" ] && echo "skip $TESTNAME for remote OST" && return
1620         FMD_BEFORE="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1621         touch $DIR/d36/$tfile
1622         sleep $((FMD_MAX_AGE + 12))
1623         FMD_AFTER="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1624         [ "$FMD_AFTER" -gt "$FMD_BEFORE" ] && \
1625                 echo "AFTER : $FMD_AFTER > BEFORE $FMD_BEFORE" && \
1626                 error "fmd didn't expire after ping" || true
1627 }
1628 run_test 36g "filter mod data cache expiry ====================="
1629
1630 test_37() {
1631         mkdir -p $DIR/$tdir
1632         echo f > $DIR/$tdir/fbugfile
1633         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
1634         ls $DIR/$tdir | grep "\<fbugfile\>" && error
1635         $UMOUNT $DIR/$tdir || error
1636         rm -f $DIR/$tdir/fbugfile || error
1637 }
1638 run_test 37 "ls a mounted file system to check old content ====="
1639
1640 test_38() {
1641         o_directory $DIR/$tfile
1642 }
1643 run_test 38 "open a regular file with O_DIRECTORY =============="
1644
1645 test_39() {
1646         touch $DIR/$tfile
1647         touch $DIR/${tfile}2
1648 #       ls -l  $DIR/$tfile $DIR/${tfile}2
1649 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
1650 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
1651         sleep 2
1652         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
1653         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
1654                 echo "mtime"
1655                 ls -l  $DIR/$tfile $DIR/${tfile}2
1656                 echo "atime"
1657                 ls -lu  $DIR/$tfile $DIR/${tfile}2
1658                 echo "ctime"
1659                 ls -lc  $DIR/$tfile $DIR/${tfile}2
1660                 error "O_TRUNC didn't change timestamps"
1661         fi
1662 }
1663 run_test 39 "mtime changed on create ==========================="
1664
1665 test_40() {
1666         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
1667         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
1668         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
1669 }
1670 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
1671
1672 test_41() {
1673         # bug 1553
1674         small_write $DIR/f41 18
1675 }
1676 run_test 41 "test small file write + fstat ====================="
1677
1678 count_ost_writes() {
1679         cat $LPROC/osc/*/stats |
1680             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
1681 }
1682
1683 # decent default
1684 WRITEBACK_SAVE=500
1685
1686 start_writeback() {
1687         trap 0
1688         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs
1689         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1690                 echo $WRITEBACK_SAVE > /proc/sys/vm/dirty_writeback_centisecs
1691         else
1692                 # if file not here, we are a 2.4 kernel
1693                 kill -CONT `pidof kupdated`
1694         fi
1695 }
1696 stop_writeback() {
1697         # setup the trap first, so someone cannot exit the test at the
1698         # exact wrong time and mess up a machine
1699         trap start_writeback EXIT
1700         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
1701         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1702                 WRITEBACK_SAVE=`cat /proc/sys/vm/dirty_writeback_centisecs`
1703                 echo 0 > /proc/sys/vm/dirty_writeback_centisecs
1704         else
1705                 # if file not here, we are a 2.4 kernel
1706                 kill -STOP `pidof kupdated`
1707         fi
1708 }
1709
1710 # ensure that all stripes have some grant before we test client-side cache
1711 setup_test42() {
1712         [ "$SETUP_TEST42" ] && return
1713         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
1714                 dd if=/dev/zero of=$i bs=4k count=1
1715                 rm $i
1716         done
1717         SETUP_TEST42=DONE
1718 }
1719
1720 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
1721 # file truncation, and file removal.
1722 test_42a() {
1723         setup_test42
1724         cancel_lru_locks osc
1725         stop_writeback
1726         sync; sleep 1; sync # just to be safe
1727         BEFOREWRITES=`count_ost_writes`
1728         grep "[0-9]" $LPROC/osc/*[oO][sS][cC]*/cur_grant_bytes
1729         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
1730         AFTERWRITES=`count_ost_writes`
1731         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1732                 error "$BEFOREWRITES < $AFTERWRITES"
1733         start_writeback
1734 }
1735 run_test 42a "ensure that we don't flush on close =============="
1736
1737 test_42b() {
1738         setup_test42
1739         cancel_lru_locks osc
1740         stop_writeback
1741         sync
1742         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
1743         BEFOREWRITES=`count_ost_writes`
1744         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
1745         AFTERWRITES=`count_ost_writes`
1746         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1747                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
1748         fi
1749         BEFOREWRITES=`count_ost_writes`
1750         sync || error "sync: $?"
1751         AFTERWRITES=`count_ost_writes`
1752         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1753                 error "$BEFOREWRITES < $AFTERWRITES on sync"
1754         fi
1755         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
1756         start_writeback
1757         return 0
1758 }
1759 run_test 42b "test destroy of file with cached dirty data ======"
1760
1761 # if these tests just want to test the effect of truncation,
1762 # they have to be very careful.  consider:
1763 # - the first open gets a {0,EOF}PR lock
1764 # - the first write conflicts and gets a {0, count-1}PW
1765 # - the rest of the writes are under {count,EOF}PW
1766 # - the open for truncate tries to match a {0,EOF}PR
1767 #   for the filesize and cancels the PWs.
1768 # any number of fixes (don't get {0,EOF} on open, match
1769 # composite locks, do smarter file size management) fix
1770 # this, but for now we want these tests to verify that
1771 # the cancellation with truncate intent works, so we
1772 # start the file with a full-file pw lock to match against
1773 # until the truncate.
1774 trunc_test() {
1775         test=$1
1776         file=$DIR/$test
1777         offset=$2
1778         cancel_lru_locks osc
1779         stop_writeback
1780         # prime the file with 0,EOF PW to match
1781         touch $file
1782         $TRUNCATE $file 0
1783         sync; sync
1784         # now the real test..
1785         dd if=/dev/zero of=$file bs=1024 count=100
1786         BEFOREWRITES=`count_ost_writes`
1787         $TRUNCATE $file $offset
1788         cancel_lru_locks osc
1789         AFTERWRITES=`count_ost_writes`
1790         start_writeback
1791 }
1792
1793 test_42c() {
1794         trunc_test 42c 1024
1795         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
1796             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
1797         rm $file
1798 }
1799 run_test 42c "test partial truncate of file with cached dirty data"
1800
1801 test_42d() {
1802         trunc_test 42d 0
1803         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1804             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
1805         rm $file
1806 }
1807 run_test 42d "test complete truncate of file with cached dirty data"
1808
1809 test_43() {
1810         mkdir $DIR/$tdir
1811         cp -p /bin/ls $DIR/$tdir/$tfile
1812         exec 100>> $DIR/$tdir/$tfile
1813         $DIR/$tdir/$tfile && error || true
1814         exec 100<&-
1815 }
1816 run_test 43 "execution of file opened for write should return -ETXTBSY"
1817
1818 test_43a() {
1819         mkdir -p $DIR/d43
1820         cp -p `which multiop` $DIR/d43/multiop
1821         $DIR/d43/multiop $TMP/test43.junk O_c &
1822         MULTIPID=$!
1823         sleep 1
1824         multiop $DIR/d43/multiop Oc && error "expected error, got success"
1825         kill -USR1 $MULTIPID || return 2
1826         wait $MULTIPID || return 3
1827         rm $TMP/test43.junk
1828 }
1829 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
1830
1831 test_43b() {
1832         mkdir -p $DIR/d43
1833         cp -p `which multiop` $DIR/d43/multiop
1834         $DIR/d43/multiop $TMP/test43.junk O_c &
1835         MULTIPID=$!
1836         sleep 1
1837         truncate $DIR/d43/multiop 0 && error "expected error, got success"
1838         kill -USR1 $MULTIPID || return 2
1839         wait $MULTIPID || return 3
1840         rm $TMP/test43.junk
1841 }
1842 run_test 43b "truncate of file being executed should return -ETXTBSY"
1843
1844 test_43c() {
1845         local testdir="$DIR/d43c"
1846         mkdir -p $testdir
1847         cp $SHELL $testdir/
1848         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
1849                 ( cd $testdir && md5sum -c)
1850 }
1851 run_test 43c "md5sum of copy into lustre========================"
1852
1853 test_44() {
1854         [  "$OSTCOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
1855         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
1856         dd if=$DIR/f1 bs=4k count=1
1857 }
1858 run_test 44 "zero length read from a sparse stripe ============="
1859
1860 test_44a() {
1861     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
1862                          awk '{print $2}'`
1863     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
1864                       awk '{print $2}'`
1865     if [ $nstripe -eq 0 ] ; then
1866         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
1867     fi
1868     [ -z "$nstripe" ] && error "can't get stripe info"
1869
1870     OFFSETS="0 $((stride/2)) $((stride-1))"
1871     for offset in $OFFSETS ; do
1872       for i in `seq 0 $((nstripe-1))`; do
1873         rm -f $DIR/d44a
1874         local GLOBALOFFSETS=""
1875         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
1876         ll_sparseness_write $DIR/d44a $size  || error "ll_sparseness_write"
1877         GLOBALOFFSETS="$GLOBALOFFSETS $size"
1878         ll_sparseness_verify $DIR/d44a $GLOBALOFFSETS \
1879                             || error "ll_sparseness_verify $GLOBALOFFSETS"
1880
1881         for j in `seq 0 $((nstripe-1))`; do
1882             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
1883             ll_sparseness_write $DIR/d44a $size || error "ll_sparseness_write"
1884             GLOBALOFFSETS="$GLOBALOFFSETS $size"
1885         done
1886         ll_sparseness_verify $DIR/d44a $GLOBALOFFSETS \
1887                             || error "ll_sparseness_verify $GLOBALOFFSETS"
1888       done
1889     done
1890 }
1891 run_test 44a "test sparse pwrite ==============================="
1892
1893 dirty_osc_total() {
1894         tot=0
1895         for d in $LPROC/osc/*/cur_dirty_bytes; do
1896                 tot=$(($tot + `cat $d`))
1897         done
1898         echo $tot
1899 }
1900 do_dirty_record() {
1901         before=`dirty_osc_total`
1902         echo executing "\"$*\""
1903         eval $*
1904         after=`dirty_osc_total`
1905         echo before $before, after $after
1906 }
1907 test_45() {
1908         f="$DIR/f45"
1909         # Obtain grants from OST if it supports it
1910         echo blah > ${f}_grant
1911         stop_writeback
1912         sync
1913         do_dirty_record "echo blah > $f"
1914         [ $before -eq $after ] && error "write wasn't cached"
1915         do_dirty_record "> $f"
1916         [ $before -gt $after ] || error "truncate didn't lower dirty count"
1917         do_dirty_record "echo blah > $f"
1918         [ $before -eq $after ] && error "write wasn't cached"
1919         do_dirty_record "sync"
1920         [ $before -gt $after ] || error "writeback didn't lower dirty count"
1921         do_dirty_record "echo blah > $f"
1922         [ $before -eq $after ] && error "write wasn't cached"
1923         do_dirty_record "cancel_lru_locks osc"
1924         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
1925         start_writeback
1926 }
1927 run_test 45 "osc io page accounting ============================"
1928
1929 page_size() {
1930         getconf PAGE_SIZE
1931 }
1932
1933 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
1934 # test tickles a bug where re-dirtying a page was failing to be mapped to the
1935 # objects offset and an assert hit when an rpc was built with 1023's mapped 
1936 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
1937 test_46() {
1938         f="$DIR/f46"
1939         stop_writeback
1940         sync
1941         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
1942         sync
1943         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
1944         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
1945         sync
1946         start_writeback
1947 }
1948 run_test 46 "dirtying a previously written page ================"
1949
1950 # Check that device nodes are created and then visible correctly (#2091)
1951 test_47() {
1952         cmknod $DIR/test_47_node || error
1953 }
1954 run_test 47 "Device nodes check ================================"
1955
1956 test_48a() { # bug 2399
1957         check_kernel_version 34 || return 0
1958         mkdir -p $DIR/d48a
1959         cd $DIR/d48a
1960         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
1961         mkdir $DIR/d48a || error "recreate directory failed"
1962         touch foo || error "'touch foo' failed after recreating cwd"
1963         mkdir bar || error "'mkdir foo' failed after recreating cwd"
1964         if check_kernel_version 44; then
1965                 touch .foo || error "'touch .foo' failed after recreating cwd"
1966                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
1967         fi
1968         ls . || error "'ls .' failed after recreating cwd"
1969         ls .. || error "'ls ..' failed after removing cwd"
1970         cd . || error "'cd .' failed after recreating cwd"
1971         mkdir . && error "'mkdir .' worked after recreating cwd"
1972         rmdir . && error "'rmdir .' worked after recreating cwd"
1973         ln -s . baz || error "'ln -s .' failed after recreating cwd"
1974         cd .. || error "'cd ..' failed after recreating cwd"
1975 }
1976 run_test 48a "Access renamed working dir (should return errors)="
1977
1978 test_48b() { # bug 2399
1979         check_kernel_version 34 || return 0
1980         mkdir -p $DIR/d48b
1981         cd $DIR/d48b
1982         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
1983         touch foo && error "'touch foo' worked after removing cwd"
1984         mkdir foo && error "'mkdir foo' worked after removing cwd"
1985         if check_kernel_version 44; then
1986                 touch .foo && error "'touch .foo' worked after removing cwd"
1987                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
1988         fi
1989         ls . && error "'ls .' worked after removing cwd"
1990         ls .. || error "'ls ..' failed after removing cwd"
1991         cd . && error "'cd .' worked after removing cwd"
1992         mkdir . && error "'mkdir .' worked after removing cwd"
1993         rmdir . && error "'rmdir .' worked after removing cwd"
1994         ln -s . foo && error "'ln -s .' worked after removing cwd"
1995         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
1996 }
1997 run_test 48b "Access removed working dir (should return errors)="
1998
1999 test_48c() { # bug 2350
2000         check_kernel_version 36 || return 0
2001         #sysctl -w lnet.debug=-1
2002         #set -vx
2003         mkdir -p $DIR/d48c/dir
2004         cd $DIR/d48c/dir
2005         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
2006         $TRACE touch foo && error "'touch foo' worked after removing cwd"
2007         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
2008         if check_kernel_version 44; then
2009                 touch .foo && error "'touch .foo' worked after removing cwd"
2010                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2011         fi
2012         $TRACE ls . && error "'ls .' worked after removing cwd"
2013         $TRACE ls .. || error "'ls ..' failed after removing cwd"
2014         $TRACE cd . && error "'cd .' worked after removing cwd"
2015         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
2016         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
2017         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
2018         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
2019 }
2020 run_test 48c "Access removed working subdir (should return errors)"
2021
2022 test_48d() { # bug 2350
2023         check_kernel_version 36 || return 0
2024         #sysctl -w lnet.debug=-1
2025         #set -vx
2026         mkdir -p $DIR/d48d/dir
2027         cd $DIR/d48d/dir
2028         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
2029         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
2030         $TRACE touch foo && error "'touch foo' worked after removing parent"
2031         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
2032         if check_kernel_version 44; then
2033                 touch .foo && error "'touch .foo' worked after removing parent"
2034                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
2035         fi
2036         $TRACE ls . && error "'ls .' worked after removing parent"
2037         $TRACE ls .. && error "'ls ..' worked after removing parent"
2038         $TRACE cd . && error "'cd .' worked after recreate parent"
2039         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
2040         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
2041         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
2042         $TRACE cd .. && error "'cd ..' worked after removing parent" || true
2043 }
2044 run_test 48d "Access removed parent subdir (should return errors)"
2045
2046 test_48e() { # bug 4134
2047         check_kernel_version 41 || return 0
2048         #sysctl -w lnet.debug=-1
2049         #set -vx
2050         mkdir -p $DIR/d48e/dir
2051         cd $DIR/d48e/dir
2052         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
2053         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
2054         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
2055         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
2056         # On a buggy kernel addition of "touch foo" after cd .. will
2057         # produce kernel oops in lookup_hash_it
2058         touch ../foo && error "'cd ..' worked after recreate parent"
2059         cd $DIR
2060         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
2061 }
2062 run_test 48e "Access to recreated parent subdir (should return errors)"
2063
2064 test_50() {
2065         # bug 1485
2066         mkdir $DIR/d50
2067         cd $DIR/d50
2068         ls /proc/$$/cwd || error
2069 }
2070 run_test 50 "special situations: /proc symlinks  ==============="
2071
2072 test_51() {
2073         # bug 1516 - create an empty entry right after ".." then split dir
2074         mkdir $DIR/d51
2075         touch $DIR/d51/foo
2076         $MCREATE $DIR/d51/bar
2077         rm $DIR/d51/foo
2078         createmany -m $DIR/d51/longfile 201
2079         FNUM=202
2080         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
2081                 $MCREATE $DIR/d51/longfile$FNUM
2082                 FNUM=$(($FNUM + 1))
2083                 echo -n "+"
2084         done
2085         ls -l $DIR/d51 > /dev/null || error
2086 }
2087 run_test 51 "special situations: split htree with empty entry =="
2088
2089 export NUMTEST=70000
2090 test_51b() {
2091         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2092         [ $NUMFREE -lt 21000 ] && \
2093                 echo "skipping $TESTNAME, not enough free inodes ($NUMFREE)" && \
2094                 return
2095
2096         check_kernel_version 40 || NUMTEST=31000
2097         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
2098
2099         mkdir -p $DIR/d51b
2100         createmany -d $DIR/d51b/t- $NUMTEST
2101 }
2102 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
2103
2104 test_51c() {
2105         [ ! -d $DIR/d51b ] && echo "skipping $TESTNAME: $DIR/51b missing" && \
2106                 return
2107
2108         unlinkmany -d $DIR/d51b/t- $NUMTEST
2109 }
2110 run_test 51c "rmdir .../t-0 --- .../t-$NUMTEST ===================="
2111
2112 test_51d() {
2113         [  "$OSTCOUNT" -lt "3" ] && echo "skipping test with few OSTs" && return
2114         mkdir -p $DIR/d51d
2115         createmany -o $DIR/d51d/t- 1000
2116         $LFS getstripe $DIR/d51d > $TMP/files
2117         for N in `seq 0 $((OSTCOUNT - 1))`; do
2118             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
2119             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
2120             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
2121         done
2122         unlinkmany $DIR/d51d/t- 1000
2123
2124         NLAST=0
2125         for N in `seq 1 $((OSTCOUNT - 1))`; do
2126             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
2127                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2128             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
2129                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2130             
2131             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
2132                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2133             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
2134                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2135             NLAST=$N
2136         done
2137 }
2138 run_test 51d "check object distribution ===================="
2139
2140 test_52a() {
2141         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
2142         mkdir -p $DIR/d52a
2143         touch $DIR/d52a/foo
2144         chattr =a $DIR/d52a/foo || error "chattr =a failed"
2145         echo bar >> $DIR/d52a/foo || error "append bar failed"
2146         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
2147         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
2148         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
2149         echo foo >> $DIR/d52a/foo || error "append foo failed"
2150         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
2151         lsattr $DIR/d52a/foo | egrep -q "^-+a-+ $DIR/d52a/foo" || error "lsattr"
2152         chattr -a $DIR/d52a/foo || error "chattr -a failed"
2153
2154         rm -fr $DIR/d52a || error "cleanup rm failed"
2155 }
2156 run_test 52a "append-only flag test (should return errors) ====="
2157
2158 test_52b() {
2159         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
2160         mkdir -p $DIR/d52b
2161         touch $DIR/d52b/foo
2162         chattr =i $DIR/d52b/foo || error
2163         cat test > $DIR/d52b/foo && error
2164         cp /etc/hosts $DIR/d52b/foo && error
2165         rm -f $DIR/d52b/foo 2>/dev/null && error
2166         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error
2167         echo foo >> $DIR/d52b/foo && error
2168         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error
2169         [ -f $DIR/d52b/foo ] || error
2170         [ -f $DIR/d52b/foo_ren ] && error
2171         lsattr $DIR/d52b/foo | egrep -q "^-+i-+ $DIR/d52b/foo" || error
2172         chattr -i $DIR/d52b/foo || error
2173
2174         rm -fr $DIR/d52b || error
2175 }
2176 run_test 52b "immutable flag test (should return errors) ======="
2177
2178 test_53() {
2179         [ -z "$MDS" ] && echo "skipping $TESTNAME with remote MDS" && return
2180         
2181         for i in `ls -d $LPROC/osc/*-osc 2> /dev/null` ; do
2182                 ostname=`basename $i | cut -d - -f 1-2`
2183                 ost_last=`cat $LPROC/obdfilter/$ostname/last_id`
2184                 mds_last=`cat $i/prealloc_last_id`
2185                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2186                 if [ $ost_last != $mds_last ]; then
2187                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2188                 fi
2189         done
2190 }
2191 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
2192
2193 test_54a() {
2194         [ ! -f "$SOCKETSERVER" ] && echo "no socketserver, skipping" && return
2195         [ ! -f "$SOCKETCLIENT" ] && echo "no socketclient, skipping" && return
2196         $SOCKETSERVER $DIR/socket
2197         $SOCKETCLIENT $DIR/socket || error
2198         $MUNLINK $DIR/socket
2199 }
2200 run_test 54a "unix domain socket test =========================="
2201
2202 test_54b() {
2203         f="$DIR/f54b"
2204         mknod $f c 1 3
2205         chmod 0666 $f
2206         dd if=/dev/zero of=$f bs=`page_size` count=1 
2207 }
2208 run_test 54b "char device works in lustre ======================"
2209
2210 find_loop_dev() {
2211         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
2212         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
2213         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
2214
2215         for i in `seq 3 7`; do
2216                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
2217                 LOOPDEV=$LOOPBASE$i
2218                 LOOPNUM=$i
2219                 break
2220         done
2221 }
2222
2223 test_54c() {
2224         tfile="$DIR/f54c"
2225         tdir="$DIR/d54c"
2226         loopdev="$DIR/loop54c"
2227
2228         find_loop_dev 
2229         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
2230         mknod $loopdev b 7 $LOOPNUM
2231         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
2232         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
2233         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
2234         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
2235         mkdir -p $tdir
2236         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
2237         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
2238         df $tdir
2239         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
2240         $UMOUNT $tdir
2241         losetup -d $loopdev
2242         rm $loopdev
2243 }
2244 run_test 54c "block device works in lustre ====================="
2245
2246 test_54d() {
2247         f="$DIR/f54d"
2248         string="aaaaaa"
2249         mknod $f p
2250         [ "$string" = `echo $string > $f | cat $f` ] || error
2251 }
2252 run_test 54d "fifo device works in lustre ======================"
2253
2254 test_54e() {
2255         check_kernel_version 46 || return 0
2256         f="$DIR/f54e"
2257         string="aaaaaa"
2258         mknod $f c 4 0
2259         echo $string > $f || error
2260 }
2261 run_test 54e "console/tty device works in lustre ======================"
2262
2263 check_fstype() {
2264         grep -q $FSTYPE /proc/filesystems && return 1
2265         modprobe $FSTYPE
2266         grep -q $FSTYPE /proc/filesystems && return 1
2267         insmod ../$FSTYPE/$FSTYPE.o
2268         grep -q $FSTYPE /proc/filesystems && return 1
2269         insmod ../$FSTYPE/$FSTYPE.ko
2270         grep -q $FSTYPE /proc/filesystems && return 1
2271         return 0
2272 }
2273
2274 test_55() {
2275         rm -rf $DIR/d55
2276         mkdir $DIR/d55
2277         check_fstype && echo "can't find fs $FSTYPE, skipping $TESTNAME" && return
2278         mount -t $FSTYPE -o loop,iopen $EXT2_DEV $DIR/d55 || error "mounting"
2279         touch $DIR/d55/foo
2280         $IOPENTEST1 $DIR/d55/foo $DIR/d55 || error "running $IOPENTEST1"
2281         $IOPENTEST2 $DIR/d55 || error "running $IOPENTEST2"
2282         echo "check for $EXT2_DEV. Please wait..."
2283         rm -rf $DIR/d55/*
2284         $UMOUNT $DIR/d55 || error "unmounting"
2285 }
2286 run_test 55 "check iopen_connect_dentry() ======================"
2287
2288 test_56() {
2289         rm -rf $DIR/d56
2290         $SETSTRIPE -d $DIR
2291         mkdir $DIR/d56
2292         mkdir $DIR/d56/dir
2293         NUMFILES=3
2294         NUMFILESx2=$(($NUMFILES * 2))
2295         for i in `seq 1 $NUMFILES` ; do
2296                 touch $DIR/d56/file$i
2297                 touch $DIR/d56/dir/file$i
2298         done
2299
2300         # test lfs getstripe with --recursive
2301         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
2302         [ $FILENUM -eq $NUMFILESx2 ] || error \
2303                 "lfs getstripe --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
2304         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
2305         [ $FILENUM -eq $NUMFILES ] || error \
2306                 "lfs getstripe $DIR/d56 without --recursive wrong: found $FILENUM, expected $NUMFILES"
2307         echo "lfs getstripe --recursive passed."
2308
2309         # test lfs getstripe with file instead of dir
2310         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
2311         [ $FILENUM  -eq 1 ] || error \
2312                  "lfs getstripe $DIR/d56/file1 wrong:found $FILENUM, expected 1"
2313         echo "lfs getstripe file passed."
2314
2315         #test lfs getstripe with --verbose
2316         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
2317                 error "lfs getstripe --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
2318         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
2319                 "lfs getstripe $DIR/d56 without --verbose wrong: should not show lmm_magic info"
2320         echo "lfs getstripe --verbose passed."
2321
2322         #test lfs getstripe with --obd
2323         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
2324                 error "lfs getstripe --obd wrong_uuid should return error message"
2325
2326         [  "$OSTCOUNT" -lt 2 ] && \
2327                 echo "skipping other lfs getstripe --obd test" && return
2328         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1[    ]/p' | wc -l`
2329         OBDUUID=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1:/p' | awk '{print $2}'`
2330         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | wc -l`
2331         [ $FOUND -eq $FILENUM ] || \
2332                 error "lfs getstripe --obd wrong: found $FOUND, expected $FILENUM"
2333         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 | sed '/^[   ]*1[    ]/d' |\
2334                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
2335                 error "lfs getstripe --obd wrong: should not show file on other obd"
2336         echo "lfs getstripe --obd passed."
2337 }
2338 run_test 56 "check lfs getstripe ===================================="
2339
2340 NUMFILES=3
2341 NUMDIRS=3
2342 setup_56() {
2343         LOCAL_NUMFILES=$1
2344         LOCAL_NUMDIRS=$2
2345         if [ ! -d "$DIR/${tdir}g" ] ; then
2346                 mkdir -p $DIR/${tdir}g
2347                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2348                         touch $DIR/${tdir}g/file$i
2349                 done
2350                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2351                         mkdir $DIR/${tdir}g/dir$i
2352                         for j in `seq 1 $LOCAL_NUMFILES` ; do
2353                                 touch $DIR/${tdir}g/dir$i/file$j
2354                         done
2355                 done
2356         fi
2357 }
2358
2359 test_56g() {
2360         $LSTRIPE -d $DIR
2361
2362         setup_56 $NUMFILES $NUMDIRS
2363
2364         EXPECTED=$(($NUMDIRS + 2))
2365         # test lfs find with -name
2366         for i in `seq 1 $NUMFILES` ; do
2367                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
2368                 [ $NUMS -eq $EXPECTED ] || error \
2369                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2370         done
2371         echo "lfs find -name passed."
2372 }
2373 run_test 56g "check lfs find -name ============================="
2374
2375 test_56h() {
2376         $LSTRIPE -d $DIR
2377
2378         setup_56 $NUMFILES $NUMDIRS
2379
2380         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
2381         # test lfs find with ! -name
2382         for i in `seq 1 $NUMFILES` ; do
2383                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
2384                 [ $NUMS -eq $EXPECTED ] || error \
2385                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2386         done
2387         echo "lfs find ! -name passed."
2388 }
2389 run_test 56h "check lfs find ! -name ============================="
2390
2391 test_57a() {
2392         [ -z "$MDS" ] && echo "skipping $TESTNAME for remote MDS" && return
2393         for DEV in `cat $LPROC/mds/*/mntdev`; do
2394                 dumpe2fs -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
2395                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
2396                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
2397                 rm $TMP/t57a.dump
2398         done
2399 }
2400 run_test 57a "verify MDS filesystem created with large inodes =="
2401
2402 test_57b() {
2403         FILECOUNT=100
2404         FILE1=$DIR/d57b/f1
2405         FILEN=$DIR/d57b/f$FILECOUNT
2406         rm -rf $DIR/d57b || error "removing $DIR/d57b"
2407         mkdir -p $DIR/d57b || error "creating $DIR/d57b"
2408         echo "mcreating $FILECOUNT files"
2409         createmany -m $DIR/d57b/f 1 $FILECOUNT || \
2410                 error "creating files in $DIR/d57b"
2411
2412         # verify that files do not have EAs yet
2413         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
2414         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
2415
2416         MDSFREE="`cat $LPROC/mds/*/kbytesfree 2> /dev/null`"
2417         MDCFREE="`cat $LPROC/mdc/*/kbytesfree | head -n 1`"
2418         echo "opening files to create objects/EAs"
2419         for FILE in `seq -f $DIR/d57b/f%g 1 $FILECOUNT`; do
2420                 $OPENFILE -f O_RDWR $FILE > /dev/null || error "opening $FILE"
2421         done
2422
2423         # verify that files have EAs now
2424         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
2425         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
2426
2427         sleep 1 # make sure we get new statfs data
2428         MDSFREE2="`cat $LPROC/mds/*/kbytesfree 2> /dev/null`"
2429         MDCFREE2="`cat $LPROC/mdc/*/kbytesfree | head -n 1`"
2430         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
2431                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
2432                         error "MDC before $MDCFREE != after $MDCFREE2"
2433                 else
2434                         echo "MDC before $MDCFREE != after $MDCFREE2"
2435                         echo "unable to confirm if MDS has large inodes"
2436                 fi
2437         fi
2438         rm -rf $DIR/d57b
2439 }
2440 run_test 57b "default LOV EAs are stored inside large inodes ==="
2441
2442 test_58() {
2443     [ -z "$(which wiretest 2>/dev/null)" ] && echo "skipping $TESTNAME (could not find wiretest)" && return
2444     wiretest
2445 }
2446 run_test 58 "verify cross-platform wire constants =============="
2447
2448 test_59() {
2449         echo "touch 130 files"
2450         createmany -o $DIR/f59- 130
2451         echo "rm 130 files"
2452         unlinkmany $DIR/f59- 130
2453         sync
2454         sleep 2
2455         # wait for commitment of removal
2456 }
2457 run_test 59 "verify cancellation of llog records async ========="
2458
2459 TEST60_HEAD="test_60 run $RANDOM"
2460 test_60() {
2461         [ ! -f run-llog.sh ] && echo "missing subtest, skipping" && return
2462         log "$TEST60_HEAD - from kernel mode"
2463         sh run-llog.sh
2464 }
2465 run_test 60 "llog sanity tests run from kernel module =========="
2466
2467 test_60b() { # bug 6411
2468         dmesg > $DIR/$tfile
2469         LLOG_COUNT=`dmesg | grep -A 1000 "$TEST60_HEAD" | grep -c llog_test`
2470         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages"|| true
2471 }
2472 run_test 60b "limit repeated messages from CERROR/CWARN ========"
2473
2474 test_61() {
2475         f="$DIR/f61"
2476         dd if=/dev/zero of=$f bs=`page_size` count=1
2477         cancel_lru_locks osc
2478         multiop $f OSMWUc || error
2479         sync
2480 }
2481 run_test 61 "mmap() writes don't make sync hang ================"
2482
2483 # bug 2330 - insufficient obd_match error checking causes LBUG
2484 test_62() {
2485         f="$DIR/f62"
2486         echo foo > $f
2487         cancel_lru_locks osc
2488         sysctl -w lustre.fail_loc=0x405
2489         cat $f && error "cat succeeded, expect -EIO"
2490         sysctl -w lustre.fail_loc=0
2491 }
2492 run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
2493
2494 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
2495 test_63() {
2496         MAX_DIRTY_MB=`cat $LPROC/osc/*/max_dirty_mb | head -n 1`
2497         for i in $LPROC/osc/*/max_dirty_mb ; do
2498                 echo 0 > $i
2499         done
2500         for i in `seq 10` ; do
2501                 dd if=/dev/zero of=$DIR/f63 bs=8k &
2502                 sleep 5
2503                 kill $!
2504                 sleep 1
2505         done
2506
2507         for i in $LPROC/osc/*/max_dirty_mb ; do
2508                 echo $MAX_DIRTY_MB > $i
2509         done
2510         rm -f $DIR/f63 || true
2511 }
2512 run_test 63 "Verify oig_wait interruption does not crash ======="
2513
2514 # bug 2248 - async write errors didn't return to application on sync
2515 # bug 3677 - async write errors left page locked
2516 test_63b() {
2517         DBG_SAVE="`sysctl -n lnet.debug`"
2518         sysctl -w lnet.debug=-1
2519
2520         # ensure we have a grant to do async writes
2521         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
2522         rm $DIR/$tfile
2523
2524         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
2525         sysctl -w lustre.fail_loc=0x80000406
2526         multiop $DIR/$tfile Owy && \
2527                 $LCTL dk /tmp/test63b.debug && \
2528                 sysctl -w lnet.debug="$DBG_SAVE" && \
2529                 error "sync didn't return ENOMEM"
2530         sync; sleep 2; sync     # do a real sync this time to flush page
2531         grep locked $LPROC/llite/*/dump_page_cache && \
2532                 $LCTL dk /tmp/test63b.debug && \
2533                 sysctl -w lnet.debug="$DBG_SAVE" && \
2534                 error "locked page left in cache after async error" || true
2535         sysctl -w lnet.debug="$DBG_SAVE"
2536 }
2537 run_test 63b "async write errors should be returned to fsync ==="
2538
2539 test_64a () {
2540         df $DIR
2541         grep "[0-9]" $LPROC/osc/*[oO][sS][cC]*/cur*
2542 }
2543 run_test 64a "verify filter grant calculations (in kernel) ====="
2544
2545 test_64b () {
2546         [ ! -f oos.sh ] && echo "missing subtest, skipping" && return
2547         sh oos.sh $MOUNT
2548 }
2549 run_test 64b "check out-of-space detection on client ==========="
2550
2551 # bug 1414 - set/get directories' stripe info
2552 test_65a() {
2553         mkdir -p $DIR/d65
2554         touch $DIR/d65/f1
2555         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
2556 }
2557 run_test 65a "directory with no stripe info ===================="
2558
2559 test_65b() {
2560         mkdir -p $DIR/d65
2561         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2562         touch $DIR/d65/f2
2563         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
2564 }
2565 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
2566
2567 test_65c() {
2568         if [ $OSTCOUNT -gt 1 ]; then
2569                 mkdir -p $DIR/d65
2570                 $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 4)) 1 \
2571                         $(($OSTCOUNT - 1)) || error "setstripe"
2572                 touch $DIR/d65/f3
2573                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
2574         fi
2575 }
2576 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
2577
2578 [ $STRIPECOUNT -eq 0 ] && sc=1 || sc=$(($STRIPECOUNT - 1))
2579
2580 test_65d() {
2581         mkdir -p $DIR/d65
2582         $SETSTRIPE $DIR/d65 $STRIPESIZE -1 $sc || error "setstripe"
2583         touch $DIR/d65/f4 $DIR/d65/f5
2584         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
2585 }
2586 run_test 65d "directory setstripe $STRIPESIZE -1 $sc =============="
2587
2588 test_65e() {
2589         mkdir -p $DIR/d65
2590
2591         $SETSTRIPE $DIR/d65 0 -1 0 || error "setstripe"
2592         $GETSTRIPE -v $DIR/d65 | grep "has no stripe info" || error "no stripe info failed"
2593         touch $DIR/d65/f6
2594         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
2595 }
2596 run_test 65e "directory setstripe 0 -1 0 ======================="
2597
2598 test_65f() {
2599         mkdir -p $DIR/d65f
2600         $RUNAS $SETSTRIPE $DIR/d65f 0 -1 0 && error "setstripe succeeded" || true
2601 }
2602 run_test 65f "dir setstripe permission (should return error) ==="
2603
2604 test_65g() {
2605         mkdir -p $DIR/d65
2606         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2607         $SETSTRIPE -d $DIR/d65 || error "setstripe"
2608         $GETSTRIPE -v $DIR/d65 | grep "has no stripe info" || \
2609                 error "delete default stripe failed"
2610 }
2611 run_test 65g "directory setstripe -d ==========================="
2612
2613 test_65h() {
2614         mkdir -p $DIR/d65
2615         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2616         mkdir -p $DIR/d65/dd1
2617         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
2618           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
2619 }
2620 run_test 65h "directory stripe info inherit ===================="
2621  
2622 test_65i() { # bug6367
2623         $SETSTRIPE $MOUNT 65536 -1 -1
2624 }
2625 run_test 65i "set non-default striping on root directory (bug 6367)="
2626
2627 test_65j() { # bug6367
2628         # if we aren't already remounting for each test, do so for this test
2629         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
2630                 cleanup -f || error "failed to unmount"
2631                 setup
2632         fi
2633         $SETSTRIPE -d $MOUNT
2634 }
2635 run_test 65j "set default striping on root directory (bug 6367)="
2636
2637 # bug 2543 - update blocks count on client
2638 test_66() {
2639         COUNT=${COUNT:-8}
2640         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
2641         sync; sleep 1; sync
2642         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
2643         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
2644 }
2645 run_test 66 "update inode blocks count on client ==============="
2646
2647 test_67() { # bug 3285 - supplementary group fails on MDS, passes on client
2648         [ "$RUNAS_ID" = "$UID" ] && echo "skipping $TESTNAME" && return
2649         check_kernel_version 35 || return 0
2650         mkdir $DIR/$tdir
2651         chmod 771 $DIR/$tdir
2652         chgrp $RUNAS_ID $DIR/$tdir
2653         $RUNAS -u $RUNAS_ID -g $(($RUNAS_ID + 1)) -G1,2,$RUNAS_ID ls $DIR/$tdir
2654         RC=$?
2655         if [ "$MDS" ]; then
2656                 # can't tell which is correct otherwise
2657                 GROUP_UPCALL=`cat $LPROC/mds/$MDS/group_upcall`
2658                 [ "$GROUP_UPCALL" = "NONE" -a $RC -eq 0 ] && \
2659                         error "no-upcall passed" || true
2660                 [ "$GROUP_UPCALL" != "NONE" -a $RC -ne 0 ] && \
2661                         error "upcall failed" || true
2662         fi
2663 }
2664 run_test 67 "supplementary group failure (should return error) ="
2665
2666 cleanup_67b() {
2667         trap 0
2668         echo NONE > $LPROC/mds/$MDS/group_upcall
2669         set +vx
2670 }
2671
2672 test_67b() { # bug 3285 - supplementary group fails on MDS, passes on client
2673         T67_UID=${T67_UID:-1}   # needs to be in /etc/groups on MDS, gid == uid
2674         [ "$UID" = "$T67_UID" ] && echo "skipping $TESTNAME" && return
2675         check_kernel_version 35 || return 0
2676         [ -z "$MDS" ] && echo "skipping $TESTNAME - no MDS" && return
2677         GROUP_UPCALL=`cat $LPROC/mds/$MDS/group_upcall`
2678         [ "$GROUP_UPCALL" != "NONE" ] && echo "skip $TESTNAME - upcall" &&return
2679         set -vx
2680         trap cleanup_67b EXIT
2681         mkdir -p $DIR/$tdir
2682         chmod 771 $DIR/$tdir
2683         chgrp $T67_UID $DIR/$tdir
2684         echo `which l_getgroups` > $LPROC/mds/$MDS/group_upcall
2685         l_getgroups -d $T67_UID
2686         $RUNAS -u $T67_UID -g $((T67_UID + 1)) -G8,9 id
2687         $RUNAS -u $T67_UID -g 999 -G8,9,$T67_UID touch $DIR/$tdir/$tfile || \
2688                 error "'touch $DIR/$tdir/$tfile' failed"
2689         [ -f $DIR/$tdir/$tfile ] || error "$DIR/$tdir/$tfile create error"
2690         cleanup_67b
2691 }
2692 run_test 67b "supplementary group test ========================="
2693
2694 cleanup_68() {
2695         trap 0
2696         if [ "$LOOPDEV" ]; then
2697                 swapoff $LOOPDEV || error "swapoff failed"
2698                 losetup -d $LOOPDEV || error "losetup -d failed"
2699                 unset LOOPDEV LOOPNUM
2700         fi
2701         rm -f $DIR/f68
2702 }
2703
2704 meminfo() {
2705         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
2706 }
2707
2708 swap_used() {
2709         swapon -s | awk '($1 == "'$1'") { print $4 }'
2710 }
2711
2712 # excercise swapping to lustre by adding a high priority swapfile entry
2713 # and then consuming memory until it is used.
2714 test_68() {
2715         [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
2716         [ "`lsmod|grep obdfilter`" ] && echo "skipping $TESTNAME (local OST)" && \
2717                 return
2718
2719         find_loop_dev
2720         dd if=/dev/zero of=$DIR/f68 bs=64k count=1024
2721
2722         trap cleanup_68 EXIT
2723
2724         losetup $LOOPDEV $DIR/f68 || error "losetup $LOOPDEV failed"
2725         mkswap $LOOPDEV
2726         swapon -p 32767 $LOOPDEV || error "swapon $LOOPDEV failed"
2727
2728         echo "before: `swapon -s | grep $LOOPDEV`"
2729         KBFREE=`meminfo MemTotal`
2730         $MEMHOG $KBFREE || error "error allocating $KBFREE kB"
2731         echo "after: `swapon -s | grep $LOOPDEV`"
2732         SWAPUSED=`swap_used $LOOPDEV`
2733
2734         cleanup_68
2735
2736         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
2737 }
2738 run_test 68 "support swapping to Lustre ========================"
2739
2740 # bug5265, obdfilter oa2dentry return -ENOENT
2741 # #define OBD_FAIL_OST_ENOENT 0x217
2742 test_69() {
2743         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] &&
2744                 echo "skipping $TESTNAME for remote OST" && return
2745
2746         f="$DIR/$tfile"
2747         touch $f
2748
2749         if ! $DIRECTIO write ${f}.2 0 1; then
2750                 echo "skipping $TESTNAME - O_DIRECT not implemented"
2751                 return 0
2752         fi
2753
2754         sysctl -w lustre.fail_loc=0x217
2755         truncate $f 1 # vmtruncate() will ignore truncate() error.
2756         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
2757
2758         sysctl -w lustre.fail_loc=0
2759         $DIRECTIO write $f 0 2 || error "write error"
2760
2761         cancel_lru_locks osc
2762         $DIRECTIO read $f 0 1 || error "read error"
2763
2764         sysctl -w lustre.fail_loc=0x217
2765         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
2766
2767         sysctl -w lustre.fail_loc=0
2768         rm -f $f
2769 }
2770 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
2771
2772 test_71() {
2773         which dbench > /dev/null 2>&1 || echo "dbench not installed, skip this test" && return 0
2774         DBENCH_LIB=${DBENCH_LIB:-/usr/lib/dbench}
2775         PATH=${DBENCH_LIB}:${PATH}
2776         cp `which dbench` $DIR
2777
2778         TGT=$DIR/client.txt
2779         SRC=${SRC:-$DBENCH_LIB/client.txt}
2780         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
2781         SRC=$DBENCH_LIB/client_plain.txt
2782         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
2783
2784         echo "copying necessary lib to $DIR"
2785         [ -d /lib64 ] && LIB71=/lib64 || LIB71=/lib
2786         mkdir -p $DIR$LIB71 || error "can't create $DIR$LIB71"
2787         cp $LIB71/libc* $DIR$LIB71 || error "can't copy $LIB71/libc*"
2788         cp $LIB71/ld-* $DIR$LIB71 || error "can't create $LIB71/ld-*"
2789
2790         echo "chroot $DIR /dbench -c client.txt 2"
2791         chroot $DIR /dbench -c client.txt 2
2792         RC=$?
2793
2794         rm -rf $DIR/dbench $TGT $DIR$LIB71
2795
2796         return $RC
2797 }
2798 run_test 71 "Running dbench on lustre (don't segment fault) ===="
2799
2800 test_72() { # bug 5695 - Test that on 2.6 remove_suid works properly
2801         check_kernel_version 43 || return 0
2802         [ "$RUNAS_ID" = "$UID" ] && echo "skipping $TESTNAME" && return
2803         touch $DIR/f72
2804         chmod 777 $DIR/f72
2805         chmod ug+s $DIR/f72
2806         $RUNAS -u $(($RUNAS_ID + 1)) dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
2807         # See if we are still setuid/sgid
2808         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
2809         # Now test that MDS is updated too
2810         cancel_lru_locks mdc
2811         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
2812         true
2813 }
2814 run_test 72 "Test that remove suid works properly (bug5695) ===="
2815
2816 # bug 3462 - multiple simultaneous MDC requests
2817 test_73() {
2818         mkdir $DIR/d73-1 
2819         mkdir $DIR/d73-2
2820         multiop $DIR/d73-1/f73-1 O_c &
2821         pid1=$!
2822         #give multiop a chance to open
2823         usleep 500
2824
2825         echo 0x80000129 > /proc/sys/lustre/fail_loc
2826         multiop $DIR/d73-1/f73-2 Oc &
2827         sleep 1
2828         echo 0 > /proc/sys/lustre/fail_loc
2829
2830         multiop $DIR/d73-2/f73-3 Oc &
2831         pid3=$!
2832
2833         kill -USR1 $pid1
2834         wait $pid1 || return 1
2835
2836         sleep 25
2837
2838         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
2839         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5 
2840         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6 
2841
2842         rm -rf $DIR/d73-*
2843 }
2844 run_test 73 "multiple MDC requests (should not deadlock)"
2845
2846 test_74() { # bug 6149, 6184
2847         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
2848         #
2849         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
2850         # will spin in a tight reconnection loop
2851         sysctl -w lustre.fail_loc=0x8000030e
2852         # get any lock
2853         touch $DIR/f74
2854         sysctl -w lustre.fail_loc=0
2855         true
2856 }
2857 run_test 74 "ldlm_enqueue freed-export error path (shouldn't LBUG)"
2858
2859 JOIN=${JOIN:-"lfs join"}
2860 F75=$DIR/f75
2861 F128k=${F75}_128k
2862 FHEAD=${F75}_head
2863 FTAIL=${F75}_tail
2864 export T75_PREP=no
2865 test75_prep() {
2866         [ $T75_PREP = "yes" ] && return
2867         echo "using F75=$F75, F128k=$F128k, FHEAD=$FHEAD, FTAIL=$FTAIL"
2868  
2869         dd if=/dev/urandom of=${F75}_128k bs=128k count=1 || error "dd failed"
2870         log "finished dd"
2871         chmod 777 ${F128k}
2872         T75_PREP=yes
2873 }
2874  
2875 test_75a() {
2876         test75_prep
2877  
2878         cp -p ${F128k} ${FHEAD}
2879         log "finished cp to $FHEAD"
2880         cp -p ${F128k} ${FTAIL}
2881         log "finished cp to $FTAIL"
2882         cat ${F128k} ${F128k} > ${F75}_sim_sim
2883  
2884         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
2885         log "finished join $FHEAD to ${F75}_sim_sim"
2886         cmp ${FHEAD} ${F75}_sim_sim || error "${FHEAD} ${F75}_sim_sim differ"
2887         log "finished cmp $FHEAD to ${F75}_sim_sim"
2888         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} still exist after join"
2889 }
2890 run_test 75a "TEST join file ===================================="
2891  
2892 test_75b() {
2893         test75_prep
2894  
2895         cp -p ${F128k} ${FTAIL}
2896         cat ${F75}_sim_sim >> ${F75}_join_sim
2897         cat ${F128k} >> ${F75}_join_sim
2898         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
2899         cmp ${FHEAD} ${F75}_join_sim || \
2900                 error "${FHEAD} ${F75}_join_sim are different"
2901         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join"
2902 }
2903 run_test 75b "TEST join file 2 =================================="
2904  
2905 test_75c() {
2906         test75_prep
2907  
2908         cp -p ${F128k} ${FTAIL}
2909         cat ${F128k} >> ${F75}_sim_join
2910         cat ${F75}_join_sim >> ${F75}_sim_join
2911         $JOIN ${FTAIL} ${FHEAD} || error "join error"
2912         cmp ${FTAIL} ${F75}_sim_join || \
2913                 error "${FTAIL} ${F75}_sim_join are different"
2914         $CHECKSTAT -a ${FHEAD} || error "tail ${FHEAD} exist after join"
2915 }
2916 run_test 75c "TEST join file 3 =================================="
2917  
2918 test_75d() {
2919         test75_prep
2920  
2921         cp -p ${F128k} ${FHEAD}
2922         cp -p ${F128k} ${FHEAD}_tmp
2923         cat ${F75}_sim_sim >> ${F75}_join_join
2924         cat ${F75}_sim_join >> ${F75}_join_join
2925         $JOIN ${FHEAD} ${FHEAD}_tmp || error "join ${FHEAD} ${FHEAD}_tmp error"
2926         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
2927         cmp ${FHEAD} ${F75}_join_join ||error "${FHEAD} ${F75}_join_join differ"        $CHECKSTAT -a ${FHEAD}_tmp || error "${FHEAD}_tmp exist after join"
2928         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join (2)"
2929 }
2930 run_test 75d "TEST join file 4 =================================="
2931  
2932 test_75e() {
2933         test75_prep
2934  
2935         rm -rf ${FHEAD} || "delete join file error"
2936 }
2937 run_test 75e "TEST join file 5 (remove joined file) ============="
2938  
2939 test_75f() {
2940         test75_prep
2941  
2942         cp -p ${F128k} ${F75}_join_10_compare
2943         cp -p ${F128k} ${F75}_join_10
2944         for ((i = 0; i < 10; i++)); do
2945                 cat ${F128k} >> ${F75}_join_10_compare
2946                 cp -p ${F128k} ${FTAIL}
2947                 $JOIN ${F75}_join_10 ${FTAIL} || \
2948                         error "join ${F75}_join_10 ${FTAIL} error"
2949                 $CHECKSTAT -a ${FTAIL} || error "tail file exist after join"
2950         done
2951         cmp ${F75}_join_10 ${F75}_join_10_compare || \
2952                 error "files ${F75}_join_10 ${F75}_join_10_compare differ"
2953 }
2954 run_test 75f "TEST join file 6 (join 10 files) =================="
2955  
2956 test_75g() {
2957         [ ! -f ${F75}_join_10 ] && echo "${F75}_join_10 missing" && return
2958         $LFS getstripe ${F75}_join_10
2959  
2960         $OPENUNLINK ${F75}_join_10 ${F75}_join_10 || error "files unlink open"
2961  
2962         ls -l $F75*
2963 }
2964 run_test 75g "TEST join file 7 (open unlink) ===================="
2965
2966 num_inodes() {
2967         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
2968 }
2969
2970 test_76() { # bug 1443
2971         BEFORE_INODES=`num_inodes`
2972         echo "before inodes: $BEFORE_INODES"
2973         for i in `seq 1000`; do
2974                 touch $DIR/$tfile
2975                 rm -f $DIR/$tfile
2976         done
2977         AFTER_INODES=`num_inodes`
2978         echo "after inodes: $AFTER_INODES"
2979         [ $AFTER_INODES -gt $((BEFORE_INODES + 32)) ] && \
2980                 error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
2981         true
2982 }
2983 run_test 76 "destroy duplicate inodes in client inode cache ===="
2984
2985 F77_TMP=$TMP/f77-temp
2986 test_77a() { # bug 10889
2987         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
2988         if [ ! -f $F77_TMP ]; then
2989                 dd if=/dev/urandom of=$F77_TMP bs=1M count=8 || \
2990                         error "error writing to $F77_TMP"
2991         fi
2992         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=8 || error "dd error"
2993         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
2994 }
2995 run_test 77a "normal checksum read/write operation ============="
2996
2997 test_77b() { # bug 10889
2998         [ ! -f $F77_TMP ] && echo "requires 77a" && return  
2999         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3000         sysctl -w lustre.fail_loc=0x80000409
3001         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3002         dd if=$F77_TMP of=$DIR/f77b bs=8M count=1 conv=sync || \
3003                 error "write error: rc=$?"
3004         sysctl -w lustre.fail_loc=0
3005         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3006 }
3007 run_test 77b "checksum error on client write ===================="
3008
3009 test_77c() { # bug 10889
3010         [ ! -f $F77_TMP ] && echo "requires 77a" && return  
3011         cancel_lru_locks osc
3012         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3013         sysctl -w lustre.fail_loc=0x80000408
3014         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3015         cmp $F77_TMP $DIR/f77b || error "file compare failed"
3016         sysctl -w lustre.fail_loc=0
3017         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3018 }
3019 run_test 77c "checksum error on client read ==================="
3020
3021 test_77d() { # bug 10889
3022         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3023         sysctl -w lustre.fail_loc=0x80000409
3024         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3025         directio write $DIR/f77  0 1 || error "direct write: rc=$?"
3026         sysctl -w lustre.fail_loc=0
3027         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3028 }
3029 run_test 77d "checksum error on OST direct write ==============="
3030
3031 test_77e() { # bug 10889
3032         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3033         sysctl -w lustre.fail_loc=0x80000408
3034         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3035         cancel_lru_locks osc
3036         directio read $DIR/f77 0 1 || error "direct read: rc=$?"
3037         sysctl -w lustre.fail_loc=0
3038         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3039 }
3040 run_test 77e "checksum error on OST direct read ================"
3041
3042 test_77f() { # bug 10889
3043         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3044         sysctl -w lustre.fail_loc=0x409
3045         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3046         directio write $DIR/f77 0 1 && error "direct write succeeded"
3047         sysctl -w lustre.fail_loc=0
3048         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3049 }
3050 run_test 77f "repeat checksum error on write (expect error) ===="
3051
3052 test_77g() { # bug 10889
3053         [ ! -f $F77_TMP ] && echo "requires 77a" && return  
3054         [ -z "`lsmod|grep obdfilter`" ] &&
3055                 echo "skipping $TESTNAME (remote OST)" && return
3056         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
3057         sysctl -w lustre.fail_loc=0x8000021a
3058         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3059         dd if=$F77_TMP of=$DIR/f77 bs=8M count=1 || error "write error: rc=$?"
3060         sysctl -w lustre.fail_loc=0
3061         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3062 }
3063 run_test 77g "checksum error on OST write ======================"
3064
3065 test_77h() { # bug 10889
3066         [ ! -f $DIR/f77 ] && echo "requires 77a,g" && return  
3067         [ -z "`lsmod|grep obdfilter`" ] &&
3068                 echo "skipping $TESTNAME (remote OST)" && return
3069         cancel_lru_locks osc
3070         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
3071         sysctl -w lustre.fail_loc=0x8000021b
3072         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3073         cmp $F77_TMP $DIR/f77 || error "file compare failed"
3074         sysctl -w lustre.fail_loc=0
3075         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3076 }
3077 run_test 77h "checksum error on OST read ======================="
3078
3079 rm -f $F77_TMP
3080 unset F77_TMP
3081
3082 test_78() { # bug 10901
3083         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
3084         [ $F78SIZE -gt 512 ] && F78SIZE=512
3085         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
3086         $SETSTRIPE $DIR/$tfile 0 -1 -1
3087         $DIRECTIO rdwr $DIR/$tfile 0 $F78SIZE 1048576
3088 }
3089 run_test 78 "handle large O_DIRECT writes correctly ============"
3090
3091 # on the LLNL clusters, runas will still pick up root's $TMP settings,
3092 # which will not be writable for the runas user, and then you get a CVS
3093 # error message with a corrupt path string (CVS bug) and panic.
3094 # We're not using much space, so just stick it in /tmp, which is safe.
3095 OLDTMPDIR=$TMPDIR
3096 OLDTMP=$TMP
3097 TMPDIR=/tmp
3098 TMP=/tmp
3099 OLDHOME=$HOME
3100 [ $RUNAS_ID -ne $UID ] && HOME=/tmp
3101
3102 test_99a() {
3103         mkdir -p $DIR/d99cvsroot
3104         chown $RUNAS_ID $DIR/d99cvsroot
3105         $RUNAS cvs -d $DIR/d99cvsroot init || error
3106 }
3107 run_test 99a "cvs init ========================================="
3108
3109 test_99b() {
3110         [ ! -d $DIR/d99cvsroot ] && test_99a
3111         cd /etc/init.d
3112         # some versions of cvs import exit(1) when asked to import links or
3113         # files they can't read.  ignore those files.
3114         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
3115                         ! -perm +4 -printf '-I %f\n')
3116         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
3117                 d99reposname vtag rtag
3118 }
3119 run_test 99b "cvs import ======================================="
3120
3121 test_99c() {
3122         [ ! -d $DIR/d99cvsroot ] && test_99b
3123         cd $DIR
3124         mkdir -p $DIR/d99reposname
3125         chown $RUNAS_ID $DIR/d99reposname
3126         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
3127 }
3128 run_test 99c "cvs checkout ====================================="
3129
3130 test_99d() {
3131         [ ! -d $DIR/d99cvsroot ] && test_99c
3132         cd $DIR/d99reposname
3133         $RUNAS touch foo99
3134         $RUNAS cvs add -m 'addmsg' foo99
3135 }
3136 run_test 99d "cvs add =========================================="
3137
3138 test_99e() {
3139         [ ! -d $DIR/d99cvsroot ] && test_99c
3140         cd $DIR/d99reposname
3141         $RUNAS cvs update
3142 }
3143 run_test 99e "cvs update ======================================="
3144
3145 test_99f() {
3146         [ ! -d $DIR/d99cvsroot ] && test_99d
3147         cd $DIR/d99reposname
3148         $RUNAS cvs commit -m 'nomsg' foo99
3149 }
3150 run_test 99f "cvs commit ======================================="
3151
3152 test_100() {
3153         netstat -tna | while read PROT SND RCV LOCAL REMOTE STAT; do
3154                 [ "$PROT" != "tcp" ] && continue
3155                 RPORT=`echo $REMOTE | cut -d: -f2`
3156                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
3157                 LPORT=`echo $LOCAL | cut -d: -f2`
3158                 if [ $LPORT -ge 1024 ]; then
3159                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
3160                         netstat -tna
3161                         error "local: $LPORT > 1024, remote: $RPORT"
3162                 fi
3163         done
3164         true
3165 }
3166 run_test 100 "check local port using privileged port ==========="
3167
3168 function get_named_value()
3169 {
3170     local tag
3171
3172     tag=$1
3173     while read ;do
3174         line=$REPLY
3175         case $line in
3176         $tag*)
3177             echo $line | sed "s/^$tag//"
3178             break
3179             ;;
3180         esac
3181     done
3182 }
3183
3184 export CACHE_MAX=`cat /proc/fs/lustre/llite/*/max_cached_mb | head -n 1`
3185 cleanup_101() {
3186         for s in $LPROC/llite/*/max_cached_mb; do
3187                 echo $CACHE_MAX > $s
3188         done
3189         trap 0
3190 }
3191
3192 test_101() {
3193         local s
3194         local discard
3195         local nreads=10000
3196         [ "$CPU" = "UML" ] && nreads=1000
3197         local cache_limit=32
3198
3199         for s in $LPROC/osc/*/rpc_stats; do
3200                 echo 0 > $s
3201         done
3202         trap cleanup_101 EXIT
3203         for s in $LPROC/llite/*; do
3204                 echo 0 > $s/read_ahead_stats
3205                 echo $cache_limit > $s/max_cached_mb
3206         done
3207
3208         #
3209         # randomly read 10000 of 64K chunks from file 3x 32MB in size
3210         #
3211         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
3212         $RANDOM_READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
3213
3214         discard=0
3215         for s in $LPROC/llite/*; do
3216                 discard=$(($discard + $(cat $s/read_ahead_stats | get_named_value 'read but discarded')))
3217         done
3218         cleanup_101
3219
3220         if [ $(($discard * 10)) -gt $nreads ] ;then
3221                 for s in $LPROC/osc/*/rpc_stats; do
3222                         echo $s; cat $s
3223                 done
3224                 for s in $LPROC/llite/*/read_ahead_stats; do
3225                         echo $s; cat $s
3226                 done
3227                 error "too many ($discard) discarded pages" 
3228         fi
3229         rm -f $DIR/$tfile || true
3230 }
3231 run_test 101 "check read-ahead for random reads ================"
3232
3233 export SETUP_TEST102=no
3234 setup_test102() {
3235         [ "$SETUP_TEST102" = "yes" ] && return
3236         mkdir -p $DIR/$tdir
3237         STRIPE_SIZE=65536
3238         STRIPE_COUNT=4 
3239         STRIPE_OFFSET=2
3240
3241         trap cleanup_test102 EXIT
3242         cd $DIR
3243         $SETSTRIPE $tdir $STRIPE_SIZE  $STRIPE_OFFSET $STRIPE_COUNT
3244         cd $DIR/$tdir 
3245         for num in 1 2 3 4
3246         do
3247                 for count in 1 2 3 4
3248                 do
3249                         for offset in 0 1 2 3 
3250                         do
3251                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
3252                                 local file=file"$num-$offset-$count"
3253                                 $SETSTRIPE $file $stripe_size  $offset $count
3254                         done
3255                 done
3256         done
3257
3258         cd ..
3259         star -c  f=$TMP/f102.tar $tdir 
3260         SETUP_TEST102=yes
3261 }
3262
3263 cleanup_test102() {
3264         [ "SETUP_TEST102" = "YES" ] || return
3265         trap 0
3266         rm -f $TMP/f102.tar
3267         rm -rf $DIR/$tdir
3268         SETUP_TEST102=no
3269 }
3270
3271 test_102a() {
3272         local testfile=$DIR/xattr_testfile
3273
3274         rm -f $testfile
3275         touch $testfile
3276
3277         [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
3278         [ -z "`grep xattr $LPROC/mdc/*[mM][dD][cC]*/connect_flags`" ] && echo "skipping $TESTNAME (must have user_xattr)" && return
3279         [ -z "$(which setfattr 2>/dev/null)" ] && echo "skipping $TESTNAME (could not find setfattr)" && return
3280
3281         echo "set/get xattr..."
3282         setfattr -n trusted.name1 -v value1 $testfile || error
3283         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
3284         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
3285  
3286         setfattr -n user.author1 -v author1 $testfile || error
3287         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
3288         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
3289
3290         echo "listxattr..."
3291         setfattr -n trusted.name2 -v value2 $testfile || error
3292         setfattr -n trusted.name3 -v value3 $testfile || error
3293         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3294         grep "trusted.name" | wc -l` -eq 3 ] || error
3295
3296  
3297         setfattr -n user.author2 -v author2 $testfile || error
3298         setfattr -n user.author3 -v author3 $testfile || error
3299         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
3300         grep "user" | wc -l` -eq 3 ] || error
3301
3302         echo "remove xattr..."
3303         setfattr -x trusted.name1 $testfile || error
3304         getfattr -d -m trusted $testfile 2> /dev/null | \
3305         grep "trusted.name1" && error || true
3306
3307         setfattr -x user.author1 $testfile || error
3308         getfattr -d -m user $testfile 2> /dev/null | \
3309         grep "user.author1" && error || true
3310
3311         # b10667: setting lustre special xattr be silently discarded
3312         echo "set lustre special xattr ..."
3313         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
3314
3315         rm -f $testfile
3316 }
3317 run_test 102a "user xattr test =================================="
3318
3319 test_102b() {
3320         # b10930: get/set/list trusted.lov xattr
3321         echo "get/set/list trusted.lov xattr ..."
3322         [ "$OSTCOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
3323         local testfile=$DIR/$tfile
3324         $SETSTRIPE $testfile 65536 1 2
3325         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3326         grep "trusted.lov" || error
3327
3328         local testfile2=${testfile}2
3329         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3330                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
3331         
3332         $MCREATE $testfile2
3333         setfattr -n trusted.lov -v $value $testfile2    
3334         local tmp_file=${testfile}3
3335         $GETSTRIPE -v $testfile2 > $tmp_file
3336         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3337         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3338         [ $stripe_size -eq 65536 ] || error "different stripe size"
3339         [ $stripe_count -eq 2 ] || error "different stripe count"
3340 }
3341 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
3342
3343 test_102c() {
3344         # b10930: get/set/list trusted.lov xattr
3345         echo "get/set/list trusted.lov xattr ..."
3346         [ "$OSTCOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
3347         mkdir -p $DIR/$tdir
3348         chown $RUNAS_ID $DIR/$tdir
3349         local testfile=$DIR/$tdir/$tfile
3350         $RUNAS $SETSTRIPE $testfile 65536 1 2
3351         $RUNAS getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3352         grep "trusted.lov" || error
3353
3354         local testfile2=${testfile}2
3355         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3356                      grep "trusted.lov" |sed -e 's/[^=]\+=//'  `
3357         
3358         $RUNAS $MCREATE $testfile2
3359         $RUNAS setfattr -n trusted.lov -v $value $testfile2     
3360         local tmp_file=${testfile}3
3361         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
3362         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3363         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3364         [ $stripe_size -eq 65536 ] || error "different stripe size"
3365         [ $stripe_count -eq 2 ] || error "different stripe count"
3366 }
3367 run_test 102c "non-root getfattr/setfattr for trusted.lov EAs ==========="
3368
3369 get_stripe_info() {
3370         stripe_size=0
3371         stripe_count=0
3372         stripe_offset=0
3373         local lines=`sed -n '/obdidx/=' $1`
3374         stripe_size=`awk '{if($1~/size/) print $2}' $1`
3375         stripe_count=`awk '{if($1~/count/) print $2}' $1`
3376         lines=`expr $lines + 1`
3377         stripe_offset=`sed -n ${lines}p $1 |awk '{print $1}'`
3378 }
3379
3380 compare_stripe_info1() {
3381         for num in 1 2 3 4
3382         do
3383                 for count in 1 2 3 4
3384                 do
3385                         for offset in 0 1 2 3 
3386                         do
3387                                 local size=`expr $STRIPE_SIZE \* $num`
3388                                 local file=file"$num-$offset-$count"
3389                                 local tmp_file=out
3390                                 $GETSTRIPE -v $file > $tmp_file 
3391                                 get_stripe_info  $tmp_file
3392                                 if test $stripe_size -ne $size
3393                                 then
3394                                         error "$file: different stripe size" && return
3395                                 fi
3396                                 if test $stripe_count -ne $count
3397                                 then
3398                                         error "$file: different stripe count" && return
3399                                 fi
3400                                 if test $stripe_offset -ne 0
3401                                 then
3402                                         error "$file: different stripe offset" && return
3403                                 fi
3404                                 rm -f $tmp_file
3405                         done
3406                 done
3407         done
3408 }
3409
3410 compare_stripe_info2() {
3411         for num in 1 2 3 4
3412         do
3413                 for count in 1 2 3 4
3414                 do
3415                         for offset in 0 1 2 3 
3416                         do
3417                                 local size=`expr $STRIPE_SIZE \* $num`
3418                                 local file=file"$num-$offset-$count"
3419                                 local tmp_file=out
3420                                 $GETSTRIPE -v $file > $tmp_file
3421                                 get_stripe_info  $tmp_file
3422                                 if test $stripe_size -ne $size
3423                                 then
3424                                         error "$file: different stripe size" && return  
3425                                 fi
3426                                 if test $stripe_count -ne $count
3427                                 then
3428                                         error "$file: different stripe count" && return
3429                                 fi
3430                                 if test $stripe_offset -ne $offset
3431                                 then
3432                                         error "$file: different stripe offset" && return
3433                                 fi
3434                                 rm -f $tmp_file
3435                         done
3436                 done
3437         done
3438 }
3439
3440 test_102d() {
3441         # b10930: star test for trusted.lov xattr
3442         star --xhelp 2>&1 | grep -q nolustre  
3443         if [ $? -ne 0 ]
3444         then
3445                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3446         fi
3447         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3448         setup_test102
3449         mkdir -p $DIR/d102d
3450         star -x  f=$TMP/f102.tar -C $DIR/d102d
3451         cd $DIR/d102d/$tdir
3452         compare_stripe_info1
3453
3454 }
3455 run_test 102d "star restore stripe info from tarfile,not keep osts ==========="
3456
3457 test_102e() {
3458         # b10930: star test for trusted.lov xattr
3459         star --xhelp 2>&1 | grep -q nolustre  
3460         if [ $? -ne 0 ]
3461         then
3462                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3463         fi
3464         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3465         setup_test102
3466         mkdir -p $DIR/d102e
3467         star -x  -preserve-osts f=$TMP/f102.tar -C $DIR/d102e
3468         cd $DIR/d102e/$tdir
3469         compare_stripe_info2
3470 }
3471 run_test 102e "star restore stripe info from tarfile, keep osts ==========="
3472
3473 test_102f() {
3474         # b10930: star test for trusted.lov xattr
3475         star --xhelp 2>&1 | grep -q nolustre  
3476         if [ $? -ne 0 ]
3477         then
3478                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3479         fi
3480         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3481         setup_test102
3482         mkdir -p $DIR/d102f
3483         cd $DIR
3484         star -copy  $tdir $DIR/d102f
3485         cd $DIR/d102f/$tdir
3486         compare_stripe_info1
3487 }
3488 run_test 102f "star copy files, not keep osts ==========="
3489
3490 test_102g() {
3491         # b10930: star test for trusted.lov xattr
3492         star --xhelp 2>&1 | grep -q nolustre  
3493         if [ $? -ne 0 ]
3494         then
3495                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3496         fi
3497         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3498         setup_test102
3499         mkdir -p $DIR/d102g
3500         cd $DIR
3501         star -copy -preserve-osts $tdir $DIR/d102g
3502         cd $DIR/d102g/$tdir
3503         compare_stripe_info2
3504         cleanup_test102
3505 }
3506 run_test 102g "star copy files, keep osts ==========="
3507
3508 run_acl_subtest()
3509 {
3510     $SAVE_PWD/acl/run $SAVE_PWD/acl/$1.test
3511     return $?
3512 }
3513
3514 test_103 () {
3515     [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
3516     [ -z "$(grep acl $LPROC/mdc/*[mM][dD][cC]*/connect_flags)" ] && echo "skipping $TESTNAME (must have acl enabled)" && return
3517     [ -z "$(which setfacl 2>/dev/null)" ] && echo "skipping $TESTNAME (could not find setfacl)" && return
3518
3519     SAVE_UMASK=`umask`
3520     umask 0022
3521     cd $DIR
3522
3523     echo "performing cp ..."
3524     run_acl_subtest cp || error
3525     echo "performing getfacl-noacl..."
3526     run_acl_subtest getfacl-noacl || error
3527     echo "performing misc..."
3528     run_acl_subtest misc || error
3529 #    XXX add back permission test when we support supplementary groups.
3530 #    echo "performing permissions..."
3531 #    run_acl_subtest permissions || error
3532     echo "performing setfacl..."
3533     run_acl_subtest setfacl || error
3534
3535     # inheritance test got from HP
3536     echo "performing inheritance..."
3537     cp $SAVE_PWD/acl/make-tree . || error
3538     chmod +x make-tree || error
3539     run_acl_subtest inheritance || error
3540     rm -f make-tree
3541
3542     cd $SAVE_PWD
3543     umask $SAVE_UMASK
3544 }
3545 run_test 103 "acl test ========================================="
3546
3547 test_104() {
3548         touch $DIR/$tfile
3549         lfs df || error "lfs df failed"
3550         lfs df -ih || error "lfs df -ih failed"
3551         lfs df -h $DIR || error "lfs df -h $DIR failed"
3552         lfs df -i $DIR || error "lfs df -i $DIR failed"
3553         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
3554         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
3555         
3556         OSC=`awk '/-osc-|OSC.*MNT/ {print $4}' $LPROC/devices | head -n 1`
3557         lctl --device %$OSC deactivate
3558         lfs df || error "lfs df with deactivated OSC failed"
3559         lctl --device %$OSC recover
3560         lfs df || error "lfs df with reactivated OSC failed"
3561 }
3562 run_test 104 "lfs df [-ih] [path] test ========================="
3563
3564 test_105a() {
3565         # doesn't work on 2.4 kernels
3566         touch $DIR/$tfile
3567         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3568         then
3569                 flocks_test on -f $DIR/$tfile || error "fail flock on"
3570         else
3571                 flocks_test off -f $DIR/$tfile || error "fail flock off"
3572         fi
3573 }
3574 run_test 105a "flock when mounted without -o flock test ========"
3575
3576 test_105b() {
3577         touch $DIR/$tfile
3578         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3579         then
3580                 flocks_test on -c $DIR/$tfile || error "fail flock on"
3581         else
3582                 flocks_test off -c $DIR/$tfile || error "fail flock off"
3583         fi
3584 }
3585 run_test 105b "fcntl when mounted without -o flock test ========"
3586
3587 test_105c() {
3588         touch $DIR/$tfile
3589         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3590         then
3591                 flocks_test on -l $DIR/$tfile || error "fail flock on"
3592         else
3593                 flocks_test off -l $DIR/$tfile || error "fail flock off"
3594         fi
3595 }
3596 run_test 105c "lockf when mounted without -o flock test ========"
3597
3598 test_106() { #10921
3599         mkdir $DIR/d106
3600         $DIR/d106 && error
3601         chmod 777 $DIR/d106 || error
3602 }
3603 run_test 106 "attempt exec of dir followed by chown of that dir"
3604
3605 test_107() {
3606         CDIR=`pwd`
3607         cd $DIR
3608         ulimit -c unlimited
3609         sleep 60 &
3610         SLEEPPID=$!
3611
3612         file=`cat /proc/sys/kernel/core_pattern`
3613         core_pid=`cat /proc/sys/kernel/core_uses_pid`
3614         [ $core_pid -eq 1 ] && file=$file.$SLEEPPID
3615         rm -f $file
3616         sleep 1
3617
3618         kill -s 11 $SLEEPPID
3619         wait $SLEEPPID
3620         if [ -e $file ]; then
3621                 size=`stat -c%s $file`
3622                 [ $size -eq 0 ] && error "Fail to create core file $file"
3623         else
3624                 error "Fail to create core file $file"
3625         fi
3626         rm -f $file
3627         cd $CDIR
3628 }
3629 run_test 107 "Coredump on SIG"
3630
3631 test_115() {
3632         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
3633             cut -c11-20)
3634         [ -z "$OSTIO_pre" ] && echo "skipping $TESTNAME: no OSS threads" && \
3635             return
3636         echo "Starting with $OSTIO_pre threads"
3637
3638         NUMTEST=20000
3639         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
3640         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
3641         echo "$NUMTEST creates/unlinks"
3642         mkdir -p $DIR/$tdir
3643         createmany -o $DIR/$tdir/$tfile $NUMTEST
3644         unlinkmany $DIR/$tdir/$tfile $NUMTEST
3645
3646         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
3647             cut -c11-20)
3648
3649         # don't return an error
3650         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
3651             "FAIL: No addition ll_ost_io threads were created ($OSTIO_pre)" &&\
3652             echo "This may be fine, depending on what ran before this test" &&\
3653             echo "and how fast this system is." && return
3654
3655         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
3656 }
3657 run_test 115 "verify dynamic thread creation===================="
3658
3659 free_min_max () {
3660         AVAIL=($(cat $LPROC/osc/*[oO][sS][cC]-*/kbytesavail))
3661         echo OST kbytes available: ${AVAIL[@]}
3662         MAXI=0; MAXV=${AVAIL[0]}
3663         MINI=0; MINV=${AVAIL[0]}
3664         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
3665             #echo OST $i: ${AVAIL[i]}kb
3666             if [ ${AVAIL[i]} -gt $MAXV ]; then
3667                 MAXV=${AVAIL[i]}; MAXI=$i
3668             fi
3669             if [ ${AVAIL[i]} -lt $MINV ]; then
3670                 MINV=${AVAIL[i]}; MINI=$i
3671             fi
3672         done
3673         echo Min free space: OST $MINI: $MINV 
3674         echo Max free space: OST $MAXI: $MAXV 
3675 }
3676
3677 test_116() {
3678         [ "$OSTCOUNT" -lt "2" ] && echo "not enough OSTs" && return
3679
3680         echo -n "Free space priority "
3681         cat $LPROC/lov/*/qos_prio_free
3682         DELAY=$(cat $LPROC/lov/*/qos_maxage | head -1 | awk '{print $1}')
3683         declare -a AVAIL
3684         free_min_max
3685         [ $MINV -gt 960000 ] && echo "too much free space in OST$MINI, skip" &&\
3686                 return
3687
3688         # generate uneven OSTs
3689         mkdir -p $DIR/$tdir/OST${MINI}
3690         declare -i FILL
3691         FILL=$(($MINV / 4))
3692         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
3693         $SETSTRIPE $DIR/$tdir/OST${MINI} 0 $MINI 1
3694         i=1
3695         while [ $FILL -gt 0 ]; do
3696             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
3697             FILL=$(($FILL - 2048))
3698             echo -n .
3699             i=$(($i + 1))
3700         done
3701         FILL=$(($MINV / 4))
3702         sync
3703         sleep $DELAY
3704
3705         free_min_max
3706         DIFF=$(($MAXV - $MINV))
3707         DIFF2=$(($DIFF * 100 / $MINV))
3708         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
3709         if [ $DIFF2 -gt 20 ]; then
3710             echo "ok"
3711         else
3712             echo "failed - QOS mode won't be used"
3713             error "QOS imbalance criteria not met"
3714             return
3715         fi
3716
3717         MINI1=$MINI; MINV1=$MINV
3718         MAXI1=$MAXI; MAXV1=$MAXV
3719
3720         # now fill using QOS
3721         echo writing a bunch of files to QOS-assigned OSTs
3722         i=1
3723         while [ $FILL -gt 0 ]; do
3724             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
3725             FILL=$(($FILL - 200))
3726             echo -n .
3727             i=$(($i + 1))
3728         done
3729         echo "wrote $i 200k files"
3730         sync
3731         sleep $DELAY
3732
3733         echo "Note: free space may not be updated, so measurements might be off"
3734         free_min_max
3735         DIFF2=$(($MAXV - $MINV))
3736         echo "free space delta: orig $DIFF final $DIFF2"
3737         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!" 
3738         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
3739         echo "Wrote $DIFF to smaller OST $MINI1"
3740         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
3741         echo "Wrote $DIFF2 to larger OST $MAXI1"
3742         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
3743
3744         # Figure out which files were written where 
3745         UUID=$(awk '/'$MINI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
3746         echo $UUID
3747         MINC=$($LFS getstripe --obd $UUID $DIR/$tdir | wc -l)
3748         echo "$MINC files created on smaller OST $MINI1"
3749         UUID=$(awk '/'$MAXI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
3750         MAXC=$($LFS getstripe --obd $UUID $DIR/$tdir | wc -l)
3751         echo "$MAXC files created on larger OST $MAXI1"
3752         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
3753         [ $MAXC -gt $MINC ] || error "stripe QOS didn't balance free space"
3754 }
3755 run_test 116 "stripe QOS: free space balance ==================="
3756
3757 test_117() # bug 10891
3758 {
3759         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
3760         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
3761         sysctl -w lustre.fail_loc=0x21e
3762         > $DIR/$tfile || error "truncate failed"
3763         sysctl -w lustre.fail_loc=0
3764         echo "Truncate succeeded."
3765 }
3766 run_test 117 "verify fsfilt_extend =========="
3767
3768 TMPDIR=$OLDTMPDIR
3769 TMP=$OLDTMP
3770 HOME=$OLDHOME
3771
3772 log "cleanup: ======================================================"
3773 if [ "`mount | grep $MOUNT`" ]; then
3774     rm -rf $DIR/[Rdfs][1-9]*
3775 fi
3776 if [ "$I_MOUNTED" = "yes" ]; then
3777     cleanupall -f || error "cleanup failed"
3778 fi
3779
3780
3781 echo '=========================== finished ==============================='
3782 [ -f "$SANITYLOG" ] && cat $SANITYLOG && exit 1 || true
3783 echo "$0: completed"