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