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