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