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