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