Whamcloud - gitweb
d8631a3256216b4ad088e98cd43108a04fd678bf
[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 3637 3561 5188/5749 10764
11 ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"27o 27q  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 DIRTY_RATIO_SAVE=40
1686 MAX_DIRTY_RATIO=50
1687 BG_DIRTY_RATIO_SAVE=10
1688 MAX_BG_DIRTY_RATIO=25
1689
1690 start_writeback() {
1691         trap 0
1692         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
1693         # dirty_ratio, dirty_background_ratio
1694         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1695                 echo $WRITEBACK_SAVE > /proc/sys/vm/dirty_writeback_centisecs
1696                 echo $BG_DIRTY_RATIO_SAVE > /proc/sys/vm/dirty_background_ratio
1697                 echo $DIRTY_RATIO_SAVE > /proc/sys/vm/dirty_ratio
1698         else
1699                 # if file not here, we are a 2.4 kernel
1700                 kill -CONT `pidof kupdated`
1701         fi
1702 }
1703
1704 stop_writeback() {
1705         # setup the trap first, so someone cannot exit the test at the
1706         # exact wrong time and mess up a machine
1707         trap start_writeback EXIT
1708         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
1709         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1710                 WRITEBACK_SAVE=`cat /proc/sys/vm/dirty_writeback_centisecs`
1711                 echo 0 > /proc/sys/vm/dirty_writeback_centisecs
1712                 # save and increase /proc/sys/vm/dirty_ratio
1713                 DIRTY_RATIO_SAVE=`cat /proc/sys/vm/dirty_ratio`
1714                 echo $MAX_DIRTY_RATIO > /proc/sys/vm/dirty_ratio
1715                 # save and increase /proc/sys/vm/dirty_background_ratio
1716                 BG_DIRTY_RATIO_SAVE=`cat /proc/sys/vm/dirty_background_ratio`
1717                 echo $MAX_BG_DIRTY_RATIO > /proc/sys/vm/dirty_background_ratio
1718         else
1719                 # if file not here, we are a 2.4 kernel
1720                 kill -STOP `pidof kupdated`
1721         fi
1722 }
1723
1724 # ensure that all stripes have some grant before we test client-side cache
1725 setup_test42() {
1726         [ "$SETUP_TEST42" ] && return
1727         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
1728                 dd if=/dev/zero of=$i bs=4k count=1
1729                 rm $i
1730         done
1731         SETUP_TEST42=DONE
1732 }
1733
1734 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
1735 # file truncation, and file removal.
1736 test_42a() {
1737         setup_test42
1738         cancel_lru_locks osc
1739         stop_writeback
1740         sync; sleep 1; sync # just to be safe
1741         BEFOREWRITES=`count_ost_writes`
1742         grep "[0-9]" $LPROC/osc/*[oO][sS][cC]*/cur_grant_bytes
1743         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
1744         AFTERWRITES=`count_ost_writes`
1745         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1746                 error "$BEFOREWRITES < $AFTERWRITES"
1747         start_writeback
1748 }
1749 run_test 42a "ensure that we don't flush on close =============="
1750
1751 test_42b() {
1752         setup_test42
1753         cancel_lru_locks osc
1754         stop_writeback
1755         sync
1756         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
1757         BEFOREWRITES=`count_ost_writes`
1758         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
1759         AFTERWRITES=`count_ost_writes`
1760         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1761                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
1762         fi
1763         BEFOREWRITES=`count_ost_writes`
1764         sync || error "sync: $?"
1765         AFTERWRITES=`count_ost_writes`
1766         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1767                 error "$BEFOREWRITES < $AFTERWRITES on sync"
1768         fi
1769         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
1770         start_writeback
1771         return 0
1772 }
1773 run_test 42b "test destroy of file with cached dirty data ======"
1774
1775 # if these tests just want to test the effect of truncation,
1776 # they have to be very careful.  consider:
1777 # - the first open gets a {0,EOF}PR lock
1778 # - the first write conflicts and gets a {0, count-1}PW
1779 # - the rest of the writes are under {count,EOF}PW
1780 # - the open for truncate tries to match a {0,EOF}PR
1781 #   for the filesize and cancels the PWs.
1782 # any number of fixes (don't get {0,EOF} on open, match
1783 # composite locks, do smarter file size management) fix
1784 # this, but for now we want these tests to verify that
1785 # the cancellation with truncate intent works, so we
1786 # start the file with a full-file pw lock to match against
1787 # until the truncate.
1788 trunc_test() {
1789         test=$1
1790         file=$DIR/$test
1791         offset=$2
1792         cancel_lru_locks osc
1793         stop_writeback
1794         # prime the file with 0,EOF PW to match
1795         touch $file
1796         $TRUNCATE $file 0
1797         sync; sync
1798         # now the real test..
1799         dd if=/dev/zero of=$file bs=1024 count=100
1800         BEFOREWRITES=`count_ost_writes`
1801         $TRUNCATE $file $offset
1802         cancel_lru_locks osc
1803         AFTERWRITES=`count_ost_writes`
1804         start_writeback
1805 }
1806
1807 test_42c() {
1808         trunc_test 42c 1024
1809         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
1810             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
1811         rm $file
1812 }
1813 run_test 42c "test partial truncate of file with cached dirty data"
1814
1815 test_42d() {
1816         trunc_test 42d 0
1817         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1818             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
1819         rm $file
1820 }
1821 run_test 42d "test complete truncate of file with cached dirty data"
1822
1823 test_43() {
1824         mkdir $DIR/$tdir
1825         cp -p /bin/ls $DIR/$tdir/$tfile
1826         exec 100>> $DIR/$tdir/$tfile
1827         $DIR/$tdir/$tfile && error || true
1828         exec 100<&-
1829 }
1830 run_test 43 "execution of file opened for write should return -ETXTBSY"
1831
1832 test_43a() {
1833         mkdir -p $DIR/d43
1834         cp -p `which multiop` $DIR/d43/multiop
1835         $DIR/d43/multiop $TMP/test43.junk O_c &
1836         MULTIPID=$!
1837         sleep 1
1838         multiop $DIR/d43/multiop Oc && error "expected error, got success"
1839         kill -USR1 $MULTIPID || return 2
1840         wait $MULTIPID || return 3
1841         rm $TMP/test43.junk
1842 }
1843 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
1844
1845 test_43b() {
1846         mkdir -p $DIR/d43
1847         cp -p `which multiop` $DIR/d43/multiop
1848         $DIR/d43/multiop $TMP/test43.junk O_c &
1849         MULTIPID=$!
1850         sleep 1
1851         truncate $DIR/d43/multiop 0 && error "expected error, got success"
1852         kill -USR1 $MULTIPID || return 2
1853         wait $MULTIPID || return 3
1854         rm $TMP/test43.junk
1855 }
1856 run_test 43b "truncate of file being executed should return -ETXTBSY"
1857
1858 test_43c() {
1859         local testdir="$DIR/d43c"
1860         mkdir -p $testdir
1861         cp $SHELL $testdir/
1862         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
1863                 ( cd $testdir && md5sum -c)
1864 }
1865 run_test 43c "md5sum of copy into lustre========================"
1866
1867 test_44() {
1868         [  "$OSTCOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
1869         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
1870         dd if=$DIR/f1 bs=4k count=1
1871 }
1872 run_test 44 "zero length read from a sparse stripe ============="
1873
1874 test_44a() {
1875     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
1876                          awk '{print $2}'`
1877     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
1878                       awk '{print $2}'`
1879     if [ $nstripe -eq 0 ] ; then
1880         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
1881     fi
1882     [ -z "$nstripe" ] && error "can't get stripe info"
1883
1884     OFFSETS="0 $((stride/2)) $((stride-1))"
1885     for offset in $OFFSETS ; do
1886       for i in `seq 0 $((nstripe-1))`; do
1887         rm -f $DIR/d44a
1888         local GLOBALOFFSETS=""
1889         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
1890         ll_sparseness_write $DIR/d44a $size  || error "ll_sparseness_write"
1891         GLOBALOFFSETS="$GLOBALOFFSETS $size"
1892         ll_sparseness_verify $DIR/d44a $GLOBALOFFSETS \
1893                             || error "ll_sparseness_verify $GLOBALOFFSETS"
1894
1895         for j in `seq 0 $((nstripe-1))`; do
1896             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
1897             ll_sparseness_write $DIR/d44a $size || error "ll_sparseness_write"
1898             GLOBALOFFSETS="$GLOBALOFFSETS $size"
1899         done
1900         ll_sparseness_verify $DIR/d44a $GLOBALOFFSETS \
1901                             || error "ll_sparseness_verify $GLOBALOFFSETS"
1902       done
1903     done
1904 }
1905 run_test 44a "test sparse pwrite ==============================="
1906
1907 dirty_osc_total() {
1908         tot=0
1909         for d in $LPROC/osc/*/cur_dirty_bytes; do
1910                 tot=$(($tot + `cat $d`))
1911         done
1912         echo $tot
1913 }
1914 do_dirty_record() {
1915         before=`dirty_osc_total`
1916         echo executing "\"$*\""
1917         eval $*
1918         after=`dirty_osc_total`
1919         echo before $before, after $after
1920 }
1921 test_45() {
1922         f="$DIR/f45"
1923         # Obtain grants from OST if it supports it
1924         echo blah > ${f}_grant
1925         stop_writeback
1926         sync
1927         do_dirty_record "echo blah > $f"
1928         [ $before -eq $after ] && error "write wasn't cached"
1929         do_dirty_record "> $f"
1930         [ $before -gt $after ] || error "truncate didn't lower dirty count"
1931         do_dirty_record "echo blah > $f"
1932         [ $before -eq $after ] && error "write wasn't cached"
1933         do_dirty_record "sync"
1934         [ $before -gt $after ] || error "writeback didn't lower dirty count"
1935         do_dirty_record "echo blah > $f"
1936         [ $before -eq $after ] && error "write wasn't cached"
1937         do_dirty_record "cancel_lru_locks osc"
1938         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
1939         start_writeback
1940 }
1941 run_test 45 "osc io page accounting ============================"
1942
1943 page_size() {
1944         getconf PAGE_SIZE
1945 }
1946
1947 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
1948 # test tickles a bug where re-dirtying a page was failing to be mapped to the
1949 # objects offset and an assert hit when an rpc was built with 1023's mapped 
1950 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
1951 test_46() {
1952         f="$DIR/f46"
1953         stop_writeback
1954         sync
1955         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
1956         sync
1957         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
1958         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
1959         sync
1960         start_writeback
1961 }
1962 run_test 46 "dirtying a previously written page ================"
1963
1964 # Check that device nodes are created and then visible correctly (#2091)
1965 test_47() {
1966         cmknod $DIR/test_47_node || error
1967 }
1968 run_test 47 "Device nodes check ================================"
1969
1970 test_48a() { # bug 2399
1971         check_kernel_version 34 || return 0
1972         mkdir -p $DIR/d48a
1973         cd $DIR/d48a
1974         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
1975         mkdir $DIR/d48a || error "recreate directory failed"
1976         touch foo || error "'touch foo' failed after recreating cwd"
1977         mkdir bar || error "'mkdir foo' failed after recreating cwd"
1978         if check_kernel_version 44; then
1979                 touch .foo || error "'touch .foo' failed after recreating cwd"
1980                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
1981         fi
1982         ls . || error "'ls .' failed after recreating cwd"
1983         ls .. || error "'ls ..' failed after removing cwd"
1984         cd . || error "'cd .' failed after recreating cwd"
1985         mkdir . && error "'mkdir .' worked after recreating cwd"
1986         rmdir . && error "'rmdir .' worked after recreating cwd"
1987         ln -s . baz || error "'ln -s .' failed after recreating cwd"
1988         cd .. || error "'cd ..' failed after recreating cwd"
1989 }
1990 run_test 48a "Access renamed working dir (should return errors)="
1991
1992 test_48b() { # bug 2399
1993         check_kernel_version 34 || return 0
1994         mkdir -p $DIR/d48b
1995         cd $DIR/d48b
1996         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
1997         touch foo && error "'touch foo' worked after removing cwd"
1998         mkdir foo && error "'mkdir foo' worked after removing cwd"
1999         if check_kernel_version 44; then
2000                 touch .foo && error "'touch .foo' worked after removing cwd"
2001                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2002         fi
2003         ls . && error "'ls .' worked after removing cwd"
2004         ls .. || error "'ls ..' failed after removing cwd"
2005         cd . && error "'cd .' worked after removing cwd"
2006         mkdir . && error "'mkdir .' worked after removing cwd"
2007         rmdir . && error "'rmdir .' worked after removing cwd"
2008         ln -s . foo && error "'ln -s .' worked after removing cwd"
2009         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
2010 }
2011 run_test 48b "Access removed working dir (should return errors)="
2012
2013 test_48c() { # bug 2350
2014         check_kernel_version 36 || return 0
2015         #sysctl -w lnet.debug=-1
2016         #set -vx
2017         mkdir -p $DIR/d48c/dir
2018         cd $DIR/d48c/dir
2019         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
2020         $TRACE touch foo && error "'touch foo' worked after removing cwd"
2021         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
2022         if check_kernel_version 44; then
2023                 touch .foo && error "'touch .foo' worked after removing cwd"
2024                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2025         fi
2026         $TRACE ls . && error "'ls .' worked after removing cwd"
2027         $TRACE ls .. || error "'ls ..' failed after removing cwd"
2028         $TRACE cd . && error "'cd .' worked after removing cwd"
2029         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
2030         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
2031         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
2032         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
2033 }
2034 run_test 48c "Access removed working subdir (should return errors)"
2035
2036 test_48d() { # bug 2350
2037         check_kernel_version 36 || return 0
2038         #sysctl -w lnet.debug=-1
2039         #set -vx
2040         mkdir -p $DIR/d48d/dir
2041         cd $DIR/d48d/dir
2042         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
2043         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
2044         $TRACE touch foo && error "'touch foo' worked after removing parent"
2045         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
2046         if check_kernel_version 44; then
2047                 touch .foo && error "'touch .foo' worked after removing parent"
2048                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
2049         fi
2050         $TRACE ls . && error "'ls .' worked after removing parent"
2051         $TRACE ls .. && error "'ls ..' worked after removing parent"
2052         $TRACE cd . && error "'cd .' worked after recreate parent"
2053         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
2054         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
2055         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
2056         $TRACE cd .. && error "'cd ..' worked after removing parent" || true
2057 }
2058 run_test 48d "Access removed parent subdir (should return errors)"
2059
2060 test_48e() { # bug 4134
2061         check_kernel_version 41 || return 0
2062         #sysctl -w lnet.debug=-1
2063         #set -vx
2064         mkdir -p $DIR/d48e/dir
2065         cd $DIR/d48e/dir
2066         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
2067         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
2068         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
2069         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
2070         # On a buggy kernel addition of "touch foo" after cd .. will
2071         # produce kernel oops in lookup_hash_it
2072         touch ../foo && error "'cd ..' worked after recreate parent"
2073         cd $DIR
2074         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
2075 }
2076 run_test 48e "Access to recreated parent subdir (should return errors)"
2077
2078 test_50() {
2079         # bug 1485
2080         mkdir $DIR/d50
2081         cd $DIR/d50
2082         ls /proc/$$/cwd || error
2083 }
2084 run_test 50 "special situations: /proc symlinks  ==============="
2085
2086 test_51() {
2087         # bug 1516 - create an empty entry right after ".." then split dir
2088         mkdir $DIR/d51
2089         touch $DIR/d51/foo
2090         $MCREATE $DIR/d51/bar
2091         rm $DIR/d51/foo
2092         createmany -m $DIR/d51/longfile 201
2093         FNUM=202
2094         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
2095                 $MCREATE $DIR/d51/longfile$FNUM
2096                 FNUM=$(($FNUM + 1))
2097                 echo -n "+"
2098         done
2099         ls -l $DIR/d51 > /dev/null || error
2100 }
2101 run_test 51 "special situations: split htree with empty entry =="
2102
2103 export NUMTEST=70000
2104 test_51b() {
2105         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2106         [ $NUMFREE -lt 21000 ] && \
2107                 echo "skipping $TESTNAME, not enough free inodes ($NUMFREE)" && \
2108                 return
2109
2110         check_kernel_version 40 || NUMTEST=31000
2111         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
2112
2113         mkdir -p $DIR/d51b
2114         createmany -d $DIR/d51b/t- $NUMTEST
2115 }
2116 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
2117
2118 test_51c() {
2119         [ ! -d $DIR/d51b ] && echo "skipping $TESTNAME: $DIR/51b missing" && \
2120                 return
2121
2122         unlinkmany -d $DIR/d51b/t- $NUMTEST
2123 }
2124 run_test 51c "rmdir .../t-0 --- .../t-$NUMTEST ===================="
2125
2126 test_51d() {
2127         [  "$OSTCOUNT" -lt "3" ] && echo "skipping test with few OSTs" && return
2128         mkdir -p $DIR/d51d
2129         createmany -o $DIR/d51d/t- 1000
2130         $LFS getstripe $DIR/d51d > $TMP/files
2131         for N in `seq 0 $((OSTCOUNT - 1))`; do
2132             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
2133             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
2134             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
2135         done
2136         unlinkmany $DIR/d51d/t- 1000
2137
2138         NLAST=0
2139         for N in `seq 1 $((OSTCOUNT - 1))`; do
2140             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
2141                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2142             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
2143                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2144             
2145             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
2146                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2147             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
2148                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2149             NLAST=$N
2150         done
2151 }
2152 run_test 51d "check object distribution ===================="
2153
2154 test_52a() {
2155         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
2156         mkdir -p $DIR/d52a
2157         touch $DIR/d52a/foo
2158         chattr =a $DIR/d52a/foo || error "chattr =a failed"
2159         echo bar >> $DIR/d52a/foo || error "append bar failed"
2160         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
2161         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
2162         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
2163         echo foo >> $DIR/d52a/foo || error "append foo failed"
2164         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
2165         lsattr $DIR/d52a/foo | egrep -q "^-+a-+ $DIR/d52a/foo" || error "lsattr"
2166         chattr -a $DIR/d52a/foo || error "chattr -a failed"
2167
2168         rm -fr $DIR/d52a || error "cleanup rm failed"
2169 }
2170 run_test 52a "append-only flag test (should return errors) ====="
2171
2172 test_52b() {
2173         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
2174         mkdir -p $DIR/d52b
2175         touch $DIR/d52b/foo
2176         chattr =i $DIR/d52b/foo || error
2177         cat test > $DIR/d52b/foo && error
2178         cp /etc/hosts $DIR/d52b/foo && error
2179         rm -f $DIR/d52b/foo 2>/dev/null && error
2180         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error
2181         echo foo >> $DIR/d52b/foo && error
2182         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error
2183         [ -f $DIR/d52b/foo ] || error
2184         [ -f $DIR/d52b/foo_ren ] && error
2185         lsattr $DIR/d52b/foo | egrep -q "^-+i-+ $DIR/d52b/foo" || error
2186         chattr -i $DIR/d52b/foo || error
2187
2188         rm -fr $DIR/d52b || error
2189 }
2190 run_test 52b "immutable flag test (should return errors) ======="
2191
2192 test_53() {
2193         [ -z "$MDS" ] && echo "skipping $TESTNAME with remote MDS" && return
2194         
2195         for i in `ls -d $LPROC/osc/*-osc 2> /dev/null` ; do
2196                 ostname=`basename $i | cut -d - -f 1-2`
2197                 ost_last=`cat $LPROC/obdfilter/$ostname/last_id`
2198                 mds_last=`cat $i/prealloc_last_id`
2199                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2200                 if [ $ost_last != $mds_last ]; then
2201                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2202                 fi
2203         done
2204 }
2205 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
2206
2207 test_54a() {
2208         [ ! -f "$SOCKETSERVER" ] && echo "no socketserver, skipping" && return
2209         [ ! -f "$SOCKETCLIENT" ] && echo "no socketclient, skipping" && return
2210         $SOCKETSERVER $DIR/socket
2211         $SOCKETCLIENT $DIR/socket || error
2212         $MUNLINK $DIR/socket
2213 }
2214 run_test 54a "unix domain socket test =========================="
2215
2216 test_54b() {
2217         f="$DIR/f54b"
2218         mknod $f c 1 3
2219         chmod 0666 $f
2220         dd if=/dev/zero of=$f bs=`page_size` count=1 
2221 }
2222 run_test 54b "char device works in lustre ======================"
2223
2224 find_loop_dev() {
2225         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
2226         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
2227         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
2228
2229         for i in `seq 3 7`; do
2230                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
2231                 LOOPDEV=$LOOPBASE$i
2232                 LOOPNUM=$i
2233                 break
2234         done
2235 }
2236
2237 test_54c() {
2238         tfile="$DIR/f54c"
2239         tdir="$DIR/d54c"
2240         loopdev="$DIR/loop54c"
2241
2242         find_loop_dev 
2243         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
2244         mknod $loopdev b 7 $LOOPNUM
2245         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
2246         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
2247         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
2248         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
2249         mkdir -p $tdir
2250         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
2251         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
2252         df $tdir
2253         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
2254         $UMOUNT $tdir
2255         losetup -d $loopdev
2256         rm $loopdev
2257 }
2258 run_test 54c "block device works in lustre ====================="
2259
2260 test_54d() {
2261         f="$DIR/f54d"
2262         string="aaaaaa"
2263         mknod $f p
2264         [ "$string" = `echo $string > $f | cat $f` ] || error
2265 }
2266 run_test 54d "fifo device works in lustre ======================"
2267
2268 test_54e() {
2269         check_kernel_version 46 || return 0
2270         f="$DIR/f54e"
2271         string="aaaaaa"
2272         mknod $f c 4 0
2273         echo $string > $f || error
2274 }
2275 run_test 54e "console/tty device works in lustre ======================"
2276
2277 check_fstype() {
2278         grep -q $FSTYPE /proc/filesystems && return 1
2279         modprobe $FSTYPE
2280         grep -q $FSTYPE /proc/filesystems && return 1
2281         insmod ../$FSTYPE/$FSTYPE.o
2282         grep -q $FSTYPE /proc/filesystems && return 1
2283         insmod ../$FSTYPE/$FSTYPE.ko
2284         grep -q $FSTYPE /proc/filesystems && return 1
2285         return 0
2286 }
2287
2288 test_55() {
2289         rm -rf $DIR/d55
2290         mkdir $DIR/d55
2291         check_fstype && echo "can't find fs $FSTYPE, skipping $TESTNAME" && return
2292         mount -t $FSTYPE -o loop,iopen $EXT2_DEV $DIR/d55 || error "mounting"
2293         touch $DIR/d55/foo
2294         $IOPENTEST1 $DIR/d55/foo $DIR/d55 || error "running $IOPENTEST1"
2295         $IOPENTEST2 $DIR/d55 || error "running $IOPENTEST2"
2296         echo "check for $EXT2_DEV. Please wait..."
2297         rm -rf $DIR/d55/*
2298         $UMOUNT $DIR/d55 || error "unmounting"
2299 }
2300 run_test 55 "check iopen_connect_dentry() ======================"
2301
2302 test_56() {
2303         rm -rf $DIR/d56
2304         $SETSTRIPE -d $DIR
2305         mkdir $DIR/d56
2306         mkdir $DIR/d56/dir
2307         NUMFILES=3
2308         NUMFILESx2=$(($NUMFILES * 2))
2309         for i in `seq 1 $NUMFILES` ; do
2310                 touch $DIR/d56/file$i
2311                 touch $DIR/d56/dir/file$i
2312         done
2313
2314         # test lfs getstripe with --recursive
2315         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
2316         [ $FILENUM -eq $NUMFILESx2 ] || error \
2317                 "lfs getstripe --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
2318         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
2319         [ $FILENUM -eq $NUMFILES ] || error \
2320                 "lfs getstripe $DIR/d56 without --recursive wrong: found $FILENUM, expected $NUMFILES"
2321         echo "lfs getstripe --recursive passed."
2322
2323         # test lfs getstripe with file instead of dir
2324         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
2325         [ $FILENUM  -eq 1 ] || error \
2326                  "lfs getstripe $DIR/d56/file1 wrong:found $FILENUM, expected 1"
2327         echo "lfs getstripe file passed."
2328
2329         #test lfs getstripe with --verbose
2330         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
2331                 error "lfs getstripe --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
2332         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
2333                 "lfs getstripe $DIR/d56 without --verbose wrong: should not show lmm_magic info"
2334         echo "lfs getstripe --verbose passed."
2335
2336         #test lfs getstripe with --obd
2337         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
2338                 error "lfs getstripe --obd wrong_uuid should return error message"
2339
2340         [  "$OSTCOUNT" -lt 2 ] && \
2341                 echo "skipping other lfs getstripe --obd test" && return
2342         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1[    ]/p' | wc -l`
2343         OBDUUID=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1:/p' | awk '{print $2}'`
2344         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | wc -l`
2345         [ $FOUND -eq $FILENUM ] || \
2346                 error "lfs getstripe --obd wrong: found $FOUND, expected $FILENUM"
2347         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 | sed '/^[   ]*1[    ]/d' |\
2348                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
2349                 error "lfs getstripe --obd wrong: should not show file on other obd"
2350         echo "lfs getstripe --obd passed."
2351 }
2352 run_test 56 "check lfs getstripe ===================================="
2353
2354 NUMFILES=3
2355 NUMDIRS=3
2356 setup_56() {
2357         LOCAL_NUMFILES=$1
2358         LOCAL_NUMDIRS=$2
2359         if [ ! -d "$DIR/${tdir}g" ] ; then
2360                 mkdir -p $DIR/${tdir}g
2361                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2362                         touch $DIR/${tdir}g/file$i
2363                 done
2364                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2365                         mkdir $DIR/${tdir}g/dir$i
2366                         for j in `seq 1 $LOCAL_NUMFILES` ; do
2367                                 touch $DIR/${tdir}g/dir$i/file$j
2368                         done
2369                 done
2370         fi
2371 }
2372
2373 test_56g() {
2374         $LSTRIPE -d $DIR
2375
2376         setup_56 $NUMFILES $NUMDIRS
2377
2378         EXPECTED=$(($NUMDIRS + 2))
2379         # test lfs find with -name
2380         for i in `seq 1 $NUMFILES` ; do
2381                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
2382                 [ $NUMS -eq $EXPECTED ] || error \
2383                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2384         done
2385         echo "lfs find -name passed."
2386 }
2387 run_test 56g "check lfs find -name ============================="
2388
2389 test_56h() {
2390         $LSTRIPE -d $DIR
2391
2392         setup_56 $NUMFILES $NUMDIRS
2393
2394         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
2395         # test lfs find with ! -name
2396         for i in `seq 1 $NUMFILES` ; do
2397                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
2398                 [ $NUMS -eq $EXPECTED ] || error \
2399                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2400         done
2401         echo "lfs find ! -name passed."
2402 }
2403 run_test 56h "check lfs find ! -name ============================="
2404
2405 test_57a() {
2406         [ -z "$MDS" ] && echo "skipping $TESTNAME for remote MDS" && return
2407         for DEV in `cat $LPROC/mds/*/mntdev`; do
2408                 dumpe2fs -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
2409                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
2410                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
2411                 rm $TMP/t57a.dump
2412         done
2413 }
2414 run_test 57a "verify MDS filesystem created with large inodes =="
2415
2416 test_57b() {
2417         FILECOUNT=100
2418         FILE1=$DIR/d57b/f1
2419         FILEN=$DIR/d57b/f$FILECOUNT
2420         rm -rf $DIR/d57b || error "removing $DIR/d57b"
2421         mkdir -p $DIR/d57b || error "creating $DIR/d57b"
2422         echo "mcreating $FILECOUNT files"
2423         createmany -m $DIR/d57b/f 1 $FILECOUNT || \
2424                 error "creating files in $DIR/d57b"
2425
2426         # verify that files do not have EAs yet
2427         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
2428         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
2429
2430         MDSFREE="`cat $LPROC/mds/*/kbytesfree 2> /dev/null`"
2431         MDCFREE="`cat $LPROC/mdc/*/kbytesfree | head -n 1`"
2432         echo "opening files to create objects/EAs"
2433         for FILE in `seq -f $DIR/d57b/f%g 1 $FILECOUNT`; do
2434                 $OPENFILE -f O_RDWR $FILE > /dev/null || error "opening $FILE"
2435         done
2436
2437         # verify that files have EAs now
2438         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
2439         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
2440
2441         sleep 1 # make sure we get new statfs data
2442         MDSFREE2="`cat $LPROC/mds/*/kbytesfree 2> /dev/null`"
2443         MDCFREE2="`cat $LPROC/mdc/*/kbytesfree | head -n 1`"
2444         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
2445                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
2446                         error "MDC before $MDCFREE != after $MDCFREE2"
2447                 else
2448                         echo "MDC before $MDCFREE != after $MDCFREE2"
2449                         echo "unable to confirm if MDS has large inodes"
2450                 fi
2451         fi
2452         rm -rf $DIR/d57b
2453 }
2454 run_test 57b "default LOV EAs are stored inside large inodes ==="
2455
2456 test_58() {
2457     [ -z "$(which wiretest 2>/dev/null)" ] && echo "skipping $TESTNAME (could not find wiretest)" && return
2458     wiretest
2459 }
2460 run_test 58 "verify cross-platform wire constants =============="
2461
2462 test_59() {
2463         echo "touch 130 files"
2464         createmany -o $DIR/f59- 130
2465         echo "rm 130 files"
2466         unlinkmany $DIR/f59- 130
2467         sync
2468         sleep 2
2469         # wait for commitment of removal
2470 }
2471 run_test 59 "verify cancellation of llog records async ========="
2472
2473 TEST60_HEAD="test_60 run $RANDOM"
2474 test_60() {
2475         [ ! -f run-llog.sh ] && echo "missing subtest, skipping" && return
2476         log "$TEST60_HEAD - from kernel mode"
2477         sh run-llog.sh
2478 }
2479 run_test 60 "llog sanity tests run from kernel module =========="
2480
2481 test_60b() { # bug 6411
2482         dmesg > $DIR/$tfile
2483         LLOG_COUNT=`dmesg | grep -A 1000 "$TEST60_HEAD" | grep -c llog_test`
2484         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages"|| true
2485 }
2486 run_test 60b "limit repeated messages from CERROR/CWARN ========"
2487
2488 test_61() {
2489         f="$DIR/f61"
2490         dd if=/dev/zero of=$f bs=`page_size` count=1
2491         cancel_lru_locks osc
2492         multiop $f OSMWUc || error
2493         sync
2494 }
2495 run_test 61 "mmap() writes don't make sync hang ================"
2496
2497 # bug 2330 - insufficient obd_match error checking causes LBUG
2498 test_62() {
2499         f="$DIR/f62"
2500         echo foo > $f
2501         cancel_lru_locks osc
2502         sysctl -w lustre.fail_loc=0x405
2503         cat $f && error "cat succeeded, expect -EIO"
2504         sysctl -w lustre.fail_loc=0
2505 }
2506 run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
2507
2508 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
2509 test_63() {
2510         MAX_DIRTY_MB=`cat $LPROC/osc/*/max_dirty_mb | head -n 1`
2511         for i in $LPROC/osc/*/max_dirty_mb ; do
2512                 echo 0 > $i
2513         done
2514         for i in `seq 10` ; do
2515                 dd if=/dev/zero of=$DIR/f63 bs=8k &
2516                 sleep 5
2517                 kill $!
2518                 sleep 1
2519         done
2520
2521         for i in $LPROC/osc/*/max_dirty_mb ; do
2522                 echo $MAX_DIRTY_MB > $i
2523         done
2524         rm -f $DIR/f63 || true
2525 }
2526 run_test 63 "Verify oig_wait interruption does not crash ======="
2527
2528 # bug 2248 - async write errors didn't return to application on sync
2529 # bug 3677 - async write errors left page locked
2530 test_63b() {
2531         DBG_SAVE="`sysctl -n lnet.debug`"
2532         sysctl -w lnet.debug=-1
2533
2534         # ensure we have a grant to do async writes
2535         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
2536         rm $DIR/$tfile
2537
2538         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
2539         sysctl -w lustre.fail_loc=0x80000406
2540         multiop $DIR/$tfile Owy && \
2541                 $LCTL dk /tmp/test63b.debug && \
2542                 sysctl -w lnet.debug="$DBG_SAVE" && \
2543                 error "sync didn't return ENOMEM"
2544         sync; sleep 2; sync     # do a real sync this time to flush page
2545         grep locked $LPROC/llite/*/dump_page_cache && \
2546                 $LCTL dk /tmp/test63b.debug && \
2547                 sysctl -w lnet.debug="$DBG_SAVE" && \
2548                 error "locked page left in cache after async error" || true
2549         sysctl -w lnet.debug="$DBG_SAVE"
2550 }
2551 run_test 63b "async write errors should be returned to fsync ==="
2552
2553 test_64a () {
2554         df $DIR
2555         grep "[0-9]" $LPROC/osc/*[oO][sS][cC]*/cur*
2556 }
2557 run_test 64a "verify filter grant calculations (in kernel) ====="
2558
2559 test_64b () {
2560         [ ! -f oos.sh ] && echo "missing subtest, skipping" && return
2561         sh oos.sh $MOUNT
2562 }
2563 run_test 64b "check out-of-space detection on client ==========="
2564
2565 # bug 1414 - set/get directories' stripe info
2566 test_65a() {
2567         mkdir -p $DIR/d65
2568         touch $DIR/d65/f1
2569         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
2570 }
2571 run_test 65a "directory with no stripe info ===================="
2572
2573 test_65b() {
2574         mkdir -p $DIR/d65
2575         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2576         touch $DIR/d65/f2
2577         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
2578 }
2579 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
2580
2581 test_65c() {
2582         if [ $OSTCOUNT -gt 1 ]; then
2583                 mkdir -p $DIR/d65
2584                 $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 4)) 1 \
2585                         $(($OSTCOUNT - 1)) || error "setstripe"
2586                 touch $DIR/d65/f3
2587                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
2588         fi
2589 }
2590 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
2591
2592 [ $STRIPECOUNT -eq 0 ] && sc=1 || sc=$(($STRIPECOUNT - 1))
2593
2594 test_65d() {
2595         mkdir -p $DIR/d65
2596         $SETSTRIPE $DIR/d65 $STRIPESIZE -1 $sc || error "setstripe"
2597         touch $DIR/d65/f4 $DIR/d65/f5
2598         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
2599 }
2600 run_test 65d "directory setstripe $STRIPESIZE -1 $sc =============="
2601
2602 test_65e() {
2603         mkdir -p $DIR/d65
2604
2605         $SETSTRIPE $DIR/d65 0 -1 0 || error "setstripe"
2606         $GETSTRIPE -v $DIR/d65 | grep "has no stripe info" || error "no stripe info failed"
2607         touch $DIR/d65/f6
2608         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
2609 }
2610 run_test 65e "directory setstripe 0 -1 0 ======================="
2611
2612 test_65f() {
2613         mkdir -p $DIR/d65f
2614         $RUNAS $SETSTRIPE $DIR/d65f 0 -1 0 && error "setstripe succeeded" || true
2615 }
2616 run_test 65f "dir setstripe permission (should return error) ==="
2617
2618 test_65g() {
2619         mkdir -p $DIR/d65
2620         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2621         $SETSTRIPE -d $DIR/d65 || error "setstripe"
2622         $GETSTRIPE -v $DIR/d65 | grep "has no stripe info" || \
2623                 error "delete default stripe failed"
2624 }
2625 run_test 65g "directory setstripe -d ==========================="
2626
2627 test_65h() {
2628         mkdir -p $DIR/d65
2629         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2630         mkdir -p $DIR/d65/dd1
2631         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
2632           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
2633 }
2634 run_test 65h "directory stripe info inherit ===================="
2635  
2636 test_65i() { # bug6367
2637         $SETSTRIPE $MOUNT 65536 -1 -1
2638 }
2639 run_test 65i "set non-default striping on root directory (bug 6367)="
2640
2641 test_65j() { # bug6367
2642         # if we aren't already remounting for each test, do so for this test
2643         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
2644                 cleanup -f || error "failed to unmount"
2645                 setup
2646         fi
2647         $SETSTRIPE -d $MOUNT
2648 }
2649 run_test 65j "set default striping on root directory (bug 6367)="
2650
2651 # bug 2543 - update blocks count on client
2652 test_66() {
2653         COUNT=${COUNT:-8}
2654         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
2655         sync; sleep 1; sync
2656         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
2657         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
2658 }
2659 run_test 66 "update inode blocks count on client ==============="
2660
2661 test_67() { # bug 3285 - supplementary group fails on MDS, passes on client
2662         [ "$RUNAS_ID" = "$UID" ] && echo "skipping $TESTNAME" && return
2663         check_kernel_version 35 || return 0
2664         mkdir $DIR/$tdir
2665         chmod 771 $DIR/$tdir
2666         chgrp $RUNAS_ID $DIR/$tdir
2667         $RUNAS -u $RUNAS_ID -g $(($RUNAS_ID + 1)) -G1,2,$RUNAS_ID ls $DIR/$tdir
2668         RC=$?
2669         if [ "$MDS" ]; then
2670                 # can't tell which is correct otherwise
2671                 GROUP_UPCALL=`cat $LPROC/mds/$MDS/group_upcall`
2672                 [ "$GROUP_UPCALL" = "NONE" -a $RC -eq 0 ] && \
2673                         error "no-upcall passed" || true
2674                 [ "$GROUP_UPCALL" != "NONE" -a $RC -ne 0 ] && \
2675                         error "upcall failed" || true
2676         fi
2677 }
2678 run_test 67 "supplementary group failure (should return error) ="
2679
2680 cleanup_67b() {
2681         trap 0
2682         echo NONE > $LPROC/mds/$MDS/group_upcall
2683         set +vx
2684 }
2685
2686 test_67b() { # bug 3285 - supplementary group fails on MDS, passes on client
2687         T67_UID=${T67_UID:-1}   # needs to be in /etc/groups on MDS, gid == uid
2688         [ "$UID" = "$T67_UID" ] && echo "skipping $TESTNAME" && return
2689         check_kernel_version 35 || return 0
2690         [ -z "$MDS" ] && echo "skipping $TESTNAME - no MDS" && return
2691         GROUP_UPCALL=`cat $LPROC/mds/$MDS/group_upcall`
2692         [ "$GROUP_UPCALL" != "NONE" ] && echo "skip $TESTNAME - upcall" &&return
2693         set -vx
2694         trap cleanup_67b EXIT
2695         mkdir -p $DIR/$tdir
2696         chmod 771 $DIR/$tdir
2697         chgrp $T67_UID $DIR/$tdir
2698         echo `which l_getgroups` > $LPROC/mds/$MDS/group_upcall
2699         l_getgroups -d $T67_UID
2700         $RUNAS -u $T67_UID -g $((T67_UID + 1)) -G8,9 id
2701         $RUNAS -u $T67_UID -g 999 -G8,9,$T67_UID touch $DIR/$tdir/$tfile || \
2702                 error "'touch $DIR/$tdir/$tfile' failed"
2703         [ -f $DIR/$tdir/$tfile ] || error "$DIR/$tdir/$tfile create error"
2704         cleanup_67b
2705 }
2706 run_test 67b "supplementary group test ========================="
2707
2708 cleanup_68() {
2709         trap 0
2710         if [ "$LOOPDEV" ]; then
2711                 swapoff $LOOPDEV || error "swapoff failed"
2712                 losetup -d $LOOPDEV || error "losetup -d failed"
2713                 unset LOOPDEV LOOPNUM
2714         fi
2715         rm -f $DIR/f68
2716 }
2717
2718 meminfo() {
2719         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
2720 }
2721
2722 swap_used() {
2723         swapon -s | awk '($1 == "'$1'") { print $4 }'
2724 }
2725
2726 # excercise swapping to lustre by adding a high priority swapfile entry
2727 # and then consuming memory until it is used.
2728 test_68() {
2729         [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
2730         [ "`lsmod|grep obdfilter`" ] && echo "skipping $TESTNAME (local OST)" && \
2731                 return
2732
2733         find_loop_dev
2734         dd if=/dev/zero of=$DIR/f68 bs=64k count=1024
2735
2736         trap cleanup_68 EXIT
2737
2738         losetup $LOOPDEV $DIR/f68 || error "losetup $LOOPDEV failed"
2739         mkswap $LOOPDEV
2740         swapon -p 32767 $LOOPDEV || error "swapon $LOOPDEV failed"
2741
2742         echo "before: `swapon -s | grep $LOOPDEV`"
2743         KBFREE=`meminfo MemTotal`
2744         $MEMHOG $KBFREE || error "error allocating $KBFREE kB"
2745         echo "after: `swapon -s | grep $LOOPDEV`"
2746         SWAPUSED=`swap_used $LOOPDEV`
2747
2748         cleanup_68
2749
2750         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
2751 }
2752 run_test 68 "support swapping to Lustre ========================"
2753
2754 # bug5265, obdfilter oa2dentry return -ENOENT
2755 # #define OBD_FAIL_OST_ENOENT 0x217
2756 test_69() {
2757         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] &&
2758                 echo "skipping $TESTNAME for remote OST" && return
2759
2760         f="$DIR/$tfile"
2761         touch $f
2762
2763         if ! $DIRECTIO write ${f}.2 0 1; then
2764                 echo "skipping $TESTNAME - O_DIRECT not implemented"
2765                 return 0
2766         fi
2767
2768         sysctl -w lustre.fail_loc=0x217
2769         truncate $f 1 # vmtruncate() will ignore truncate() error.
2770         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
2771
2772         sysctl -w lustre.fail_loc=0
2773         $DIRECTIO write $f 0 2 || error "write error"
2774
2775         cancel_lru_locks osc
2776         $DIRECTIO read $f 0 1 || error "read error"
2777
2778         sysctl -w lustre.fail_loc=0x217
2779         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
2780
2781         sysctl -w lustre.fail_loc=0
2782         rm -f $f
2783 }
2784 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
2785
2786 test_71() {
2787         which dbench > /dev/null 2>&1 || echo "dbench not installed, skip this test" && return 0
2788         DBENCH_LIB=${DBENCH_LIB:-/usr/lib/dbench}
2789         PATH=${DBENCH_LIB}:${PATH}
2790         cp `which dbench` $DIR
2791
2792         TGT=$DIR/client.txt
2793         SRC=${SRC:-$DBENCH_LIB/client.txt}
2794         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
2795         SRC=$DBENCH_LIB/client_plain.txt
2796         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
2797
2798         echo "copying necessary lib to $DIR"
2799         [ -d /lib64 ] && LIB71=/lib64 || LIB71=/lib
2800         mkdir -p $DIR$LIB71 || error "can't create $DIR$LIB71"
2801         cp $LIB71/libc* $DIR$LIB71 || error "can't copy $LIB71/libc*"
2802         cp $LIB71/ld-* $DIR$LIB71 || error "can't create $LIB71/ld-*"
2803
2804         echo "chroot $DIR /dbench -c client.txt 2"
2805         chroot $DIR /dbench -c client.txt 2
2806         RC=$?
2807
2808         rm -rf $DIR/dbench $TGT $DIR$LIB71
2809
2810         return $RC
2811 }
2812 run_test 71 "Running dbench on lustre (don't segment fault) ===="
2813
2814 test_72() { # bug 5695 - Test that on 2.6 remove_suid works properly
2815         check_kernel_version 43 || return 0
2816         [ "$RUNAS_ID" = "$UID" ] && echo "skipping $TESTNAME" && return
2817         touch $DIR/f72
2818         chmod 777 $DIR/f72
2819         chmod ug+s $DIR/f72
2820         $RUNAS -u $(($RUNAS_ID + 1)) dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
2821         # See if we are still setuid/sgid
2822         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
2823         # Now test that MDS is updated too
2824         cancel_lru_locks mdc
2825         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
2826         true
2827 }
2828 run_test 72 "Test that remove suid works properly (bug5695) ===="
2829
2830 # bug 3462 - multiple simultaneous MDC requests
2831 test_73() {
2832         mkdir $DIR/d73-1 
2833         mkdir $DIR/d73-2
2834         multiop $DIR/d73-1/f73-1 O_c &
2835         pid1=$!
2836         #give multiop a chance to open
2837         usleep 500
2838
2839         echo 0x80000129 > /proc/sys/lustre/fail_loc
2840         multiop $DIR/d73-1/f73-2 Oc &
2841         sleep 1
2842         echo 0 > /proc/sys/lustre/fail_loc
2843
2844         multiop $DIR/d73-2/f73-3 Oc &
2845         pid3=$!
2846
2847         kill -USR1 $pid1
2848         wait $pid1 || return 1
2849
2850         sleep 25
2851
2852         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
2853         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5 
2854         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6 
2855
2856         rm -rf $DIR/d73-*
2857 }
2858 run_test 73 "multiple MDC requests (should not deadlock)"
2859
2860 test_74() { # bug 6149, 6184
2861         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
2862         #
2863         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
2864         # will spin in a tight reconnection loop
2865         sysctl -w lustre.fail_loc=0x8000030e
2866         # get any lock
2867         touch $DIR/f74
2868         sysctl -w lustre.fail_loc=0
2869         true
2870 }
2871 run_test 74 "ldlm_enqueue freed-export error path (shouldn't LBUG)"
2872
2873 JOIN=${JOIN:-"lfs join"}
2874 F75=$DIR/f75
2875 F128k=${F75}_128k
2876 FHEAD=${F75}_head
2877 FTAIL=${F75}_tail
2878 export T75_PREP=no
2879 test75_prep() {
2880         [ $T75_PREP = "yes" ] && return
2881         echo "using F75=$F75, F128k=$F128k, FHEAD=$FHEAD, FTAIL=$FTAIL"
2882  
2883         dd if=/dev/urandom of=${F75}_128k bs=128k count=1 || error "dd failed"
2884         log "finished dd"
2885         chmod 777 ${F128k}
2886         T75_PREP=yes
2887 }
2888  
2889 test_75a() {
2890         test75_prep
2891  
2892         cp -p ${F128k} ${FHEAD}
2893         log "finished cp to $FHEAD"
2894         cp -p ${F128k} ${FTAIL}
2895         log "finished cp to $FTAIL"
2896         cat ${F128k} ${F128k} > ${F75}_sim_sim
2897  
2898         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
2899         log "finished join $FHEAD to ${F75}_sim_sim"
2900         cmp ${FHEAD} ${F75}_sim_sim || error "${FHEAD} ${F75}_sim_sim differ"
2901         log "finished cmp $FHEAD to ${F75}_sim_sim"
2902         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} still exist after join"
2903 }
2904 run_test 75a "TEST join file ===================================="
2905  
2906 test_75b() {
2907         test75_prep
2908  
2909         cp -p ${F128k} ${FTAIL}
2910         cat ${F75}_sim_sim >> ${F75}_join_sim
2911         cat ${F128k} >> ${F75}_join_sim
2912         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
2913         cmp ${FHEAD} ${F75}_join_sim || \
2914                 error "${FHEAD} ${F75}_join_sim are different"
2915         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join"
2916 }
2917 run_test 75b "TEST join file 2 =================================="
2918  
2919 test_75c() {
2920         test75_prep
2921  
2922         cp -p ${F128k} ${FTAIL}
2923         cat ${F128k} >> ${F75}_sim_join
2924         cat ${F75}_join_sim >> ${F75}_sim_join
2925         $JOIN ${FTAIL} ${FHEAD} || error "join error"
2926         cmp ${FTAIL} ${F75}_sim_join || \
2927                 error "${FTAIL} ${F75}_sim_join are different"
2928         $CHECKSTAT -a ${FHEAD} || error "tail ${FHEAD} exist after join"
2929 }
2930 run_test 75c "TEST join file 3 =================================="
2931  
2932 test_75d() {
2933         test75_prep
2934  
2935         cp -p ${F128k} ${FHEAD}
2936         cp -p ${F128k} ${FHEAD}_tmp
2937         cat ${F75}_sim_sim >> ${F75}_join_join
2938         cat ${F75}_sim_join >> ${F75}_join_join
2939         $JOIN ${FHEAD} ${FHEAD}_tmp || error "join ${FHEAD} ${FHEAD}_tmp error"
2940         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
2941         cmp ${FHEAD} ${F75}_join_join ||error "${FHEAD} ${F75}_join_join differ"        $CHECKSTAT -a ${FHEAD}_tmp || error "${FHEAD}_tmp exist after join"
2942         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join (2)"
2943 }
2944 run_test 75d "TEST join file 4 =================================="
2945  
2946 test_75e() {
2947         test75_prep
2948  
2949         rm -rf ${FHEAD} || "delete join file error"
2950 }
2951 run_test 75e "TEST join file 5 (remove joined file) ============="
2952  
2953 test_75f() {
2954         test75_prep
2955  
2956         cp -p ${F128k} ${F75}_join_10_compare
2957         cp -p ${F128k} ${F75}_join_10
2958         for ((i = 0; i < 10; i++)); do
2959                 cat ${F128k} >> ${F75}_join_10_compare
2960                 cp -p ${F128k} ${FTAIL}
2961                 $JOIN ${F75}_join_10 ${FTAIL} || \
2962                         error "join ${F75}_join_10 ${FTAIL} error"
2963                 $CHECKSTAT -a ${FTAIL} || error "tail file exist after join"
2964         done
2965         cmp ${F75}_join_10 ${F75}_join_10_compare || \
2966                 error "files ${F75}_join_10 ${F75}_join_10_compare differ"
2967 }
2968 run_test 75f "TEST join file 6 (join 10 files) =================="
2969  
2970 test_75g() {
2971         [ ! -f ${F75}_join_10 ] && echo "${F75}_join_10 missing" && return
2972         $LFS getstripe ${F75}_join_10
2973  
2974         $OPENUNLINK ${F75}_join_10 ${F75}_join_10 || error "files unlink open"
2975  
2976         ls -l $F75*
2977 }
2978 run_test 75g "TEST join file 7 (open unlink) ===================="
2979
2980 num_inodes() {
2981         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
2982 }
2983
2984 test_76() { # bug 1443
2985         BEFORE_INODES=`num_inodes`
2986         echo "before inodes: $BEFORE_INODES"
2987         for i in `seq 1000`; do
2988                 touch $DIR/$tfile
2989                 rm -f $DIR/$tfile
2990         done
2991         AFTER_INODES=`num_inodes`
2992         echo "after inodes: $AFTER_INODES"
2993         [ $AFTER_INODES -gt $((BEFORE_INODES + 32)) ] && \
2994                 error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
2995         true
2996 }
2997 run_test 76 "destroy duplicate inodes in client inode cache ===="
2998
2999 F77_TMP=$TMP/f77-temp
3000 test_77a() { # bug 10889
3001         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3002         if [ ! -f $F77_TMP ]; then
3003                 dd if=/dev/urandom of=$F77_TMP bs=1M count=8 || \
3004                         error "error writing to $F77_TMP"
3005         fi
3006         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=8 || error "dd error"
3007         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3008 }
3009 run_test 77a "normal checksum read/write operation ============="
3010
3011 test_77b() { # bug 10889
3012         [ ! -f $F77_TMP ] && echo "requires 77a" && return  
3013         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3014         sysctl -w lustre.fail_loc=0x80000409
3015         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3016         dd if=$F77_TMP of=$DIR/f77b bs=8M count=1 conv=sync || \
3017                 error "write error: rc=$?"
3018         sysctl -w lustre.fail_loc=0
3019         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3020 }
3021 run_test 77b "checksum error on client write ===================="
3022
3023 test_77c() { # bug 10889
3024         [ ! -f $F77_TMP ] && echo "requires 77a" && return  
3025         cancel_lru_locks osc
3026         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3027         sysctl -w lustre.fail_loc=0x80000408
3028         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3029         cmp $F77_TMP $DIR/f77b || error "file compare failed"
3030         sysctl -w lustre.fail_loc=0
3031         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3032 }
3033 run_test 77c "checksum error on client read ==================="
3034
3035 test_77d() { # bug 10889
3036         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3037         sysctl -w lustre.fail_loc=0x80000409
3038         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3039         directio write $DIR/f77  0 1 || error "direct write: rc=$?"
3040         sysctl -w lustre.fail_loc=0
3041         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3042 }
3043 run_test 77d "checksum error on OST direct write ==============="
3044
3045 test_77e() { # bug 10889
3046         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3047         sysctl -w lustre.fail_loc=0x80000408
3048         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3049         cancel_lru_locks osc
3050         directio read $DIR/f77 0 1 || error "direct read: rc=$?"
3051         sysctl -w lustre.fail_loc=0
3052         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3053 }
3054 run_test 77e "checksum error on OST direct read ================"
3055
3056 test_77f() { # bug 10889
3057         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3058         sysctl -w lustre.fail_loc=0x409
3059         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3060         directio write $DIR/f77 0 1 && error "direct write succeeded"
3061         sysctl -w lustre.fail_loc=0
3062         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3063 }
3064 run_test 77f "repeat checksum error on write (expect error) ===="
3065
3066 test_77g() { # bug 10889
3067         [ ! -f $F77_TMP ] && echo "requires 77a" && return  
3068         [ -z "`lsmod|grep obdfilter`" ] &&
3069                 echo "skipping $TESTNAME (remote OST)" && return
3070         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
3071         sysctl -w lustre.fail_loc=0x8000021a
3072         for f in  $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3073         dd if=$F77_TMP of=$DIR/f77 bs=8M count=1 || error "write error: rc=$?"
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 77g "checksum error on OST write ======================"
3078
3079 test_77h() { # bug 10889
3080         [ ! -f $DIR/f77 ] && echo "requires 77a,g" && return  
3081         [ -z "`lsmod|grep obdfilter`" ] &&
3082                 echo "skipping $TESTNAME (remote OST)" && return
3083         cancel_lru_locks osc
3084         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
3085         sysctl -w lustre.fail_loc=0x8000021b
3086         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 1 >> $f ; done
3087         cmp $F77_TMP $DIR/f77 || error "file compare failed"
3088         sysctl -w lustre.fail_loc=0
3089         for f in $LPROC/llite/${FSNAME}-*/checksum_pages ; do echo 0 >> $f ; done
3090 }
3091 run_test 77h "checksum error on OST read ======================="
3092
3093 rm -f $F77_TMP
3094 unset F77_TMP
3095
3096 test_78() { # bug 10901
3097         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
3098         [ $F78SIZE -gt 512 ] && F78SIZE=512
3099         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
3100         $SETSTRIPE $DIR/$tfile 0 -1 -1
3101         $DIRECTIO rdwr $DIR/$tfile 0 $F78SIZE 1048576
3102 }
3103 run_test 78 "handle large O_DIRECT writes correctly ============"
3104
3105 # on the LLNL clusters, runas will still pick up root's $TMP settings,
3106 # which will not be writable for the runas user, and then you get a CVS
3107 # error message with a corrupt path string (CVS bug) and panic.
3108 # We're not using much space, so just stick it in /tmp, which is safe.
3109 OLDTMPDIR=$TMPDIR
3110 OLDTMP=$TMP
3111 TMPDIR=/tmp
3112 TMP=/tmp
3113 OLDHOME=$HOME
3114 [ $RUNAS_ID -ne $UID ] && HOME=/tmp
3115
3116 test_99a() {
3117         mkdir -p $DIR/d99cvsroot
3118         chown $RUNAS_ID $DIR/d99cvsroot
3119         $RUNAS cvs -d $DIR/d99cvsroot init || error
3120 }
3121 run_test 99a "cvs init ========================================="
3122
3123 test_99b() {
3124         [ ! -d $DIR/d99cvsroot ] && test_99a
3125         cd /etc/init.d
3126         # some versions of cvs import exit(1) when asked to import links or
3127         # files they can't read.  ignore those files.
3128         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
3129                         ! -perm +4 -printf '-I %f\n')
3130         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
3131                 d99reposname vtag rtag
3132 }
3133 run_test 99b "cvs import ======================================="
3134
3135 test_99c() {
3136         [ ! -d $DIR/d99cvsroot ] && test_99b
3137         cd $DIR
3138         mkdir -p $DIR/d99reposname
3139         chown $RUNAS_ID $DIR/d99reposname
3140         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
3141 }
3142 run_test 99c "cvs checkout ====================================="
3143
3144 test_99d() {
3145         [ ! -d $DIR/d99cvsroot ] && test_99c
3146         cd $DIR/d99reposname
3147         $RUNAS touch foo99
3148         $RUNAS cvs add -m 'addmsg' foo99
3149 }
3150 run_test 99d "cvs add =========================================="
3151
3152 test_99e() {
3153         [ ! -d $DIR/d99cvsroot ] && test_99c
3154         cd $DIR/d99reposname
3155         $RUNAS cvs update
3156 }
3157 run_test 99e "cvs update ======================================="
3158
3159 test_99f() {
3160         [ ! -d $DIR/d99cvsroot ] && test_99d
3161         cd $DIR/d99reposname
3162         $RUNAS cvs commit -m 'nomsg' foo99
3163 }
3164 run_test 99f "cvs commit ======================================="
3165
3166 test_100() {
3167         netstat -tna | while read PROT SND RCV LOCAL REMOTE STAT; do
3168                 [ "$PROT" != "tcp" ] && continue
3169                 RPORT=`echo $REMOTE | cut -d: -f2`
3170                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
3171                 LPORT=`echo $LOCAL | cut -d: -f2`
3172                 if [ $LPORT -ge 1024 ]; then
3173                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
3174                         netstat -tna
3175                         error "local: $LPORT > 1024, remote: $RPORT"
3176                 fi
3177         done
3178         true
3179 }
3180 run_test 100 "check local port using privileged port ==========="
3181
3182 function get_named_value()
3183 {
3184     local tag
3185
3186     tag=$1
3187     while read ;do
3188         line=$REPLY
3189         case $line in
3190         $tag*)
3191             echo $line | sed "s/^$tag//"
3192             break
3193             ;;
3194         esac
3195     done
3196 }
3197
3198 export CACHE_MAX=`cat /proc/fs/lustre/llite/*/max_cached_mb | head -n 1`
3199 cleanup_101() {
3200         for s in $LPROC/llite/*/max_cached_mb; do
3201                 echo $CACHE_MAX > $s
3202         done
3203         trap 0
3204 }
3205
3206 test_101() {
3207         local s
3208         local discard
3209         local nreads=10000
3210         [ "$CPU" = "UML" ] && nreads=1000
3211         local cache_limit=32
3212
3213         for s in $LPROC/osc/*/rpc_stats; do
3214                 echo 0 > $s
3215         done
3216         trap cleanup_101 EXIT
3217         for s in $LPROC/llite/*; do
3218                 echo 0 > $s/read_ahead_stats
3219                 echo $cache_limit > $s/max_cached_mb
3220         done
3221
3222         #
3223         # randomly read 10000 of 64K chunks from file 3x 32MB in size
3224         #
3225         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
3226         $RANDOM_READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
3227
3228         discard=0
3229         for s in $LPROC/llite/*; do
3230                 discard=$(($discard + $(cat $s/read_ahead_stats | get_named_value 'read but discarded')))
3231         done
3232         cleanup_101
3233
3234         if [ $(($discard * 10)) -gt $nreads ] ;then
3235                 for s in $LPROC/osc/*/rpc_stats; do
3236                         echo $s; cat $s
3237                 done
3238                 for s in $LPROC/llite/*/read_ahead_stats; do
3239                         echo $s; cat $s
3240                 done
3241                 error "too many ($discard) discarded pages" 
3242         fi
3243         rm -f $DIR/$tfile || true
3244 }
3245 run_test 101 "check read-ahead for random reads ================"
3246
3247 export SETUP_TEST102=no
3248 setup_test102() {
3249         [ "$SETUP_TEST102" = "yes" ] && return
3250         mkdir -p $DIR/$tdir
3251         STRIPE_SIZE=65536
3252         STRIPE_COUNT=4 
3253         STRIPE_OFFSET=2
3254
3255         trap cleanup_test102 EXIT
3256         cd $DIR
3257         $SETSTRIPE $tdir $STRIPE_SIZE  $STRIPE_OFFSET $STRIPE_COUNT
3258         cd $DIR/$tdir 
3259         for num in 1 2 3 4
3260         do
3261                 for count in 1 2 3 4
3262                 do
3263                         for offset in 0 1 2 3 
3264                         do
3265                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
3266                                 local file=file"$num-$offset-$count"
3267                                 $SETSTRIPE $file $stripe_size  $offset $count
3268                         done
3269                 done
3270         done
3271
3272         cd ..
3273         star -c  f=$TMP/f102.tar $tdir 
3274         SETUP_TEST102=yes
3275 }
3276
3277 cleanup_test102() {
3278         [ "SETUP_TEST102" = "YES" ] || return
3279         trap 0
3280         rm -f $TMP/f102.tar
3281         rm -rf $DIR/$tdir
3282         SETUP_TEST102=no
3283 }
3284
3285 test_102a() {
3286         local testfile=$DIR/xattr_testfile
3287
3288         rm -f $testfile
3289         touch $testfile
3290
3291         [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
3292         [ -z "`grep xattr $LPROC/mdc/*[mM][dD][cC]*/connect_flags`" ] && echo "skipping $TESTNAME (must have user_xattr)" && return
3293         [ -z "$(which setfattr 2>/dev/null)" ] && echo "skipping $TESTNAME (could not find setfattr)" && return
3294
3295         echo "set/get xattr..."
3296         setfattr -n trusted.name1 -v value1 $testfile || error
3297         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
3298         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
3299  
3300         setfattr -n user.author1 -v author1 $testfile || error
3301         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
3302         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
3303
3304         echo "listxattr..."
3305         setfattr -n trusted.name2 -v value2 $testfile || error
3306         setfattr -n trusted.name3 -v value3 $testfile || error
3307         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3308         grep "trusted.name" | wc -l` -eq 3 ] || error
3309
3310  
3311         setfattr -n user.author2 -v author2 $testfile || error
3312         setfattr -n user.author3 -v author3 $testfile || error
3313         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
3314         grep "user" | wc -l` -eq 3 ] || error
3315
3316         echo "remove xattr..."
3317         setfattr -x trusted.name1 $testfile || error
3318         getfattr -d -m trusted $testfile 2> /dev/null | \
3319         grep "trusted.name1" && error || true
3320
3321         setfattr -x user.author1 $testfile || error
3322         getfattr -d -m user $testfile 2> /dev/null | \
3323         grep "user.author1" && error || true
3324
3325         # b10667: setting lustre special xattr be silently discarded
3326         echo "set lustre special xattr ..."
3327         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
3328
3329         rm -f $testfile
3330 }
3331 run_test 102a "user xattr test =================================="
3332
3333 test_102b() {
3334         # b10930: get/set/list trusted.lov xattr
3335         echo "get/set/list trusted.lov xattr ..."
3336         [ "$OSTCOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
3337         local testfile=$DIR/$tfile
3338         $SETSTRIPE $testfile 65536 1 2
3339         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3340         grep "trusted.lov" || error
3341
3342         local testfile2=${testfile}2
3343         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3344                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
3345         
3346         $MCREATE $testfile2
3347         setfattr -n trusted.lov -v $value $testfile2    
3348         local tmp_file=${testfile}3
3349         $GETSTRIPE -v $testfile2 > $tmp_file
3350         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3351         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3352         [ $stripe_size -eq 65536 ] || error "different stripe size"
3353         [ $stripe_count -eq 2 ] || error "different stripe count"
3354 }
3355 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
3356
3357 test_102c() {
3358         # b10930: get/set/list trusted.lov xattr
3359         echo "get/set/list trusted.lov xattr ..."
3360         [ "$OSTCOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
3361         mkdir -p $DIR/$tdir
3362         chown $RUNAS_ID $DIR/$tdir
3363         local testfile=$DIR/$tdir/$tfile
3364         $RUNAS $SETSTRIPE $testfile 65536 1 2
3365         $RUNAS getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3366         grep "trusted.lov" || error
3367
3368         local testfile2=${testfile}2
3369         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3370                      grep "trusted.lov" |sed -e 's/[^=]\+=//'  `
3371         
3372         $RUNAS $MCREATE $testfile2
3373         $RUNAS setfattr -n trusted.lov -v $value $testfile2     
3374         local tmp_file=${testfile}3
3375         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
3376         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3377         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3378         [ $stripe_size -eq 65536 ] || error "different stripe size"
3379         [ $stripe_count -eq 2 ] || error "different stripe count"
3380 }
3381 run_test 102c "non-root getfattr/setfattr for trusted.lov EAs ==========="
3382
3383 get_stripe_info() {
3384         stripe_size=0
3385         stripe_count=0
3386         stripe_offset=0
3387         local lines=`sed -n '/obdidx/=' $1`
3388         stripe_size=`awk '{if($1~/size/) print $2}' $1`
3389         stripe_count=`awk '{if($1~/count/) print $2}' $1`
3390         lines=`expr $lines + 1`
3391         stripe_offset=`sed -n ${lines}p $1 |awk '{print $1}'`
3392 }
3393
3394 compare_stripe_info1() {
3395         for num in 1 2 3 4
3396         do
3397                 for count in 1 2 3 4
3398                 do
3399                         for offset in 0 1 2 3 
3400                         do
3401                                 local size=`expr $STRIPE_SIZE \* $num`
3402                                 local file=file"$num-$offset-$count"
3403                                 local tmp_file=out
3404                                 $GETSTRIPE -v $file > $tmp_file 
3405                                 get_stripe_info  $tmp_file
3406                                 if test $stripe_size -ne $size
3407                                 then
3408                                         error "$file: different stripe size" && return
3409                                 fi
3410                                 if test $stripe_count -ne $count
3411                                 then
3412                                         error "$file: different stripe count" && return
3413                                 fi
3414                                 if test $stripe_offset -ne 0
3415                                 then
3416                                         error "$file: different stripe offset" && return
3417                                 fi
3418                                 rm -f $tmp_file
3419                         done
3420                 done
3421         done
3422 }
3423
3424 compare_stripe_info2() {
3425         for num in 1 2 3 4
3426         do
3427                 for count in 1 2 3 4
3428                 do
3429                         for offset in 0 1 2 3 
3430                         do
3431                                 local size=`expr $STRIPE_SIZE \* $num`
3432                                 local file=file"$num-$offset-$count"
3433                                 local tmp_file=out
3434                                 $GETSTRIPE -v $file > $tmp_file
3435                                 get_stripe_info  $tmp_file
3436                                 if test $stripe_size -ne $size
3437                                 then
3438                                         error "$file: different stripe size" && return  
3439                                 fi
3440                                 if test $stripe_count -ne $count
3441                                 then
3442                                         error "$file: different stripe count" && return
3443                                 fi
3444                                 if test $stripe_offset -ne $offset
3445                                 then
3446                                         error "$file: different stripe offset" && return
3447                                 fi
3448                                 rm -f $tmp_file
3449                         done
3450                 done
3451         done
3452 }
3453
3454 test_102d() {
3455         # b10930: star test for trusted.lov xattr
3456         star --xhelp 2>&1 | grep -q nolustre  
3457         if [ $? -ne 0 ]
3458         then
3459                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3460         fi
3461         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3462         setup_test102
3463         mkdir -p $DIR/d102d
3464         star -x  f=$TMP/f102.tar -C $DIR/d102d
3465         cd $DIR/d102d/$tdir
3466         compare_stripe_info1
3467
3468 }
3469 run_test 102d "star restore stripe info from tarfile,not keep osts ==========="
3470
3471 test_102e() {
3472         # b10930: star test for trusted.lov xattr
3473         star --xhelp 2>&1 | grep -q nolustre  
3474         if [ $? -ne 0 ]
3475         then
3476                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3477         fi
3478         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3479         setup_test102
3480         mkdir -p $DIR/d102e
3481         star -x  -preserve-osts f=$TMP/f102.tar -C $DIR/d102e
3482         cd $DIR/d102e/$tdir
3483         compare_stripe_info2
3484 }
3485 run_test 102e "star restore stripe info from tarfile, keep osts ==========="
3486
3487 test_102f() {
3488         # b10930: star test for trusted.lov xattr
3489         star --xhelp 2>&1 | grep -q nolustre  
3490         if [ $? -ne 0 ]
3491         then
3492                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3493         fi
3494         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3495         setup_test102
3496         mkdir -p $DIR/d102f
3497         cd $DIR
3498         star -copy  $tdir $DIR/d102f
3499         cd $DIR/d102f/$tdir
3500         compare_stripe_info1
3501 }
3502 run_test 102f "star copy files, not keep osts ==========="
3503
3504 test_102g() {
3505         # b10930: star test for trusted.lov xattr
3506         star --xhelp 2>&1 | grep -q nolustre  
3507         if [ $? -ne 0 ]
3508         then
3509                 echo "$TESTNUM being skipped because a lustre-aware star is not installed." && return
3510         fi
3511         [ "$OSTCOUNT" -lt "4" ] && echo "skipping 4-stripe test" && return
3512         setup_test102
3513         mkdir -p $DIR/d102g
3514         cd $DIR
3515         star -copy -preserve-osts $tdir $DIR/d102g
3516         cd $DIR/d102g/$tdir
3517         compare_stripe_info2
3518         cleanup_test102
3519 }
3520 run_test 102g "star copy files, keep osts ==========="
3521
3522 run_acl_subtest()
3523 {
3524     $SAVE_PWD/acl/run $SAVE_PWD/acl/$1.test
3525     return $?
3526 }
3527
3528 test_103 () {
3529     [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
3530     [ -z "$(grep acl $LPROC/mdc/*[mM][dD][cC]*/connect_flags)" ] && echo "skipping $TESTNAME (must have acl enabled)" && return
3531     [ -z "$(which setfacl 2>/dev/null)" ] && echo "skipping $TESTNAME (could not find setfacl)" && return
3532
3533     SAVE_UMASK=`umask`
3534     umask 0022
3535     cd $DIR
3536
3537     echo "performing cp ..."
3538     run_acl_subtest cp || error
3539     echo "performing getfacl-noacl..."
3540     run_acl_subtest getfacl-noacl || error
3541     echo "performing misc..."
3542     run_acl_subtest misc || error
3543 #    XXX add back permission test when we support supplementary groups.
3544 #    echo "performing permissions..."
3545 #    run_acl_subtest permissions || error
3546     echo "performing setfacl..."
3547     run_acl_subtest setfacl || error
3548
3549     # inheritance test got from HP
3550     echo "performing inheritance..."
3551     cp $SAVE_PWD/acl/make-tree . || error
3552     chmod +x make-tree || error
3553     run_acl_subtest inheritance || error
3554     rm -f make-tree
3555
3556     cd $SAVE_PWD
3557     umask $SAVE_UMASK
3558 }
3559 run_test 103 "acl test ========================================="
3560
3561 test_104() {
3562         touch $DIR/$tfile
3563         lfs df || error "lfs df failed"
3564         lfs df -ih || error "lfs df -ih failed"
3565         lfs df -h $DIR || error "lfs df -h $DIR failed"
3566         lfs df -i $DIR || error "lfs df -i $DIR failed"
3567         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
3568         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
3569         
3570         OSC=`awk '/-osc-|OSC.*MNT/ {print $4}' $LPROC/devices | head -n 1`
3571         lctl --device %$OSC deactivate
3572         lfs df || error "lfs df with deactivated OSC failed"
3573         lctl --device %$OSC recover
3574         lfs df || error "lfs df with reactivated OSC failed"
3575 }
3576 run_test 104 "lfs df [-ih] [path] test ========================="
3577
3578 test_105a() {
3579         # doesn't work on 2.4 kernels
3580         touch $DIR/$tfile
3581         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3582         then
3583                 flocks_test on -f $DIR/$tfile || error "fail flock on"
3584         else
3585                 flocks_test off -f $DIR/$tfile || error "fail flock off"
3586         fi
3587 }
3588 run_test 105a "flock when mounted without -o flock test ========"
3589
3590 test_105b() {
3591         touch $DIR/$tfile
3592         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3593         then
3594                 flocks_test on -c $DIR/$tfile || error "fail flock on"
3595         else
3596                 flocks_test off -c $DIR/$tfile || error "fail flock off"
3597         fi
3598 }
3599 run_test 105b "fcntl when mounted without -o flock test ========"
3600
3601 test_105c() {
3602         touch $DIR/$tfile
3603         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3604         then
3605                 flocks_test on -l $DIR/$tfile || error "fail flock on"
3606         else
3607                 flocks_test off -l $DIR/$tfile || error "fail flock off"
3608         fi
3609 }
3610 run_test 105c "lockf when mounted without -o flock test ========"
3611
3612 test_106() { #10921
3613         mkdir $DIR/d106
3614         $DIR/d106 && error
3615         chmod 777 $DIR/d106 || error
3616 }
3617 run_test 106 "attempt exec of dir followed by chown of that dir"
3618
3619 test_107() {
3620         CDIR=`pwd`
3621         cd $DIR
3622         ulimit -c unlimited
3623         sleep 60 &
3624         SLEEPPID=$!
3625
3626         file=`cat /proc/sys/kernel/core_pattern`
3627         core_pid=`cat /proc/sys/kernel/core_uses_pid`
3628         [ $core_pid -eq 1 ] && file=$file.$SLEEPPID
3629         rm -f $file
3630         sleep 1
3631
3632         kill -s 11 $SLEEPPID
3633         wait $SLEEPPID
3634         if [ -e $file ]; then
3635                 size=`stat -c%s $file`
3636                 [ $size -eq 0 ] && error "Fail to create core file $file"
3637         else
3638                 error "Fail to create core file $file"
3639         fi
3640         rm -f $file
3641         cd $CDIR
3642 }
3643 run_test 107 "Coredump on SIG"
3644
3645 test_115() {
3646         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
3647             cut -c11-20)
3648         [ -z "$OSTIO_pre" ] && echo "skipping $TESTNAME: no OSS threads" && \
3649             return
3650         echo "Starting with $OSTIO_pre threads"
3651
3652         NUMTEST=20000
3653         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
3654         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
3655         echo "$NUMTEST creates/unlinks"
3656         mkdir -p $DIR/$tdir
3657         createmany -o $DIR/$tdir/$tfile $NUMTEST
3658         unlinkmany $DIR/$tdir/$tfile $NUMTEST
3659
3660         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
3661             cut -c11-20)
3662
3663         # don't return an error
3664         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
3665             "FAIL: No addition ll_ost_io threads were created ($OSTIO_pre)" &&\
3666             echo "This may be fine, depending on what ran before this test" &&\
3667             echo "and how fast this system is." && return
3668
3669         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
3670 }
3671 run_test 115 "verify dynamic thread creation===================="
3672
3673 free_min_max () {
3674         AVAIL=($(cat $LPROC/osc/*[oO][sS][cC]-*/kbytesavail))
3675         echo OST kbytes available: ${AVAIL[@]}
3676         MAXI=0; MAXV=${AVAIL[0]}
3677         MINI=0; MINV=${AVAIL[0]}
3678         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
3679             #echo OST $i: ${AVAIL[i]}kb
3680             if [ ${AVAIL[i]} -gt $MAXV ]; then
3681                 MAXV=${AVAIL[i]}; MAXI=$i
3682             fi
3683             if [ ${AVAIL[i]} -lt $MINV ]; then
3684                 MINV=${AVAIL[i]}; MINI=$i
3685             fi
3686         done
3687         echo Min free space: OST $MINI: $MINV 
3688         echo Max free space: OST $MAXI: $MAXV 
3689 }
3690
3691 test_116() {
3692         [ "$OSTCOUNT" -lt "2" ] && echo "not enough OSTs" && return
3693
3694         echo -n "Free space priority "
3695         cat $LPROC/lov/*/qos_prio_free
3696         DELAY=$(cat $LPROC/lov/*/qos_maxage | head -1 | awk '{print $1}')
3697         declare -a AVAIL
3698         free_min_max
3699         [ $MINV -gt 960000 ] && echo "too much free space in OST$MINI, skip" &&\
3700                 return
3701
3702         # generate uneven OSTs
3703         mkdir -p $DIR/$tdir/OST${MINI}
3704         declare -i FILL
3705         FILL=$(($MINV / 4))
3706         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
3707         $SETSTRIPE $DIR/$tdir/OST${MINI} 0 $MINI 1
3708         i=1
3709         while [ $FILL -gt 0 ]; do
3710             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
3711             FILL=$(($FILL - 2048))
3712             echo -n .
3713             i=$(($i + 1))
3714         done
3715         FILL=$(($MINV / 4))
3716         sync
3717         sleep $DELAY
3718
3719         free_min_max
3720         DIFF=$(($MAXV - $MINV))
3721         DIFF2=$(($DIFF * 100 / $MINV))
3722         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
3723         if [ $DIFF2 -gt 20 ]; then
3724             echo "ok"
3725         else
3726             echo "failed - QOS mode won't be used"
3727             error "QOS imbalance criteria not met"
3728             return
3729         fi
3730
3731         MINI1=$MINI; MINV1=$MINV
3732         MAXI1=$MAXI; MAXV1=$MAXV
3733
3734         # now fill using QOS
3735         echo writing a bunch of files to QOS-assigned OSTs
3736         i=1
3737         while [ $FILL -gt 0 ]; do
3738             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
3739             FILL=$(($FILL - 200))
3740             echo -n .
3741             i=$(($i + 1))
3742         done
3743         echo "wrote $i 200k files"
3744         sync
3745         sleep $DELAY
3746
3747         echo "Note: free space may not be updated, so measurements might be off"
3748         free_min_max
3749         DIFF2=$(($MAXV - $MINV))
3750         echo "free space delta: orig $DIFF final $DIFF2"
3751         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!" 
3752         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
3753         echo "Wrote $DIFF to smaller OST $MINI1"
3754         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
3755         echo "Wrote $DIFF2 to larger OST $MAXI1"
3756         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
3757
3758         # Figure out which files were written where 
3759         UUID=$(awk '/'$MINI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
3760         echo $UUID
3761         MINC=$($LFS getstripe --obd $UUID $DIR/$tdir | wc -l)
3762         echo "$MINC files created on smaller OST $MINI1"
3763         UUID=$(awk '/'$MAXI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
3764         MAXC=$($LFS getstripe --obd $UUID $DIR/$tdir | wc -l)
3765         echo "$MAXC files created on larger OST $MAXI1"
3766         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
3767         [ $MAXC -gt $MINC ] || error "stripe QOS didn't balance free space"
3768 }
3769 run_test 116 "stripe QOS: free space balance ==================="
3770
3771 test_117() # bug 10891
3772 {
3773         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
3774         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
3775         sysctl -w lustre.fail_loc=0x21e
3776         > $DIR/$tfile || error "truncate failed"
3777         sysctl -w lustre.fail_loc=0
3778         echo "Truncate succeeded."
3779 }
3780 run_test 117 "verify fsfilt_extend =========="
3781
3782 TMPDIR=$OLDTMPDIR
3783 TMP=$OLDTMP
3784 HOME=$OLDHOME
3785
3786 log "cleanup: ======================================================"
3787 if [ "`mount | grep $MOUNT`" ]; then
3788     rm -rf $DIR/[Rdfs][1-9]*
3789 fi
3790 if [ "$I_MOUNTED" = "yes" ]; then
3791     cleanupall -f || error "cleanup failed"
3792 fi
3793
3794
3795 echo '=========================== finished ==============================='
3796 [ -f "$SANITYLOG" ] && cat $SANITYLOG && exit 1 || true
3797 echo "$0: completed"