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