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