Whamcloud - gitweb
Allow a file to be opened with our very own O_LOV_DELAY_CREATE.
[fs/lustre-release.git] / lustre / tests / sanity.sh
index 46d0072..7495312 100644 (file)
@@ -7,19 +7,32 @@
 set -e
 
 ONLY=${ONLY:-"$*"}
-ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"34 35"}        # bugs 1365 and 1360 respectively
+# bug number for skipped test: 2399 (temporarily until new kernels arrive)
+ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"48"}
+# UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
+
+[ "$ALWAYS_EXCEPT$EXCEPT" ] && echo "Skipping tests: $ALWAYS_EXCEPT $EXCEPT"
 
 SRCDIR=`dirname $0`
-PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
+export PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
+
+TMP=${TMP:-/tmp}
 
-CHECKSTAT=${CHECKSTAT:-"./checkstat -v"}
+CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
 CREATETEST=${CREATETEST:-createtest}
 LFIND=${LFIND:-lfind}
 LSTRIPE=${LSTRIPE:-lstripe}
 LCTL=${LCTL:-lctl}
 MCREATE=${MCREATE:-mcreate}
+OPENFILE=${OPENFILE:-openfile}
+OPENUNLINK=${OPENUNLINK:-openunlink}
 TOEXCL=${TOEXCL:-toexcl}
 TRUNCATE=${TRUNCATE:-truncate}
+MUNLINK=${MUNLINK:-munlink}
+SOCKETSERVER=${SOCKETSERVER:-socketserver}
+SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
+IOPENTEST1=${IOPENTEST1:-iopentest1}
+IOPENTEST2=${IOPENTEST2:-iopentest2}
 
 if [ $UID -ne 0 ]; then
        RUNAS_ID="$UID"
@@ -29,85 +42,139 @@ else
        RUNAS=${RUNAS:-"runas -u $RUNAS_ID"}
 fi
 
-MOUNT=${MOUNT:-/mnt/lustre}
-DIR=${DIR:-$MOUNT}
-export NAME=$NAME
+export NAME=${NAME:-local}
 
 SAVE_PWD=$PWD
 
 clean() {
-        echo -n "cln.."
-        sh llmountcleanup.sh > /dev/null || exit 20
+       echo -n "cln.."
+       sh llmountcleanup.sh > /dev/null || exit 20
+       I_MOUNTED=no
 }
-
 CLEAN=${CLEAN:-clean}
+
 start() {
-        echo -n "mnt.."
-        sh llrmount.sh > /dev/null || exit 10
-        echo "done"
+       echo -n "mnt.."
+       sh llrmount.sh > /dev/null || exit 10
+       I_MOUNTED=yes
+       echo "done"
 }
 START=${START:-start}
 
 log() {
        echo "$*"
-       lctl mark "$*" || true
+       lctl mark "$*" 2> /dev/null || true
 }
 
 run_one() {
-       if ! mount | grep -q $MOUNT; then
+       if ! mount | grep -q $DIR; then
                $START
        fi
        log "== test $1: $2"
-       test_$1 || error
+       export TESTNAME=test_$1
+       test_$1 || error "test_$1: exit with rc=$?"
+       unset TESTNAME
        pass
        cd $SAVE_PWD
        $CLEAN
 }
 
-run_test() {
-       for O in $ONLY; do
-               if [ "`echo $1 | grep '\<'$O'[a-z]*\>'`" ]; then
-                       echo ""
-                       run_one $1 "$2"
-                       return $?
-               else
-                       echo -n "."
-               fi
-       done
-       for X in $EXCEPT $ALWAYS_EXCEPT; do
-               if [ "`echo $1 | grep '\<'$X'[a-z]*\>'`" ]; then
-                       echo "skipping excluded test $1"
-                       return 0
-               fi
-       done
-       if [ -z "$ONLY" ]; then
-               run_one $1 "$2"
-               return $?
-       fi
+build_test_filter() {
+        for O in $ONLY; do
+            eval ONLY_${O}=true
+        done
+        for E in $EXCEPT $ALWAYS_EXCEPT; do
+            eval EXCEPT_${E}=true
+        done
 }
 
+_basetest() {
+    echo $*
+}
+
+basetest() {
+    IFS=abcdefghijklmnopqrstuvwxyz _basetest $1
+}
+
+run_test() {
+         base=`basetest $1`
+         if [ "$ONLY" ]; then
+                 testname=ONLY_$1
+                 if [ ${!testname}x != x ]; then
+                       run_one $1 "$2"
+                       return $?
+                 fi
+                 testname=ONLY_$base
+                 if [ ${!testname}x != x ]; then
+                         run_one $1 "$2"
+                         return $?
+                 fi
+                 echo -n "."
+                 return 0
+       fi
+        testname=EXCEPT_$1
+        if [ ${!testname}x != x ]; then
+                 echo "skipping excluded test $1"
+                 return 0
+        fi
+        testname=EXCEPT_$base
+        if [ ${!testname}x != x ]; then
+                 echo "skipping excluded test $1 (base $base)"
+                 return 0
+        fi
+        run_one $1 "$2"
+       return $?
+}
+
+[ "$SANITYLOG" ] && rm -f $SANITYLOG || true
+
 error() { 
-    echo FAIL
-    exit 1
+       log "FAIL: $@"
+       if [ "$SANITYLOG" ]; then
+               echo "FAIL: $TESTNAME $@" >> $SANITYLOG
+       else
+               exit 1
+       fi
 }
 
 pass() { 
-    echo PASS
+       echo PASS
 }
 
-if ! mount | grep $MOUNT; then
+MOUNT="`mount | awk '/^'$NAME' .* lustre_lite / { print $3 }'`"
+if [ -z "$MOUNT" ]; then
        sh llmount.sh
+       MOUNT="`mount | awk '/^'$NAME' .* lustre_lite / { print $3 }'`"
+       [ -z "$MOUNT" ] && error "NAME=$NAME not mounted"
        I_MOUNTED=yes
 fi
 
+[ `echo $MOUNT | wc -w` -gt 1 ] && error "NAME=$NAME mounted more than once"
+
+DIR=${DIR:-$MOUNT}
+[ -z "`echo $DIR | grep $MOUNT`" ] && echo "$DIR not in $MOUNT" && exit 99
+
+LOVNAME=`cat /proc/fs/lustre/llite/fs0/lov/common_name`
+STRIPECOUNT=`cat /proc/fs/lustre/lov/$LOVNAME/numobd`
+
+[ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
+[ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
+rm -rf $DIR/[Rdfs][1-9]*
+
+build_test_filter
+
 echo preparing for tests involving mounts
-EXT2_DEV=/tmp/SANITY.LOOP
-dd if=/dev/zero of=$EXT2_DEV bs=1k seek=1000 count=1 > /dev/null
-mke2fs -F $EXT2_DEV > /dev/null
+EXT2_DEV=${EXT2_DEV:-/tmp/SANITY.LOOP}
+touch $EXT2_DEV
+mke2fs -F $EXT2_DEV 1000 > /dev/null
+
+EXT3_DEV=${EXT3_DEV:-/tmp/SANITY_EXT3_DEV.LOOP}
+touch $EXT3_DEV
+mkfs.ext3 -F $EXT3_DEV 10000 > /dev/null
 
 test_0() {
        touch $DIR/f
-       $CHECKSTAT -t file $DIR/f || error 
+       $CHECKSTAT -t file $DIR/f || error
        rm $DIR/f
        $CHECKSTAT -a $DIR/f || error
 }
@@ -138,7 +205,7 @@ test_2b() {
        rm -r $DIR/d2
        $CHECKSTAT -a $DIR/d2 || error
 }
-run_test 2b "rm -r .../d2; touch .../d2/f ======================"
+run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
 
 test_3a() {
        mkdir $DIR/d3
@@ -147,6 +214,9 @@ test_3a() {
 run_test 3a "mkdir .../d3 ======================================"
 
 test_3b() {
+       if [ ! -d $DIR/d3 ]; then
+               mkdir $DIR/d3
+       fi
        touch $DIR/d3/f
        $CHECKSTAT -t file $DIR/d3/f || error
 }
@@ -165,6 +235,9 @@ test_4a() {
 run_test 4a "mkdir .../d4 ======================================"
 
 test_4b() {
+       if [ ! -d $DIR/d4 ]; then
+               mkdir $DIR/d4
+       fi
        mkdir $DIR/d4/d2
        $CHECKSTAT -t dir $DIR/d4/d2 || error
 }
@@ -178,12 +251,72 @@ test_5() {
 }
 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
 
-test_6() {
-       touch $DIR/f6
-       chmod 0666 $DIR/f6
-       $CHECKSTAT -t file -p 0666 $DIR/f6 || error
+test_6a() {
+       touch $DIR/f6a
+       chmod 0666 $DIR/f6a || error
+       $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
+}
+run_test 6a "touch .../f6a; chmod .../f6a ======================"
+
+test_6b() {
+       [ $RUNAS_ID -eq $UID ] && echo "skipping test 6b" && return
+       if [ ! -f $DIR/f6a ]; then
+               touch $DIR/f6a
+               chmod 0666 $DIR/f6a
+       fi
+       $RUNAS chmod 0444 $DIR/f6a && error
+       $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
+}
+run_test 6b "$RUNAS chmod .../f6a (should return error) =="
+
+test_6c() {
+       [ $RUNAS_ID -eq $UID ] && echo "skipping test 6c" && return
+       touch $DIR/f6c
+       chown $RUNAS_ID $DIR/f6c || error
+       $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
+}
+run_test 6c "touch .../f6c; chown .../f6c ======================"
+
+test_6d() {
+       [ $RUNAS_ID -eq $UID ] && echo "skipping test 6d" && return
+       if [ ! -f $DIR/f6c ]; then
+               touch $DIR/f6c
+               chown $RUNAS_ID $DIR/f6c
+       fi
+       $RUNAS chown $UID $DIR/f6c && error
+       $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
+}
+run_test 6d "$RUNAS chown .../f6c (should return error) =="
+
+test_6e() {
+       [ $RUNAS_ID -eq $UID ] && echo "skipping test 6e" && return
+       touch $DIR/f6e
+       chgrp $RUNAS_ID $DIR/f6e || error
+       $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
 }
-run_test 6 "touch .../f6; chmod .../f6 ========================="
+run_test 6e "touch .../f6e; chgrp .../f6e ======================"
+
+test_6f() {
+       [ $RUNAS_ID -eq $UID ] && echo "skipping test 6f" && return
+       if [ ! -f $DIR/f6e ]; then
+               touch $DIR/f6e
+               chgrp $RUNAS_ID $DIR/f6e
+       fi
+       $RUNAS chgrp $UID $DIR/f6e && error
+       $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
+}
+run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
+
+test_6g() {
+       [ $RUNAS_ID -eq $UID ] && echo "skipping test 6g" && return
+        mkdir $DIR/d6g || error
+        chmod 777 $DIR/d6g || error
+        $RUNAS mkdir $DIR/d6g/d || error
+        chmod g+s $DIR/d6g/d || error
+        mkdir $DIR/d6g/d/subdir
+       $CHECKSTAT -g \#$RUNAS_ID $DIR/d6g/d/subdir || error
+}
+run_test 6g "Is new dir in sgid dir inheriting group?"
 
 test_7a() {
        mkdir $DIR/d7
@@ -194,6 +327,9 @@ test_7a() {
 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
 
 test_7b() {
+       if [ ! -d $DIR/d7 ]; then
+               mkdir $DIR/d7
+       fi
        $MCREATE $DIR/d7/f2
        echo -n foo > $DIR/d7/f2
        [ "`cat $DIR/d7/f2`" = "foo" ] || error
@@ -288,6 +424,9 @@ test_17a() {
 run_test 17a "symlinks: create, remove (real) =================="
 
 test_17b() {
+       if [ ! -d $DIR/d17 ]; then
+               mkdir $DIR/d17
+       fi
        ln -s no-such-file $DIR/d17/l-dangle
        ls -l $DIR/d17
        $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
@@ -303,13 +442,29 @@ test_18() {
 }
 run_test 18 "touch .../f ; ls ... =============================="
 
-test_19() {
-       touch $DIR/f
+test_19a() {
+       touch $DIR/f19
        ls -l $DIR
-       rm $DIR/f
-       $CHECKSTAT -a $DIR/f || error
+       rm $DIR/f19
+       $CHECKSTAT -a $DIR/f19 || error
+}
+run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
+
+test_19b() {
+       ls -l $DIR/f19 && error || true
+}
+run_test 19b "ls -l .../f19 (should return error) =============="
+
+test_19c() {
+       [ $RUNAS_ID -eq $UID ] && echo "skipping test 19c" && return
+       $RUNAS touch $DIR/f19 && error || true
+}
+run_test 19c "$RUNAS touch .../f19 (should return error) =="
+
+test_19d() {
+       cat $DIR/f19 && error || true
 }
-run_test 19 "touch .../f ; ls -l ... ==========================="
+run_test 19d "cat .../f19 (should return error) =============="
 
 test_20() {
        touch $DIR/f
@@ -357,7 +512,7 @@ test_23() {
 run_test 23 "O_CREAT|O_EXCL in subdir =========================="
 
 test_24a() {
-       echo '============ rename sanity ================================='
+       echo '== rename sanity =============================================='
        echo '-- same directory rename'
        mkdir $DIR/R1
        touch $DIR/R1/f
@@ -440,7 +595,7 @@ test_24i() {
        $CHECKSTAT -t dir  $DIR/R9/a || error
        $CHECKSTAT -a file $DIR/R9/a/f || error
 }
-run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a ====="
+run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
 
 test_24j() {
        mkdir $DIR/R10
@@ -451,8 +606,41 @@ test_24j() {
 }
 run_test 24j "source does not exist ============================" 
 
+test_24k() {
+       mkdir $DIR/R11a $DIR/R11a/d
+       touch $DIR/R11a/f
+       mv $DIR/R11a/f $DIR/R11a/d
+       $CHECKSTAT -a $DIR/R11a/f || error
+       $CHECKSTAT -t file $DIR/R11a/d/f || error
+}
+run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
+
+# bug 2429 - rename foo foo foo creates invalid file
+test_24l() {
+       f="$DIR/f24l"
+       multiop $f OcNs || error
+}
+run_test 24l "Renaming a file to itself ========================"
+
+test_24m() {
+       f="$DIR/f24m"
+       multiop $f OcLN ${f}2 ${f}2 || error
+}
+run_test 24m "Renaming a file to a hard link to itself ========="
+
+test_24n() {
+    f="$DIR/f24n"
+    # this stats the old file after it was renamed, so it should fail
+    touch ${f}
+    $CHECKSTAT ${f}
+    mv ${f} ${f}.rename
+    $CHECKSTAT ${f}.rename
+    $CHECKSTAT -a ${f}
+}
+run_test 24n "Statting the old file after renameing (Posix rename 2)"
+
 test_25a() {
-       echo '== symlink sanity ======================================='
+       echo '== symlink sanity ============================================='
        mkdir $DIR/d25
        ln -s d25 $DIR/s25
        touch $DIR/s25/foo || error
@@ -460,6 +648,7 @@ test_25a() {
 run_test 25a "create file in symlinked directory ==============="
 
 test_25b() {
+       [ ! -d $DIR/d25 ] && test_25a
        $CHECKSTAT -t file $DIR/s25/foo || error
 }
 run_test 25b "lookup file in symlinked directory ==============="
@@ -473,7 +662,8 @@ test_26a() {
 run_test 26a "multiple component symlink ======================="
 
 test_26b() {
-       ln -s d26/d26-2/foo $DIR/s26-2
+       mkdir -p $DIR/d26b/d26-2
+       ln -s d26b/d26-2/foo $DIR/s26-2
        touch $DIR/s26-2 || error
 }
 run_test 26b "multiple component symlink at end of lookup ======"
@@ -495,58 +685,101 @@ test_26d() {
 run_test 26d "create multiple component recursive symlink ======"
 
 test_26e() {
+       [ ! -h $DIR/d26-3 ] && test_26d
        rm $DIR/d26-3
 }
 run_test 26e "unlink multiple component recursive symlink ======"
 
 test_27a() {
-       echo '== stripe sanity ========================================'
+       echo '== stripe sanity =============================================='
        mkdir $DIR/d27
-       $LSTRIPE $DIR/d27/f0 8192 0 1
-       $CHECKSTAT -t file $DIR/d27/f0
+       $LSTRIPE $DIR/d27/f0 65536 0 1 || error
+       $CHECKSTAT -t file $DIR/d27/f0 || error
        pass
-       log "test_27b: write to one stripe file ========================="
-       cp /etc/hosts $DIR/d27/f0
+       log "== test_27b: write to one stripe file ========================="
+       cp /etc/hosts $DIR/d27/f0 || error
 }
 run_test 27a "one stripe file =================================="
 
 test_27c() {
-       $LSTRIPE $DIR/d27/f01 8192 0 2
+       [ "$STRIPECOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
+       if [ ! -d $DIR/d27 ]; then
+               mkdir $DIR/d27
+       fi
+       $LSTRIPE $DIR/d27/f01 65536 0 2 || error
+       [ `$LFIND $DIR/d27/f01 | grep -A 10 obdidx | wc -l` -eq 4 ] ||
+               error "two-stripe file doesn't have two stripes"
        pass
-       log "test_27d: write to two stripe file file f01 ================"
-       dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4
+       log "== test_27d: write to two stripe file file f01 ================"
+       dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error
 }
 run_test 27c "create two stripe file f01 ======================="
 
 test_27d() {
-       $LSTRIPE $DIR/d27/fdef 0 -1 0
-       $CHECKSTAT -t file $DIR/d27/fdef
-       #dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4
+       if [ ! -d $DIR/d27 ]; then
+               mkdir $DIR/d27
+       fi
+       $LSTRIPE $DIR/d27/fdef 0 -1 0 || error
+       $CHECKSTAT -t file $DIR/d27/fdef || error
+       #dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
 }
 run_test 27d "create file with default settings ================"
 
 test_27e() {
-       $LSTRIPE $DIR/d27/f12 8192 1 2
-       $LSTRIPE $DIR/d27/f12 8192 1 2 && error
+       if [ ! -d $DIR/d27 ]; then
+               mkdir $DIR/d27
+       fi
+       $LSTRIPE $DIR/d27/f12 65536 0 2 || error
+       $LSTRIPE $DIR/d27/f12 65536 0 2 && error
        $CHECKSTAT -t file $DIR/d27/f12 || error
-       #dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4
 }
 run_test 27e "lstripe existing file (should return error) ======"
 
-
 test_27f() {
-       $LSTRIPE $DIR/d27/fbad 100 1 2 || true
-       dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4
+       if [ ! -d $DIR/d27 ]; then
+               mkdir $DIR/d27
+       fi
+       $LSTRIPE $DIR/d27/fbad 100 0 1 && error
+       dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error
+       $LFIND $DIR/d27/fbad || error
 }
-run_test 27f "lstripe with bad stripe size (should return error on LOV)"
+run_test 27f "lstripe with bad stripe size (should return error)"
 
 test_27g() {
+       if [ ! -d $DIR/d27 ]; then
+               mkdir $DIR/d27
+       fi
        $MCREATE $DIR/d27/fnone || error
        pass
-       log "test 27.9: lfind ============================================"
-       $LFIND $DIR/d27
+       log "== test 27h: lfind with no objects ============================"
+       $LFIND $DIR/d27/fnone 2>&1 | grep "no stripe info" || error
+       pass
+       log "== test 27i: lfind with some objects =========================="
+       touch $DIR/d27/fsome || error
+       $LFIND $DIR/d27/fsome | grep obdidx || error
+}
+run_test 27g "test lfind ======================================="
+
+test_27j() {
+        if [ ! -d $DIR/d27 ]; then
+                mkdir $DIR/d27
+        fi
+        $LSTRIPE $DIR/d27/f27j 65536 $STRIPECOUNT 1 && error || true
 }
-run_test 27g "mcreate file without objects to test lfind ======="
+run_test 27j "lstripe with bad stripe offset (should return error)"
+
+test_27k() { # bug 2844
+       FILE=$DIR/d27/f27k
+       LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
+       [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
+       $LSTRIPE $FILE 67108864 -1 0 || error "lstripe failed"
+       BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
+       [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
+       dd if=/dev/zero of=$FILE bs=4k count=1
+       BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
+       [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
+}
+run_test 27k "limit i_blksize for broken user apps ============="
 
 test_28() {
        mkdir $DIR/d28
@@ -554,12 +787,20 @@ test_28() {
 }
 run_test 28 "create/mknod/mkdir with bad file types ============"
 
+cancel_lru_locks() {
+       for d in /proc/fs/lustre/ldlm/namespaces/$1*; do
+               echo clear > $d/lru_size
+       done
+       grep [0-9] /proc/fs/lustre/ldlm/namespaces/$1*/lock_unused_count /dev/null
+}
+
 test_29() {
+       cancel_lru_locks MDC
        mkdir $DIR/d29
        touch $DIR/d29/foo
        log 'first d29'
        ls -l $DIR/d29
-       MDCDIR=${MDCDIR:-/proc/fs/lustre/ldlm/ldlm/MDC_*}
+       MDCDIR=${MDCDIR:-/proc/fs/lustre/ldlm/namespaces/MDC_*}
        LOCKCOUNTORIG=`cat $MDCDIR/lock_count`
        LOCKUNUSEDCOUNTORIG=`cat $MDCDIR/lock_unused_count`
        log 'second d29'
@@ -585,10 +826,37 @@ test_30() {
 }
 run_test 30 "run binary from Lustre (execve) ==================="
 
-test_31() {
-       ./openunlink $DIR/f31 $DIR/f31 || error
+test_31a() {
+       $OPENUNLINK $DIR/f31 $DIR/f31 || error
+       $CHECKSTAT -a $DIR/f31 || error
+}
+run_test 31a "open-unlink file =================================="
+
+test_31b() {
+       touch $DIR/f31 || error
+       ln $DIR/f31 $DIR/f31b || error
+       multiop $DIR/f31b Ouc || error
+       $CHECKSTAT -t file $DIR/f31 || error
+}
+run_test 31b "unlink file with multiple links while open ======="
+
+test_31c() {
+       touch $DIR/f31 || error
+       ln $DIR/f31 $DIR/f31c || error
+       multiop $DIR/f31 O_uc &
+       MULTIPID=$!
+       multiop $DIR/f31c Ouc
+       usleep 500
+       kill -USR1 $MULTIPID
+       wait $MUTLIPID
 }
-run_test 31 "open-unlink file =================================="
+run_test 31c "open-unlink file with multiple links ============="
+
+test_31d() {
+       opendirunlink $DIR/d31d $DIR/d31d || error
+       $CHECKSTAT -a $DIR/d31d || error
+}
+run_test 31d "remove of open directory ========================="
 
 test_32a() {
        echo "== more mountpoints and symlinks ================="
@@ -627,7 +895,7 @@ test_32d() {
        ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
        umount $DIR/d32d/ext2-mountpoint || error
 }
-run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir =========="
+run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
 
 test_32e() {
        [ -e $DIR/d32e ] && rm -fr $DIR/d32e
@@ -638,7 +906,7 @@ test_32e() {
        $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
        $CHECKSTAT -t link $DIR/d32e/symlink01 || error
 }
-run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ====="
+run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
 
 test_32f() {
        [ -e $DIR/d32f ] && rm -fr $DIR/d32f
@@ -649,7 +917,7 @@ test_32f() {
        ls $DIR/d32f/tmp/symlink11  || error
        ls $DIR/d32f/symlink01 || error
 }
-run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ====="
+run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
 
 test_32g() {
        [ -e $DIR/d32g ] && rm -fr $DIR/d32g
@@ -687,7 +955,7 @@ test_32i() {
        $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error  
        umount $DIR/d32i/ext2-mountpoint || error
 }
-run_test 32i "stat d32i/ext2-mountpoint/../test_file ============"
+run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
 
 test_32j() {
        [ -e $DIR/d32j ] && rm -fr $DIR/d32j
@@ -697,10 +965,10 @@ test_32j() {
        cat $DIR/d32j/ext2-mountpoint/../test_file || error
        umount $DIR/d32j/ext2-mountpoint || error
 }
-run_test 32j "open d32j/ext2-mountpoint/../test_file ============"
+run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
 
 test_32k() {
-       [ -e $DIR/d32k ] && rm -fr $DIR/d32k
+       rm -fr $DIR/d32k
        mkdir -p $DIR/d32k/ext2-mountpoint 
        mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint  
        mkdir -p $DIR/d32k/d2
@@ -708,10 +976,10 @@ test_32k() {
        $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
        umount $DIR/d32k/ext2-mountpoint || error
 }
-run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========="
+run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
 
 test_32l() {
-       [ -e $DIR/d32l ] && rm -fr $DIR/d32l
+       rm -fr $DIR/d32l
        mkdir -p $DIR/d32l/ext2-mountpoint 
        mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
        mkdir -p $DIR/d32l/d2
@@ -719,10 +987,10 @@ test_32l() {
        cat  $DIR/d32l/ext2-mountpoint/../d2/test_file || error
        umount $DIR/d32l/ext2-mountpoint || error
 }
-run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========="
+run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
 
 test_32m() {
-       [ -e $DIR/d32m ] && rm -fr $DIR/d32m
+       rm -fr $DIR/d32m
        mkdir -p $DIR/d32m/tmp    
        TMP_DIR=$DIR/d32m/tmp       
        ln -s $DIR $TMP_DIR/symlink11 
@@ -730,10 +998,10 @@ test_32m() {
        $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
        $CHECKSTAT -t link $DIR/d32m/symlink01 || error
 }
-run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======="
+run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
 
 test_32n() {
-       [ -e $DIR/d32n ] && rm -fr $DIR/d32n
+       rm -fr $DIR/d32n
        mkdir -p $DIR/d32n/tmp    
        TMP_DIR=$DIR/d32n/tmp       
        ln -s $DIR $TMP_DIR/symlink11 
@@ -741,11 +1009,11 @@ test_32n() {
        ls -l $DIR/d32n/tmp/symlink11  || error
        ls -l $DIR/d32n/symlink01 || error
 }
-run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======="
+run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
 
 test_32o() {
-       [ -e $DIR/d32o ] && rm -fr $DIR/d32o
-       [ -e $DIR/test_file ] && rm -fr $DIR/test_file
+       rm -fr $DIR/d32o
+       rm -f $DIR/test_file
        touch $DIR/test_file 
        mkdir -p $DIR/d32o/tmp    
        TMP_DIR=$DIR/d32o/tmp       
@@ -759,123 +1027,827 @@ test_32o() {
 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/test_file"
 
 test_32p() {
-       [ -e $DIR/d32p ] && rm -fr $DIR/d32p
-       [ -e $DIR/test_file ] && rm -fr $DIR/test_file
+    log 32p_1
+       rm -fr $DIR/d32p
+    log 32p_2
+       rm -f $DIR/test_file
+    log 32p_3
        touch $DIR/test_file 
+    log 32p_4
        mkdir -p $DIR/d32p/tmp    
+    log 32p_5
        TMP_DIR=$DIR/d32p/tmp       
+    log 32p_6
        ln -s $DIR/test_file $TMP_DIR/symlink12 
+    log 32p_7
        ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
+    log 32p_8
        cat $DIR/d32p/tmp/symlink12 || error
-       cat $DIR/d32p/symlink02  || error
+    log 32p_9
+       cat $DIR/d32p/symlink02 || error
+    log 32p_10
 }
 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/test_file"
 
+test_32q() {
+       [ -e $DIR/d32q ] && rm -fr $DIR/d32q
+       mkdir -p $DIR/d32q
+        touch $DIR/d32q/under_the_mount
+       mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
+       ls $DIR/d32q/under_the_mount && error || true
+       umount $DIR/d32q || error
+}
+run_test 32q "stat follows mountpoints in Lustre (should return error)"
+
+test_32r() {
+       [ -e $DIR/d32r ] && rm -fr $DIR/d32r
+       mkdir -p $DIR/d32r
+        touch $DIR/d32r/under_the_mount
+       mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
+       ls $DIR/d32r | grep -q under_the_mount && error || true
+       umount $DIR/d32r || error
+}
+run_test 32r "opendir follows mountpoints in Lustre (should return error)"
+
 #   chmod 444 /mnt/lustre/somefile
 #   open(/mnt/lustre/somefile, O_RDWR)
 #   Should return -1
 test_33() {
-       [ -e $DIR/test_33_file ] && rm -fr $DIR/test_33_file
+       rm -f $DIR/test_33_file
        touch $DIR/test_33_file
        chmod 444 $DIR/test_33_file
        chown $RUNAS_ID $DIR/test_33_file
-       $RUNAS openfile -f O_RDWR $DIR/test_33_file && error || true
+        log 33_1
+        $RUNAS $OPENFILE -f O_RDWR $DIR/test_33_file && error || true
+        log 33_2
 }
 run_test 33 "write file with mode 444 (should return error) ===="
-
-test_34() {
-       $MCREATE $DIR/f
-       $TRUNCATE $DIR/f 100
-       rm $DIR/f
-}
-run_test 34 "truncate file that has not been opened ============"
-
-test_35() {
-       [ -e $DIR/test_35_file ] && rm -fr $DIR/test_35_file
-       cp /bin/sh $DIR/test_35_file
-       chmod 444 $DIR/test_35_file
-       chown $RUNAS_ID $DIR/test_35_file
-       $DIR/test_35_file && error
-       return 0
-}
-run_test 35 "exec file with mode 444 (should return error) ====="
+                                                                                                                                               
+test_33a() {
+        rm -fr $DIR/d33
+        mkdir -p $DIR/d33
+        chown $RUNAS_ID $DIR/d33
+        $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 || error
+        $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && error || true
+}
+run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
+
+TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
+test_34a() {
+       rm -f $DIR/f34
+       $MCREATE $DIR/f34 || error
+       $LFIND $DIR/f34 2>&1 | grep -q "no stripe info" || error
+       $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
+       $LFIND $DIR/f34 2>&1 | grep -q "no stripe info" || error
+       $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
+}
+run_test 34a "truncate file that has not been opened ==========="
+
+test_34b() {
+       [ ! -f $DIR/f34 ] && test_34a
+       $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
+       $OPENFILE -f O_RDONLY $DIR/f34
+       $LFIND $DIR/f34 2>&1 | grep -q "no stripe info" || error
+       $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
+}
+run_test 34b "O_RDONLY opening file doesn't create objects ====="
+
+test_34c() {
+       [ ! -f $DIR/f34 ] && test_34a 
+       $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
+       $OPENFILE -f O_RDWR $DIR/f34
+       $LFIND $DIR/f34 2>&1 | grep -q "no stripe info" && error
+       $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
+}
+run_test 34c "O_RDWR opening file-with-size works =============="
+
+test_34d() {
+       dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
+       $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
+       rm $DIR/f34
+}
+run_test 34d "write to sparse file ============================="
+
+test_34e() {
+       rm -f $DIR/f34e
+       $MCREATE $DIR/f34e || error
+       $TRUNCATE $DIR/f34e 1000 || error
+       $CHECKSTAT -s 1000 $DIR/f34e || error
+       $OPENFILE -f O_RDWR $DIR/f34e
+       $CHECKSTAT -s 1000 $DIR/f34e || error
+}
+run_test 34e "create objects, some with size and some without =="
+
+test_35a() {
+       cp /bin/sh $DIR/f35a
+       chmod 444 $DIR/f35a
+       chown $RUNAS_ID $DIR/f35a
+       $RUNAS $DIR/f35a && error || true
+       rm $DIR/f35a
+}
+run_test 35a "exec file with mode 444 (should return and not leak) ====="
 
 test_36a() {
-       log 36  "cvs operations ===================================="
-       mkdir -p $DIR/cvsroot
-       chown $RUNAS_ID $DIR/cvsroot
-       $RUNAS cvs -d $DIR/cvsroot init 
+       rm -f $DIR/f36
+       utime $DIR/f36 || error
 }
-run_test 36a "cvs init ========================================="
+run_test 36a "MDS utime check (mknod, utime) ==================="
 
 test_36b() {
-       # on the LLNL clusters, runas will still pick up root's $TMP settings,
-        # which will not be writable for the runas user, and then you get a CVS
-       # error message with a corrupt path string (CVS bug) and panic.
-       # We're not using much space, so just stick it in /tmp, which is
-       # safe.
-       OLDTMPDIR=$TMPDIR
-       OLDTMP=$TMP
-       TMPDIR=/tmp
-       TMP=/tmp
-
-       cd /etc/init.d
-       $RUNAS cvs -d $DIR/cvsroot import -m "nomesg"  reposname vtag rtag
-
-       TMPDIR=$OLDTMPDIR
-       TMP=$OLDTMP
+       echo "" > $DIR/f36
+       utime $DIR/f36 || error
 }
-run_test 36b "cvs import ======================================="
+run_test 36b "OST utime check (open, utime) ===================="
 
 test_36c() {
-       cd $DIR
-       mkdir -p $DIR/reposname
-       chown $RUNAS_ID $DIR/reposname
-       $RUNAS cvs -d $DIR/cvsroot co reposname
+       rm -f $DIR/d36/f36
+       mkdir $DIR/d36
+       chown $RUNAS_ID $DIR/d36
+       $RUNAS utime $DIR/d36/f36 || error
 }
-run_test 36c "cvs checkout ====================================="
+run_test 36c "non-root MDS utime check (mknod, utime) =========="
 
 test_36d() {
-       cd $DIR/reposname
-       $RUNAS touch foo36
-       $RUNAS cvs add -m 'addmsg' foo36
+       [ ! -d $DIR/d36 ] && test_36c
+       echo "" > $DIR/d36/f36
+       $RUNAS utime $DIR/d36/f36 || error
 }
-run_test 36d "cvs add =========================================="
+run_test 36d "non-root OST utime check (open, utime) ==========="
 
 test_36e() {
-       cd $DIR/reposname
-       $RUNAS cvs update
-}
-run_test 36e "cvs update ======================================="
-
-# XXX change this: use a non root user
-test_36f() {
-       cd $DIR/reposname
-       $RUNAS cvs commit -m 'nomsg' foo36
+       [ $RUNAS_ID -eq $UID ] && return
+       [ ! -d $DIR/d36 ] && mkdir $DIR/d36
+       touch $DIR/d36/f36e
+       $RUNAS utime $DIR/d36/f36e && error "utime worked, want failure" || true
 }
-run_test 36f "cvs commit ======================================="
+run_test 36e "utime on non-owned file (should return error) ===="
 
 test_37() {
        mkdir -p $DIR/dextra
        echo f > $DIR/dextra/fbugfile
-       mount -t ext2 -o loop /$EXT2_DEV $DIR/dextra
-       ls $DIR/dextra |grep "\<fbugfile\>" && error
-       umount /$EXT2_DEV
-       rm -f DIR/dextra/fbugfile
+       mount -t ext2 -o loop $EXT2_DEV $DIR/dextra
+       ls $DIR/dextra | grep "\<fbugfile\>" && error
+       umount $DIR/dextra || error
+       rm -f $DIR/dextra/fbugfile || error
 }
-run_test 37 "ls a mounted file system to check the old contents ====="
+run_test 37 "ls a mounted file system to check old content ====="
 
-# open(file, O_DIRECTORY) will leak a request and not cleanup (bug 1501)
 test_38() {
-        o_directory $DIR/test38
+       o_directory $DIR/test38
 }
 run_test 38 "open a regular file with O_DIRECTORY =============="
-        
+
+test_39() {
+       touch $DIR/test_39_file
+       touch $DIR/test_39_file2
+#      ls -l  $DIR/test_39_file $DIR/test_39_file2
+#      ls -lu  $DIR/test_39_file $DIR/test_39_file2
+#      ls -lc  $DIR/test_39_file $DIR/test_39_file2
+       sleep 2
+       $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/test_39_file2
+#      ls -l  $DIR/test_39_file $DIR/test_39_file2
+#      ls -lu  $DIR/test_39_file $DIR/test_39_file2
+#      ls -lc  $DIR/test_39_file $DIR/test_39_file2
+       [ $DIR/test_39_file2 -nt $DIR/test_39_file ] || error
+}
+run_test 39 "mtime changed on create ==========================="
+
+test_40() {
+       dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
+       $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
+       $CHECKSTAT -t file -s 4096 $DIR/f40 || error
+}
+run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
+
+test_41() {
+       # bug 1553
+       small_write $DIR/f41 18
+}
+run_test 41 "test small file write + fstat ====================="
+
+count_ost_writes() {
+        cat /proc/fs/lustre/osc/*/stats |
+            awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
+}
+start_kupdated() {
+       # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs
+       kill -CONT `pidof kupdated`
+}
+stop_kupdated() {
+       # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
+       kill -STOP `pidof kupdated`
+       trap start_kupdated EXIT
+}
+
+# ensure that all stripes have some grant before we test client-side cache
+for i in `seq -f $DIR/f42-%g 1 $STRIPECOUNT`; do
+       dd if=/dev/zero of=$i bs=4k count=1
+       rm $i
+done
+
+# Tests 42* verify that our behaviour is correct WRT caching, file closure,
+# file truncation, and file removal.
+test_42a() {
+       cancel_lru_locks OSC
+       stop_kupdated
+       sync; sleep 1; sync # just to be safe
+       BEFOREWRITES=`count_ost_writes`
+       grep [0-9] /proc/fs/lustre/osc/OSC*MNT*/cur_grant_bytes
+       dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
+       AFTERWRITES=`count_ost_writes`
+       [ $BEFOREWRITES -eq $AFTERWRITES ] || \
+               error "$BEFOREWRITES < $AFTERWRITES"
+       start_kupdated
+}
+run_test 42a "ensure that we don't flush on close =============="
+
+test_42b() {
+       cancel_lru_locks OSC
+       stop_kupdated
+        sync
+        dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
+        BEFOREWRITES=`count_ost_writes`
+        $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
+        AFTERWRITES=`count_ost_writes`
+        [ $BEFOREWRITES -eq $AFTERWRITES ] ||
+            error "$BEFOREWRITES < $AFTERWRITES on unlink"
+        BEFOREWRITES=`count_ost_writes`
+        sync || error "sync: $?"
+        AFTERWRITES=`count_ost_writes`
+        [ $BEFOREWRITES -eq $AFTERWRITES ] ||
+            error "$BEFOREWRITES < $AFTERWRITES on sync"
+        dmesg | grep 'error from obd_brw_async' && error 'error writing back'
+       start_kupdated
+        return 0
+}
+run_test 42b "test destroy of file with cached dirty data ======"
+
+# if these tests just want to test the effect of truncation,
+# they have to be very careful.  consider:
+# - the first open gets a {0,EOF}PR lock
+# - the first write conflicts and gets a {0, count-1}PW
+# - the rest of the writes are under {count,EOF}PW
+# - the open for truncate tries to match a {0,EOF}PR
+#   for the filesize and cancels the PWs.
+# any number of fixes (don't get {0,EOF} on open, match
+# composite locks, do smarter file size management) fix
+# this, but for now we want these tests to verify that
+# the cancellation with truncate intent works, so we
+# start the file with a full-file pw lock to match against
+# until the truncate.
+trunc_test() {
+        test=$1
+        file=$DIR/$test
+        offset=$2
+       cancel_lru_locks OSC
+       stop_kupdated
+       # prime the file with 0,EOF PW to match
+       touch $file
+        $TRUNCATE $file 0
+        sync; sync
+       # now the real test..
+        dd if=/dev/zero of=$file bs=1024 count=100
+        BEFOREWRITES=`count_ost_writes`
+        $TRUNCATE $file $offset
+        cancel_lru_locks OSC
+        AFTERWRITES=`count_ost_writes`
+       start_kupdated
+}
+
+test_42c() {
+        trunc_test 42c 1024
+        [ $BEFOREWRITES -eq $AFTERWRITES ] && \
+            error "$BEFOREWRITES < $AFTERWRITES on truncate"
+        rm $file
+}
+run_test 42c "test partial truncate of file with cached dirty data"
+
+test_42d() {
+        trunc_test 42d 0
+        [ $BEFOREWRITES -eq $AFTERWRITES ] || \
+            error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
+        rm $file
+}
+run_test 42d "test complete truncate of file with cached dirty data"
+
+test_43() {
+       mkdir $DIR/d43
+       cp -p /bin/ls $DIR/d43/f
+       exec 100>> $DIR/d43/f
+       $DIR/d43/f && error || true
+       exec 100<&-
+}
+run_test 43 "execution of file opened for write should return -ETXTBSY"
+
+test_43a() {
+        mkdir -p $DIR/d43
+       cp -p `which multiop` $DIR/d43/multiop
+        $DIR/d43/multiop $TMP/test43.junk O_c &
+        MULTIPID=$!
+        sleep 1
+        multiop $DIR/d43/multiop Oc && error "expected error, got success"
+        kill -USR1 $MULTIPID || return 2
+        wait $MULTIPID || return 3
+}
+run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
+
+test_43b() {
+        mkdir -p $DIR/d43
+       cp -p `which multiop` $DIR/d43/multiop
+        $DIR/d43/multiop $TMP/test43.junk O_c &
+        MULTIPID=$!
+        sleep 1
+        truncate $DIR/d43/multiop 0 && error "expected error, got success"
+        kill -USR1 $MULTIPID || return 2
+        wait $MULTIPID || return 3
+}
+run_test 43b "truncate of file being executed should return -ETXTBSY"
+
+test_43c() {
+       local testdir="$DIR/d43c"
+       mkdir -p $testdir
+       cp $SHELL $testdir/
+       ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
+               ( cd $testdir && md5sum -c)
+}
+run_test 43c "md5sum of copy into lustre========================"
+
+test_44() {
+       [  "$STRIPECOUNT" -lt "2" ] && echo "skipping 2-stripe test" && return
+       dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=127
+       dd if=$DIR/f1 bs=4k count=1
+}
+run_test 44 "zero length read from a sparse stripe ============="
+
+test_44a() {
+    local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
+                         awk '{print $2}'`
+    local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
+                      awk '{print $2}'`
+    if [ $nstripe -eq 0 ] ; then
+        nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
+    fi
+
+    OFFSETS="0 $((stride/2)) $((stride-1))"
+    for offset in $OFFSETS ; do
+      for i in `seq 0 $((nstripe-1))`; do
+        rm -f $DIR/d44a
+        local GLOBALOFFSETS=""
+        local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
+        ll_sparseness_write $DIR/d44a $size  || error "ll_sparseness_write"
+        GLOBALOFFSETS="$GLOBALOFFSETS $size"
+        ll_sparseness_verify $DIR/d44a $GLOBALOFFSETS \
+                            || error "ll_sparseness_verify $GLOBALOFFSETS"
+
+        for j in `seq 0 $((nstripe-1))`; do
+            size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
+            ll_sparseness_write $DIR/d44a $size || error "ll_sparseness_write"
+            GLOBALOFFSETS="$GLOBALOFFSETS $size"
+        done
+        ll_sparseness_verify $DIR/d44a $GLOBALOFFSETS \
+                            || error "ll_sparseness_verify $GLOBALOFFSETS"
+      done
+    done
+}
+run_test 44a "test sparse pwrite ==============================="
+
+dirty_osc_total() {
+       tot=0
+       for d in /proc/fs/lustre/osc/*/cur_dirty_bytes; do
+               tot=$(($tot + `cat $d`))
+       done
+       echo $tot
+}
+do_dirty_record() {
+       before=`dirty_osc_total`
+       echo executing "\"$*\""
+       eval $*
+       after=`dirty_osc_total`
+       echo before $before, after $after
+}
+test_45() {
+       f="$DIR/f45"
+       # Obtain grants from OST if it supports it
+       echo blah > ${f}_grant
+       stop_kupdated
+       sync
+       do_dirty_record "echo blah > $f"
+       [ $before -eq $after ] && error "write wasn't cached"
+       do_dirty_record "> $f"
+       [ $before -gt $after ] || error "truncate didn't lower dirty count"
+       do_dirty_record "echo blah > $f"
+       [ $before -eq $after ] && error "write wasn't cached"
+       do_dirty_record "sync"
+       [ $before -gt $after ] || error "writeback didn't lower dirty count"
+       do_dirty_record "echo blah > $f"
+       [ $before -eq $after ] && error "write wasn't cached"
+       do_dirty_record "cancel_lru_locks OSC"
+       [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
+       start_kupdated
+}
+run_test 45 "osc io page accounting ============================"
+
+page_size() {
+       getconf PAGE_SIZE
+}
+
+# in a 2 stripe file (lov.sh), page 63 maps to page 31 in its object.  this
+# test tickles a bug where re-dirtying a page was failing to be mapped to the
+# objects offset and an assert hit when an rpc was built with 63's mapped 
+# offset 31 and 31's raw 31 offset. it also found general redirtying bugs.
+test_46() {
+       f="$DIR/f46"
+       stop_kupdated
+       sync
+       dd if=/dev/zero of=$f bs=`page_size` seek=31 count=1
+       sync
+       dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=63 count=1
+       dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=31 count=1
+       sync
+       start_kupdated
+}
+run_test 46 "dirtying a previously written page ================"
+
+# Check that device nodes are created and then visible correctly (#2091)
+test_47() {
+       cmknod $DIR/test_47_node || error
+}
+run_test 47 "Device nodes check ================================"
+
+test_48a() {
+       mkdir $DIR/d48a
+       cd $DIR/d48a
+       mv $DIR/d48a $DIR/d48.new || error "move directory failed"
+       mkdir $DIR/d48a || error "recreate directory failed"
+       touch foo || error "'touch foo' failed after recreating cwd"
+       mkdir bar || error "'mkdir foo' failed after recreating cwd"
+       ls . || error "'ls .' failed after recreating cwd"
+       ls .. || error "'ls ..' failed after removing cwd"
+       cd . || error "'cd .' failed after recreating cwd"
+       mkdir . && error "'mkdir .' worked after recreating cwd"
+       rmdir . && error "'rmdir .' worked after recreating cwd"
+       ln -s . baz || error "'ln -s .' failed after recreating cwd"
+}
+run_test 48a "Access renamed working dir (should return errors)="
+
+test_48b() {
+       mkdir $DIR/d48b
+       cd $DIR/d48b
+       rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
+       touch foo && error "'touch foo' worked after removing cwd"
+       mkdir foo && error "'mkdir foo' worked after removing cwd"
+       ls . && error "'ls .' worked after removing cwd"
+       ls .. || error "'ls ..' failed after removing cwd"
+       cd . && error "'cd .' worked after recreate cwd"
+       mkdir . && error "'mkdir .' worked after removing cwd"
+       rmdir . && error "'rmdir .' worked after removing cwd"
+       ln -s . foo && error "'ln -s .' worked after removing cwd" || true
+}
+run_test 48b "Access removed working dir (should return errors)="
+
+test_50() {
+       # bug 1485
+       mkdir $DIR/d50
+       cd $DIR/d50
+       ls /proc/$$/cwd || error
+}
+run_test 50 "special situations: /proc symlinks  ==============="
+
+test_51() {
+       # bug 1516 - create an empty entry right after ".." then split dir
+       mkdir $DIR/d49
+       touch $DIR/d49/foo
+       $MCREATE $DIR/d49/bar
+       rm $DIR/d49/foo
+       createmany -m $DIR/d49/longfile 201
+       FNUM=202
+       while [ `ls -sd $DIR/d49 | awk '{ print $1 }'` -eq 4 ]; do
+               $MCREATE $DIR/d49/longfile$FNUM
+               FNUM=$(($FNUM + 1))
+               echo -n "+"
+       done
+       ls -l $DIR/d49 > /dev/null || error
+}
+run_test 51 "special situations: split htree with empty entry =="
+
+test_52a() {
+       [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
+       mkdir -p $DIR/d52a
+       touch $DIR/d52a/foo
+       chattr =a $DIR/d52a/foo || error
+       echo bar >> $DIR/d52a/foo || error
+       cp /etc/hosts $DIR/d52a/foo && error
+       rm -f $DIR/d52a/foo 2>/dev/null && error
+       link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error
+       echo foo >> $DIR/d52a/foo || error
+       mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error
+       lsattr $DIR/d52a/foo | egrep -q "^-+a-+ $DIR/d52a/foo" || error
+       chattr -a $DIR/d52a/foo || error
+
+       rm -fr $DIR/d52a || error
+}
+run_test 52a "append-only flag test (should return errors) ====="
+
+test_52b() {
+       [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
+       mkdir -p $DIR/d52b
+       touch $DIR/d52b/foo
+       chattr =i $DIR/d52b/foo || error
+       cat test > $DIR/d52b/foo && error
+       cp /etc/hosts $DIR/d52b/foo && error
+       rm -f $DIR/d52b/foo 2>/dev/null && error
+       link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error
+       echo foo >> $DIR/d52b/foo && error
+       mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error
+       [ -f $DIR/d52b/foo ] || error
+       [ -f $DIR/d52b/foo_ren ] && error
+       lsattr $DIR/d52b/foo | egrep -q "^-+i-+ $DIR/d52b/foo" || error
+       chattr -i $DIR/d52b/foo || error
+
+       rm -fr $DIR/d52b || error
+}
+run_test 52b "immutable flag test (should return errors) ======="
+
+test_53() {
+        for i in `ls -d /proc/fs/lustre/osc/OSC*mds1 2> /dev/null` ; do
+                ostname=`echo $i | cut -d _ -f 3-4 | sed -e s/_mds1//`
+                ost_last=`cat /proc/fs/lustre/obdfilter/$ostname/last_id`
+                mds_last=`cat $i/prealloc_last_id`
+                echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
+                if [ $ost_last != $mds_last ]; then
+                    error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
+                fi
+        done
+}
+run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
+
+test_54() {
+       $SOCKETSERVER $DIR/socket &
+       sleep 1
+       $SOCKETCLIENT $DIR/socket || error
+       $MUNLINK $DIR/socket
+}
+run_test 54 "unix damain socket test ==========================="
+
+test_55() {
+        rm -rf $DIR/d55
+        mkdir $DIR/d55
+        mount -t ext3 -o loop,iopen $EXT3_DEV $DIR/d55 || error
+        touch $DIR/d55/foo
+        $IOPENTEST1 $DIR/d55/foo $DIR/d55 || error
+        $IOPENTEST2 $DIR/d55 || error
+        echo "check for $EXT3_DEV. Please wait..."
+        rm -rf $DIR/d55/*
+        umount $DIR/d55 || error
+}
+run_test 55 "check iopen_connect_dentry()======================="
+
+test_56() {
+        rm -rf $DIR/d56
+        mkdir $DIR/d56
+        mkdir $DIR/d56/dir
+        NUMFILES=3
+        NUMFILESx2=$(($NUMFILES * 2))
+        for i in `seq 1 $NUMFILES` ; do
+                touch $DIR/d56/file$i
+                touch $DIR/d56/dir/file$i
+        done
+
+        # test lfs find with --recursive
+        FILENUM=`$LFIND --recursive $DIR/d56 | grep -c obdidx`
+        [ $FILENUM -eq $NUMFILESx2 ] || error \
+                "lfs find --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
+        FILENUM=`$LFIND $DIR/d56 | grep -c obdidx`
+        [ $FILENUM -eq $NUMFILES ] || error \
+                "lfs find $DIR/d56 without --recursive wrong: found $FILENUM,
+               expected $NUMFILES"
+        echo "lfs find --recursive passed."
+
+        # test lfs find with file instead of dir
+        FILENUM=`$LFIND $DIR/d56/file1 | grep -c obdidx`
+        [ $FILENUM  -eq 1 ] || error \
+                 "lfs find $DIR/d56/file1 wrong:found $FILENUM, expected 1"
+        echo "lfs find file passed."
+
+        #test lfs find with --verbose
+        [ `$LFIND --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
+                error "lfs find --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
+        [ `$LFIND $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
+                "lfs find $DIR/d56 without --verbose wrong: should not show lmm_magic info"
+        echo "lfs find --verbose passed."
+
+        #test lfs find with --obd
+        $LFIND --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
+                error "lfs find --obd wrong_uuid should return error information"
+
+        [  "$STRIPECOUNT" -lt 2 ] && \
+                echo "skipping other lfs find --obd test" && return
+        FILENUM=`$LFIND --recursive $DIR/d56 | sed -n '/^[      ]*1[    ]/p' | wc -l`
+        OBDUUID=`$LFIND --recursive $DIR/d56 | sed -n '/^[      ]*1:/p' | awk '{print $2}'`
+        FOUND=`$LFIND -r --obd $OBDUUID $DIR/d56 | wc -l`
+        [ $FOUND -eq $FILENUM ] || \
+                error "lfs find --obd wrong: found $FOUND, expected $FILENUM"
+        [ `$LFIND -r -v --obd $OBDUUID $DIR/d56 | sed '/^[      ]*1[    ]/d' | \
+                sed -n '/^[     ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
+                error "lfs find --obd wrong: should not show file on other obd"
+        echo "lfs find --obd passed."
+}
+run_test 56 "check lfs find ===================================="
+
+test_57a() {
+       # note test will not do anything if MDS is not local
+       for DEV in `cat /proc/fs/lustre/mds/*/mntdev`; do
+               dumpe2fs -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
+               DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
+               [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
+               rm $TMP/t57a.dump
+       done
+}
+run_test 57a "verify MDS filesystem created with large inodes =="
+
+test_57b() {
+       FILECOUNT=100
+       FILE1=$DIR/d57b/f1
+       FILEN=$DIR/d57b/f$FILECOUNT
+       rm -rf $DIR/d57b || error "removing $DIR/d57b"
+       mkdir -p $DIR/d57b || error "creating $DIR/d57b"
+       echo "mcreating $FILECOUNT files"
+       createmany -m $DIR/d57b/f 1 $FILECOUNT || \
+               error "creating files in $DIR/d57b"
+
+       # verify that files do not have EAs yet
+       $LFIND $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
+       $LFIND $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
+
+       MDSFREE="`cat /proc/fs/lustre/mds/*/kbytesfree`"
+       MDCFREE="`cat /proc/fs/lustre/mdc/*/kbytesfree`"
+       echo "opening files to create objects/EAs"
+       for FILE in `seq -f $DIR/d57b/f%g 1 $FILECOUNT`; do
+               $OPENFILE -f O_RDWR $FILE > /dev/null || error "opening $FILE"
+       done
+
+       # verify that files have EAs now
+       $LFIND $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
+       $LFIND $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
+
+       MDSFREE2="`cat /proc/fs/lustre/mds/*/kbytesfree`"
+       MDCFREE2="`cat /proc/fs/lustre/mdc/*/kbytesfree`"
+       if [ "$MDCFREE" != "$MDCFREE2" ]; then
+               if [ "$MDSFREE" != "$MDSFREE2" ]; then
+                       error "MDC before $MDCFREE != after $MDCFREE2"
+               else
+                       echo "MDC before $MDCFREE != after $MDCFREE2"
+                       echo "unable to confirm if MDS has large inodes"
+               fi
+       fi
+       rm -rf $DIR/d57b
+}
+run_test 57b "default LOV EAs are stored inside large inodes ==="
+
+test_58() {
+       wiretest
+}
+run_test 58 "verify cross-platform wire constants =============="
+
+test_59() {
+       echo "touch 130 files"
+       for i in `seq 1 130` ; do
+               touch $DIR/59-$i
+       done
+       echo "rm 130 files"
+       for i in `seq 1 130` ; do
+               rm -f $DIR/59-$i
+       done
+       sync
+       sleep 2
+        # wait for commitment of removal
+}
+run_test 59 "verify cancellation of llog records async ========="
+
+test_60() {
+       echo 60 "llog tests run from kernel mode"
+       sh run-llog.sh
+}
+run_test 60 "llog sanity tests run from kernel module =========="
+
+test_61() {
+       f="$DIR/f61"
+       dd if=/dev/zero of=$f bs=`page_size` count=1
+       cancel_lru_locks OSC
+       multiop $f OSMWUc || error
+       sync
+}
+run_test 61 "mmap() writes don't make sync hang ================"
+
+# bug 2330 - insufficient obd_match error checking causes LBUG
+test_62() {
+        f="$DIR/f62"
+        echo foo > $f
+        cancel_lru_locks OSC
+        echo 0x405 > /proc/sys/lustre/fail_loc
+        cat $f && error "cat succeeded, expect -EIO"
+        echo 0 > /proc/sys/lustre/fail_loc
+}
+run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
+
+# bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
+test_63() {
+       MAX_DIRTY_MB=`cat /proc/fs/lustre/osc/*/max_dirty_mb | head -1`
+       for i in /proc/fs/lustre/osc/*/max_dirty_mb ; do
+               echo 0 > $i
+       done
+       for i in `seq 10` ; do
+               dd if=/dev/zero of=$DIR/f63 bs=8k &
+               sleep 5
+               kill $!
+               sleep 1
+       done
+
+       for i in /proc/fs/lustre/osc/*/max_dirty_mb ; do
+               echo $MAX_DIRTY_MB > $i
+       done
+       true
+}
+run_test 63 "Verify oig_wait interruption does not crash ======"
+
+test_64a () {
+       df $DIR
+       grep "[0-9]" /proc/fs/lustre/osc/OSC*MNT*/cur*
+}
+run_test 64a "verify filter grant calculations (in kernel) ======"
+
+test_64b () {
+       sh oos.sh $MOUNT
+}
+run_test 64b "check out-of-space detection on client ============"
+
+# on the LLNL clusters, runas will still pick up root's $TMP settings,
+# which will not be writable for the runas user, and then you get a CVS
+# error message with a corrupt path string (CVS bug) and panic.
+# We're not using much space, so just stick it in /tmp, which is safe.
+OLDTMPDIR=$TMPDIR
+OLDTMP=$TMP
+TMPDIR=/tmp
+TMP=/tmp
+OLDHOME=$HOME
+[ $RUNAS_ID -ne $UID ] && HOME=/tmp
+
+test_99a() {
+       mkdir -p $DIR/d99cvsroot
+       chown $RUNAS_ID $DIR/d99cvsroot
+       $RUNAS cvs -d $DIR/d99cvsroot init || error
+}
+run_test 99a "cvs init ========================================="
+
+test_99b() {
+       [ ! -d $DIR/d99cvsroot ] && test_99a
+       cd /etc/init.d
+       $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" d99reposname vtag rtag
+}
+run_test 99b "cvs import ======================================="
+
+test_99c() {
+       [ ! -d $DIR/d99cvsroot ] && test_99b
+       cd $DIR
+       mkdir -p $DIR/d99reposname
+       chown $RUNAS_ID $DIR/d99reposname
+       $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
+}
+run_test 99c "cvs checkout ====================================="
+
+test_99d() {
+       [ ! -d $DIR/d99cvsroot ] && test_99c
+       cd $DIR/d99reposname
+       $RUNAS touch foo99
+       $RUNAS cvs add -m 'addmsg' foo99
+}
+run_test 99d "cvs add =========================================="
+
+test_99e() {
+       [ ! -d $DIR/d99cvsroot ] && test_99c
+       cd $DIR/d99reposname
+       $RUNAS cvs update
+}
+run_test 99e "cvs update ======================================="
+
+test_99f() {
+       [ ! -d $DIR/d99cvsroot ] && test_99d
+       cd $DIR/d99reposname
+       $RUNAS cvs commit -m 'nomsg' foo99
+}
+run_test 99f "cvs commit ======================================="
+
+TMPDIR=$OLDTMPDIR
+TMP=$OLDTMP
+HOME=$OLDHOME
 
 log "cleanup: ======================================================"
-rm -r $DIR/[Rdfs][1-9]*
-if [ "$I_MOUNTED" = "yes" ]; then
-       sh llmountcleanup.sh || error
+if [ "`mount | grep ^$NAME`" ]; then
+       rm -rf $DIR/[Rdfs][1-9]*
+       if [ "$I_MOUNTED" = "yes" ]; then
+               sh llmountcleanup.sh || error
+       fi
 fi
 
 echo '=========================== finished ==============================='
+[ -f "$SANITYLOG" ] && cat $SANITYLOG && exit 1 || true