Whamcloud - gitweb
Branch HEAD
[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 12653 12653 13310 10764
11 ALWAYS_EXCEPT="                 27o 27q  42a  42b  42c  42d  45   65a   65e   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 # Tests that fail on uml
17 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
18 #                                    buffer i/o errs             sock spc runas
19 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 27m 27n 27o 27p 27q 27r 31d 54a  64b 99a 99b 99c 99d 99e 99f 101"
20
21 # test76 is not valid with FIDs because inode numbers are not reused
22 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 76"
23
24 case `uname -r` in
25 2.4*) FSTYPE=${FSTYPE:-ext3} ;;
26 2.6*) FSTYPE=${FSTYPE:-ldiskfs} ;;
27 *) error "unsupported kernel" ;;
28 esac
29
30 SRCDIR=`dirname $0`
31 export PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH:/sbin
32
33 TMP=${TMP:-/tmp}
34
35 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
36 CREATETEST=${CREATETEST:-createtest}
37 LFS=${LFS:-lfs}
38 SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
39 GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
40 LSTRIPE=${LSTRIPE:-"$LFS setstripe"}
41 LFIND=${LFIND:-"$LFS find"}
42 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
43 LSTRIPEINFO=${LSTRIPEINFO:-ll_getstripe_info}
44 LCTL=${LCTL:-lctl}
45 MCREATE=${MCREATE:-mcreate}
46 OPENFILE=${OPENFILE:-openfile}
47 OPENUNLINK=${OPENUNLINK:-openunlink}
48 RANDOM_READS=${RANDOM_READS:-"random-reads"}
49 TOEXCL=${TOEXCL:-toexcl}
50 TRUNCATE=${TRUNCATE:-truncate}
51 MUNLINK=${MUNLINK:-munlink}
52 SOCKETSERVER=${SOCKETSERVER:-socketserver}
53 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
54 IOPENTEST1=${IOPENTEST1:-iopentest1}
55 IOPENTEST2=${IOPENTEST2:-iopentest2}
56 MEMHOG=${MEMHOG:-memhog}
57 DIRECTIO=${DIRECTIO:-directio}
58 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
59 UMOUNT=${UMOUNT:-"umount -d"}
60 STRIPES_PER_OBJ=-1
61 CHECK_GRANT=${CHECK_GRANT:-"yes"}
62 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
63
64 export NAME=${NAME:-local}
65
66 SAVE_PWD=$PWD
67
68 CLEANUP=${CLEANUP:-:}
69 SETUP=${SETUP:-:}
70 TRACE=${TRACE:-""}
71 LUSTRE=${LUSTRE:-`dirname $0`/..}
72 . $LUSTRE/tests/test-framework.sh
73 init_test_env $@
74 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
75
76 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 36f 36g 51b 51c 60c 63 64b 68 71 73 77f 78 101 103 115 120g 124b"
77
78 if $GSS_KRB5; then
79     $RUNAS krb5_login.sh || exit 1
80     $RUNAS -u $(($RUNAS_ID + 1)) krb5_login.sh || exit 1
81 fi
82
83 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 36f 36g 51b 51c 60c 63 64b 68 71 73 77f 78 101 103 115 120g 124b"
84
85 SANITYLOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
86 FAIL_ON_ERROR=false
87
88 cleanup() {
89         echo -n "cln.."
90         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
91 }
92 setup() {
93         echo -n "mnt.."
94         load_modules
95         setupall || exit 10
96         echo "done"
97 }
98
99 check_kernel_version() {
100         VERSION_FILE=$LPROC/version
101         WANT_VER=$1
102         [ ! -f $VERSION_FILE ] && echo "can't find kernel version" && return 1
103         GOT_VER=$(awk '/kernel:/ {print $2}' $VERSION_FILE)
104         [ $GOT_VER == "patchless" ] && return 0
105         [ $GOT_VER -ge $WANT_VER ] && return 0
106         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
107         return 1
108 }
109
110 if [ "$ONLY" == "cleanup" ]; then
111        sh llmountcleanup.sh
112        exit 0
113 fi
114
115 [ "$SANITYLOG" ] && rm -f $SANITYLOG || true
116
117 check_and_setup_lustre
118
119 DIR=${DIR:-$MOUNT}
120 [ -z "`echo $DIR | grep $MOUNT`" ] && echo "$DIR not in $MOUNT" && exit 99
121
122 LOVNAME=`cat $LPROC/llite/*/lov/common_name | tail -n 1`
123 OSTCOUNT=`cat $LPROC/lov/$LOVNAME/numobd`
124 STRIPECOUNT=`cat $LPROC/lov/$LOVNAME/stripecount`
125 STRIPESIZE=`cat $LPROC/lov/$LOVNAME/stripesize`
126 ORIGFREE=`cat $LPROC/lov/$LOVNAME/kbytesavail`
127 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
128
129 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
130 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
131 rm -rf $DIR/[Rdfs][0-9]*
132
133 # $RUNAS_ID may get set incorrectly somewhere else
134 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
135
136 check_runas_id $RUNAS_ID $RUNAS
137
138 build_test_filter
139
140 if [ "${ONLY}" = "MOUNT" ] ; then 
141         echo "Lustre is up, please go on"
142         exit
143 fi
144
145 echo "preparing for tests involving mounts"
146 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
147 touch $EXT2_DEV
148 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
149 echo # add a newline after mke2fs.
150
151 umask 077
152
153 OLDDEBUG="`sysctl -n lnet.debug 2> /dev/null`"
154 sysctl -w lnet.debug=-1 2> /dev/null || true
155 test_0() {
156         touch $DIR/$tfile
157         $CHECKSTAT -t file $DIR/$tfile || error
158         rm $DIR/$tfile
159         $CHECKSTAT -a $DIR/$tfile || error
160 }
161 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
162
163 test_0b() {
164         chmod 0755 $DIR || error
165         $CHECKSTAT -p 0755 $DIR || error
166 }
167 run_test 0b "chmod 0755 $DIR ============================="
168
169 test_1a() {
170         mkdir $DIR/d1
171         mkdir $DIR/d1/d2
172         mkdir $DIR/d1/d2 && error "we expect EEXIST, but not returned"
173         $CHECKSTAT -t dir $DIR/d1/d2 || error
174 }
175 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
176
177 test_1b() {
178         rmdir $DIR/d1/d2
179         rmdir $DIR/d1
180         $CHECKSTAT -a $DIR/d1 || error
181 }
182 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
183
184 test_2a() {
185         mkdir $DIR/d2
186         touch $DIR/d2/f
187         $CHECKSTAT -t file $DIR/d2/f || error
188 }
189 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
190
191 test_2b() {
192         rm -r $DIR/d2
193         $CHECKSTAT -a $DIR/d2 || error
194 }
195 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
196
197 test_3a() {
198         mkdir $DIR/d3
199         $CHECKSTAT -t dir $DIR/d3 || error
200 }
201 run_test 3a "mkdir .../d3 ======================================"
202
203 test_3b() {
204         if [ ! -d $DIR/d3 ]; then
205                 mkdir $DIR/d3
206         fi
207         touch $DIR/d3/f
208         $CHECKSTAT -t file $DIR/d3/f || error
209 }
210 run_test 3b "touch .../d3/f ===================================="
211
212 test_3c() {
213         rm -r $DIR/d3
214         $CHECKSTAT -a $DIR/d3 || error
215 }
216 run_test 3c "rm -r .../d3 ======================================"
217
218 test_4a() {
219         mkdir $DIR/d4
220         $CHECKSTAT -t dir $DIR/d4 || error
221 }
222 run_test 4a "mkdir .../d4 ======================================"
223
224 test_4b() {
225         if [ ! -d $DIR/d4 ]; then
226                 mkdir $DIR/d4
227         fi
228         mkdir $DIR/d4/d2
229         $CHECKSTAT -t dir $DIR/d4/d2 || error
230 }
231 run_test 4b "mkdir .../d4/d2 ==================================="
232
233 test_5() {
234         mkdir $DIR/d5
235         mkdir $DIR/d5/d2
236         chmod 0707 $DIR/d5/d2
237         $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
238 }
239 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
240
241 test_6a() {
242         touch $DIR/f6a
243         chmod 0666 $DIR/f6a || error
244         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
245 }
246 run_test 6a "touch .../f6a; chmod .../f6a ======================"
247
248 test_6b() {
249         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
250         if [ ! -f $DIR/f6a ]; then
251                 touch $DIR/f6a
252                 chmod 0666 $DIR/f6a
253         fi
254         $RUNAS chmod 0444 $DIR/f6a && error
255         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
256 }
257 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
258
259 test_6c() {
260         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
261         touch $DIR/f6c
262         chown $RUNAS_ID $DIR/f6c || error
263         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
264 }
265 run_test 6c "touch .../f6c; chown .../f6c ======================"
266
267 test_6d() {
268         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
269         if [ ! -f $DIR/f6c ]; then
270                 touch $DIR/f6c
271                 chown $RUNAS_ID $DIR/f6c
272         fi
273         $RUNAS chown $UID $DIR/f6c && error
274         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
275 }
276 run_test 6d "$RUNAS chown .../f6c (should return error) =="
277
278 test_6e() {
279         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
280         touch $DIR/f6e
281         chgrp $RUNAS_ID $DIR/f6e || error
282         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
283 }
284 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
285
286 test_6f() {
287         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
288         if [ ! -f $DIR/f6e ]; then
289                 touch $DIR/f6e
290                 chgrp $RUNAS_ID $DIR/f6e
291         fi
292         $RUNAS chgrp $UID $DIR/f6e && error
293         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
294 }
295 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
296
297 test_6g() {
298         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
299         mkdir $DIR/d6g || error
300         chmod 777 $DIR/d6g || error
301         $RUNAS mkdir $DIR/d6g/d || error
302         chmod g+s $DIR/d6g/d || error
303         mkdir $DIR/d6g/d/subdir
304         $CHECKSTAT -g \#$RUNAS_ID $DIR/d6g/d/subdir || error
305 }
306 run_test 6g "Is new dir in sgid dir inheriting group?"
307
308 test_6h() { # bug 7331
309         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
310         touch $DIR/f6h || error "touch failed"
311         chown $RUNAS_ID:$RUNAS_ID $DIR/f6h || error "initial chown failed"
312         $RUNAS -G$RUNAS_ID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
313         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_ID $DIR/f6h || error
314 }
315 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
316
317 test_7a() {
318         mkdir $DIR/d7
319         $MCREATE $DIR/d7/f
320         chmod 0666 $DIR/d7/f
321         $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
322 }
323 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
324
325 test_7b() {
326         if [ ! -d $DIR/d7 ]; then
327                 mkdir $DIR/d7
328         fi
329         $MCREATE $DIR/d7/f2
330         echo -n foo > $DIR/d7/f2
331         [ "`cat $DIR/d7/f2`" = "foo" ] || error
332         $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
333 }
334 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
335
336 test_8() {
337         mkdir $DIR/d8
338         touch $DIR/d8/f
339         chmod 0666 $DIR/d8/f
340         $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
341 }
342 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
343
344 test_9() {
345         mkdir $DIR/d9
346         mkdir $DIR/d9/d2
347         mkdir $DIR/d9/d2/d3
348         $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
349 }
350 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
351
352 test_10() {
353         mkdir $DIR/d10
354         mkdir $DIR/d10/d2
355         touch $DIR/d10/d2/f
356         $CHECKSTAT -t file $DIR/d10/d2/f || error
357 }
358 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
359
360 test_11() {
361         mkdir $DIR/d11
362         mkdir $DIR/d11/d2
363         chmod 0666 $DIR/d11/d2
364         chmod 0705 $DIR/d11/d2
365         $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
366 }
367 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
368
369 test_12() {
370         mkdir $DIR/d12
371         touch $DIR/d12/f
372         chmod 0666 $DIR/d12/f
373         chmod 0654 $DIR/d12/f
374         $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
375 }
376 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
377
378 test_13() {
379         mkdir $DIR/d13
380         dd if=/dev/zero of=$DIR/d13/f count=10
381         >  $DIR/d13/f
382         $CHECKSTAT -t file -s 0 $DIR/d13/f || error
383 }
384 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
385
386 test_14() {
387         mkdir $DIR/d14
388         touch $DIR/d14/f
389         rm $DIR/d14/f
390         $CHECKSTAT -a $DIR/d14/f || error
391 }
392 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
393
394 test_15() {
395         mkdir $DIR/d15
396         touch $DIR/d15/f
397         mv $DIR/d15/f $DIR/d15/f2
398         $CHECKSTAT -t file $DIR/d15/f2 || error
399 }
400 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
401
402 test_16() {
403         mkdir $DIR/d16
404         touch $DIR/d16/f
405         rm -rf $DIR/d16/f
406         $CHECKSTAT -a $DIR/d16/f || error
407 }
408 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
409
410 test_17a() {
411         mkdir -p $DIR/d17
412         touch $DIR/d17/f
413         ln -s $DIR/d17/f $DIR/d17/l-exist
414         ls -l $DIR/d17
415         $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
416         $CHECKSTAT -f -t f $DIR/d17/l-exist || error
417         rm -f $DIR/d17/l-exist
418         $CHECKSTAT -a $DIR/d17/l-exist || error
419 }
420 run_test 17a "symlinks: create, remove (real) =================="
421
422 test_17b() {
423         mkdir -p $DIR/d17
424         ln -s no-such-file $DIR/d17/l-dangle
425         ls -l $DIR/d17
426         $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
427         $CHECKSTAT -fa $DIR/d17/l-dangle || error
428         rm -f $DIR/d17/l-dangle
429         $CHECKSTAT -a $DIR/d17/l-dangle || error
430 }
431 run_test 17b "symlinks: create, remove (dangling) =============="
432
433 test_17c() { # bug 3440 - don't save failed open RPC for replay
434         mkdir -p $DIR/d17
435         ln -s foo $DIR/d17/f17c
436         cat $DIR/d17/f17c && error "opened non-existent symlink" || true
437 }
438 run_test 17c "symlinks: open dangling (should return error) ===="
439
440 test_17d() {
441         mkdir -p $DIR/d17
442         ln -s foo $DIR/d17/f17d
443         touch $DIR/d17/f17d || error "creating to new symlink"
444 }
445 run_test 17d "symlinks: create dangling ========================"
446
447 test_17e() {
448         mkdir -p $DIR/$tdir
449         local foo=$DIR/$tdir/$tfile
450         ln -s $foo $foo || error "create symlink failed"
451         ls -l $foo || error "ls -l failed"
452         ls $foo && error "ls not failed" || true
453 }
454 run_test 17e "symlinks: create recursive symlink (should return error) ===="
455
456 test_17f() {
457         mkdir -p $DIR/d17f
458         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
459         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
460         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
461         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
462         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
463         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
464         ls -l  $DIR/d17f
465 }
466 run_test 17f "symlinks: long and very long symlink name ========================"
467
468 test_18() {
469         touch $DIR/f
470         ls $DIR || error
471 }
472 run_test 18 "touch .../f ; ls ... =============================="
473
474 test_19a() {
475         touch $DIR/f19
476         ls -l $DIR
477         rm $DIR/f19
478         $CHECKSTAT -a $DIR/f19 || error
479 }
480 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
481
482 test_19b() {
483         ls -l $DIR/f19 && error || true
484 }
485 run_test 19b "ls -l .../f19 (should return error) =============="
486
487 test_19c() {
488         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
489         $RUNAS touch $DIR/f19 && error || true
490 }
491 run_test 19c "$RUNAS touch .../f19 (should return error) =="
492
493 test_19d() {
494         cat $DIR/f19 && error || true
495 }
496 run_test 19d "cat .../f19 (should return error) =============="
497
498 test_20() {
499         touch $DIR/f
500         rm $DIR/f
501         log "1 done"
502         touch $DIR/f
503         rm $DIR/f
504         log "2 done"
505         touch $DIR/f
506         rm $DIR/f
507         log "3 done"
508         $CHECKSTAT -a $DIR/f || error
509 }
510 run_test 20 "touch .../f ; ls -l ... ==========================="
511
512 test_21() {
513         mkdir $DIR/d21
514         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
515         ln -s dangle $DIR/d21/link
516         echo foo >> $DIR/d21/link
517         cat $DIR/d21/dangle
518         $CHECKSTAT -t link $DIR/d21/link || error
519         $CHECKSTAT -f -t file $DIR/d21/link || error
520 }
521 run_test 21 "write to dangling link ============================"
522
523 test_22() {
524         WDIR=$DIR/$tdir
525         chown $RUNAS_ID $WDIR
526         (cd $WDIR || error "cd $WDIR failed";
527         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
528         $RUNAS tar xf -)
529         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
530         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
531         $CHECKSTAT -u \#$RUNAS_ID $WDIR/etc || error "checkstat -u failed"
532 }
533 run_test 22 "unpack tar archive as non-root user ==============="
534
535 test_23() {
536         mkdir $DIR/d23
537         $TOEXCL $DIR/d23/f23
538         $TOEXCL -e $DIR/d23/f23 || error
539 }
540 run_test 23 "O_CREAT|O_EXCL in subdir =========================="
541
542 test_24a() {
543         echo '== rename sanity =============================================='
544         echo '-- same directory rename'
545         mkdir $DIR/R1
546         touch $DIR/R1/f
547         mv $DIR/R1/f $DIR/R1/g
548         $CHECKSTAT -t file $DIR/R1/g || error
549 }
550 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
551
552 test_24b() {
553         mkdir $DIR/R2
554         touch $DIR/R2/{f,g}
555         mv $DIR/R2/f $DIR/R2/g
556         $CHECKSTAT -a $DIR/R2/f || error
557         $CHECKSTAT -t file $DIR/R2/g || error
558 }
559 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
560
561 test_24c() {
562         mkdir $DIR/R3
563         mkdir $DIR/R3/f
564         mv $DIR/R3/f $DIR/R3/g
565         $CHECKSTAT -a $DIR/R3/f || error
566         $CHECKSTAT -t dir $DIR/R3/g || error
567 }
568 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
569
570 test_24d() {
571         mkdir $DIR/R4
572         mkdir $DIR/R4/{f,g}
573         mrename $DIR/R4/f $DIR/R4/g
574         $CHECKSTAT -a $DIR/R4/f || error
575         $CHECKSTAT -t dir $DIR/R4/g || error
576 }
577 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
578
579 test_24e() {
580         echo '-- cross directory renames --' 
581         mkdir $DIR/R5{a,b}
582         touch $DIR/R5a/f
583         mv $DIR/R5a/f $DIR/R5b/g
584         $CHECKSTAT -a $DIR/R5a/f || error
585         $CHECKSTAT -t file $DIR/R5b/g || error
586 }
587 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
588
589 test_24f() {
590         mkdir $DIR/R6{a,b}
591         touch $DIR/R6a/f $DIR/R6b/g
592         mv $DIR/R6a/f $DIR/R6b/g
593         $CHECKSTAT -a $DIR/R6a/f || error
594         $CHECKSTAT -t file $DIR/R6b/g || error
595 }
596 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
597
598 test_24g() {
599         mkdir $DIR/R7{a,b}
600         mkdir $DIR/R7a/d
601         mv $DIR/R7a/d $DIR/R7b/e
602         $CHECKSTAT -a $DIR/R7a/d || error
603         $CHECKSTAT -t dir $DIR/R7b/e || error
604 }
605 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
606
607 test_24h() {
608         mkdir $DIR/R8{a,b}
609         mkdir $DIR/R8a/d $DIR/R8b/e
610         mrename $DIR/R8a/d $DIR/R8b/e
611         $CHECKSTAT -a $DIR/R8a/d || error
612         $CHECKSTAT -t dir $DIR/R8b/e || error
613 }
614 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
615
616 test_24i() {
617         echo "-- rename error cases"
618         mkdir $DIR/R9
619         mkdir $DIR/R9/a
620         touch $DIR/R9/f
621         mrename $DIR/R9/f $DIR/R9/a
622         $CHECKSTAT -t file $DIR/R9/f || error
623         $CHECKSTAT -t dir  $DIR/R9/a || error
624         $CHECKSTAT -a file $DIR/R9/a/f || error
625 }
626 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
627
628 test_24j() {
629         mkdir $DIR/R10
630         mrename $DIR/R10/f $DIR/R10/g
631         $CHECKSTAT -t dir $DIR/R10 || error
632         $CHECKSTAT -a $DIR/R10/f || error
633         $CHECKSTAT -a $DIR/R10/g || error
634 }
635 run_test 24j "source does not exist ============================" 
636
637 test_24k() {
638         mkdir $DIR/R11a $DIR/R11a/d
639         touch $DIR/R11a/f
640         mv $DIR/R11a/f $DIR/R11a/d
641         $CHECKSTAT -a $DIR/R11a/f || error
642         $CHECKSTAT -t file $DIR/R11a/d/f || error
643 }
644 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
645
646 # bug 2429 - rename foo foo foo creates invalid file
647 test_24l() {
648         f="$DIR/f24l"
649         multiop $f OcNs || error
650 }
651 run_test 24l "Renaming a file to itself ========================"
652
653 test_24m() {
654         f="$DIR/f24m"
655         multiop $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
656         # on ext3 this does not remove either the source or target files
657         # though the "expected" operation would be to remove the source
658         $CHECKSTAT -t file ${f} || error "${f} missing"
659         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
660 }
661 run_test 24m "Renaming a file to a hard link to itself ========="
662
663 test_24n() {
664     f="$DIR/f24n"
665     # this stats the old file after it was renamed, so it should fail
666     touch ${f}
667     $CHECKSTAT ${f}
668     mv ${f} ${f}.rename
669     $CHECKSTAT ${f}.rename
670     $CHECKSTAT -a ${f}
671 }
672 run_test 24n "Statting the old file after renaming (Posix rename 2)"
673
674 test_24o() {
675         check_kernel_version 37 || return 0
676         mkdir -p $DIR/d24o
677         rename_many -s random -v -n 10 $DIR/d24o
678 }
679 run_test 24o "rename of files during htree split ==============="
680
681 test_24p() {
682         mkdir $DIR/R12{a,b}
683         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
684         mrename $DIR/R12a $DIR/R12b
685         $CHECKSTAT -a $DIR/R12a || error
686         $CHECKSTAT -t dir $DIR/R12b || error
687         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
688         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
689 }
690 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
691
692 test_24q() {
693         mkdir $DIR/R13{a,b}
694         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
695         multiop $DIR/R13b D_c &
696         MULTIPID=$!
697         usleep 500
698
699         mrename $DIR/R13a $DIR/R13b
700         $CHECKSTAT -a $DIR/R13a || error
701         $CHECKSTAT -t dir $DIR/R13b || error
702         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
703         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
704         kill -USR1 $MULTIPID
705         wait $MULTIPID || error "multiop close failed"
706 }
707 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
708
709 test_24r() { #bug 3789
710         mkdir $DIR/R14a $DIR/R14a/b
711         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
712         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
713         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
714 }
715 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
716
717 test_24s() {
718         mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
719         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
720         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
721         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
722 }
723 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
724 test_24t() {
725         mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
726         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
727         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
728         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
729 }
730 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
731
732 test_24u() { # bug12192
733         multiop $DIR/$tfile C2w$((2048 * 1024))c || error
734         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
735 }
736 run_test 24u "create stripe file"
737
738 test_25a() {
739         echo '== symlink sanity ============================================='
740
741         mkdir $DIR/d25
742         ln -s d25 $DIR/s25
743         touch $DIR/s25/foo || error
744 }
745 run_test 25a "create file in symlinked directory ==============="
746
747 test_25b() {
748         [ ! -d $DIR/d25 ] && test_25a
749         $CHECKSTAT -t file $DIR/s25/foo || error
750 }
751 run_test 25b "lookup file in symlinked directory ==============="
752
753 test_26a() {
754         mkdir $DIR/d26
755         mkdir $DIR/d26/d26-2
756         ln -s d26/d26-2 $DIR/s26
757         touch $DIR/s26/foo || error
758 }
759 run_test 26a "multiple component symlink ======================="
760
761 test_26b() {
762         mkdir -p $DIR/d26b/d26-2
763         ln -s d26b/d26-2/foo $DIR/s26-2
764         touch $DIR/s26-2 || error
765 }
766 run_test 26b "multiple component symlink at end of lookup ======"
767
768 test_26c() {
769         mkdir $DIR/d26.2
770         touch $DIR/d26.2/foo
771         ln -s d26.2 $DIR/s26.2-1
772         ln -s s26.2-1 $DIR/s26.2-2
773         ln -s s26.2-2 $DIR/s26.2-3
774         chmod 0666 $DIR/s26.2-3/foo
775 }
776 run_test 26c "chain of symlinks ================================"
777
778 # recursive symlinks (bug 439)
779 test_26d() {
780         ln -s d26-3/foo $DIR/d26-3
781 }
782 run_test 26d "create multiple component recursive symlink ======"
783
784 test_26e() {
785         [ ! -h $DIR/d26-3 ] && test_26d
786         rm $DIR/d26-3
787 }
788 run_test 26e "unlink multiple component recursive symlink ======"
789
790 # recursive symlinks (bug 7022)
791 test_26f() {
792         mkdir $DIR/$tdir/$tfile        || error "mkdir $DIR/$tdir/$tfile failed"
793         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
794         mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
795         mkdir $tfile             || error "mkdir $tfile failed"
796         cd $tfile                || error "cd $tfile failed"
797         ln -s .. dotdot          || error "ln dotdot failed"
798         ln -s dotdot/lndir lndir || error "ln lndir failed"
799         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
800         output=`ls $tfile/$tfile/lndir/bar1`
801         [ "$output" = bar1 ] && error "unexpected output"
802         rm -r $tfile             || error "rm $tfile failed"
803         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
804 }
805 run_test 26f "rm -r of a directory which has recursive symlink ="
806
807 test_27a() {
808         echo '== stripe sanity =============================================='
809         mkdir -p $DIR/d27 || error "mkdir failed"
810         $SETSTRIPE $DIR/d27/f0 -c 1 || error "lstripe failed"
811         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
812         pass
813         log "== test_27a: write to one stripe file ========================="
814         cp /etc/hosts $DIR/d27/f0 || error
815 }
816 run_test 27a "one stripe file =================================="
817
818 test_27c() {
819         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
820         mkdir -p $DIR/d27
821         $SETSTRIPE $DIR/d27/f01 -c 2 || error "lstripe failed"
822         [ `$GETSTRIPE $DIR/d27/f01 | grep -A 10 obdidx | wc -l` -eq 4 ] ||
823                 error "two-stripe file doesn't have two stripes"
824         pass
825         log "== test_27c: write to two stripe file file f01 ================"
826         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
827 }
828 run_test 27c "create two stripe file f01 ======================="
829
830 test_27d() {
831         mkdir -p $DIR/d27
832         $SETSTRIPE $DIR/d27/fdef 0 -1 0 || error "lstripe failed"
833         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
834         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
835 }
836 run_test 27d "create file with default settings ================"
837
838 test_27e() {
839         mkdir -p $DIR/d27
840         $SETSTRIPE $DIR/d27/f12 -c 2 || error "lstripe failed"
841         $SETSTRIPE $DIR/d27/f12 -c 2 && error "lstripe succeeded twice"
842         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
843 }
844 run_test 27e "lstripe existing file (should return error) ======"
845
846 test_27f() {
847         mkdir -p $DIR/d27
848         $SETSTRIPE $DIR/d27/fbad -s 100 -i 0 -c 1 && error "lstripe failed"
849         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
850         $GETSTRIPE $DIR/d27/fbad || error "lfs getstripe failed"
851 }
852 run_test 27f "lstripe with bad stripe size (should return error)"
853
854 test_27g() {
855         mkdir -p $DIR/d27
856         $MCREATE $DIR/d27/fnone || error "mcreate failed"
857         pass
858         log "== test 27h: lfs getstripe with no objects ===================="
859         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" || error "has object"
860         pass
861         log "== test 27i: lfs getstripe with some objects =================="
862         touch $DIR/d27/fsome || error "touch failed"
863         $GETSTRIPE $DIR/d27/fsome | grep obdidx || error "missing objects"
864 }
865 run_test 27g "test lfs getstripe ==========================================="
866
867 test_27j() {
868         mkdir -p $DIR/d27
869         $SETSTRIPE $DIR/d27/f27j -i $OSTCOUNT && error "lstripe failed"||true
870 }
871 run_test 27j "lstripe with bad stripe offset (should return error)"
872
873 test_27k() { # bug 2844
874         mkdir -p $DIR/d27
875         FILE=$DIR/d27/f27k
876         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
877         [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
878         $SETSTRIPE $FILE -s 67108864 || error "lstripe failed"
879         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
880         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
881         dd if=/dev/zero of=$FILE bs=4k count=1
882         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
883         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
884 }
885 run_test 27k "limit i_blksize for broken user apps ============="
886
887 test_27l() {
888         mkdir -p $DIR/d27
889         mcreate $DIR/f27l || error "creating file"
890         $RUNAS $SETSTRIPE $DIR/f27l -c 1 && \
891                 error "lstripe should have failed" || true
892 }
893 run_test 27l "check setstripe permissions (should return error)"
894
895 test_27m() {
896         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs -- skipping" && return
897         if [ $ORIGFREE -gt $MAXFREE ]; then
898                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
899                 return
900         fi
901         mkdir -p $DIR/d27
902         $SETSTRIPE $DIR/d27/f27m_1 -i 0 -c 1
903         dd if=/dev/zero of=$DIR/d27/f27m_1 bs=1024 count=$MAXFREE && \
904                 error "dd should fill OST0"
905         i=2
906         while $SETSTRIPE $DIR/d27/f27m_$i -i 0 -c 1 ; do
907                 i=`expr $i + 1`
908                 [ $i -gt 256 ] && break
909         done
910         i=`expr $i + 1`
911         touch $DIR/d27/f27m_$i
912         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
913                 error "OST0 was full but new created file still use it"
914         i=`expr $i + 1`
915         touch $DIR/d27/f27m_$i
916         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
917                 error "OST0 was full but new created file still use it"
918         rm -r $DIR/d27
919         sleep 15
920 }
921 run_test 27m "create file while OST0 was full =================="
922
923 # osc's keep a NOSPC stick flag that gets unset with rmdir
924 reset_enospc() {
925         [ "$1" ] && FAIL_LOC=$1 || FAIL_LOC=0
926         mkdir -p $DIR/d27/nospc
927         rmdir $DIR/d27/nospc
928         sysctl -w lustre.fail_loc=$FAIL_LOC
929 }
930
931 exhaust_precreations() {
932         OSTIDX=$1
933         OST=$(grep ${OSTIDX}": " $LPROC/lov/${LOVNAME}/target_obd | \
934             awk '{print $2}' | sed -e 's/_UUID$//')
935         # on the mdt's osc
936         OSC=$(ls $LPROC/osc | grep "${OST}-osc-MDT0000")
937         last_id=$(cat $LPROC/osc/${OSC}/prealloc_last_id)
938         next_id=$(cat $LPROC/osc/${OSC}/prealloc_next_id)
939
940         mkdir -p $DIR/d27/${OST}
941         $SETSTRIPE $DIR/d27/${OST} -i $OSTIDX -c 1
942 #define OBD_FAIL_OST_ENOSPC              0x215
943         sysctl -w lustre.fail_loc=0x215
944         echo "Creating to objid $last_id on ost $OST..."
945         createmany -o $DIR/d27/${OST}/f $next_id $((last_id - next_id + 2))
946         grep '[0-9]' $LPROC/osc/${OSC}/prealloc*
947         reset_enospc $2
948 }
949
950 exhaust_all_precreations() {
951         local i
952         for (( i=0; i < OSTCOUNT; i++ )) ; do
953                 exhaust_precreations $i 0x215
954         done
955         reset_enospc $1
956 }
957
958 test_27n() {
959         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
960         remote_mds && skip "remote MDS" && return
961
962         reset_enospc
963         rm -f $DIR/d27/f27n
964         exhaust_precreations 0 0x80000215
965
966         touch $DIR/d27/f27n || error
967
968         reset_enospc
969 }
970 run_test 27n "create file with some full OSTs =================="
971
972 test_27o() {
973         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
974         remote_mds && skip "remote MDS" && return
975
976         reset_enospc
977         rm -f $DIR/d27/f27o
978         exhaust_all_precreations 0x215
979         sleep 5
980
981         touch $DIR/d27/f27o && error "able to create $DIR/d27/f27o"
982
983         reset_enospc
984         rm -rf $DIR/d27/*
985 }
986 run_test 27o "create file with all full OSTs (should error) ===="
987
988 test_27p() {
989         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
990         remote_mds && skip "remote MDS" && return
991
992         reset_enospc
993         rm -f $DIR/d27/f27p
994
995         $MCREATE $DIR/d27/f27p || error
996         $TRUNCATE $DIR/d27/f27p 80000000 || error
997         $CHECKSTAT -s 80000000 $DIR/d27/f27p || error
998
999         exhaust_precreations 0 0x80000215
1000         echo foo >> $DIR/d27/f27p || error
1001         $CHECKSTAT -s 80000004 $DIR/d27/f27p || error
1002
1003         reset_enospc
1004 }
1005 run_test 27p "append to a truncated file with some full OSTs ==="
1006
1007 test_27q() {
1008         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1009         remote_mds && skip "remote MDS" && return
1010
1011         reset_enospc
1012         rm -f $DIR/d27/f27q
1013
1014         $MCREATE $DIR/d27/f27q || error "mcreate $DIR/d27/f27q failed"
1015         $TRUNCATE $DIR/d27/f27q 80000000 ||error "truncate $DIR/d27/f27q failed"
1016         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat failed"
1017
1018         exhaust_all_precreations 0x215
1019
1020         echo foo >> $DIR/d27/f27q && error "append succeeded"
1021         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat 2 failed"
1022
1023         reset_enospc
1024 }
1025 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1026
1027 test_27r() {
1028         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1029         remote_mds && skip "remote MDS" && return
1030
1031         reset_enospc
1032         rm -f $DIR/d27/f27r
1033         exhaust_precreations 0 0x80000215
1034
1035         $SETSTRIPE $DIR/d27/f27r -i 0 -c 2 # && error
1036
1037         reset_enospc
1038 }
1039 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1040
1041 test_27s() { # bug 10725
1042        mkdir -p $DIR/$tdir
1043        $LSTRIPE $DIR/$tdir $((2048 * 1024 * 1024)) -1 2 && \
1044                error "stripe width >= 2^32 succeeded" || true
1045 }
1046 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1047
1048 test_27t() { # bug 10864
1049         WDIR=`pwd`
1050         WLFS=`which lfs`
1051         cd $DIR
1052         touch $tfile
1053         $WLFS getstripe $tfile
1054         cd $WDIR
1055 }
1056 run_test 27t "check that utils parse path correctly"
1057
1058 test_27u() { # bug 4900
1059         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1060         remote_mds && skip "remote MDS" && return
1061
1062         #define OBD_FAIL_MDS_OSC_PRECREATE      0x13d
1063
1064         sysctl -w lustre.fail_loc=0x13d
1065         mkdir -p $DIR/d27u
1066         createmany -o $DIR/d27u/t- 1000
1067         sysctl -w lustre.fail_loc=0
1068
1069         TLOG=$DIR/$tfile.getstripe
1070         $GETSTRIPE $DIR/d27u > $TLOG 
1071         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1072         unlinkmany $DIR/d27u/t- 1000
1073         [ $OBJS -gt 0 ] && \
1074                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1075 }
1076 run_test 27u "skip object creation on OSC w/o objects =========="
1077
1078 test_27v() { # bug 4900
1079         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1080         remote_mds && skip "remote MDS" && return
1081
1082         exhaust_all_precreations
1083
1084         mkdir -p $DIR/$tdir
1085         $SETSTRIPE $DIR/$tdir -c 1         # 1 stripe / file
1086
1087         touch $DIR/$tdir/$tfile
1088         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1089         sysctl -w lustre.fail_loc=0x705
1090         START=`date +%s`
1091         for F in `seq 1 32`; do
1092                 touch $DIR/$tdir/$tfile.$F
1093         done
1094         sysctl -w lustre.fail_loc=0
1095
1096         FINISH=`date +%s`
1097         TIMEOUT=`sysctl -n lustre.timeout`
1098         [ $((FINISH - START)) -ge $((TIMEOUT / 2)) ] && \
1099                error "$FINISH - $START >= $TIMEOUT / 2"
1100
1101         reset_enospc
1102 }
1103 run_test 27v "skip object creation on slow OST ================="
1104
1105 test_27w() { # bug 10997
1106         mkdir -p $DIR/d27w || error "mkdir failed"
1107         $LSTRIPE $DIR/d27w/f0 -s 65536 || error "lstripe failed"
1108         size=`$LSTRIPEINFO $DIR/d27w/f0 | awk {'print $1'}`
1109         [ $size -ne 65536 ] && error "stripe size $size != 65536" || true
1110
1111         [ "$OSTCOUNT" -lt "2" ] && skip "skipping multiple stripe count/offset test" && return
1112         for i in `seq 1 $OSTCOUNT`; do
1113                 offset=$(($i-1))
1114                 $LSTRIPE $DIR/d27w/f$i -c $i -i $offset || error "lstripe -c $i -i $offset failed"
1115                 count=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $2'}`
1116                 index=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $3'}`
1117                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1118                 [ $index -ne $offset ] && error "stripe offset $index != $offset" || true
1119         done
1120 }
1121 run_test 27w "check lfs setstripe -c -s -i options ============="
1122
1123 test_28() {
1124         mkdir $DIR/d28
1125         $CREATETEST $DIR/d28/ct || error
1126 }
1127 run_test 28 "create/mknod/mkdir with bad file types ============"
1128
1129 test_29() {
1130         cancel_lru_locks mdc
1131         mkdir $DIR/d29
1132         touch $DIR/d29/foo
1133         log 'first d29'
1134         ls -l $DIR/d29
1135         MDCDIR=${MDCDIR:-$LPROC/ldlm/namespaces/*-mdc-*}
1136         LOCKCOUNTORIG=`cat $MDCDIR/lock_count`
1137         LOCKUNUSEDCOUNTORIG=`cat $MDCDIR/lock_unused_count`
1138         [ -z $"LOCKCOUNTORIG" ] && echo "No mdc lock count" && return 1
1139         log 'second d29'
1140         ls -l $DIR/d29
1141         log 'done'
1142         LOCKCOUNTCURRENT=`cat $MDCDIR/lock_count`
1143         LOCKUNUSEDCOUNTCURRENT=`cat $MDCDIR/lock_unused_count`
1144         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1145                 echo > $LPROC/ldlm/dump_namespaces
1146                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1147                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1148                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1149                 return 2
1150         fi
1151         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1152                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1153                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1154                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1155                 return 3
1156         fi
1157 }
1158 run_test 29 "IT_GETATTR regression  ============================"
1159
1160 test_30() {
1161         cp `which ls` $DIR || cp /bin/ls $DIR
1162         $DIR/ls /
1163         rm $DIR/ls
1164 }
1165 run_test 30 "run binary from Lustre (execve) ==================="
1166
1167 test_31a() {
1168         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1169         $CHECKSTAT -a $DIR/f31 || error
1170 }
1171 run_test 31a "open-unlink file =================================="
1172
1173 test_31b() {
1174         touch $DIR/f31 || error
1175         ln $DIR/f31 $DIR/f31b || error
1176         multiop $DIR/f31b Ouc || error
1177         $CHECKSTAT -t file $DIR/f31 || error
1178 }
1179 run_test 31b "unlink file with multiple links while open ======="
1180
1181 test_31c() {
1182         touch $DIR/f31 || error
1183         ln $DIR/f31 $DIR/f31c || error
1184         multiop $DIR/f31 O_uc &
1185         MULTIPID=$!
1186         multiop $DIR/f31c Ouc
1187         usleep 500
1188         kill -USR1 $MULTIPID
1189         wait $MULTIPID
1190 }
1191 run_test 31c "open-unlink file with multiple links ============="
1192
1193 test_31d() {
1194         opendirunlink $DIR/d31d $DIR/d31d || error
1195         $CHECKSTAT -a $DIR/d31d || error
1196 }
1197 run_test 31d "remove of open directory ========================="
1198
1199 test_31e() { # bug 2904
1200         check_kernel_version 34 || return 0
1201         openfilleddirunlink $DIR/d31e || error
1202 }
1203 run_test 31e "remove of open non-empty directory ==============="
1204
1205 test_31f() { # bug 4554
1206         set -vx
1207         mkdir $DIR/d31f
1208         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1209         cp /etc/hosts $DIR/d31f
1210         ls -l $DIR/d31f
1211         $GETSTRIPE $DIR/d31f/hosts
1212         multiop $DIR/d31f D_c &
1213         MULTIPID=$!
1214
1215         sleep 1
1216
1217         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1218         mkdir $DIR/d31f
1219         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1220         cp /etc/hosts $DIR/d31f
1221         ls -l $DIR/d31f
1222          $DIR/d31f/hosts
1223         multiop $DIR/d31f D_c &
1224         MULTIPID2=$!
1225
1226         sleep 6
1227
1228         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1229         wait $MULTIPID || error "first opendir $MULTIPID failed"
1230
1231         sleep 6
1232
1233         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1234         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1235         set +vx
1236 }
1237 run_test 31f "remove of open directory with open-unlink file ==="
1238
1239 test_31g() {
1240         echo "-- cross directory link --"
1241         mkdir $DIR/d31g{a,b}
1242         touch $DIR/d31ga/f
1243         ln $DIR/d31ga/f $DIR/d31gb/g
1244         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1245         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1246         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1247         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1248 }
1249 run_test 31g "cross directory link==============="
1250
1251 test_31h() {
1252         echo "-- cross directory link --"
1253         mkdir $DIR/d31h
1254         mkdir $DIR/d31h/dir
1255         touch $DIR/d31h/f
1256         ln $DIR/d31h/f $DIR/d31h/dir/g
1257         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1258         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1259         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1260         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1261 }
1262 run_test 31h "cross directory link under child==============="
1263
1264 test_31i() {
1265         echo "-- cross directory link --"
1266         mkdir $DIR/d31i
1267         mkdir $DIR/d31i/dir
1268         touch $DIR/d31i/dir/f
1269         ln $DIR/d31i/dir/f $DIR/d31i/g
1270         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1271         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1272         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1273         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1274 }
1275 run_test 31i "cross directory link under parent==============="
1276
1277
1278 test_31j() {
1279         mkdir $DIR/d31j
1280         mkdir $DIR/d31j/dir1
1281         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1282         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1283         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1284         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1285         return 0
1286 }
1287 run_test 31j "link for directory==============="
1288
1289
1290 test_31k() {
1291         mkdir $DIR/d31k
1292         touch $DIR/d31k/s
1293         touch $DIR/d31k/exist
1294         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1295         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1296         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1297         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1298         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1299         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1300         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1301         return 0
1302 }
1303 run_test 31k "link to file: the same, non-existing, dir==============="
1304
1305 test_31m() {
1306         mkdir $DIR/d31m
1307         touch $DIR/d31m/s
1308         mkdir $DIR/d31m2
1309         touch $DIR/d31m2/exist
1310         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1311         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1312         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1313         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1314         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1315         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1316         return 0
1317 }
1318 run_test 31m "link to file: the same, non-existing, dir==============="
1319
1320 test_32a() {
1321         echo "== more mountpoints and symlinks ================="
1322         [ -e $DIR/d32a ] && rm -fr $DIR/d32a
1323         mkdir -p $DIR/d32a/ext2-mountpoint 
1324         mount -t ext2 -o loop $EXT2_DEV $DIR/d32a/ext2-mountpoint || error
1325         $CHECKSTAT -t dir $DIR/d32a/ext2-mountpoint/.. || error  
1326         $UMOUNT $DIR/d32a/ext2-mountpoint || error
1327 }
1328 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1329
1330 test_32b() {
1331         [ -e $DIR/d32b ] && rm -fr $DIR/d32b
1332         mkdir -p $DIR/d32b/ext2-mountpoint 
1333         mount -t ext2 -o loop $EXT2_DEV $DIR/d32b/ext2-mountpoint || error
1334         ls -al $DIR/d32b/ext2-mountpoint/.. || error
1335         $UMOUNT $DIR/d32b/ext2-mountpoint || error
1336 }
1337 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1338  
1339 test_32c() {
1340         [ -e $DIR/d32c ] && rm -fr $DIR/d32c
1341         mkdir -p $DIR/d32c/ext2-mountpoint 
1342         mount -t ext2 -o loop $EXT2_DEV $DIR/d32c/ext2-mountpoint || error
1343         mkdir -p $DIR/d32c/d2/test_dir    
1344         $CHECKSTAT -t dir $DIR/d32c/ext2-mountpoint/../d2/test_dir || error
1345         $UMOUNT $DIR/d32c/ext2-mountpoint || error
1346 }
1347 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1348
1349 test_32d() {
1350         [ -e $DIR/d32d ] && rm -fr $DIR/d32d
1351         mkdir -p $DIR/d32d/ext2-mountpoint 
1352         mount -t ext2 -o loop $EXT2_DEV $DIR/d32d/ext2-mountpoint || error
1353         mkdir -p $DIR/d32d/d2/test_dir    
1354         ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
1355         $UMOUNT $DIR/d32d/ext2-mountpoint || error
1356 }
1357 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1358
1359 test_32e() {
1360         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1361         mkdir -p $DIR/d32e/tmp    
1362         TMP_DIR=$DIR/d32e/tmp       
1363         ln -s $DIR/d32e $TMP_DIR/symlink11 
1364         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1365         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1366         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1367 }
1368 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1369
1370 test_32f() {
1371         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1372         mkdir -p $DIR/d32f/tmp    
1373         TMP_DIR=$DIR/d32f/tmp       
1374         ln -s $DIR/d32f $TMP_DIR/symlink11 
1375         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1376         ls $DIR/d32f/tmp/symlink11  || error
1377         ls $DIR/d32f/symlink01 || error
1378 }
1379 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1380
1381 test_32g() {
1382         TMP_DIR=$DIR/$tdir/tmp       
1383         mkdir -p $TMP_DIR $DIR/${tdir}2
1384         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12 
1385         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1386         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1387         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1388         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1389         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1390 }
1391 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1392
1393 test_32h() {
1394         rm -fr $DIR/$tdir $DIR/${tdir}2
1395         TMP_DIR=$DIR/$tdir/tmp       
1396         mkdir -p $TMP_DIR $DIR/${tdir}2 
1397         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12 
1398         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1399         ls $TMP_DIR/symlink12 || error
1400         ls $DIR/$tdir/symlink02  || error
1401 }
1402 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1403
1404 test_32i() {
1405         [ -e $DIR/d32i ] && rm -fr $DIR/d32i
1406         mkdir -p $DIR/d32i/ext2-mountpoint 
1407         mount -t ext2 -o loop $EXT2_DEV $DIR/d32i/ext2-mountpoint || error
1408         touch $DIR/d32i/test_file
1409         $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error  
1410         $UMOUNT $DIR/d32i/ext2-mountpoint || error
1411 }
1412 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1413
1414 test_32j() {
1415         [ -e $DIR/d32j ] && rm -fr $DIR/d32j
1416         mkdir -p $DIR/d32j/ext2-mountpoint 
1417         mount -t ext2 -o loop $EXT2_DEV $DIR/d32j/ext2-mountpoint || error
1418         touch $DIR/d32j/test_file
1419         cat $DIR/d32j/ext2-mountpoint/../test_file || error
1420         $UMOUNT $DIR/d32j/ext2-mountpoint || error
1421 }
1422 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1423
1424 test_32k() {
1425         rm -fr $DIR/d32k
1426         mkdir -p $DIR/d32k/ext2-mountpoint 
1427         mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint  
1428         mkdir -p $DIR/d32k/d2
1429         touch $DIR/d32k/d2/test_file || error
1430         $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
1431         $UMOUNT $DIR/d32k/ext2-mountpoint || error
1432 }
1433 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1434
1435 test_32l() {
1436         rm -fr $DIR/d32l
1437         mkdir -p $DIR/d32l/ext2-mountpoint 
1438         mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
1439         mkdir -p $DIR/d32l/d2
1440         touch $DIR/d32l/d2/test_file
1441         cat  $DIR/d32l/ext2-mountpoint/../d2/test_file || error
1442         $UMOUNT $DIR/d32l/ext2-mountpoint || error
1443 }
1444 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1445
1446 test_32m() {
1447         rm -fr $DIR/d32m
1448         mkdir -p $DIR/d32m/tmp    
1449         TMP_DIR=$DIR/d32m/tmp       
1450         ln -s $DIR $TMP_DIR/symlink11 
1451         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1452         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1453         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1454 }
1455 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1456
1457 test_32n() {
1458         rm -fr $DIR/d32n
1459         mkdir -p $DIR/d32n/tmp    
1460         TMP_DIR=$DIR/d32n/tmp       
1461         ln -s $DIR $TMP_DIR/symlink11 
1462         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1463         ls -l $DIR/d32n/tmp/symlink11  || error
1464         ls -l $DIR/d32n/symlink01 || error
1465 }
1466 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1467
1468 test_32o() {
1469         rm -fr $DIR/d32o $DIR/$tfile
1470         touch $DIR/$tfile 
1471         mkdir -p $DIR/d32o/tmp    
1472         TMP_DIR=$DIR/d32o/tmp       
1473         ln -s $DIR/$tfile $TMP_DIR/symlink12 
1474         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1475         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1476         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1477         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1478         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1479 }
1480 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1481
1482 test_32p() {
1483     log 32p_1
1484         rm -fr $DIR/d32p
1485     log 32p_2
1486         rm -f $DIR/$tfile
1487     log 32p_3
1488         touch $DIR/$tfile 
1489     log 32p_4
1490         mkdir -p $DIR/d32p/tmp    
1491     log 32p_5
1492         TMP_DIR=$DIR/d32p/tmp       
1493     log 32p_6
1494         ln -s $DIR/$tfile $TMP_DIR/symlink12 
1495     log 32p_7
1496         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1497     log 32p_8
1498         cat $DIR/d32p/tmp/symlink12 || error
1499     log 32p_9
1500         cat $DIR/d32p/symlink02 || error
1501     log 32p_10
1502 }
1503 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1504
1505 test_32q() {
1506         [ -e $DIR/d32q ] && rm -fr $DIR/d32q
1507         mkdir -p $DIR/d32q
1508         touch $DIR/d32q/under_the_mount
1509         mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
1510         ls $DIR/d32q/under_the_mount && error || true
1511         $UMOUNT $DIR/d32q || error
1512 }
1513 run_test 32q "stat follows mountpoints in Lustre (should return error)"
1514
1515 test_32r() {
1516         [ -e $DIR/d32r ] && rm -fr $DIR/d32r
1517         mkdir -p $DIR/d32r
1518         touch $DIR/d32r/under_the_mount
1519         mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
1520         ls $DIR/d32r | grep -q under_the_mount && error || true
1521         $UMOUNT $DIR/d32r || error
1522 }
1523 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
1524
1525 test_33() {
1526         rm -f $DIR/$tfile
1527         touch $DIR/$tfile
1528         chmod 444 $DIR/$tfile
1529         chown $RUNAS_ID $DIR/$tfile
1530         log 33_1
1531         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
1532         log 33_2
1533 }
1534 run_test 33 "write file with mode 444 (should return error) ===="
1535
1536 test_33a() {
1537         rm -fr $DIR/d33
1538         mkdir -p $DIR/d33
1539         chown $RUNAS_ID $DIR/d33
1540         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
1541         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
1542                 error "open RDWR" || true
1543 }
1544 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
1545
1546 test_33b() {
1547         rm -fr $DIR/d33
1548         mkdir -p $DIR/d33
1549         chown $RUNAS_ID $DIR/d33
1550         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
1551 }
1552 run_test 33b "test open file with malformed flags (No panic and 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 test_36g() {
1685         remote_ost && skip "remote OST" && return
1686         export FMD_MAX_AGE=`do_facet ost1 cat $LPROC/obdfilter/*/client_cache_seconds 2> /dev/null | head -n 1`
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 -eq -1 ] ; 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         cp -aL /dev/console $f
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 setup_56_special() {
2453         LOCAL_NUMFILES=$1
2454         LOCAL_NUMDIRS=$2
2455         TDIR=$DIR/${tdir}g
2456         setup_56 $1 $2
2457         if [ ! -e "$TDIR/loop1b" ] ; then
2458                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2459                         mknod $TDIR/loop${i}b b 7 $i
2460                         mknod $TDIR/null${i}c c 1 3
2461                         ln -s $TDIR/file1 $TDIR/link${i}l
2462                 done
2463                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2464                         mknod $TDIR/dir$i/loop${i}b b 7 $i
2465                         mknod $TDIR/dir$i/null${i}c c 1 3
2466                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
2467                 done
2468         fi
2469 }
2470
2471 test_56g() {
2472         $LSTRIPE -d $DIR
2473
2474         setup_56 $NUMFILES $NUMDIRS
2475
2476         EXPECTED=$(($NUMDIRS + 2))
2477         # test lfs find with -name
2478         for i in `seq 1 $NUMFILES` ; do
2479                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
2480                 [ $NUMS -eq $EXPECTED ] || error \
2481                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2482         done
2483         echo "lfs find -name passed."
2484 }
2485 run_test 56g "check lfs find -name ============================="
2486
2487 test_56h() {
2488         $LSTRIPE -d $DIR
2489
2490         setup_56 $NUMFILES $NUMDIRS
2491
2492         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
2493         # test lfs find with ! -name
2494         for i in `seq 1 $NUMFILES` ; do
2495                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
2496                 [ $NUMS -eq $EXPECTED ] || error \
2497                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2498         done
2499         echo "lfs find ! -name passed."
2500 }
2501 run_test 56h "check lfs find ! -name ============================="
2502
2503 test_56i() {
2504        tdir=${tdir}i
2505        mkdir -p $DIR/$tdir
2506        UUID=`$GETSTRIPE $DIR/$tdir | awk '/0: / { print $2 }'`
2507        OUT="`$LFIND -ost $UUID $DIR/$tdir`"
2508        [ "$OUT" ] && error "$LFIND returned directory '$OUT'" || true
2509 }
2510 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
2511
2512 test_56j() {
2513         setup_56_special $NUMFILES $NUMDIRS
2514
2515         EXPECTED=$((NUMDIRS+1))
2516         NUMS=`$LFIND -type d $DIR/${tdir}g | wc -l`
2517         [ $NUMS -eq $EXPECTED ] || \
2518                 error "lfs find -type d $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2519 }
2520 run_test 56j "check lfs find -type d ============================="
2521
2522 test_56k() {
2523         setup_56_special $NUMFILES $NUMDIRS
2524
2525         EXPECTED=$(((NUMDIRS+1) * NUMFILES))
2526         NUMS=`$LFIND -type f $DIR/${tdir}g | wc -l`
2527         [ $NUMS -eq $EXPECTED ] || \
2528                 error "lfs find -type f $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2529 }
2530 run_test 56k "check lfs find -type f ============================="
2531
2532 test_56l() {
2533         setup_56_special $NUMFILES $NUMDIRS
2534
2535         EXPECTED=$((NUMDIRS + NUMFILES))
2536         NUMS=`$LFIND -type b $DIR/${tdir}g | wc -l`
2537         [ $NUMS -eq $EXPECTED ] || \
2538                 error "lfs find -type b $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2539 }
2540 run_test 56l "check lfs find -type b ============================="
2541
2542 test_56m() {
2543         setup_56_special $NUMFILES $NUMDIRS
2544
2545         EXPECTED=$((NUMDIRS + NUMFILES))
2546         NUMS=`$LFIND -type c $DIR/${tdir}g | wc -l`
2547         [ $NUMS -eq $EXPECTED ] || \
2548                 error "lfs find -type c $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2549 }
2550 run_test 56m "check lfs find -type c ============================="
2551
2552 test_56n() {
2553         setup_56_special $NUMFILES $NUMDIRS
2554
2555         EXPECTED=$((NUMDIRS + NUMFILES))
2556         NUMS=`$LFIND -type l $DIR/${tdir}g | wc -l`
2557         [ $NUMS -eq $EXPECTED ] || \
2558                 error "lfs find -type l $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2559 }
2560 run_test 56n "check lfs find -type l ============================="
2561
2562 test_56o() {
2563         setup_56 $NUMFILES $NUMDIRS
2564         TDIR=$DIR/${tdir}g
2565
2566         utime $TDIR/file1 > /dev/null || error
2567         utime $TDIR/file2 > /dev/null || error
2568         utime $TDIR/dir1 > /dev/null || error
2569         utime $TDIR/dir2 > /dev/null || error
2570         utime $TDIR/dir1/file1 > /dev/null || error
2571
2572         EXPECTED=5
2573         NUMS=`$LFIND -mtime +1 $TDIR | wc -l`
2574         [ $NUMS -eq $EXPECTED ] || \
2575                 error "lfs find -mtime $TDIR wrong: found $NUMS, expected $EXPECTED"
2576 }
2577 run_test 56o "check lfs find -mtime for old files =========================="
2578
2579 test_57a() {
2580         # note test will not do anything if MDS is not local
2581         remote_mds && skip "remote MDS" && return
2582         local MNTDEV="$LPROC/osd/*MDT*/mntdev"
2583         DEV=$(cat $MNTDEV)
2584         [ -z "$DEV" ] && error "can't access $MNTDEV" 
2585         for DEV in `cat $MNTDEV`; do
2586                 dumpe2fs -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
2587                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
2588                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
2589                 rm $TMP/t57a.dump
2590         done
2591 }
2592 run_test 57a "verify MDS filesystem created with large inodes =="
2593
2594 test_57b() {
2595         FILECOUNT=100
2596         FILE1=$DIR/d57b/f1
2597         FILEN=$DIR/d57b/f$FILECOUNT
2598         rm -rf $DIR/d57b || error "removing $DIR/d57b"
2599         mkdir -p $DIR/d57b || error "creating $DIR/d57b"
2600         echo "mcreating $FILECOUNT files"
2601         createmany -m $DIR/d57b/f 1 $FILECOUNT || \
2602                 error "creating files in $DIR/d57b"
2603
2604         # verify that files do not have EAs yet
2605         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
2606         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
2607
2608         MDSFREE="`cat $LPROC/mds/*/kbytesfree 2> /dev/null`"
2609         MDCFREE="`cat $LPROC/mdc/*/kbytesfree | head -n 1`"
2610         echo "opening files to create objects/EAs"
2611         for FILE in `seq -f $DIR/d57b/f%g 1 $FILECOUNT`; do
2612                 $OPENFILE -f O_RDWR $FILE > /dev/null || error "opening $FILE"
2613         done
2614
2615         # verify that files have EAs now
2616         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
2617         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
2618
2619         sleep 1 # make sure we get new statfs data
2620 #       MDSFREE2="`cat $LPROC/mds/*/kbytesfree`"
2621 #       MDCFREE2="`cat $LPROC/mdc/*/kbytesfree`"
2622 #       if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
2623 #               if [ "$MDSFREE" != "$MDSFREE2" ]; then
2624 #                       error "MDC before $MDCFREE != after $MDCFREE2"
2625 #               else
2626 #                       echo "MDC before $MDCFREE != after $MDCFREE2"
2627 #                       echo "unable to confirm if MDS has large inodes"
2628 #               fi
2629 #       fi
2630         rm -rf $DIR/d57b
2631 }
2632 run_test 57b "default LOV EAs are stored inside large inodes ==="
2633
2634 test_58() {
2635     [ -z "$(which wiretest 2>/dev/null)" ] && skip "could not find wiretest" && return
2636     wiretest
2637 }
2638 run_test 58 "verify cross-platform wire constants =============="
2639
2640 test_59() {
2641         echo "touch 130 files"
2642         createmany -o $DIR/f59- 130
2643         echo "rm 130 files"
2644         unlinkmany $DIR/f59- 130
2645         sync
2646         sleep 2
2647         # wait for commitment of removal
2648 }
2649 run_test 59 "verify cancellation of llog records async ========="
2650
2651 TEST60_HEAD="test_60 run $RANDOM"
2652 test_60a() {
2653         [ ! -f run-llog.sh ] && skip "missing subtest run-llog.sh" && return
2654         log "$TEST60_HEAD - from kernel mode"
2655 #       sh run-llog.sh
2656 }
2657 run_test 60a "llog sanity tests run from kernel module =========="
2658
2659 test_60b() { # bug 6411
2660         dmesg > $DIR/$tfile
2661         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
2662                                  /llog.test/ {
2663                                          if (marker)
2664                                                  from_marker++
2665                                          from_begin++
2666                                  }
2667                                  END {
2668                                          if (marker)
2669                                                  print from_marker
2670                                          else
2671                                                  print from_begin
2672                                  }"`
2673         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
2674 }
2675 run_test 60b "limit repeated messages from CERROR/CWARN ========"
2676  
2677 test_60c() {
2678         echo "create 5000 files" 
2679         createmany -o $DIR/f60c- 5000
2680 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x13c
2681         sysctl -w lustre.fail_loc=0x8000013c
2682         unlinkmany $DIR/f60c- 5000
2683         sysctl -w lustre.fail_loc=0
2684 }
2685 run_test 60c "unlink file when mds full"
2686
2687 test_60d() {
2688         SAVEPRINTK=$(sysctl -n lnet.printk)
2689
2690         # verify "lctl mark" is even working"
2691         MESSAGE="test message ID $RANDOM $$"
2692         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
2693         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
2694
2695         sysctl -w lnet.printk=0 || error "set lnet.printk failed"
2696         sysctl -n lnet.printk | grep emerg || error "lnet.printk dropped emerg"
2697
2698         MESSAGE="new test message ID $RANDOM $$"
2699         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
2700         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
2701         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
2702
2703         sysctl -w lnet.printk="$SAVEPRINTK"
2704 }
2705 run_test 60d "test printk console message masking"
2706
2707 test_61() {
2708         f="$DIR/f61"
2709         dd if=/dev/zero of=$f bs=`page_size` count=1
2710         cancel_lru_locks osc
2711         multiop $f OSMWUc || error
2712         sync
2713 }
2714 run_test 61 "mmap() writes don't make sync hang ================"
2715
2716 # bug 2330 - insufficient obd_match error checking causes LBUG
2717 test_62() {
2718         f="$DIR/f62"
2719         echo foo > $f
2720         cancel_lru_locks osc
2721         sysctl -w lustre.fail_loc=0x405
2722         cat $f && error "cat succeeded, expect -EIO"
2723         sysctl -w lustre.fail_loc=0
2724 }
2725 run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
2726
2727 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
2728 test_63() {
2729         MAX_DIRTY_MB=`cat $LPROC/osc/*/max_dirty_mb | head -n 1`
2730         for i in $LPROC/osc/*/max_dirty_mb ; do
2731                 echo 0 > $i
2732         done
2733         for i in `seq 10` ; do
2734                 dd if=/dev/zero of=$DIR/f63 bs=8k &
2735                 sleep 5
2736                 kill $!
2737                 sleep 1
2738         done
2739
2740         for i in $LPROC/osc/*/max_dirty_mb ; do
2741                 echo $MAX_DIRTY_MB > $i
2742         done
2743         rm -f $DIR/f63 || true
2744 }
2745 run_test 63 "Verify oig_wait interruption does not crash ======="
2746
2747 # bug 2248 - async write errors didn't return to application on sync
2748 # bug 3677 - async write errors left page locked
2749 test_63b() {
2750         debugsave
2751         sysctl -w lnet.debug=-1
2752
2753         # ensure we have a grant to do async writes
2754         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
2755         rm $DIR/$tfile
2756
2757         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
2758         sysctl -w lustre.fail_loc=0x80000406
2759         multiop $DIR/$tfile Owy && \
2760                 error "sync didn't return ENOMEM"
2761         sync; sleep 2; sync     # do a real sync this time to flush page
2762         grep locked $LPROC/llite/*/dump_page_cache && \
2763                 error "locked page left in cache after async error" || true
2764         debugrestore
2765 }
2766 run_test 63b "async write errors should be returned to fsync ==="
2767
2768 test_64a () {
2769         df $DIR
2770         grep "[0-9]" $LPROC/osc/*[oO][sS][cC][_-]*/cur*
2771 }
2772 run_test 64a "verify filter grant calculations (in kernel) ====="
2773
2774 test_64b () {
2775         [ ! -f oos.sh ] && skip "missing subtest oos.sh" && return
2776         sh oos.sh $MOUNT
2777 }
2778 run_test 64b "check out-of-space detection on client ==========="
2779
2780 # bug 1414 - set/get directories' stripe info
2781 test_65a() {
2782         mkdir -p $DIR/d65
2783         touch $DIR/d65/f1
2784         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
2785 }
2786 run_test 65a "directory with no stripe info ===================="
2787
2788 test_65b() {
2789         mkdir -p $DIR/d65
2790         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2791         touch $DIR/d65/f2
2792         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
2793 }
2794 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
2795
2796 test_65c() {
2797         if [ $OSTCOUNT -gt 1 ]; then
2798                 mkdir -p $DIR/d65
2799                 $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 4)) -i 1 \
2800                         -c $(($OSTCOUNT - 1)) || error "setstripe"
2801                 touch $DIR/d65/f3
2802                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
2803         fi
2804 }
2805 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
2806
2807 test_65d() {
2808         mkdir -p $DIR/d65
2809         if [ $STRIPECOUNT -le 0 ]; then
2810                 sc=1
2811         elif [ $STRIPECOUNT -gt 160 ]; then
2812 #LOV_MAX_STRIPE_COUNT is 160
2813                 [ $OSTCOUNT -gt 160 ] && sc=160 || sc=$(($OSTCOUNT - 1))
2814         else
2815                 sc=$(($STRIPECOUNT - 1))
2816         fi
2817         $SETSTRIPE $DIR/d65 -s $STRIPESIZE -c $sc || error "setstripe"
2818         touch $DIR/d65/f4 $DIR/d65/f5
2819         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
2820 }
2821 run_test 65d "directory setstripe $STRIPESIZE -1 stripe_count =============="
2822
2823 test_65e() {
2824         mkdir -p $DIR/d65
2825
2826         $SETSTRIPE $DIR/d65 || error "setstripe"
2827         $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
2828         touch $DIR/d65/f6
2829         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
2830 }
2831 run_test 65e "directory setstripe 0 -1 0 ======================="
2832
2833 test_65f() {
2834         mkdir -p $DIR/d65f
2835         $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
2836 }
2837 run_test 65f "dir setstripe permission (should return error) ==="
2838
2839 test_65g() {
2840         mkdir -p $DIR/d65
2841         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2842         $SETSTRIPE -d $DIR/d65 || error "setstripe"
2843         $GETSTRIPE -v $DIR/d65 | grep "Default" || \
2844                 error "delete default stripe failed"
2845 }
2846 run_test 65g "directory setstripe -d ==========================="
2847
2848 test_65h() {
2849         mkdir -p $DIR/d65
2850         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2851         mkdir -p $DIR/d65/dd1
2852         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
2853           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
2854 }
2855 run_test 65h "directory stripe info inherit ===================="
2856  
2857 test_65i() { # bug6367
2858         $SETSTRIPE $MOUNT -s 65536 -c -1 
2859 }
2860 run_test 65i "set non-default striping on root directory (bug 6367)="
2861
2862 test_65j() { # bug6367
2863         sync; sleep 1
2864         # if we aren't already remounting for each test, do so for this test
2865         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
2866                 cleanup || error "failed to unmount"
2867                 setup
2868         fi
2869         $SETSTRIPE -d $MOUNT || error "setstripe failed"
2870 }
2871 run_test 65j "set default striping on root directory (bug 6367)="
2872
2873 test_65k() { # bug11679
2874         [ "$OSTCOUNT" -lt 2 ] && skip "too few OSTs" && return
2875         remote_mds_nodsh && skip "remote MDS" && return
2876
2877         echo "Check OST status: "
2878         MDS_OSCS=`do_facet mds lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
2879         for OSC in $MDS_OSCS; do
2880                 echo $OSC "is activate"
2881                 do_facet mds lctl --device %$OSC activate
2882         done
2883         do_facet client mkdir -p $DIR/$tdir
2884         for INACTIVE_OSC in $MDS_OSCS; do
2885                 echo $INACTIVE_OSC "is Deactivate:"
2886                 do_facet mds lctl --device  %$INACTIVE_OSC deactivate
2887                 for STRIPE_OSC in $MDS_OSCS; do
2888                         STRIPE_OST=`osc_to_ost $STRIPE_OSC`
2889                         STRIPE_INDEX=`do_facet mds cat $LPROC/lov/*md*/target_obd |
2890                                       grep $STRIPE_OST | awk -F: '{print $1}'`
2891                         echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1"
2892                         do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1
2893                         RC=$?
2894                         [ $RC -ne 0 ] && error "setstripe should have succeeded"
2895                 done
2896                 do_facet client rm -f $DIR/$tdir/*
2897                 echo $INACTIVE_OSC "is Activate."
2898                 do_facet mds lctl --device  %$INACTIVE_OSC activate
2899         done
2900 }
2901 run_test 65k "validate manual striping works properly with deactivated OSCs"
2902
2903 test_65l() { # bug 12836
2904         mkdir -p $DIR/$tdir/test_dir
2905         $SETSTRIPE $DIR/$tdir/test_dir -c -1
2906         $LFS find -mtime -1 $DIR/$tdir >/dev/null
2907 }
2908 run_test 65l "lfs find on -1 stripe dir ========================"
2909
2910 # bug 2543 - update blocks count on client
2911 test_66() {
2912         COUNT=${COUNT:-8}
2913         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
2914         sync; sleep 1; sync
2915         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
2916         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
2917 }
2918 run_test 66 "update inode blocks count on client ==============="
2919
2920 LLOOP=
2921 cleanup_68() {
2922         trap 0
2923         if [ ! -z "$LLOOP" ]; then
2924                 swapoff $LLOOP || error "swapoff failed"
2925                 $LCTL blockdev_detach $LLOOP || error "detach failed"
2926                 rm -f $LLOOP
2927                 unset LLOOP
2928         fi
2929         rm -f $DIR/f68
2930 }
2931
2932 meminfo() {
2933         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
2934 }
2935
2936 swap_used() {
2937         swapon -s | awk '($1 == "'$1'") { print $4 }'
2938 }
2939
2940
2941 # excercise swapping to lustre by adding a high priority swapfile entry
2942 # and then consuming memory until it is used.
2943 test_68() {
2944         [ "$UID" != 0 ] && skip "must run as root" && return
2945         grep -q obdfilter $LPROC/devices && \
2946                 skip "local OST" && return
2947
2948         grep -q llite_lloop /proc/modules
2949         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
2950
2951         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
2952                 skip "can't reliably test swap with TCP" && return
2953
2954         MEMTOTAL=`meminfo MemTotal`
2955         NR_BLOCKS=$((MEMTOTAL>>8))
2956         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
2957
2958         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
2959         dd if=/dev/zero of=$DIR/f68 bs=64k seek=$NR_BLOCKS count=1
2960         mkswap $DIR/f68
2961
2962         $LCTL blockdev_attach $DIR/f68 $LLOOP || error "attach failed"
2963
2964         trap cleanup_68 EXIT
2965
2966         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
2967
2968         echo "before: `swapon -s | grep $LLOOP`"
2969         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
2970         echo "after: `swapon -s | grep $LLOOP`"
2971         SWAPUSED=`swap_used $LLOOP`
2972
2973         cleanup_68
2974
2975         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
2976 }
2977 run_test 68 "support swapping to Lustre ========================"
2978
2979 # bug5265, obdfilter oa2dentry return -ENOENT
2980 # #define OBD_FAIL_OST_ENOENT 0x217
2981 test_69() {
2982         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] && \
2983                 skip "skipping test for remote OST" && return
2984         $GSS && skip "gss with bulk security will triger oops. re-enable this after b10091 get fixed" && return
2985
2986         f="$DIR/$tfile"
2987         touch $f
2988
2989         if ! $DIRECTIO write ${f}.2 0 1; then
2990                 skip "O_DIRECT not implemented"
2991                 return 0
2992         fi
2993
2994         sysctl -w lustre.fail_loc=0x217
2995         truncate $f 1 # vmtruncate() will ignore truncate() error.
2996         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
2997
2998         sysctl -w lustre.fail_loc=0
2999         $DIRECTIO write $f 0 2 || error "write error"
3000
3001         cancel_lru_locks osc
3002         $DIRECTIO read $f 0 1 || error "read error"
3003
3004         sysctl -w lustre.fail_loc=0x217
3005         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
3006
3007         sysctl -w lustre.fail_loc=0
3008         rm -f $f
3009 }
3010 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
3011
3012 test_71() {
3013         which dbench > /dev/null 2>&1 || skip "dbench not installed, skip this test" && return 0
3014         DBENCH_LIB=${DBENCH_LIB:-/usr/lib/dbench}
3015         PATH=${DBENCH_LIB}:${PATH}
3016         cp `which dbench` $DIR
3017
3018         TGT=$DIR/client.txt
3019         SRC=${SRC:-$DBENCH_LIB/client.txt}
3020         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
3021         SRC=$DBENCH_LIB/client_plain.txt
3022         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
3023
3024         echo "copying necessary lib to $DIR"
3025         [ -d /lib64 ] && LIB71=/lib64 || LIB71=/lib
3026         mkdir -p $DIR$LIB71 || error "can't create $DIR$LIB71"
3027         cp $LIB71/libc* $DIR$LIB71 || error "can't copy $LIB71/libc*"
3028         cp $LIB71/ld-* $DIR$LIB71 || error "can't create $LIB71/ld-*"
3029
3030         echo "chroot $DIR /dbench -c client.txt 2"
3031         chroot $DIR /dbench -c client.txt 2
3032         RC=$?
3033
3034         rm -rf $DIR/dbench $TGT $DIR$LIB71
3035
3036         return $RC
3037 }
3038 run_test 71 "Running dbench on lustre (don't segment fault) ===="
3039
3040 test_72() { # bug 5695 - Test that on 2.6 remove_suid works properly
3041         check_kernel_version 43 || return 0
3042         [ "$RUNAS_ID" = "$UID" ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
3043         # We had better clear the $DIR to get enough space for dd
3044         rm -rf $DIR/*
3045         touch $DIR/f72
3046         chmod 777 $DIR/f72
3047         chmod ug+s $DIR/f72
3048         $RUNAS -u $(($RUNAS_ID + 1)) dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
3049         # See if we are still setuid/sgid
3050         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
3051         # Now test that MDS is updated too
3052         cancel_lru_locks mdc
3053         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
3054         true
3055 }
3056 run_test 72 "Test that remove suid works properly (bug5695) ===="
3057
3058 # bug 3462 - multiple simultaneous MDC requests
3059 test_73() {
3060         mkdir $DIR/d73-1 
3061         mkdir $DIR/d73-2
3062         multiop $DIR/d73-1/f73-1 O_c &
3063         pid1=$!
3064         #give multiop a chance to open
3065         usleep 500
3066
3067         echo 0x80000129 > /proc/sys/lustre/fail_loc
3068         multiop $DIR/d73-1/f73-2 Oc &
3069         sleep 1
3070         echo 0 > /proc/sys/lustre/fail_loc
3071
3072         multiop $DIR/d73-2/f73-3 Oc &
3073         pid3=$!
3074
3075         kill -USR1 $pid1
3076         wait $pid1 || return 1
3077
3078         sleep 25
3079
3080         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
3081         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5 
3082         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6 
3083
3084         rm -rf $DIR/d73-*
3085 }
3086 run_test 73 "multiple MDC requests (should not deadlock)"
3087
3088 test_74a() { # bug 6149, 6184
3089         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
3090         #
3091         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
3092         # will spin in a tight reconnection loop
3093         touch $DIR/f74a
3094         sysctl -w lustre.fail_loc=0x8000030e
3095         # get any lock that won't be difficult - lookup works.
3096         ls $DIR/f74a
3097         sysctl -w lustre.fail_loc=0
3098         true
3099 }
3100 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
3101
3102 test_74b() { # bug 13310
3103         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
3104         #
3105         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
3106         # will spin in a tight reconnection loop
3107         sysctl -w lustre.fail_loc=0x8000030e
3108         # get a "difficult" lock
3109         touch $DIR/f74b
3110         sysctl -w lustre.fail_loc=0
3111         true
3112 }
3113 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
3114
3115 JOIN=${JOIN:-"lfs join"}
3116 F75=$DIR/f75
3117 F128k=${F75}_128k
3118 FHEAD=${F75}_head
3119 FTAIL=${F75}_tail
3120 export T75_PREP=no
3121 test75_prep() {
3122         [ $T75_PREP = "yes" ] && return
3123         echo "using F75=$F75, F128k=$F128k, FHEAD=$FHEAD, FTAIL=$FTAIL"
3124  
3125         dd if=/dev/urandom of=${F75}_128k bs=128k count=1 || error "dd failed"
3126         log "finished dd"
3127         chmod 777 ${F128k}
3128         T75_PREP=yes
3129 }
3130  
3131 test_75a() {
3132 #       skipped temporarily: we do not have join file currently
3133 #       please remove this when ready - huanghua
3134         return
3135         test75_prep
3136  
3137         cp -p ${F128k} ${FHEAD}
3138         log "finished cp to $FHEAD"
3139         cp -p ${F128k} ${FTAIL}
3140         log "finished cp to $FTAIL"
3141         cat ${F128k} ${F128k} > ${F75}_sim_sim
3142  
3143         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3144         log "finished join $FHEAD to ${F75}_sim_sim"
3145         cmp ${FHEAD} ${F75}_sim_sim || error "${FHEAD} ${F75}_sim_sim differ"
3146         log "finished cmp $FHEAD to ${F75}_sim_sim"
3147         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} still exist after join"
3148 }
3149 run_test 75a "TEST join file ===================================="
3150  
3151 test_75b() {
3152 #       skipped temporarily: we do not have join file currently
3153 #       please remove this when ready - huanghua
3154         return
3155         test75_prep
3156  
3157         cp -p ${F128k} ${FTAIL}
3158         cat ${F75}_sim_sim >> ${F75}_join_sim
3159         cat ${F128k} >> ${F75}_join_sim
3160         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3161         cmp ${FHEAD} ${F75}_join_sim || \
3162                 error "${FHEAD} ${F75}_join_sim are different"
3163         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join"
3164 }
3165 run_test 75b "TEST join file 2 =================================="
3166  
3167 test_75c() {
3168 #       skipped temporarily: we do not have join file currently
3169 #       please remove this when ready - huanghua
3170         return
3171         test75_prep
3172  
3173         cp -p ${F128k} ${FTAIL}
3174         cat ${F128k} >> ${F75}_sim_join
3175         cat ${F75}_join_sim >> ${F75}_sim_join
3176         $JOIN ${FTAIL} ${FHEAD} || error "join error"
3177         cmp ${FTAIL} ${F75}_sim_join || \
3178                 error "${FTAIL} ${F75}_sim_join are different"
3179         $CHECKSTAT -a ${FHEAD} || error "tail ${FHEAD} exist after join"
3180 }
3181 run_test 75c "TEST join file 3 =================================="
3182  
3183 test_75d() {
3184 #       skipped temporarily: we do not have join file currently
3185 #       please remove this when ready - huanghua
3186         return
3187         test75_prep
3188  
3189         cp -p ${F128k} ${FHEAD}
3190         cp -p ${F128k} ${FHEAD}_tmp
3191         cat ${F75}_sim_sim >> ${F75}_join_join
3192         cat ${F75}_sim_join >> ${F75}_join_join
3193         $JOIN ${FHEAD} ${FHEAD}_tmp || error "join ${FHEAD} ${FHEAD}_tmp error"
3194         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3195         cmp ${FHEAD} ${F75}_join_join ||error "${FHEAD} ${F75}_join_join differ"        $CHECKSTAT -a ${FHEAD}_tmp || error "${FHEAD}_tmp exist after join"
3196         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join (2)"
3197 }
3198 run_test 75d "TEST join file 4 =================================="
3199  
3200 test_75e() {
3201 #       skipped temporarily: we do not have join file currently
3202 #       please remove this when ready - huanghua
3203         return
3204         test75_prep
3205  
3206         rm -rf ${FHEAD} || "delete join file error"
3207 }
3208 run_test 75e "TEST join file 5 (remove joined file) ============="
3209  
3210 test_75f() {
3211 #       skipped temporarily: we do not have join file currently
3212 #       please remove this when ready - huanghua
3213         return
3214         test75_prep
3215  
3216         cp -p ${F128k} ${F75}_join_10_compare
3217         cp -p ${F128k} ${F75}_join_10
3218         for ((i = 0; i < 10; i++)); do
3219                 cat ${F128k} >> ${F75}_join_10_compare
3220                 cp -p ${F128k} ${FTAIL}
3221                 $JOIN ${F75}_join_10 ${FTAIL} || \
3222                         error "join ${F75}_join_10 ${FTAIL} error"
3223                 $CHECKSTAT -a ${FTAIL} || error "tail file exist after join"
3224         done
3225         cmp ${F75}_join_10 ${F75}_join_10_compare || \
3226                 error "files ${F75}_join_10 ${F75}_join_10_compare differ"
3227 }
3228 run_test 75f "TEST join file 6 (join 10 files) =================="
3229  
3230 test_75g() {
3231 #       skipped temporarily: we do not have join file currently
3232 #       please remove this when ready - huanghua
3233         return
3234         [ ! -f ${F75}_join_10 ] && echo "${F75}_join_10 missing" && return
3235         $LFS getstripe ${F75}_join_10
3236  
3237         $OPENUNLINK ${F75}_join_10 ${F75}_join_10 || error "files unlink open"
3238  
3239         ls -l $F75*
3240 }
3241 run_test 75g "TEST join file 7 (open unlink) ===================="
3242
3243 num_inodes() {
3244         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
3245 }
3246
3247 test_76() { # bug 1443
3248         DETH=$(grep deathrow /proc/kallsyms /proc/ksyms 2> /dev/null | wc -l)
3249         [ $DETH -eq 0 ] && skip "No _iget." && return 0
3250         BEFORE_INODES=`num_inodes`
3251         echo "before inodes: $BEFORE_INODES"
3252         local COUNT=1000
3253         [ "$SLOW" = "no" ] && COUNT=100
3254         for i in `seq $COUNT`; do
3255                 touch $DIR/$tfile
3256                 rm -f $DIR/$tfile
3257         done
3258         AFTER_INODES=`num_inodes`
3259         echo "after inodes: $AFTER_INODES"
3260         [ $AFTER_INODES -gt $((BEFORE_INODES + 32)) ] && \
3261                 error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
3262         true
3263 }
3264 run_test 76 "destroy duplicate inodes in client inode cache ===="
3265
3266 export ORIG_CSUM=""
3267 set_checksums()
3268 {
3269         # Note: in sptlrpc modes which enable its own bulk checksum, the
3270         # original crc32_le bulk checksum will be automatically disabled,
3271         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
3272         # will be checked by sptlrpc code against sptlrpc bulk checksum.
3273         # In this case set_checksums() will not be no-op, because sptlrpc
3274         # bulk checksum will be enabled all through the test.
3275
3276         [ "$ORIG_CSUM" ] || ORIG_CSUM=`cat $LPROC/osc/*/checksums | head -n1`
3277         for f in $LPROC/osc/*/checksums; do
3278                 echo $1 >> $f
3279         done
3280
3281         return 0
3282 }
3283
3284 F77_TMP=$TMP/f77-temp
3285 F77SZ=8
3286 setup_f77() {
3287         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
3288                 error "error writing to $F77_TMP"
3289 }
3290
3291 test_77a() { # bug 10889
3292         [ ! -f $F77_TMP ] && setup_f77
3293         set_checksums 1
3294         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
3295         set_checksums 0
3296 }
3297 run_test 77a "normal checksum read/write operation ============="
3298
3299 test_77b() { # bug 10889
3300         [ ! -f $F77_TMP ] && setup_f77
3301         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3302         sysctl -w lustre.fail_loc=0x80000409
3303         set_checksums 1
3304         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
3305                 error "dd error: $?"
3306         sysctl -w lustre.fail_loc=0
3307         set_checksums 0
3308 }
3309 run_test 77b "checksum error on client write ===================="
3310
3311 test_77c() { # bug 10889
3312         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return  
3313         cancel_lru_locks osc
3314         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3315         sysctl -w lustre.fail_loc=0x80000408
3316         set_checksums 1
3317         cmp $F77_TMP $DIR/f77b || error "file compare failed"
3318         sysctl -w lustre.fail_loc=0
3319         set_checksums 0
3320 }
3321 run_test 77c "checksum error on client read ==================="
3322
3323 test_77d() { # bug 10889
3324         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3325         sysctl -w lustre.fail_loc=0x80000409
3326         set_checksums 1
3327         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3328                 error "direct write: rc=$?"
3329         sysctl -w lustre.fail_loc=0
3330         set_checksums 0
3331 }
3332 run_test 77d "checksum error on OST direct write ==============="
3333
3334 test_77e() { # bug 10889
3335         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return  
3336         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3337         sysctl -w lustre.fail_loc=0x80000408
3338         set_checksums 1
3339         cancel_lru_locks osc
3340         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3341                 error "direct read: rc=$?"
3342         sysctl -w lustre.fail_loc=0
3343         set_checksums 0
3344 }
3345 run_test 77e "checksum error on OST direct read ================"
3346
3347 test_77f() { # bug 10889
3348         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3349         sysctl -w lustre.fail_loc=0x409
3350         set_checksums 1
3351         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
3352                 error "direct write succeeded"
3353         sysctl -w lustre.fail_loc=0
3354         set_checksums 0
3355 }
3356 run_test 77f "repeat checksum error on write (expect error) ===="
3357
3358 test_77g() { # bug 10889
3359         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] && \
3360                 skip "remote OST" && return
3361         [ ! -f $F77_TMP ] && setup_f77
3362         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
3363         sysctl -w lustre.fail_loc=0x8000021a
3364         set_checksums 1
3365         dd if=$F77_TMP of=$DIR/f77 bs=1M count=$F77SZ || \
3366                 error "write error: rc=$?"
3367         sysctl -w lustre.fail_loc=0
3368         set_checksums 0
3369 }
3370 run_test 77g "checksum error on OST write ======================"
3371
3372 test_77h() { # bug 10889
3373         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] && \
3374                 skip "remote OST" && return
3375         [ ! -f $DIR/f77 ] && skip "requires 77g - skipping" && return  
3376         cancel_lru_locks osc
3377         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
3378         sysctl -w lustre.fail_loc=0x8000021b
3379         set_checksums 1
3380         cmp $F77_TMP $DIR/f77 || error "file compare failed"
3381         sysctl -w lustre.fail_loc=0
3382         set_checksums 0
3383 }
3384 run_test 77h "checksum error on OST read ======================="
3385
3386 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
3387 rm -f $F77_TMP
3388 unset F77_TMP
3389
3390 test_78() { # bug 10901
3391         NSEQ=5
3392         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
3393         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
3394         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 2048))
3395         echo "MemTotal: $((MEMTOTAL * 2))"
3396         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
3397         [ $F78SIZE -gt 512 ] && F78SIZE=512
3398         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
3399         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
3400         echo "Smallest OST: $SMALLESTOST"
3401         [ $SMALLESTOST -lt 10240 ] && \
3402                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
3403
3404         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 5)) ] && \
3405                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 5))
3406         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
3407         echo "File size: $F78SIZE"
3408         $SETSTRIPE $DIR/$tfile -c -1 || error "setstripe failed"
3409         for i in `seq 1 $NSEQ`
3410         do
3411                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
3412                 echo directIO rdwr round $i of $NSEQ
3413                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
3414         done
3415
3416         rm -f $DIR/$tfile
3417 }
3418 run_test 78 "handle large O_DIRECT writes correctly ============"
3419
3420 test_79() { # bug 12743
3421         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] &&
3422                 skip "skipping test for remote OST" && return
3423
3424         wait_delete_completed
3425
3426         BKTOTAL=`awk 'BEGIN{total=0}; {total+=$1}; END{print total}' \
3427                  $LPROC/obdfilter/*/kbytestotal`
3428         BKFREE=`awk 'BEGIN{free=0}; {free+=$1}; END{print free}' \
3429                 $LPROC/obdfilter/*/kbytesfree`
3430         BKAVAIL=`awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}' \
3431                  $LPROC/obdfilter/*/kbytesavail`
3432         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
3433         DFTOTAL=`echo $STRING | cut -d, -f1`
3434         DFUSED=`echo $STRING  | cut -d, -f2`
3435         DFAVAIL=`echo $STRING | cut -d, -f3`
3436         DFFREE=$(($DFTOTAL - $DFUSED))
3437
3438         ALLOWANCE=$((64 * $OSTCOUNT))
3439
3440         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||  
3441            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
3442                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
3443         fi
3444         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] || 
3445            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
3446                 error "df free($DFFREE) mismatch OST free($BKFREE)"
3447         fi
3448         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] || 
3449            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
3450                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
3451         fi
3452 }
3453 run_test 79 "df report consistency check ======================="
3454
3455 # on the LLNL clusters, runas will still pick up root's $TMP settings,
3456 # which will not be writable for the runas user, and then you get a CVS
3457 # error message with a corrupt path string (CVS bug) and panic.
3458 # We're not using much space, so just stick it in /tmp, which is safe.
3459 OLDTMPDIR=$TMPDIR
3460 OLDTMP=$TMP
3461 TMPDIR=/tmp
3462 TMP=/tmp
3463 OLDHOME=$HOME
3464 [ $RUNAS_ID -ne $UID ] && HOME=/tmp
3465
3466 test_99a() {
3467         mkdir -p $DIR/d99cvsroot
3468         chown $RUNAS_ID $DIR/d99cvsroot
3469         $RUNAS cvs -d $DIR/d99cvsroot init || error
3470 }
3471 run_test 99a "cvs init ========================================="
3472
3473 test_99b() {
3474         [ ! -d $DIR/d99cvsroot ] && test_99a
3475         cd /etc/init.d
3476         # some versions of cvs import exit(1) when asked to import links or
3477         # files they can't read.  ignore those files.
3478         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
3479                         ! -perm +4 -printf '-I %f\n')
3480         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
3481                 d99reposname vtag rtag
3482 }
3483 run_test 99b "cvs import ======================================="
3484
3485 test_99c() {
3486         [ ! -d $DIR/d99cvsroot ] && test_99b
3487         cd $DIR
3488         mkdir -p $DIR/d99reposname
3489         chown $RUNAS_ID $DIR/d99reposname
3490         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
3491 }
3492 run_test 99c "cvs checkout ====================================="
3493
3494 test_99d() {
3495         [ ! -d $DIR/d99cvsroot ] && test_99c
3496         cd $DIR/d99reposname
3497         $RUNAS touch foo99
3498         $RUNAS cvs add -m 'addmsg' foo99
3499 }
3500 run_test 99d "cvs add =========================================="
3501
3502 test_99e() {
3503         [ ! -d $DIR/d99cvsroot ] && test_99c
3504         cd $DIR/d99reposname
3505         $RUNAS cvs update
3506 }
3507 run_test 99e "cvs update ======================================="
3508
3509 test_99f() {
3510         [ ! -d $DIR/d99cvsroot ] && test_99d
3511         cd $DIR/d99reposname
3512         $RUNAS cvs commit -m 'nomsg' foo99
3513 }
3514 run_test 99f "cvs commit ======================================="
3515
3516 test_100() {
3517         netstat -tna | while read PROT SND RCV LOCAL REMOTE STAT; do
3518                 [ "$PROT" != "tcp" ] && continue
3519                 RPORT=`echo $REMOTE | cut -d: -f2`
3520                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
3521                 LPORT=`echo $LOCAL | cut -d: -f2`
3522                 if [ $LPORT -ge 1024 ]; then
3523                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
3524                         netstat -tna
3525                         error "local: $LPORT > 1024, remote: $RPORT"
3526                 fi
3527         done
3528         true
3529 }
3530 run_test 100 "check local port using privileged port ==========="
3531
3532 function get_named_value()
3533 {
3534     local tag
3535
3536     tag=$1
3537     while read ;do
3538         line=$REPLY
3539         case $line in
3540         $tag*)
3541             echo $line | sed "s/^$tag//"
3542             break
3543             ;;
3544         esac
3545     done
3546 }
3547
3548 export CACHE_MAX=`cat $LPROC/llite/*/max_cached_mb | head -n 1`
3549 cleanup_101() {
3550         for s in $LPROC/llite/*/max_cached_mb; do
3551                 echo $CACHE_MAX > $s
3552         done
3553         trap 0
3554 }
3555
3556 test_101() {
3557         local s
3558         local discard
3559         local nreads=10000
3560         [ "$CPU" = "UML" ] && nreads=1000
3561         local cache_limit=32
3562
3563         for s in $LPROC/osc/*-osc*/rpc_stats; do
3564                 echo 0 > $s
3565         done
3566         trap cleanup_101 EXIT
3567         for s in $LPROC/llite/*; do
3568                 echo 0 > $s/read_ahead_stats
3569                 echo $cache_limit > $s/max_cached_mb
3570         done
3571
3572         #
3573         # randomly read 10000 of 64K chunks from file 3x 32MB in size
3574         #
3575         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
3576         $RANDOM_READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
3577
3578         discard=0
3579         for s in $LPROC/llite/*; do
3580                 discard=$(($discard + $(cat $s/read_ahead_stats | get_named_value 'read but discarded')))
3581         done
3582         cleanup_101
3583
3584         if [ $(($discard * 10)) -gt $nreads ] ;then
3585                 for s in $LPROC/osc/*-osc*/rpc_stats; do
3586                         echo $s; cat $s
3587                 done
3588                 for s in $LPROC/llite/*/read_ahead_stats; do
3589                         echo $s; cat $s
3590                 done
3591                 error "too many ($discard) discarded pages" 
3592         fi
3593         rm -f $DIR/$tfile || true
3594 }
3595 run_test 101 "check read-ahead for random reads ================"
3596
3597 export SETUP_TEST102=no
3598 setup_test102() {
3599         [ "$SETUP_TEST102" = "yes" ] && return
3600         mkdir -p $DIR/$tdir
3601         STRIPE_SIZE=65536
3602         STRIPE_COUNT=4 
3603         STRIPE_OFFSET=2
3604
3605         trap cleanup_test102 EXIT
3606         cd $DIR
3607         $SETSTRIPE $tdir -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT
3608         cd $DIR/$tdir 
3609         for num in 1 2 3 4
3610         do
3611                 for count in 1 2 3 4
3612                 do
3613                         for offset in 0 1 2 3 
3614                         do
3615                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
3616                                 local file=file"$num-$offset-$count"
3617                                 $SETSTRIPE $file -s $stripe_size -i $offset -c $count
3618                         done
3619                 done
3620         done
3621
3622         cd $DIR
3623         star -c  f=$TMP/f102.tar $tdir 
3624         SETUP_TEST102=yes
3625 }
3626
3627 cleanup_test102() {
3628         [ "$SETUP_TEST102" = "yes" ] || return
3629         trap 0
3630         rm -f $TMP/f102.tar
3631         rm -rf $DIR/$tdir
3632         SETUP_TEST102=no
3633 }
3634
3635 test_102a() {
3636         local testfile=$DIR/xattr_testfile
3637
3638         rm -f $testfile
3639         touch $testfile
3640
3641         [ "$UID" != 0 ] && skip "must run as root" && return
3642         [ -z "`grep xattr $LPROC/mdc/*-mdc-*/connect_flags`" ] && skip "must have user_xattr" && return
3643
3644         [ -z "$(which setfattr 2>/dev/null)" ] && skip "could not find setfattr" && return
3645
3646         echo "set/get xattr..."
3647         setfattr -n trusted.name1 -v value1 $testfile || error
3648         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
3649         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
3650  
3651         setfattr -n user.author1 -v author1 $testfile || error
3652         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
3653         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
3654
3655         echo "listxattr..."
3656         setfattr -n trusted.name2 -v value2 $testfile || error
3657         setfattr -n trusted.name3 -v value3 $testfile || error
3658         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3659         grep "trusted.name" | wc -l` -eq 3 ] || error
3660
3661  
3662         setfattr -n user.author2 -v author2 $testfile || error
3663         setfattr -n user.author3 -v author3 $testfile || error
3664         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
3665         grep "user" | wc -l` -eq 3 ] || error
3666
3667         echo "remove xattr..."
3668         setfattr -x trusted.name1 $testfile || error
3669         getfattr -d -m trusted $testfile 2> /dev/null | \
3670         grep "trusted.name1" && error || true
3671
3672         setfattr -x user.author1 $testfile || error
3673         getfattr -d -m user $testfile 2> /dev/null | \
3674         grep "user.author1" && error || true
3675
3676         # b10667: setting lustre special xattr be silently discarded
3677         echo "set lustre special xattr ..."
3678         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
3679
3680         rm -f $testfile
3681 }
3682 run_test 102a "user xattr test =================================="
3683
3684 test_102b() {
3685         # b10930: get/set/list trusted.lov xattr
3686         echo "get/set/list trusted.lov xattr ..."
3687         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
3688         local testfile=$DIR/$tfile
3689         $SETSTRIPE $testfile -s 65536 -i 1 -c 2
3690         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3691         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
3692
3693         local testfile2=${testfile}2
3694         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3695                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
3696         
3697         $MCREATE $testfile2
3698         setfattr -n trusted.lov -v $value $testfile2    
3699         local tmp_file=${testfile}3
3700         $GETSTRIPE -v $testfile2 > $tmp_file
3701         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3702         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3703         [ "$stripe_size" -eq 65536 ] || error "stripe size $stripe_size != 65536"
3704         [ "$stripe_count" -eq 2 ] || error "stripe count $stripe_count != 2"
3705 }
3706 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
3707
3708 test_102c() {
3709         # b10930: get/set/list lustre.lov xattr
3710         echo "get/set/list lustre.lov xattr ..."
3711         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
3712         mkdir -p $DIR/$tdir
3713         chown $RUNAS_ID $DIR/$tdir
3714         local testfile=$DIR/$tdir/$tfile
3715         $RUNAS $SETSTRIPE $testfile -s 65536 -i 1 -c 2
3716         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
3717         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
3718
3719         local testfile2=${testfile}2
3720         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
3721                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
3722         
3723         $RUNAS $MCREATE $testfile2
3724         $RUNAS setfattr -n lustre.lov -v $value $testfile2      
3725         local tmp_file=${testfile}3
3726         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
3727         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3728         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3729         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
3730         [ $stripe_count -eq 2 ] || error "stripe count $stripe_count != 2"
3731 }
3732 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
3733
3734 get_stripe_info() {
3735         stripe_size=0
3736         stripe_count=0
3737         stripe_offset=0
3738         local lines=`sed -n '/obdidx/=' $1`
3739         stripe_size=`awk '{if($1~/size/) print $2}' $1`
3740         stripe_count=`awk '{if($1~/count/) print $2}' $1`
3741         lines=`expr $lines + 1`
3742         stripe_offset=`sed -n ${lines}p $1 |awk '{print $1}'`
3743 }
3744
3745 compare_stripe_info1() {
3746         for num in 1 2 3 4
3747         do
3748                 for count in 1 2 3 4
3749                 do
3750                         for offset in 0 1 2 3 
3751                         do
3752                                 local size=`expr $STRIPE_SIZE \* $num`
3753                                 local file=file"$num-$offset-$count"
3754                                 local tmp_file=out
3755                                 $GETSTRIPE -v $file > $tmp_file 
3756                                 get_stripe_info  $tmp_file
3757                                 if test $stripe_size -ne $size
3758                                 then
3759                                         error "$file: different stripe size" && return
3760                                 fi
3761                                 if test $stripe_count -ne $count
3762                                 then
3763                                         error "$file: different stripe count" && return
3764                                 fi
3765                                 if test $stripe_offset -ne 0
3766                                 then
3767                                         error "$file: different stripe offset" && return
3768                                 fi
3769                                 rm -f $tmp_file
3770                         done
3771                 done
3772         done
3773 }
3774
3775 compare_stripe_info2() {
3776         for num in 1 2 3 4
3777         do
3778                 for count in 1 2 3 4
3779                 do
3780                         for offset in 0 1 2 3 
3781                         do
3782                                 local size=`expr $STRIPE_SIZE \* $num`
3783                                 local file=file"$num-$offset-$count"
3784                                 local tmp_file=out
3785                                 $GETSTRIPE -v $file > $tmp_file
3786                                 get_stripe_info  $tmp_file
3787                                 if test $stripe_size -ne $size
3788                                 then
3789                                         error "$file: different stripe size" && return  
3790                                 fi
3791                                 if test $stripe_count -ne $count
3792                                 then
3793                                         error "$file: different stripe count" && return
3794                                 fi
3795                                 if test $stripe_offset -ne $offset
3796                                 then
3797                                         error "$file: different stripe offset" && return
3798                                 fi
3799                                 rm -f $tmp_file
3800                         done
3801                 done
3802         done
3803 }
3804
3805 test_102d() {
3806         # b10930: star test for trusted.lov xattr
3807         star --xhelp 2>&1 | grep -q nolustre  
3808         if [ $? -ne 0 ]
3809         then
3810                 skip "being skipped because a lustre-aware star is not installed." && return
3811         fi
3812         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3813         setup_test102
3814         mkdir -p $DIR/d102d
3815         star -x  f=$TMP/f102.tar -C $DIR/d102d
3816         cd $DIR/d102d/$tdir
3817         compare_stripe_info1
3818
3819 }
3820 run_test 102d "star restore stripe info from tarfile,not keep osts ==========="
3821
3822 test_102e() {
3823         # b10930: star test for trusted.lov xattr
3824         star --xhelp 2>&1 | grep -q nolustre  
3825         [ $? -ne 0 ] && skip "lustre-aware star is not installed" && return
3826         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3827         setup_test102
3828         mkdir -p $DIR/d102e
3829         star -x  -preserve-osts f=$TMP/f102.tar -C $DIR/d102e
3830         cd $DIR/d102e/$tdir
3831         compare_stripe_info2
3832 }
3833 run_test 102e "star restore stripe info from tarfile, keep osts ==========="
3834
3835 test_102f() {
3836         # b10930: star test for trusted.lov xattr
3837         star --xhelp 2>&1 | grep -q nolustre  
3838         [ $? -ne 0 ] && skip "lustre-aware star is not installed" && return
3839         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3840         setup_test102
3841         mkdir -p $DIR/d102f
3842         cd $DIR
3843         star -copy  $tdir $DIR/d102f
3844         cd $DIR/d102f/$tdir
3845         compare_stripe_info1
3846 }
3847 run_test 102f "star copy files, not keep osts ==========="
3848
3849 test_102g() {
3850         # b10930: star test for trusted.lov xattr
3851         star --xhelp 2>&1 | grep -q nolustre  
3852         [ $? -ne 0 ] && skip "lustre-aware star is not installed" && return
3853         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3854         setup_test102
3855         mkdir -p $DIR/d102g
3856         cd $DIR
3857         star -copy -preserve-osts $tdir $DIR/d102g
3858         cd $DIR/d102g/$tdir
3859         compare_stripe_info2
3860         cleanup_test102
3861 }
3862 run_test 102g "star copy files, keep osts ==========="
3863
3864 run_acl_subtest()
3865 {
3866     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
3867     return $?
3868 }
3869
3870 test_103 () {
3871     [ "$UID" != 0 ] && skip "must run as root" && return
3872     [ -z "$(grep acl $LPROC/mdc/*-mdc-*/connect_flags)" ] && skip "must have acl enabled" && return
3873     [ -z "$(which setfacl 2>/dev/null)" ] && skip "could not find setfacl" && return
3874     $GSS && skip "could not run under gss" && return
3875
3876     declare -a identity_old
3877
3878     for num in `seq $MDSCOUNT`; do
3879         switch_identity $num true || identity_old[$num]=$?
3880     done
3881
3882     SAVE_UMASK=`umask`
3883     umask 0022
3884     cd $DIR
3885
3886     echo "performing cp ..."
3887     run_acl_subtest cp || error
3888     echo "performing getfacl-noacl..."
3889     run_acl_subtest getfacl-noacl || error
3890     echo "performing misc..."
3891     run_acl_subtest misc || error
3892     echo "performing permissions..."
3893     run_acl_subtest permissions || error
3894     echo "performing setfacl..."
3895     run_acl_subtest setfacl || error
3896
3897     # inheritance test got from HP
3898     echo "performing inheritance..."
3899     cp $LUSTRE/tests/acl/make-tree . || error
3900     chmod +x make-tree || error
3901     run_acl_subtest inheritance || error
3902     rm -f make-tree
3903
3904     cd $SAVE_PWD
3905     umask $SAVE_UMASK
3906
3907     for num in `seq $MDSCOUNT`; do
3908         if [ "${identity_old[$num]}" = 1 ]; then
3909             switch_identity $num false || identity_old[$num]=$?
3910         fi
3911     done
3912 }
3913 run_test 103 "acl test ========================================="
3914
3915 test_104() {
3916         touch $DIR/$tfile
3917         lfs df || error "lfs df failed"
3918         lfs df -ih || error "lfs df -ih failed"
3919         lfs df -h $DIR || error "lfs df -h $DIR failed"
3920         lfs df -i $DIR || error "lfs df -i $DIR failed"
3921         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
3922         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
3923         
3924         OSC=`awk '/-osc-/ {print $4}' $LPROC/devices | head -n 1`
3925         lctl --device %$OSC deactivate
3926         lfs df || error "lfs df with deactivated OSC failed"
3927         lctl --device %$OSC recover
3928         lfs df || error "lfs df with reactivated OSC failed"
3929 }
3930 run_test 104 "lfs df [-ih] [path] test ========================="
3931
3932 test_105a() {
3933         # doesn't work on 2.4 kernels
3934         touch $DIR/$tfile
3935         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3936         then
3937                 flocks_test on -f $DIR/$tfile || error "fail flock on"
3938         else
3939                 flocks_test off -f $DIR/$tfile || error "fail flock off"
3940         fi
3941 }
3942 run_test 105a "flock when mounted without -o flock test ========"
3943
3944 test_105b() {
3945         touch $DIR/$tfile
3946         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3947         then
3948                 flocks_test on -c $DIR/$tfile || error "fail flock on"
3949         else
3950                 flocks_test off -c $DIR/$tfile || error "fail flock off"
3951         fi
3952 }
3953 run_test 105b "fcntl when mounted without -o flock test ========"
3954
3955 test_105c() {
3956         touch $DIR/$tfile
3957         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3958         then
3959                 flocks_test on -l $DIR/$tfile || error "fail flock on"
3960         else
3961                 flocks_test off -l $DIR/$tfile || error "fail flock off"
3962         fi
3963 }
3964 run_test 105c "lockf when mounted without -o flock test ========"
3965
3966 test_106() { #bug 10921
3967         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
3968         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
3969 }
3970 run_test 106 "attempt exec of dir followed by chown of that dir"
3971
3972 test_107() {
3973         CDIR=`pwd`
3974         cd $DIR
3975         ulimit -c unlimited
3976         sleep 60 &
3977         SLEEPPID=$!
3978
3979         file=`cat /proc/sys/kernel/core_pattern`
3980         core_pid=`cat /proc/sys/kernel/core_uses_pid`
3981         [ $core_pid -eq 1 ] && file=$file.$SLEEPPID
3982         rm -f $file
3983         sleep 1
3984
3985         kill -s 11 $SLEEPPID
3986         wait $SLEEPPID
3987         if [ -e $file ]; then
3988                 size=`stat -c%s $file`
3989                 [ $size -eq 0 ] && error "Fail to create core file $file"
3990         else
3991                 error "Fail to create core file $file"
3992         fi
3993         rm -f $file
3994         cd $CDIR
3995 }
3996 run_test 107 "Coredump on SIG"
3997
3998 test_110() {
3999         mkdir -p $DIR/d110
4000         mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
4001         mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
4002         touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
4003         touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
4004
4005         ls -l $DIR/d110
4006 }
4007 run_test 110 "filename length checking"
4008
4009 test_115() {
4010         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
4011             cut -c11-20)
4012         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
4013             return
4014         echo "Starting with $OSTIO_pre threads"
4015
4016         NUMTEST=20000
4017         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
4018         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
4019         echo "$NUMTEST creates/unlinks"
4020         mkdir -p $DIR/$tdir
4021         createmany -o $DIR/$tdir/$tfile $NUMTEST
4022         unlinkmany $DIR/$tdir/$tfile $NUMTEST
4023
4024         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
4025             cut -c11-20)
4026
4027         # don't return an error
4028         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
4029             "FAIL: No addition ll_ost_io threads were created ($OSTIO_pre)" &&\
4030             echo "This may be fine, depending on what ran before this test" &&\
4031             echo "and how fast this system is." && return
4032
4033         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
4034 }
4035 run_test 115 "verify dynamic thread creation===================="
4036
4037 free_min_max () {
4038         wait_delete_completed
4039         AVAIL=($(cat $LPROC/osc/*[oO][sS][cC]-[^M]*/kbytesavail))
4040         echo OST kbytes available: ${AVAIL[@]}
4041         MAXI=0; MAXV=${AVAIL[0]}
4042         MINI=0; MINV=${AVAIL[0]}
4043         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
4044             #echo OST $i: ${AVAIL[i]}kb
4045             if [ ${AVAIL[i]} -gt $MAXV ]; then
4046                 MAXV=${AVAIL[i]}; MAXI=$i
4047             fi
4048             if [ ${AVAIL[i]} -lt $MINV ]; then
4049                 MINV=${AVAIL[i]}; MINI=$i
4050             fi
4051         done
4052         echo Min free space: OST $MINI: $MINV 
4053         echo Max free space: OST $MAXI: $MAXV 
4054 }
4055
4056 test_116() {
4057         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs" && return
4058         remote_mds && skip "remote MDS" && return
4059
4060         echo -n "Free space priority "
4061         cat $LPROC/lov/*-clilov-*/qos_prio_free
4062         DELAY=$(cat $LPROC/lov/*-clilov-*/qos_maxage | head -1 | awk '{print $1}')
4063         declare -a AVAIL
4064         free_min_max
4065         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
4066                 return
4067
4068         # generate uneven OSTs
4069         mkdir -p $DIR/$tdir/OST${MINI}
4070         declare -i FILL
4071         FILL=$(($MINV / 4))
4072         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
4073         $SETSTRIPE $DIR/$tdir/OST${MINI} -i $MINI -c 1
4074         i=0
4075         while [ $FILL -gt 0 ]; do
4076             i=$(($i + 1))
4077             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
4078             FILL=$(($FILL - 2048))
4079             echo -n .
4080         done
4081         FILL=$(($MINV / 4))
4082         sync
4083         sleep $DELAY
4084
4085         free_min_max
4086         DIFF=$(($MAXV - $MINV))
4087         DIFF2=$(($DIFF * 100 / $MINV))
4088         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
4089         if [ $DIFF2 -gt 20 ]; then
4090             echo "ok"
4091         else
4092             echo "failed - QOS mode won't be used"
4093             error "QOS imbalance criteria not met"
4094             return
4095         fi
4096
4097         MINI1=$MINI; MINV1=$MINV
4098         MAXI1=$MAXI; MAXV1=$MAXV
4099
4100         # now fill using QOS
4101         echo writing a bunch of files to QOS-assigned OSTs
4102         $SETSTRIPE $DIR/$tdir -c 1
4103         i=0
4104         while [ $FILL -gt 0 ]; do
4105             i=$(($i + 1))
4106             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
4107             FILL=$(($FILL - 200))
4108             echo -n .
4109         done
4110         echo "wrote $i 200k files"
4111         sync
4112         sleep $DELAY
4113
4114         echo "Note: free space may not be updated, so measurements might be off"
4115         free_min_max
4116         DIFF2=$(($MAXV - $MINV))
4117         echo "free space delta: orig $DIFF final $DIFF2"
4118         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!" 
4119         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
4120         echo "Wrote $DIFF to smaller OST $MINI1"
4121         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
4122         echo "Wrote $DIFF2 to larger OST $MAXI1"
4123         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
4124
4125         # Figure out which files were written where 
4126         UUID=$(awk '/'$MINI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
4127         echo $UUID
4128         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
4129         echo "$MINC files created on smaller OST $MINI1"
4130         UUID=$(awk '/'$MAXI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
4131         echo $UUID
4132         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
4133         echo "$MAXC files created on larger OST $MAXI1"
4134         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
4135         [ $MAXC -gt $MINC ] || error "stripe QOS didn't balance free space"
4136 }
4137 run_test 116 "stripe QOS: free space balance ==================="
4138
4139 test_117() # bug 10891
4140 {
4141         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
4142         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
4143         sysctl -w lustre.fail_loc=0x21e
4144         > $DIR/$tfile || error "truncate failed"
4145         sysctl -w lustre.fail_loc=0
4146         echo "Truncate succeeded."
4147 }
4148 run_test 117 "verify fsfilt_extend =========="
4149
4150 export OLD_RESENDCOUNT=""
4151 set_resend_count () {
4152         local PROC_RESENDCOUNT="$LPROC/osc/${FSNAME}-OST*-osc-*/resend_count"
4153         OLD_RESENDCOUNT=$(cat $PROC_RESENDCOUNT | head -1)
4154         for i in $PROC_RESENDCOUNT; do
4155                 echo $1 >$i
4156         done
4157         echo resend_count is set to $(cat $PROC_RESENDCOUNT)
4158 }
4159
4160 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
4161
4162 # Reset async IO behavior after error case
4163 reset_async() {
4164         FILE=$DIR/reset_async
4165
4166         # Ensure all OSCs are cleared
4167         $LSTRIPE $FILE 0 -1 -1
4168         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
4169         sync
4170         rm $FILE
4171 }
4172
4173 test_118a() #bug 11710
4174 {
4175         reset_async
4176         
4177         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4178         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4179         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4180
4181         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4182                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4183                 return 1;
4184         fi
4185 }
4186 run_test 118a "verify O_SYNC works =========="
4187
4188 test_118b()
4189 {
4190         remote_ost_nodsh && skip "remote OST" && return
4191
4192         reset_async
4193
4194         #define OBD_FAIL_OST_ENOENT 0x217
4195         do_facet ost sysctl -w lustre.fail_loc=0x217
4196         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4197         RC=$?
4198         do_facet ost sysctl -w lustre.fail_loc=0
4199         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4200         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4201
4202         if [[ $RC -eq 0 ]]; then
4203                 error "Must return error due to dropped pages, rc=$RC"
4204                 return 1;
4205         fi
4206
4207         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4208                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4209                 return 1;
4210         fi
4211
4212         echo "Dirty pages not leaked on ENOENT"
4213
4214         # Due to the above error the OSC will issue all RPCs syncronously
4215         # until a subsequent RPC completes successfully without error.
4216         multiop $DIR/$tfile Ow4096yc
4217         rm -f $DIR/$tfile
4218         
4219         return 0
4220 }
4221 run_test 118b "Reclaim dirty pages on fatal error =========="
4222
4223 test_118c()
4224 {
4225         remote_ost_nodsh && skip "remote OST" && return
4226
4227         reset_async
4228
4229         #define OBD_FAIL_OST_EROFS               0x216
4230         do_facet ost sysctl -w lustre.fail_loc=0x216
4231
4232         # multiop should block due to fsync until pages are written
4233         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4234         MULTIPID=$!
4235         sleep 1
4236
4237         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4238                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4239         fi
4240
4241         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4242         if [[ $WRITEBACK -eq 0 ]]; then
4243                 error "No page in writeback, writeback=$WRITEBACK"
4244         fi
4245
4246         do_facet ost sysctl -w lustre.fail_loc=0
4247         wait $MULTIPID
4248         RC=$?
4249         if [[ $RC -ne 0 ]]; then
4250                 error "Multiop fsync failed, rc=$RC"
4251         fi
4252
4253         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4254         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4255         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4256                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4257         fi
4258         
4259         rm -f $DIR/$tfile
4260         echo "Dirty pages flushed via fsync on EROFS"
4261         return 0
4262 }
4263 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
4264
4265 test_118d()
4266 {
4267         remote_ost_nodsh && skip "remote OST" && return
4268
4269         reset_async
4270
4271         #define OBD_FAIL_OST_BRW_PAUSE_BULK
4272         do_facet ost sysctl -w lustre.fail_loc=0x214
4273         # multiop should block due to fsync until pages are written
4274         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &     
4275         MULTIPID=$!
4276         sleep 1
4277
4278         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4279                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4280         fi
4281
4282         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4283         if [[ $WRITEBACK -eq 0 ]]; then
4284                 error "No page in writeback, writeback=$WRITEBACK"
4285         fi
4286
4287         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
4288         do_facet ost sysctl -w lustre.fail_loc=0
4289
4290         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4291         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)   
4292         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4293                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4294         fi
4295
4296         rm -f $DIR/$tfile
4297         echo "Dirty pages gaurenteed flushed via fsync"
4298         return 0
4299 }
4300 run_test 118d "Fsync validation inject a delay of the bulk =========="
4301
4302 test_118f() {
4303         reset_async
4304
4305         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
4306         sysctl -w lustre.fail_loc=0x8000040a
4307
4308         # Should simulate EINVAL error which is fatal
4309         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4310         RC=$?
4311         if [[ $RC -eq 0 ]]; then
4312                 error "Must return error due to dropped pages, rc=$RC"
4313         fi
4314         
4315         sysctl -w lustre.fail_loc=0x0
4316         
4317         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4318         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4319         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4320         if [[ $LOCKED -ne 0 ]]; then
4321                 error "Locked pages remain in cache, locked=$LOCKED"
4322         fi
4323
4324         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4325                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4326         fi
4327
4328         rm -f $DIR/$tfile
4329         echo "No pages locked after fsync"
4330
4331         reset_async
4332         return 0
4333 }
4334 run_test 118f "Simulate unrecoverable OSC side error =========="
4335
4336 test_118g() {
4337         reset_async
4338
4339         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4340         sysctl -w lustre.fail_loc=0x406
4341
4342         # simulate local -ENOMEM
4343         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4344         RC=$?
4345         
4346         sysctl -w lustre.fail_loc=0
4347         if [[ $RC -eq 0 ]]; then
4348                 error "Must return error due to dropped pages, rc=$RC"
4349         fi
4350
4351         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4352         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4353         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4354         if [[ $LOCKED -ne 0 ]]; then
4355                 error "Locked pages remain in cache, locked=$LOCKED"
4356         fi
4357         
4358         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4359                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4360         fi
4361
4362         rm -f $DIR/$tfile
4363         echo "No pages locked after fsync"
4364
4365         reset_async
4366         return 0
4367 }
4368 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
4369
4370 test_118h() {
4371         remote_ost_nodsh && skip "remote OST" && return
4372
4373         reset_async
4374
4375         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4376         do_facet ost sysctl -w lustre.fail_loc=0x20e
4377         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4378         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4379         RC=$?
4380         
4381         do_facet ost sysctl -w lustre.fail_loc=0
4382         if [[ $RC -eq 0 ]]; then
4383                 error "Must return error due to dropped pages, rc=$RC"
4384         fi
4385
4386         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4387         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4388         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4389         if [[ $LOCKED -ne 0 ]]; then
4390                 error "Locked pages remain in cache, locked=$LOCKED"
4391         fi
4392         
4393         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4394                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4395         fi
4396
4397         rm -f $DIR/$tfile
4398         echo "No pages locked after fsync"
4399
4400         return 0
4401 }
4402 run_test 118h "Verify timeout in handling recoverables errors  =========="
4403
4404 test_118i() {
4405         remote_ost_nodsh && skip "remote OST" && return
4406
4407         reset_async
4408
4409         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4410         do_facet ost sysctl -w lustre.fail_loc=0x20e
4411         
4412         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4413         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4414         PID=$!
4415         sleep 5
4416         do_facet ost sysctl -w lustre.fail_loc=0
4417         
4418         wait $PID
4419         RC=$?
4420         if [[ $RC -ne 0 ]]; then
4421                 error "got error, but should be not, rc=$RC"
4422         fi
4423
4424         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4425         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4426         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4427         if [[ $LOCKED -ne 0 ]]; then
4428                 error "Locked pages remain in cache, locked=$LOCKED"
4429         fi
4430         
4431         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4432                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4433         fi
4434
4435         rm -f $DIR/$tfile
4436         echo "No pages locked after fsync"
4437
4438         return 0
4439 }
4440 run_test 118i "Fix error before timeout in recoverable error  =========="
4441
4442 test_118j() {
4443         remote_ost_nodsh && skip "remote OST" && return
4444
4445         reset_async
4446
4447         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
4448         do_facet ost sysctl -w lustre.fail_loc=0x220
4449
4450         # return -EIO from OST
4451         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4452         RC=$?
4453         do_facet ost sysctl -w lustre.fail_loc=0x0
4454         if [[ $RC -eq 0 ]]; then
4455                 error "Must return error due to dropped pages, rc=$RC"
4456         fi
4457
4458         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4459         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4460         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4461         if [[ $LOCKED -ne 0 ]]; then
4462                 error "Locked pages remain in cache, locked=$LOCKED"
4463         fi
4464         
4465         # in recoverable error on OST we want resend and stay until it finished
4466         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4467                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4468         fi
4469
4470         rm -f $DIR/$tfile
4471         echo "No pages locked after fsync"
4472
4473         return 0
4474 }
4475 run_test 118j "Simulate unrecoverable OST side error =========="
4476
4477 test_118k()
4478 {
4479         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4480         do_facet ost sysctl -w lustre.fail_loc=0x20e
4481         mkdir -p $DIR/$tdir
4482
4483         for ((i=0;i<10;i++)); do
4484                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
4485                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
4486                 SLEEPPID=$!
4487                 sleep 0.500s
4488                 kill $SLEEPPID
4489                 wait $SLEEPPID
4490         done
4491
4492         sysctl -w lustre.fail_loc=0
4493 }
4494 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
4495
4496 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
4497
4498 test_119a() # bug 11737
4499 {
4500         BSIZE=$((512 * 1024))
4501         directio write $DIR/$tfile 0 1 $BSIZE
4502         # We ask to read two blocks, which is more than a file size.
4503         # directio will indicate an error when requested and actual
4504         # sizes aren't equeal (a normal situation in this case) and
4505         # print actual read amount.
4506         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
4507         if [ "$NOB" != "$BSIZE" ]; then
4508                 error "read $NOB bytes instead of $BSIZE"
4509         fi
4510         rm -f $DIR/$tfile
4511 }
4512 run_test 119a "Short directIO read must return actual read amount"
4513
4514 test_119b() # bug 11737
4515 {
4516         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
4517
4518         $SETSTRIPE $DIR/$tfile -c 2
4519         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
4520         sync
4521         multiop $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
4522                 error "direct read failed"
4523         rm -f $DIR/$tfile
4524 }
4525 run_test 119b "Sparse directIO read must return actual read amount"
4526
4527 test_119c() # bug 13099
4528 {
4529         BSIZE=1048576
4530         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
4531         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
4532         rm -f $DIR/$tfile
4533 }
4534 run_test 119c "Testing for direct read hitting hole"
4535
4536 test_120a() {
4537         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4538                skip "no early lock cancel on server" && return 0
4539         lru_resize_disable mdc
4540         lru_resize_disable osc
4541         cancel_lru_locks mdc
4542         stat $DIR/$tdir > /dev/null
4543         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4544         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4545         mkdir $DIR/$tdir/d1
4546         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4547         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4548         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4549         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4550         lru_resize_enable mdc
4551         lru_resize_enable osc
4552 }
4553 run_test 120a "Early Lock Cancel: mkdir test"
4554
4555 test_120b() {
4556         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4557                skip "no early lock cancel on server" && return 0
4558         lru_resize_disable mdc
4559         lru_resize_disable osc
4560         cancel_lru_locks mdc
4561         stat $DIR/$tdir > /dev/null
4562         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4563         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4564         touch $DIR/$tdir/f1
4565         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4566         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4567         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4568         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4569         lru_resize_enable mdc
4570         lru_resize_enable osc
4571 }
4572 run_test 120b "Early Lock Cancel: create test"
4573
4574 test_120c() {
4575         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4576                skip "no early lock cancel on server" && return 0
4577         lru_resize_disable mdc
4578         lru_resize_disable osc
4579         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
4580         touch $DIR/$tdir/d1/f1
4581         cancel_lru_locks mdc
4582         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
4583         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4584         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4585         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
4586         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4587         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4588         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4589         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4590         lru_resize_enable mdc
4591         lru_resize_enable osc
4592 }
4593 run_test 120c "Early Lock Cancel: link test"
4594
4595 test_120d() {
4596         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4597                skip "no early lock cancel on server" && return 0
4598         lru_resize_disable mdc
4599         lru_resize_disable osc
4600         touch $DIR/$tdir
4601         cancel_lru_locks mdc
4602         stat $DIR/$tdir > /dev/null
4603         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4604         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4605         chmod a+x $DIR/$tdir
4606         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4607         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4608         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4609         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4610         lru_resize_enable mdc
4611         lru_resize_enable osc
4612 }
4613 run_test 120d "Early Lock Cancel: setattr test"
4614
4615 test_120e() {
4616         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4617                skip "no early lock cancel on server" && return 0
4618         lru_resize_disable mdc
4619         lru_resize_disable osc
4620         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
4621         cancel_lru_locks mdc
4622         cancel_lru_locks osc
4623         dd if=$DIR/$tdir/f1 of=/dev/null
4624         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
4625         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4626         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4627         unlink $DIR/$tdir/f1
4628         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4629         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4630         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4631         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4632         lru_resize_enable mdc
4633         lru_resize_enable osc
4634 }
4635 run_test 120e "Early Lock Cancel: unlink test"
4636
4637 test_120f() {
4638         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4639                skip "no early lock cancel on server" && return 0
4640         lru_resize_disable mdc
4641         lru_resize_disable osc
4642         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
4643         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
4644         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
4645         cancel_lru_locks mdc
4646         cancel_lru_locks osc
4647         dd if=$DIR/$tdir/d1/f1 of=/dev/null
4648         dd if=$DIR/$tdir/d2/f2 of=/dev/null
4649         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
4650         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4651         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4652         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
4653         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4654         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4655         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4656         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4657         lru_resize_enable mdc
4658         lru_resize_enable osc
4659 }
4660 run_test 120f "Early Lock Cancel: rename test"
4661
4662 test_120g() {
4663         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4664                skip "no early lock cancel on server" && return 0
4665         lru_resize_disable mdc
4666         lru_resize_disable osc
4667         count=10000
4668         echo create $count files
4669         mkdir -p $DIR/$tdir
4670         cancel_lru_locks mdc
4671         cancel_lru_locks osc
4672         t0=`date +%s`
4673
4674         can0=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4675         blk0=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4676         createmany -o $DIR/$tdir/f $count
4677         sync
4678         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4679         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4680         t1=`date +%s`
4681         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
4682         echo rm $count files
4683         rm -r $DIR/$tdir
4684         sync
4685         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4686         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4687         t2=`date +%s`
4688         echo total: $count removes in $((t2-t1))
4689         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
4690         sleep 2
4691         # wait for commitment of removal
4692         lru_resize_enable mdc
4693         lru_resize_enable osc
4694 }
4695 run_test 120g "Early Lock Cancel: performance test"
4696
4697 test_121() { #bug #10589
4698         rm -rf $DIR/$tfile
4699         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out/ {print $1}')
4700 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
4701         sysctl -w lustre.fail_loc=0x310
4702         cancel_lru_locks osc > /dev/null
4703         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in/ {print $1}')
4704         sysctl -w lustre.fail_loc=0
4705         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
4706 }
4707 run_test 121 "read cancel race ========="
4708
4709 test_124a() {
4710         [ -z "`grep lru_resize $LPROC/mdc/*/connect_flags`" ] && \
4711                skip "no lru resize on server" && return 0
4712         NR=2000
4713         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
4714
4715         # use touch to produce $NR new locks
4716         log "create $NR files at $DIR/$tdir"
4717         createmany -o $DIR/$tdir/f $NR || 
4718                 error "failed to create $NR files in $DIR/$tdir" 
4719         
4720         cancel_lru_locks mdc
4721         ls -l $DIR/$tdir > /dev/null
4722
4723         NSDIR=""
4724         LRU_SIZE=0
4725         for F in $LPROC/ldlm/namespaces/*mdc-*/lru_size; do
4726                 LRU_SIZE=$(cat $F)
4727                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
4728                         NSDIR=$(dirname $F)
4729                         log "using $(basename $NSDIR) namespace"
4730                         break
4731                 fi
4732         done
4733
4734         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
4735                 skip "Not enough cached locks created!"
4736                 return 0
4737         fi
4738         log "created $LRU_SIZE lock(s)"
4739
4740         # we want to sleep 30s to not make test too long
4741         SLEEP=30
4742         SLEEP_ADD=2
4743
4744         # we know that lru resize allows one client to hold $LIMIT locks for 10h
4745         MAX_HRS=10
4746
4747         # get the pool limit
4748         LIMIT=`cat $NSDIR/pool/limit`
4749
4750         # calculate lock volume factor taking into account data set size and the
4751         # rule that number of locks will be getting smaller durring sleep interval
4752         # and we need to additionally enforce LVF to take this into account.
4753         # Use $LRU_SIZE_B here to take into account real number of locks created
4754         # in the case of CMD, LRU_SIZE_B != $NR in most of cases
4755         LVF=$(($MAX_HRS * 60 * 60 * $LIMIT / $SLEEP))
4756         LRU_SIZE_B=$LRU_SIZE
4757         log "make client drop locks $LVF times faster so that ${SLEEP}s is enough to cancel $LRU_SIZE lock(s)"
4758         OLD_LVF=`cat $NSDIR/pool/lock_volume_factor`
4759         echo "$LVF" > $NSDIR/pool/lock_volume_factor
4760         log "sleep for $((SLEEP+SLEEP_ADD))s"
4761         sleep $((SLEEP+SLEEP_ADD))
4762         echo "$OLD_LVF" > $NSDIR/pool/lock_volume_factor
4763         LRU_SIZE_A=`cat $NSDIR/lru_size`
4764
4765         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
4766                 error "No locks dropped in "$((SLEEP+SLEEP_ADD))"s. LRU size: $LRU_SIZE_A"
4767                 unlinkmany $DIR/$tdir/f $NR
4768                 return
4769         }
4770
4771         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in "$((SLEEP+SLEEP_ADD))"s"
4772         log "unlink $NR files at $DIR/$tdir"
4773         unlinkmany $DIR/$tdir/f $NR
4774 }
4775 run_test 124a "lru resize ======================================="
4776
4777 test_124b() {
4778         [ -z "`grep lru_resize $LPROC/mdc/*/connect_flags`" ] && \
4779                skip "no lru resize on server" && return 0
4780
4781         # even for cmd no matter what metadata namespace to use for getting 
4782         # the limit, we use appropriate.
4783         NSDIR=`find $LPROC/ldlm/namespaces | grep mdc | head -1`
4784         LIMIT=`cat $NSDIR/pool/limit`
4785
4786         NR=$(($(default_lru_size)*20))
4787         if [ $NR -gt $LIMIT ]; then
4788                 NR=$LIMIT
4789         fi
4790         lru_resize_disable mdc
4791         mkdir -p $DIR/$tdir/disable_lru_resize || 
4792                 error "failed to create $DIR/$tdir/disable_lru_resize"
4793
4794         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
4795         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
4796         cancel_lru_locks mdc
4797         stime=`date +%s`
4798         PID=""
4799         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
4800         PID="$PID $!"
4801         sleep 2
4802         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
4803         PID="$PID $!"
4804         sleep 2
4805         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
4806         PID="$PID $!"
4807         wait $PID
4808         etime=`date +%s`
4809         nolruresize_delta=$((etime-stime))
4810         log "ls -la time: $nolruresize_delta seconds"
4811         log "lru_size = $(cat $NSDIR/lru_size)"
4812         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
4813
4814         lru_resize_enable mdc
4815         mkdir -p $DIR/$tdir/enable_lru_resize || 
4816                 error "failed to create $DIR/$tdir/enable_lru_resize"
4817
4818         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
4819         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
4820         cancel_lru_locks mdc
4821         stime=`date +%s`
4822         PID=""
4823         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
4824         PID="$PID $!"
4825         sleep 2
4826         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
4827         PID="$PID $!"
4828         sleep 2
4829         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
4830         PID="$PID $!"
4831         wait $PID
4832         etime=`date +%s`
4833         lruresize_delta=$((etime-stime))
4834         log "ls -la time: $lruresize_delta seconds"
4835         log "lru_size = $(cat $NSDIR/lru_size)"
4836
4837         if [ $lruresize_delta -gt $nolruresize_delta ]; then
4838                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
4839         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
4840                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
4841         else
4842                 log "lru resize performs the same with no lru resize"
4843         fi
4844         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
4845 }
4846 run_test 124b "lru resize (performance test) ======================="
4847
4848 test_125() { # 13358
4849         [ -z "$(grep local $LPROC/llite/*/client_type)" ] && skip "must run as local client" && return
4850         [ -z "$(grep acl $LPROC/mdc/*-mdc-*/connect_flags)" ] && skip "must have acl enabled" && return
4851         mkdir -p $DIR/d125 || error "mkdir failed"
4852         $SETSTRIPE $DIR/d125 -s 65536 -c -1 || error "setstripe failed"
4853         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
4854         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
4855 }
4856 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
4857
4858 test_126() { # bug 12829/13455
4859         [ -z "$(grep local $LPROC/llite/*/client_type)" ] && skip "must run as local client" && return
4860         [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
4861         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
4862         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
4863         rm -f $DIR/$tfile
4864         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
4865 }
4866 run_test 126 "check that the fsgid provided by the client is taken into account"
4867
4868 TMPDIR=$OLDTMPDIR
4869 TMP=$OLDTMP
4870 HOME=$OLDHOME
4871
4872 log "cleanup: ======================================================"
4873 check_and_cleanup_lustre
4874 if [ "$I_MOUNTED" != "yes" ]; then
4875         sysctl -w lnet.debug="$OLDDEBUG" 2> /dev/null || true
4876 fi
4877
4878 echo '=========================== finished ==============================='
4879 [ -f "$SANITYLOG" ] && cat $SANITYLOG && grep -q FAIL $SANITYLOG && exit 1 || true
4880 echo "$0: completed"