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