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