Whamcloud - gitweb
b=18417
[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: 13297 2108 9789 3637 9789 3561 12622 12653 12653 5188 10764 16260
11 ALWAYS_EXCEPT="                27u   42a  42b  42c  42d  45   51d   65a   65e   68b   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_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_0c() {
163     $LCTL get_param mdc.*.import | grep  "state: FULL" || error "import not FULL"
164     $LCTL get_param mdc.*.import | grep  "target: $FSNAME-MDT" || error "bad target"
165 }
166 run_test 0c "check import proc ============================="
167
168 test_1a() {
169         mkdir $DIR/d1
170         mkdir $DIR/d1/d2
171         mkdir $DIR/d1/d2 && error "we expect EEXIST, but not returned"
172         $CHECKSTAT -t dir $DIR/d1/d2 || error
173 }
174 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
175
176 test_1b() {
177         rmdir $DIR/d1/d2
178         rmdir $DIR/d1
179         $CHECKSTAT -a $DIR/d1 || error
180 }
181 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
182
183 test_2a() {
184         mkdir $DIR/d2
185         touch $DIR/d2/f
186         $CHECKSTAT -t file $DIR/d2/f || error
187 }
188 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
189
190 test_2b() {
191         rm -r $DIR/d2
192         $CHECKSTAT -a $DIR/d2 || error
193 }
194 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
195
196 test_3a() {
197         mkdir $DIR/d3
198         $CHECKSTAT -t dir $DIR/d3 || error
199 }
200 run_test 3a "mkdir .../d3 ======================================"
201
202 test_3b() {
203         if [ ! -d $DIR/d3 ]; then
204                 mkdir $DIR/d3
205         fi
206         touch $DIR/d3/f
207         $CHECKSTAT -t file $DIR/d3/f || error
208 }
209 run_test 3b "touch .../d3/f ===================================="
210
211 test_3c() {
212         rm -r $DIR/d3
213         $CHECKSTAT -a $DIR/d3 || error
214 }
215 run_test 3c "rm -r .../d3 ======================================"
216
217 test_4a() {
218         mkdir $DIR/d4
219         $CHECKSTAT -t dir $DIR/d4 || error
220 }
221 run_test 4a "mkdir .../d4 ======================================"
222
223 test_4b() {
224         if [ ! -d $DIR/d4 ]; then
225                 mkdir $DIR/d4
226         fi
227         mkdir $DIR/d4/d2
228         $CHECKSTAT -t dir $DIR/d4/d2 || error
229 }
230 run_test 4b "mkdir .../d4/d2 ==================================="
231
232 test_5() {
233         mkdir $DIR/d5
234         mkdir $DIR/d5/d2
235         chmod 0707 $DIR/d5/d2
236         $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
237 }
238 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
239
240 test_6a() {
241         touch $DIR/f6a
242         chmod 0666 $DIR/f6a || error
243         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
244 }
245 run_test 6a "touch .../f6a; chmod .../f6a ======================"
246
247 test_6b() {
248         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
249         if [ ! -f $DIR/f6a ]; then
250                 touch $DIR/f6a
251                 chmod 0666 $DIR/f6a
252         fi
253         $RUNAS chmod 0444 $DIR/f6a && error
254         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
255 }
256 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
257
258 test_6c() {
259         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
260         touch $DIR/f6c
261         chown $RUNAS_ID $DIR/f6c || error
262         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
263 }
264 run_test 6c "touch .../f6c; chown .../f6c ======================"
265
266 test_6d() {
267         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
268         if [ ! -f $DIR/f6c ]; then
269                 touch $DIR/f6c
270                 chown $RUNAS_ID $DIR/f6c
271         fi
272         $RUNAS chown $UID $DIR/f6c && error
273         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
274 }
275 run_test 6d "$RUNAS chown .../f6c (should return error) =="
276
277 test_6e() {
278         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
279         touch $DIR/f6e
280         chgrp $RUNAS_ID $DIR/f6e || error
281         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
282 }
283 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
284
285 test_6f() {
286         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
287         if [ ! -f $DIR/f6e ]; then
288                 touch $DIR/f6e
289                 chgrp $RUNAS_ID $DIR/f6e
290         fi
291         $RUNAS chgrp $UID $DIR/f6e && error
292         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
293 }
294 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
295
296 test_6g() {
297         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
298         mkdir $DIR/d6g || error
299         chmod 777 $DIR/d6g || error
300         $RUNAS mkdir $DIR/d6g/d || error
301         chmod g+s $DIR/d6g/d || error
302         mkdir $DIR/d6g/d/subdir
303         $CHECKSTAT -g \#$RUNAS_ID $DIR/d6g/d/subdir || error
304 }
305 run_test 6g "Is new dir in sgid dir inheriting group?"
306
307 test_6h() { # bug 7331
308         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
309         touch $DIR/f6h || error "touch failed"
310         chown $RUNAS_ID:$RUNAS_ID $DIR/f6h || error "initial chown failed"
311         $RUNAS -G$RUNAS_ID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
312         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_ID $DIR/f6h || error
313 }
314 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
315
316 test_7a() {
317         mkdir $DIR/d7
318         $MCREATE $DIR/d7/f
319         chmod 0666 $DIR/d7/f
320         $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
321 }
322 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
323
324 test_7b() {
325         if [ ! -d $DIR/d7 ]; then
326                 mkdir $DIR/d7
327         fi
328         $MCREATE $DIR/d7/f2
329         echo -n foo > $DIR/d7/f2
330         [ "`cat $DIR/d7/f2`" = "foo" ] || error
331         $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
332 }
333 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
334
335 test_8() {
336         mkdir $DIR/d8
337         touch $DIR/d8/f
338         chmod 0666 $DIR/d8/f
339         $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
340 }
341 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
342
343 test_9() {
344         mkdir $DIR/d9
345         mkdir $DIR/d9/d2
346         mkdir $DIR/d9/d2/d3
347         $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
348 }
349 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
350
351 test_10() {
352         mkdir $DIR/d10
353         mkdir $DIR/d10/d2
354         touch $DIR/d10/d2/f
355         $CHECKSTAT -t file $DIR/d10/d2/f || error
356 }
357 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
358
359 test_11() {
360         mkdir $DIR/d11
361         mkdir $DIR/d11/d2
362         chmod 0666 $DIR/d11/d2
363         chmod 0705 $DIR/d11/d2
364         $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
365 }
366 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
367
368 test_12() {
369         mkdir $DIR/d12
370         touch $DIR/d12/f
371         chmod 0666 $DIR/d12/f
372         chmod 0654 $DIR/d12/f
373         $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
374 }
375 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
376
377 test_13() {
378         mkdir $DIR/d13
379         dd if=/dev/zero of=$DIR/d13/f count=10
380         >  $DIR/d13/f
381         $CHECKSTAT -t file -s 0 $DIR/d13/f || error
382 }
383 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
384
385 test_14() {
386         mkdir $DIR/d14
387         touch $DIR/d14/f
388         rm $DIR/d14/f
389         $CHECKSTAT -a $DIR/d14/f || error
390 }
391 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
392
393 test_15() {
394         mkdir $DIR/d15
395         touch $DIR/d15/f
396         mv $DIR/d15/f $DIR/d15/f2
397         $CHECKSTAT -t file $DIR/d15/f2 || error
398 }
399 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
400
401 test_16() {
402         mkdir $DIR/d16
403         touch $DIR/d16/f
404         rm -rf $DIR/d16/f
405         $CHECKSTAT -a $DIR/d16/f || error
406 }
407 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
408
409 test_17a() {
410         mkdir -p $DIR/d17
411         touch $DIR/d17/f
412         ln -s $DIR/d17/f $DIR/d17/l-exist
413         ls -l $DIR/d17
414         $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
415         $CHECKSTAT -f -t f $DIR/d17/l-exist || error
416         rm -f $DIR/d17/l-exist
417         $CHECKSTAT -a $DIR/d17/l-exist || error
418 }
419 run_test 17a "symlinks: create, remove (real) =================="
420
421 test_17b() {
422         mkdir -p $DIR/d17
423         ln -s no-such-file $DIR/d17/l-dangle
424         ls -l $DIR/d17
425         $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
426         $CHECKSTAT -fa $DIR/d17/l-dangle || error
427         rm -f $DIR/d17/l-dangle
428         $CHECKSTAT -a $DIR/d17/l-dangle || error
429 }
430 run_test 17b "symlinks: create, remove (dangling) =============="
431
432 test_17c() { # bug 3440 - don't save failed open RPC for replay
433         mkdir -p $DIR/d17
434         ln -s foo $DIR/d17/f17c
435         cat $DIR/d17/f17c && error "opened non-existent symlink" || true
436 }
437 run_test 17c "symlinks: open dangling (should return error) ===="
438
439 test_17d() {
440         mkdir -p $DIR/d17
441         ln -s foo $DIR/d17/f17d
442         touch $DIR/d17/f17d || error "creating to new symlink"
443 }
444 run_test 17d "symlinks: create dangling ========================"
445
446 test_17e() {
447         mkdir -p $DIR/$tdir
448         local foo=$DIR/$tdir/$tfile
449         ln -s $foo $foo || error "create symlink failed"
450         ls -l $foo || error "ls -l failed"
451         ls $foo && error "ls not failed" || true
452 }
453 run_test 17e "symlinks: create recursive symlink (should return error) ===="
454
455 test_17f() {
456         mkdir -p $DIR/d17f
457         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
458         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
459         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
460         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
461         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
462         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
463         ls -l  $DIR/d17f
464 }
465 run_test 17f "symlinks: long and very long symlink name ========================"
466
467 test_17g() {
468         mkdir -p $DIR/$tdir
469         LONGSYMLINK="$(dd if=/dev/zero bs=4095 count=1 | tr '\0' 'x')"
470         ln -s $LONGSYMLINK $DIR/$tdir/$tfile
471         ls -l $DIR/$tdir
472 }
473 run_test 17g "symlinks: really long symlink name ==============================="
474
475 test_18() {
476         touch $DIR/f
477         ls $DIR || error
478 }
479 run_test 18 "touch .../f ; ls ... =============================="
480
481 test_19a() {
482         touch $DIR/f19
483         ls -l $DIR
484         rm $DIR/f19
485         $CHECKSTAT -a $DIR/f19 || error
486 }
487 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
488
489 test_19b() {
490         ls -l $DIR/f19 && error || true
491 }
492 run_test 19b "ls -l .../f19 (should return error) =============="
493
494 test_19c() {
495         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
496         $RUNAS touch $DIR/f19 && error || true
497 }
498 run_test 19c "$RUNAS touch .../f19 (should return error) =="
499
500 test_19d() {
501         cat $DIR/f19 && error || true
502 }
503 run_test 19d "cat .../f19 (should return error) =============="
504
505 test_20() {
506         touch $DIR/f
507         rm $DIR/f
508         log "1 done"
509         touch $DIR/f
510         rm $DIR/f
511         log "2 done"
512         touch $DIR/f
513         rm $DIR/f
514         log "3 done"
515         $CHECKSTAT -a $DIR/f || error
516 }
517 run_test 20 "touch .../f ; ls -l ... ==========================="
518
519 test_21() {
520         mkdir $DIR/d21
521         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
522         ln -s dangle $DIR/d21/link
523         echo foo >> $DIR/d21/link
524         cat $DIR/d21/dangle
525         $CHECKSTAT -t link $DIR/d21/link || error
526         $CHECKSTAT -f -t file $DIR/d21/link || error
527 }
528 run_test 21 "write to dangling link ============================"
529
530 test_22() {
531         WDIR=$DIR/$tdir
532         mkdir -p $WDIR
533         chown $RUNAS_ID $WDIR
534         (cd $WDIR || error "cd $WDIR failed";
535         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
536         $RUNAS tar xf -)
537         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
538         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
539         $CHECKSTAT -u \#$RUNAS_ID $WDIR/etc || error "checkstat -u failed"
540 }
541 run_test 22 "unpack tar archive as non-root user ==============="
542
543 test_23() {
544         mkdir $DIR/d23
545         $TOEXCL $DIR/d23/f23
546         $TOEXCL -e $DIR/d23/f23 || error
547 }
548 run_test 23 "O_CREAT|O_EXCL in subdir =========================="
549
550 test_24a() {
551         echo '== rename sanity =============================================='
552         echo '-- same directory rename'
553         mkdir $DIR/R1
554         touch $DIR/R1/f
555         mv $DIR/R1/f $DIR/R1/g
556         $CHECKSTAT -t file $DIR/R1/g || error
557 }
558 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
559
560 test_24b() {
561         mkdir $DIR/R2
562         touch $DIR/R2/{f,g}
563         mv $DIR/R2/f $DIR/R2/g
564         $CHECKSTAT -a $DIR/R2/f || error
565         $CHECKSTAT -t file $DIR/R2/g || error
566 }
567 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
568
569 test_24c() {
570         mkdir $DIR/R3
571         mkdir $DIR/R3/f
572         mv $DIR/R3/f $DIR/R3/g
573         $CHECKSTAT -a $DIR/R3/f || error
574         $CHECKSTAT -t dir $DIR/R3/g || error
575 }
576 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
577
578 test_24d() {
579         mkdir $DIR/R4
580         mkdir $DIR/R4/{f,g}
581         mrename $DIR/R4/f $DIR/R4/g
582         $CHECKSTAT -a $DIR/R4/f || error
583         $CHECKSTAT -t dir $DIR/R4/g || error
584 }
585 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
586
587 test_24e() {
588         echo '-- cross directory renames --'
589         mkdir $DIR/R5{a,b}
590         touch $DIR/R5a/f
591         mv $DIR/R5a/f $DIR/R5b/g
592         $CHECKSTAT -a $DIR/R5a/f || error
593         $CHECKSTAT -t file $DIR/R5b/g || error
594 }
595 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
596
597 test_24f() {
598         mkdir $DIR/R6{a,b}
599         touch $DIR/R6a/f $DIR/R6b/g
600         mv $DIR/R6a/f $DIR/R6b/g
601         $CHECKSTAT -a $DIR/R6a/f || error
602         $CHECKSTAT -t file $DIR/R6b/g || error
603 }
604 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
605
606 test_24g() {
607         mkdir $DIR/R7{a,b}
608         mkdir $DIR/R7a/d
609         mv $DIR/R7a/d $DIR/R7b/e
610         $CHECKSTAT -a $DIR/R7a/d || error
611         $CHECKSTAT -t dir $DIR/R7b/e || error
612 }
613 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
614
615 test_24h() {
616         mkdir $DIR/R8{a,b}
617         mkdir $DIR/R8a/d $DIR/R8b/e
618         mrename $DIR/R8a/d $DIR/R8b/e
619         $CHECKSTAT -a $DIR/R8a/d || error
620         $CHECKSTAT -t dir $DIR/R8b/e || error
621 }
622 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
623
624 test_24i() {
625         echo "-- rename error cases"
626         mkdir $DIR/R9
627         mkdir $DIR/R9/a
628         touch $DIR/R9/f
629         mrename $DIR/R9/f $DIR/R9/a
630         $CHECKSTAT -t file $DIR/R9/f || error
631         $CHECKSTAT -t dir  $DIR/R9/a || error
632         $CHECKSTAT -a file $DIR/R9/a/f || error
633 }
634 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
635
636 test_24j() {
637         mkdir $DIR/R10
638         mrename $DIR/R10/f $DIR/R10/g
639         $CHECKSTAT -t dir $DIR/R10 || error
640         $CHECKSTAT -a $DIR/R10/f || error
641         $CHECKSTAT -a $DIR/R10/g || error
642 }
643 run_test 24j "source does not exist ============================"
644
645 test_24k() {
646         mkdir $DIR/R11a $DIR/R11a/d
647         touch $DIR/R11a/f
648         mv $DIR/R11a/f $DIR/R11a/d
649         $CHECKSTAT -a $DIR/R11a/f || error
650         $CHECKSTAT -t file $DIR/R11a/d/f || error
651 }
652 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
653
654 # bug 2429 - rename foo foo foo creates invalid file
655 test_24l() {
656         f="$DIR/f24l"
657         multiop $f OcNs || error
658 }
659 run_test 24l "Renaming a file to itself ========================"
660
661 test_24m() {
662         f="$DIR/f24m"
663         multiop $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
664         # on ext3 this does not remove either the source or target files
665         # though the "expected" operation would be to remove the source
666         $CHECKSTAT -t file ${f} || error "${f} missing"
667         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
668 }
669 run_test 24m "Renaming a file to a hard link to itself ========="
670
671 test_24n() {
672     f="$DIR/f24n"
673     # this stats the old file after it was renamed, so it should fail
674     touch ${f}
675     $CHECKSTAT ${f}
676     mv ${f} ${f}.rename
677     $CHECKSTAT ${f}.rename
678     $CHECKSTAT -a ${f}
679 }
680 run_test 24n "Statting the old file after renaming (Posix rename 2)"
681
682 test_24o() {
683         check_kernel_version 37 || return 0
684         mkdir -p $DIR/d24o
685         rename_many -s random -v -n 10 $DIR/d24o
686 }
687 run_test 24o "rename of files during htree split ==============="
688
689 test_24p() {
690         mkdir $DIR/R12{a,b}
691         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
692         mrename $DIR/R12a $DIR/R12b
693         $CHECKSTAT -a $DIR/R12a || error
694         $CHECKSTAT -t dir $DIR/R12b || error
695         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
696         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
697 }
698 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
699
700 test_24q() {
701         mkdir $DIR/R13{a,b}
702         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
703         multiop_bg_pause $DIR/R13b D_c || return 1
704         MULTIPID=$!
705
706         mrename $DIR/R13a $DIR/R13b
707         $CHECKSTAT -a $DIR/R13a || error
708         $CHECKSTAT -t dir $DIR/R13b || error
709         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
710         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
711         kill -USR1 $MULTIPID
712         wait $MULTIPID || error "multiop close failed"
713 }
714 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
715
716 test_24r() { #bug 3789
717         mkdir $DIR/R14a $DIR/R14a/b
718         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
719         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
720         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
721 }
722 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
723
724 test_24s() {
725         mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
726         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
727         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
728         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
729 }
730 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
731 test_24t() {
732         mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
733         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
734         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
735         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
736 }
737 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
738
739 test_24u() { # bug12192
740         multiop $DIR/$tfile C2w$((2048 * 1024))c || error
741         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
742 }
743 run_test 24u "create stripe file"
744
745 test_25a() {
746         echo '== symlink sanity ============================================='
747
748         mkdir $DIR/d25
749         ln -s d25 $DIR/s25
750         touch $DIR/s25/foo || error
751 }
752 run_test 25a "create file in symlinked directory ==============="
753
754 test_25b() {
755         [ ! -d $DIR/d25 ] && test_25a
756         $CHECKSTAT -t file $DIR/s25/foo || error
757 }
758 run_test 25b "lookup file in symlinked directory ==============="
759
760 test_26a() {
761         mkdir $DIR/d26
762         mkdir $DIR/d26/d26-2
763         ln -s d26/d26-2 $DIR/s26
764         touch $DIR/s26/foo || error
765 }
766 run_test 26a "multiple component symlink ======================="
767
768 test_26b() {
769         mkdir -p $DIR/d26b/d26-2
770         ln -s d26b/d26-2/foo $DIR/s26-2
771         touch $DIR/s26-2 || error
772 }
773 run_test 26b "multiple component symlink at end of lookup ======"
774
775 test_26c() {
776         mkdir $DIR/d26.2
777         touch $DIR/d26.2/foo
778         ln -s d26.2 $DIR/s26.2-1
779         ln -s s26.2-1 $DIR/s26.2-2
780         ln -s s26.2-2 $DIR/s26.2-3
781         chmod 0666 $DIR/s26.2-3/foo
782 }
783 run_test 26c "chain of symlinks ================================"
784
785 # recursive symlinks (bug 439)
786 test_26d() {
787         ln -s d26-3/foo $DIR/d26-3
788 }
789 run_test 26d "create multiple component recursive symlink ======"
790
791 test_26e() {
792         [ ! -h $DIR/d26-3 ] && test_26d
793         rm $DIR/d26-3
794 }
795 run_test 26e "unlink multiple component recursive symlink ======"
796
797 # recursive symlinks (bug 7022)
798 test_26f() {
799         mkdir -p $DIR/$tdir
800         mkdir $DIR/$tdir/$tfile        || error "mkdir $DIR/$tdir/$tfile failed"
801         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
802         mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
803         mkdir $tfile             || error "mkdir $tfile failed"
804         cd $tfile                || error "cd $tfile failed"
805         ln -s .. dotdot          || error "ln dotdot failed"
806         ln -s dotdot/lndir lndir || error "ln lndir failed"
807         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
808         output=`ls $tfile/$tfile/lndir/bar1`
809         [ "$output" = bar1 ] && error "unexpected output"
810         rm -r $tfile             || error "rm $tfile failed"
811         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
812 }
813 run_test 26f "rm -r of a directory which has recursive symlink ="
814
815 test_27a() {
816         echo '== stripe sanity =============================================='
817         mkdir -p $DIR/d27 || error "mkdir failed"
818         $SETSTRIPE $DIR/d27/f0 -c 1 || error "lstripe failed"
819         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
820         pass
821         log "== test_27a: write to one stripe file ========================="
822         cp /etc/hosts $DIR/d27/f0 || error
823 }
824 run_test 27a "one stripe file =================================="
825
826 test_27c() {
827         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
828         mkdir -p $DIR/d27
829         $SETSTRIPE $DIR/d27/f01 -c 2 || error "lstripe failed"
830         [ `$GETSTRIPE $DIR/d27/f01 | grep -A 10 obdidx | wc -l` -eq 4 ] ||
831                 error "two-stripe file doesn't have two stripes"
832         pass
833         log "== test_27c: write to two stripe file file f01 ================"
834         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
835 }
836 run_test 27c "create two stripe file f01 ======================="
837
838 test_27d() {
839         mkdir -p $DIR/d27
840         $SETSTRIPE -c0 -i-1 -s0 $DIR/d27/fdef || error "lstripe failed"
841         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
842         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
843 }
844 run_test 27d "create file with default settings ================"
845
846 test_27e() {
847         mkdir -p $DIR/d27
848         $SETSTRIPE $DIR/d27/f12 -c 2 || error "lstripe failed"
849         $SETSTRIPE $DIR/d27/f12 -c 2 && error "lstripe succeeded twice"
850         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
851 }
852 run_test 27e "lstripe existing file (should return error) ======"
853
854 test_27f() {
855         mkdir -p $DIR/d27
856         $SETSTRIPE $DIR/d27/fbad -s 100 -i 0 -c 1 && error "lstripe failed"
857         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
858         $GETSTRIPE $DIR/d27/fbad || error "lfs getstripe failed"
859 }
860 run_test 27f "lstripe with bad stripe size (should return error)"
861
862 test_27g() {
863         mkdir -p $DIR/d27
864         $MCREATE $DIR/d27/fnone || error "mcreate failed"
865         pass
866         log "== test 27h: lfs getstripe with no objects ===================="
867         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" || error "has object"
868         pass
869         log "== test 27i: lfs getstripe with some objects =================="
870         touch $DIR/d27/fsome || error "touch failed"
871         $GETSTRIPE $DIR/d27/fsome | grep obdidx || error "missing objects"
872 }
873 run_test 27g "test lfs getstripe ==========================================="
874
875 test_27j() {
876         mkdir -p $DIR/d27
877         $SETSTRIPE $DIR/d27/f27j -i $OSTCOUNT && error "lstripe failed"||true
878 }
879 run_test 27j "lstripe with bad stripe offset (should return error)"
880
881 test_27k() { # bug 2844
882         mkdir -p $DIR/d27
883         FILE=$DIR/d27/f27k
884         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
885         [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
886         $SETSTRIPE $FILE -s 67108864 || error "lstripe failed"
887         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
888         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
889         dd if=/dev/zero of=$FILE bs=4k count=1
890         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
891         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
892 }
893 run_test 27k "limit i_blksize for broken user apps ============="
894
895 test_27l() {
896         mkdir -p $DIR/d27
897         mcreate $DIR/f27l || error "creating file"
898         $RUNAS $SETSTRIPE $DIR/f27l -c 1 && \
899                 error "lstripe should have failed" || true
900 }
901 run_test 27l "check setstripe permissions (should return error)"
902
903 test_27m() {
904         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs -- skipping" && return
905         if [ $ORIGFREE -gt $MAXFREE ]; then
906                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
907                 return
908         fi
909         mkdir -p $DIR/d27
910         $SETSTRIPE $DIR/d27/f27m_1 -i 0 -c 1
911         dd if=/dev/zero of=$DIR/d27/f27m_1 bs=1024 count=$MAXFREE && \
912                 error "dd should fill OST0"
913         i=2
914         while $SETSTRIPE $DIR/d27/f27m_$i -i 0 -c 1 ; do
915                 i=`expr $i + 1`
916                 [ $i -gt 256 ] && break
917         done
918         i=`expr $i + 1`
919         touch $DIR/d27/f27m_$i
920         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
921                 error "OST0 was full but new created file still use it"
922         i=`expr $i + 1`
923         touch $DIR/d27/f27m_$i
924         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
925                 error "OST0 was full but new created file still use it"
926         rm -r $DIR/d27
927         sleep 15
928 }
929 run_test 27m "create file while OST0 was full =================="
930
931 # osc's keep a NOSPC stick flag that gets unset with rmdir
932 reset_enospc() {
933         [ "$1" ] && FAIL_LOC=$1 || FAIL_LOC=0
934         mkdir -p $DIR/d27/nospc
935         rmdir $DIR/d27/nospc
936         do_nodes $(comma_list $(osts_nodes)) lctl set_param fail_loc=$FAIL_LOC
937 }
938
939 exhaust_precreations() {
940         local OSTIDX=$1
941         local MDSIDX=$(get_mds_dir "$DIR/d27")
942         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
943
944         local OST=$(lfs osts | grep ${OSTIDX}": " | awk '{print $2}' | sed -e 's/_UUID$//')
945         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
946                           sed -e 's/_UUID$//;s/^.*-//')
947
948         # on the mdt's osc
949         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n osc.*${OST}-osc-${MDT_INDEX}.prealloc_last_id)
950         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n osc.*${OST}-osc-${MDT_INDEX}.prealloc_next_id)
951
952         echo ${OST}-osc-${MDT_INDEX}.prealloc_last_id=$last_id
953         echo ${OST}-osc-${MDT_INDEX}.prealloc_next_id=$next_id
954
955         mkdir -p $DIR/d27
956         $SETSTRIPE $DIR/d27 -i $OSTIDX -c 1
957 #define OBD_FAIL_OST_ENOSPC              0x215
958         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
959         echo "Creating to objid $last_id on ost $OST..."
960         createmany -o $DIR/d27/${OST}-f $next_id $((last_id - next_id + 2))
961         do_facet mds${MDSIDX} lctl get_param osc.*${OST}-osc-${MDT_INDEX}.prealloc* | grep '[0-9]'
962         reset_enospc $2
963 }
964
965 exhaust_all_precreations() {
966         local i
967         for (( i=0; i < OSTCOUNT; i++ )) ; do
968                 exhaust_precreations $i 0x215
969         done
970         reset_enospc $1
971 }
972
973 test_27n() {
974         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
975         remote_mds_nodsh && skip "remote MDS with nodsh" && return
976         remote_ost_nodsh && skip "remote OST with nodsh" && return
977
978         reset_enospc
979         rm -f $DIR/d27/f27n
980         exhaust_precreations 0 0x80000215
981
982         touch $DIR/d27/f27n || error
983
984         reset_enospc
985 }
986 run_test 27n "create file with some full OSTs =================="
987
988 test_27o() {
989         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
990         remote_mds_nodsh && skip "remote MDS with nodsh" && return
991         remote_ost_nodsh && skip "remote OST with nodsh" && return
992
993         reset_enospc
994         rm -f $DIR/d27/f27o
995         exhaust_all_precreations 0x215
996         sleep 5
997
998         touch $DIR/d27/f27o && error "able to create $DIR/d27/f27o"
999
1000         reset_enospc
1001         rm -rf $DIR/d27/*
1002 }
1003 run_test 27o "create file with all full OSTs (should error) ===="
1004
1005 test_27p() {
1006         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1007         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1008         remote_ost_nodsh && skip "remote OST with nodsh" && return
1009
1010         reset_enospc
1011         rm -f $DIR/d27/f27p
1012
1013         $MCREATE $DIR/d27/f27p || error "mcreate failed"
1014         $TRUNCATE $DIR/d27/f27p 80000000 || error "truncate failed"
1015         $CHECKSTAT -s 80000000 $DIR/d27/f27p || error "checkstat failed"
1016
1017         exhaust_precreations 0 0x80000215
1018         echo foo >> $DIR/d27/f27p || error "append failed"
1019         $CHECKSTAT -s 80000004 $DIR/d27/f27p || error "checkstat failed"
1020
1021         reset_enospc
1022 }
1023 run_test 27p "append to a truncated file with some full OSTs ==="
1024
1025 test_27q() {
1026         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1027         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1028         remote_ost_nodsh && skip "remote OST with nodsh" && return
1029
1030         reset_enospc
1031         rm -f $DIR/d27/f27q
1032
1033         $MCREATE $DIR/d27/f27q || error "mcreate $DIR/d27/f27q failed"
1034         $TRUNCATE $DIR/d27/f27q 80000000 ||error "truncate $DIR/d27/f27q failed"
1035         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat failed"
1036
1037         exhaust_all_precreations 0x215
1038
1039         echo foo >> $DIR/d27/f27q && error "append succeeded"
1040         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat 2 failed"
1041
1042         reset_enospc
1043 }
1044 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1045
1046 test_27r() {
1047         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1048         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1049         remote_ost_nodsh && skip "remote OST with nodsh" && return
1050
1051         reset_enospc
1052         rm -f $DIR/d27/f27r
1053         exhaust_precreations 0 0x80000215
1054
1055         $SETSTRIPE $DIR/d27/f27r -i 0 -c 2 # && error
1056
1057         reset_enospc
1058 }
1059 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1060
1061 test_27s() { # bug 10725
1062        mkdir -p $DIR/$tdir
1063        $LSTRIPE $DIR/$tdir $((2048 * 1024 * 1024)) -1 2 && \
1064                error "stripe width >= 2^32 succeeded" || true
1065 }
1066 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1067
1068 test_27t() { # bug 10864
1069         WDIR=`pwd`
1070         WLFS=`which lfs`
1071         cd $DIR
1072         touch $tfile
1073         $WLFS getstripe $tfile
1074         cd $WDIR
1075 }
1076 run_test 27t "check that utils parse path correctly"
1077
1078 test_27u() { # bug 4900
1079         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1080         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1081
1082 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1083         do_facet $SINGLEMDS lctl set_param fail_loc=0x139
1084         mkdir -p $DIR/d27u
1085         createmany -o $DIR/d27u/t- 1000
1086         do_facet $SINGLEMDS lctl set_param fail_loc=0
1087
1088         TLOG=$DIR/$tfile.getstripe
1089         $GETSTRIPE $DIR/d27u > $TLOG
1090         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1091         unlinkmany $DIR/d27u/t- 1000
1092         [ $OBJS -gt 0 ] && \
1093                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1094 }
1095 run_test 27u "skip object creation on OSC w/o objects =========="
1096
1097 test_27v() { # bug 4900
1098         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1099         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1100         remote_ost_nodsh && skip "remote OST with nodsh" && return
1101
1102         exhaust_all_precreations
1103
1104         mkdir -p $DIR/$tdir
1105         $SETSTRIPE $DIR/$tdir -c 1         # 1 stripe / file
1106
1107         touch $DIR/$tdir/$tfile
1108         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1109         lctl set_param fail_loc=0x705
1110         START=`date +%s`
1111         for F in `seq 1 32`; do
1112                 touch $DIR/$tdir/$tfile.$F
1113         done
1114         lctl set_param fail_loc=0
1115
1116         FINISH=`date +%s`
1117         TIMEOUT=`lctl get_param -n timeout`
1118         [ $((FINISH - START)) -ge $((TIMEOUT / 2)) ] && \
1119                error "$FINISH - $START >= $TIMEOUT / 2"
1120
1121         reset_enospc
1122 }
1123 run_test 27v "skip object creation on slow OST ================="
1124
1125 test_27w() { # bug 10997
1126         mkdir -p $DIR/d27w || error "mkdir failed"
1127         $LSTRIPE $DIR/d27w/f0 -s 65536 || error "lstripe failed"
1128         size=`$LSTRIPEINFO $DIR/d27w/f0 | awk {'print $1'}`
1129         [ $size -ne 65536 ] && error "stripe size $size != 65536" || true
1130
1131         [ "$OSTCOUNT" -lt "2" ] && skip "skipping multiple stripe count/offset test" && return
1132         for i in `seq 1 $OSTCOUNT`; do
1133                 offset=$(($i-1))
1134                 $LSTRIPE $DIR/d27w/f$i -c $i -i $offset || error "lstripe -c $i -i $offset failed"
1135                 count=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $2'}`
1136                 index=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $3'}`
1137                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1138                 [ $index -ne $offset ] && error "stripe offset $index != $offset" || true
1139         done
1140 }
1141 run_test 27w "check lfs setstripe -c -s -i options ============="
1142
1143 test_28() {
1144         mkdir $DIR/d28
1145         $CREATETEST $DIR/d28/ct || error
1146 }
1147 run_test 28 "create/mknod/mkdir with bad file types ============"
1148
1149 test_29() {
1150         cancel_lru_locks mdc
1151         mkdir $DIR/d29
1152         touch $DIR/d29/foo
1153         log 'first d29'
1154         ls -l $DIR/d29
1155
1156         declare -i LOCKCOUNTORIG=0
1157         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1158                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1159         done
1160         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1161
1162         declare -i LOCKUNUSEDCOUNTORIG=0
1163         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1164                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1165         done
1166
1167         log 'second d29'
1168         ls -l $DIR/d29
1169         log 'done'
1170
1171         declare -i LOCKCOUNTCURRENT=0
1172         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1173                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1174         done
1175
1176         declare -i LOCKUNUSEDCOUNTCURRENT=0
1177         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1178                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1179         done
1180
1181         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1182                 lctl set_param -n ldlm.dump_namespaces ""
1183                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1184                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1185                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1186                 return 2
1187         fi
1188         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1189                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1190                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1191                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1192                 return 3
1193         fi
1194 }
1195 run_test 29 "IT_GETATTR regression  ============================"
1196
1197 test_30() {
1198         cp `which ls` $DIR || cp /bin/ls $DIR
1199         $DIR/ls /
1200         rm $DIR/ls
1201 }
1202 run_test 30 "run binary from Lustre (execve) ==================="
1203
1204 test_31a() {
1205         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1206         $CHECKSTAT -a $DIR/f31 || error
1207 }
1208 run_test 31a "open-unlink file =================================="
1209
1210 test_31b() {
1211         touch $DIR/f31 || error
1212         ln $DIR/f31 $DIR/f31b || error
1213         multiop $DIR/f31b Ouc || error
1214         $CHECKSTAT -t file $DIR/f31 || error
1215 }
1216 run_test 31b "unlink file with multiple links while open ======="
1217
1218 test_31c() {
1219         touch $DIR/f31 || error
1220         ln $DIR/f31 $DIR/f31c || error
1221         multiop_bg_pause $DIR/f31 O_uc || return 1
1222         MULTIPID=$!
1223         multiop $DIR/f31c Ouc
1224         kill -USR1 $MULTIPID
1225         wait $MULTIPID
1226 }
1227 run_test 31c "open-unlink file with multiple links ============="
1228
1229 test_31d() {
1230         opendirunlink $DIR/d31d $DIR/d31d || error
1231         $CHECKSTAT -a $DIR/d31d || error
1232 }
1233 run_test 31d "remove of open directory ========================="
1234
1235 test_31e() { # bug 2904
1236         check_kernel_version 34 || return 0
1237         openfilleddirunlink $DIR/d31e || error
1238 }
1239 run_test 31e "remove of open non-empty directory ==============="
1240
1241 test_31f() { # bug 4554
1242         set -vx
1243         mkdir $DIR/d31f
1244         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1245         cp /etc/hosts $DIR/d31f
1246         ls -l $DIR/d31f
1247         $GETSTRIPE $DIR/d31f/hosts
1248         multiop_bg_pause $DIR/d31f D_c || return 1
1249         MULTIPID=$!
1250
1251         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1252         mkdir $DIR/d31f
1253         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1254         cp /etc/hosts $DIR/d31f
1255         ls -l $DIR/d31f
1256         $DIR/d31f/hosts
1257         multiop_bg_pause $DIR/d31f D_c || return 1
1258         MULTIPID2=$!
1259
1260         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1261         wait $MULTIPID || error "first opendir $MULTIPID failed"
1262
1263         sleep 6
1264
1265         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1266         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1267         set +vx
1268 }
1269 run_test 31f "remove of open directory with open-unlink file ==="
1270
1271 test_31g() {
1272         echo "-- cross directory link --"
1273         mkdir $DIR/d31g{a,b}
1274         touch $DIR/d31ga/f
1275         ln $DIR/d31ga/f $DIR/d31gb/g
1276         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1277         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1278         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1279         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1280 }
1281 run_test 31g "cross directory link==============="
1282
1283 test_31h() {
1284         echo "-- cross directory link --"
1285         mkdir $DIR/d31h
1286         mkdir $DIR/d31h/dir
1287         touch $DIR/d31h/f
1288         ln $DIR/d31h/f $DIR/d31h/dir/g
1289         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1290         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1291         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1292         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1293 }
1294 run_test 31h "cross directory link under child==============="
1295
1296 test_31i() {
1297         echo "-- cross directory link --"
1298         mkdir $DIR/d31i
1299         mkdir $DIR/d31i/dir
1300         touch $DIR/d31i/dir/f
1301         ln $DIR/d31i/dir/f $DIR/d31i/g
1302         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1303         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1304         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1305         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1306 }
1307 run_test 31i "cross directory link under parent==============="
1308
1309
1310 test_31j() {
1311         mkdir $DIR/d31j
1312         mkdir $DIR/d31j/dir1
1313         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1314         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1315         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1316         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1317         return 0
1318 }
1319 run_test 31j "link for directory==============="
1320
1321
1322 test_31k() {
1323         mkdir $DIR/d31k
1324         touch $DIR/d31k/s
1325         touch $DIR/d31k/exist
1326         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1327         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1328         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1329         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1330         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1331         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1332         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1333         return 0
1334 }
1335 run_test 31k "link to file: the same, non-existing, dir==============="
1336
1337 test_31m() {
1338         mkdir $DIR/d31m
1339         touch $DIR/d31m/s
1340         mkdir $DIR/d31m2
1341         touch $DIR/d31m2/exist
1342         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1343         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1344         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1345         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1346         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1347         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1348         return 0
1349 }
1350 run_test 31m "link to file: the same, non-existing, dir==============="
1351
1352 test_32a() {
1353         echo "== more mountpoints and symlinks ================="
1354         [ -e $DIR/d32a ] && rm -fr $DIR/d32a
1355         mkdir -p $DIR/d32a/ext2-mountpoint
1356         mount -t ext2 -o loop $EXT2_DEV $DIR/d32a/ext2-mountpoint || error
1357         $CHECKSTAT -t dir $DIR/d32a/ext2-mountpoint/.. || error
1358         $UMOUNT $DIR/d32a/ext2-mountpoint || error
1359 }
1360 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1361
1362 test_32b() {
1363         [ -e $DIR/d32b ] && rm -fr $DIR/d32b
1364         mkdir -p $DIR/d32b/ext2-mountpoint
1365         mount -t ext2 -o loop $EXT2_DEV $DIR/d32b/ext2-mountpoint || error
1366         ls -al $DIR/d32b/ext2-mountpoint/.. || error
1367         $UMOUNT $DIR/d32b/ext2-mountpoint || error
1368 }
1369 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1370
1371 test_32c() {
1372         [ -e $DIR/d32c ] && rm -fr $DIR/d32c
1373         mkdir -p $DIR/d32c/ext2-mountpoint
1374         mount -t ext2 -o loop $EXT2_DEV $DIR/d32c/ext2-mountpoint || error
1375         mkdir -p $DIR/d32c/d2/test_dir
1376         $CHECKSTAT -t dir $DIR/d32c/ext2-mountpoint/../d2/test_dir || error
1377         $UMOUNT $DIR/d32c/ext2-mountpoint || error
1378 }
1379 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1380
1381 test_32d() {
1382         [ -e $DIR/d32d ] && rm -fr $DIR/d32d
1383         mkdir -p $DIR/d32d/ext2-mountpoint
1384         mount -t ext2 -o loop $EXT2_DEV $DIR/d32d/ext2-mountpoint || error
1385         mkdir -p $DIR/d32d/d2/test_dir
1386         ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
1387         $UMOUNT $DIR/d32d/ext2-mountpoint || error
1388 }
1389 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1390
1391 test_32e() {
1392         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1393         mkdir -p $DIR/d32e/tmp
1394         TMP_DIR=$DIR/d32e/tmp
1395         ln -s $DIR/d32e $TMP_DIR/symlink11
1396         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1397         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1398         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1399 }
1400 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1401
1402 test_32f() {
1403         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1404         mkdir -p $DIR/d32f/tmp
1405         TMP_DIR=$DIR/d32f/tmp
1406         ln -s $DIR/d32f $TMP_DIR/symlink11
1407         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1408         ls $DIR/d32f/tmp/symlink11  || error
1409         ls $DIR/d32f/symlink01 || error
1410 }
1411 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1412
1413 test_32g() {
1414         TMP_DIR=$DIR/$tdir/tmp
1415         mkdir -p $TMP_DIR $DIR/${tdir}2
1416         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1417         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1418         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1419         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1420         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1421         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1422 }
1423 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1424
1425 test_32h() {
1426         rm -fr $DIR/$tdir $DIR/${tdir}2
1427         TMP_DIR=$DIR/$tdir/tmp
1428         mkdir -p $TMP_DIR $DIR/${tdir}2
1429         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1430         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1431         ls $TMP_DIR/symlink12 || error
1432         ls $DIR/$tdir/symlink02  || error
1433 }
1434 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1435
1436 test_32i() {
1437         [ -e $DIR/d32i ] && rm -fr $DIR/d32i
1438         mkdir -p $DIR/d32i/ext2-mountpoint
1439         mount -t ext2 -o loop $EXT2_DEV $DIR/d32i/ext2-mountpoint || error
1440         touch $DIR/d32i/test_file
1441         $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error
1442         $UMOUNT $DIR/d32i/ext2-mountpoint || error
1443 }
1444 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1445
1446 test_32j() {
1447         [ -e $DIR/d32j ] && rm -fr $DIR/d32j
1448         mkdir -p $DIR/d32j/ext2-mountpoint
1449         mount -t ext2 -o loop $EXT2_DEV $DIR/d32j/ext2-mountpoint || error
1450         touch $DIR/d32j/test_file
1451         cat $DIR/d32j/ext2-mountpoint/../test_file || error
1452         $UMOUNT $DIR/d32j/ext2-mountpoint || error
1453 }
1454 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1455
1456 test_32k() {
1457         rm -fr $DIR/d32k
1458         mkdir -p $DIR/d32k/ext2-mountpoint
1459         mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint
1460         mkdir -p $DIR/d32k/d2
1461         touch $DIR/d32k/d2/test_file || error
1462         $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
1463         $UMOUNT $DIR/d32k/ext2-mountpoint || error
1464 }
1465 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1466
1467 test_32l() {
1468         rm -fr $DIR/d32l
1469         mkdir -p $DIR/d32l/ext2-mountpoint
1470         mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
1471         mkdir -p $DIR/d32l/d2
1472         touch $DIR/d32l/d2/test_file
1473         cat  $DIR/d32l/ext2-mountpoint/../d2/test_file || error
1474         $UMOUNT $DIR/d32l/ext2-mountpoint || error
1475 }
1476 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1477
1478 test_32m() {
1479         rm -fr $DIR/d32m
1480         mkdir -p $DIR/d32m/tmp
1481         TMP_DIR=$DIR/d32m/tmp
1482         ln -s $DIR $TMP_DIR/symlink11
1483         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1484         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1485         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1486 }
1487 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1488
1489 test_32n() {
1490         rm -fr $DIR/d32n
1491         mkdir -p $DIR/d32n/tmp
1492         TMP_DIR=$DIR/d32n/tmp
1493         ln -s $DIR $TMP_DIR/symlink11
1494         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1495         ls -l $DIR/d32n/tmp/symlink11  || error
1496         ls -l $DIR/d32n/symlink01 || error
1497 }
1498 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1499
1500 test_32o() {
1501         rm -fr $DIR/d32o $DIR/$tfile
1502         touch $DIR/$tfile
1503         mkdir -p $DIR/d32o/tmp
1504         TMP_DIR=$DIR/d32o/tmp
1505         ln -s $DIR/$tfile $TMP_DIR/symlink12
1506         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1507         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1508         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1509         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1510         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1511 }
1512 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1513
1514 test_32p() {
1515     log 32p_1
1516         rm -fr $DIR/d32p
1517     log 32p_2
1518         rm -f $DIR/$tfile
1519     log 32p_3
1520         touch $DIR/$tfile
1521     log 32p_4
1522         mkdir -p $DIR/d32p/tmp
1523     log 32p_5
1524         TMP_DIR=$DIR/d32p/tmp
1525     log 32p_6
1526         ln -s $DIR/$tfile $TMP_DIR/symlink12
1527     log 32p_7
1528         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1529     log 32p_8
1530         cat $DIR/d32p/tmp/symlink12 || error
1531     log 32p_9
1532         cat $DIR/d32p/symlink02 || error
1533     log 32p_10
1534 }
1535 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1536
1537 test_32q() {
1538         [ -e $DIR/d32q ] && rm -fr $DIR/d32q
1539         mkdir -p $DIR/d32q
1540         touch $DIR/d32q/under_the_mount
1541         mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
1542         ls $DIR/d32q/under_the_mount && error || true
1543         $UMOUNT $DIR/d32q || error
1544 }
1545 run_test 32q "stat follows mountpoints in Lustre (should return error)"
1546
1547 test_32r() {
1548         [ -e $DIR/d32r ] && rm -fr $DIR/d32r
1549         mkdir -p $DIR/d32r
1550         touch $DIR/d32r/under_the_mount
1551         mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
1552         ls $DIR/d32r | grep -q under_the_mount && error || true
1553         $UMOUNT $DIR/d32r || error
1554 }
1555 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
1556
1557 test_33() {
1558         rm -f $DIR/$tfile
1559         touch $DIR/$tfile
1560         chmod 444 $DIR/$tfile
1561         chown $RUNAS_ID $DIR/$tfile
1562         log 33_1
1563         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
1564         log 33_2
1565 }
1566 run_test 33 "write file with mode 444 (should return error) ===="
1567
1568 test_33a() {
1569         rm -fr $DIR/d33
1570         mkdir -p $DIR/d33
1571         chown $RUNAS_ID $DIR/d33
1572         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
1573         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
1574                 error "open RDWR" || true
1575 }
1576 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
1577
1578 test_33b() {
1579         rm -fr $DIR/d33
1580         mkdir -p $DIR/d33
1581         chown $RUNAS_ID $DIR/d33
1582         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
1583 }
1584 run_test 33b "test open file with malformed flags (No panic and return error)"
1585
1586 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
1587 test_34a() {
1588         rm -f $DIR/f34
1589         $MCREATE $DIR/f34 || error
1590         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1591         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
1592         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1593         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1594 }
1595 run_test 34a "truncate file that has not been opened ==========="
1596
1597 test_34b() {
1598         [ ! -f $DIR/f34 ] && test_34a
1599         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1600         $OPENFILE -f O_RDONLY $DIR/f34
1601         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1602         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1603 }
1604 run_test 34b "O_RDONLY opening file doesn't create objects ====="
1605
1606 test_34c() {
1607         [ ! -f $DIR/f34 ] && test_34a
1608         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1609         $OPENFILE -f O_RDWR $DIR/f34
1610         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
1611         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1612 }
1613 run_test 34c "O_RDWR opening file-with-size works =============="
1614
1615 test_34d() {
1616         [ ! -f $DIR/f34 ] && test_34a
1617         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
1618         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1619         rm $DIR/f34
1620 }
1621 run_test 34d "write to sparse file ============================="
1622
1623 test_34e() {
1624         rm -f $DIR/f34e
1625         $MCREATE $DIR/f34e || error
1626         $TRUNCATE $DIR/f34e 1000 || error
1627         $CHECKSTAT -s 1000 $DIR/f34e || error
1628         $OPENFILE -f O_RDWR $DIR/f34e
1629         $CHECKSTAT -s 1000 $DIR/f34e || error
1630 }
1631 run_test 34e "create objects, some with size and some without =="
1632
1633 test_34f() { # bug 6242, 6243
1634         SIZE34F=48000
1635         rm -f $DIR/f34f
1636         $MCREATE $DIR/f34f || error
1637         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
1638         dd if=$DIR/f34f of=$TMP/f34f
1639         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
1640         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
1641         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
1642         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
1643         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
1644 }
1645 run_test 34f "read from a file with no objects until EOF ======="
1646
1647 test_35a() {
1648         cp /bin/sh $DIR/f35a
1649         chmod 444 $DIR/f35a
1650         chown $RUNAS_ID $DIR/f35a
1651         $RUNAS $DIR/f35a && error || true
1652         rm $DIR/f35a
1653 }
1654 run_test 35a "exec file with mode 444 (should return and not leak) ====="
1655
1656 test_36a() {
1657         rm -f $DIR/f36
1658         utime $DIR/f36 || error
1659 }
1660 run_test 36a "MDS utime check (mknod, utime) ==================="
1661
1662 test_36b() {
1663         echo "" > $DIR/f36
1664         utime $DIR/f36 || error
1665 }
1666 run_test 36b "OST utime check (open, utime) ===================="
1667
1668 test_36c() {
1669         rm -f $DIR/d36/f36
1670         mkdir $DIR/d36
1671         chown $RUNAS_ID $DIR/d36
1672         $RUNAS utime $DIR/d36/f36 || error
1673 }
1674 run_test 36c "non-root MDS utime check (mknod, utime) =========="
1675
1676 test_36d() {
1677         [ ! -d $DIR/d36 ] && test_36c
1678         echo "" > $DIR/d36/f36
1679         $RUNAS utime $DIR/d36/f36 || error
1680 }
1681 run_test 36d "non-root OST utime check (open, utime) ==========="
1682
1683 test_36e() {
1684         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
1685         mkdir -p $DIR/$tdir
1686         touch $DIR/$tdir/$tfile
1687         $RUNAS utime $DIR/$tdir/$tfile && \
1688                 error "utime worked, expected failure" || true
1689 }
1690 run_test 36e "utime on non-owned file (should return error) ===="
1691
1692 test_36f() {
1693         export LANG=C LC_LANG=C # for date language
1694
1695         DATESTR="Dec 20  2000"
1696         mkdir -p $DIR/$tdir
1697         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
1698         lctl set_param fail_loc=0x80000214
1699         date; date +%s
1700         cp /etc/hosts $DIR/$tdir/$tfile
1701         sync & # write RPC generated with "current" inode timestamp, but delayed
1702         sleep 1
1703         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
1704         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
1705         cancel_lru_locks osc
1706         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
1707         date; date +%s
1708         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
1709                 echo "BEFORE: $LS_BEFORE" && \
1710                 echo "AFTER : $LS_AFTER" && \
1711                 echo "WANT  : $DATESTR" && \
1712                 error "$DIR/$tdir/$tfile timestamps changed" || true
1713 }
1714 run_test 36f "utime on file racing with OST BRW write =========="
1715
1716 test_36g() {
1717         remote_ost_nodsh && skip "remote OST with nodsh" && return
1718
1719         mkdir -p $DIR/$tdir
1720         export FMD_MAX_AGE=`do_facet ost1 lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | head -n 1`
1721         FMD_BEFORE="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1722         touch $DIR/$tdir/$tfile
1723         sleep $((FMD_MAX_AGE + 12))
1724         FMD_AFTER="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1725         [ "$FMD_AFTER" -gt "$FMD_BEFORE" ] && \
1726                 echo "AFTER : $FMD_AFTER > BEFORE $FMD_BEFORE" && \
1727                 error "fmd didn't expire after ping" || true
1728 }
1729 run_test 36g "filter mod data cache expiry ====================="
1730
1731 test_37() {
1732         mkdir -p $DIR/$tdir
1733         echo f > $DIR/$tdir/fbugfile
1734         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
1735         ls $DIR/$tdir | grep "\<fbugfile\>" && error
1736         $UMOUNT $DIR/$tdir || error
1737         rm -f $DIR/$tdir/fbugfile || error
1738 }
1739 run_test 37 "ls a mounted file system to check old content ====="
1740
1741 test_38() {
1742         o_directory $DIR/$tfile
1743 }
1744 run_test 38 "open a regular file with O_DIRECTORY =============="
1745
1746 test_39() {
1747         touch $DIR/$tfile
1748         touch $DIR/${tfile}2
1749 #       ls -l  $DIR/$tfile $DIR/${tfile}2
1750 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
1751 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
1752         sleep 2
1753         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
1754         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
1755                 echo "mtime"
1756                 ls -l  $DIR/$tfile $DIR/${tfile}2
1757                 echo "atime"
1758                 ls -lu  $DIR/$tfile $DIR/${tfile}2
1759                 echo "ctime"
1760                 ls -lc  $DIR/$tfile $DIR/${tfile}2
1761                 error "O_TRUNC didn't change timestamps"
1762         fi
1763 }
1764 run_test 39 "mtime changed on create ==========================="
1765
1766 test_40() {
1767         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
1768         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
1769         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
1770 }
1771 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
1772
1773 test_41() {
1774         # bug 1553
1775         small_write $DIR/f41 18
1776 }
1777 run_test 41 "test small file write + fstat ====================="
1778
1779 count_ost_writes() {
1780         lctl get_param -n osc.*.stats |
1781             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
1782 }
1783
1784 # decent default
1785 WRITEBACK_SAVE=500
1786 DIRTY_RATIO_SAVE=40
1787 MAX_DIRTY_RATIO=50
1788 BG_DIRTY_RATIO_SAVE=10
1789 MAX_BG_DIRTY_RATIO=25
1790
1791 start_writeback() {
1792         trap 0
1793         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
1794         # dirty_ratio, dirty_background_ratio
1795         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1796                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
1797                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
1798                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
1799         else
1800                 # if file not here, we are a 2.4 kernel
1801                 kill -CONT `pidof kupdated`
1802         fi
1803 }
1804
1805 stop_writeback() {
1806         # setup the trap first, so someone cannot exit the test at the
1807         # exact wrong time and mess up a machine
1808         trap start_writeback EXIT
1809         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
1810         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1811                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
1812                 sysctl -w vm.dirty_writeback_centisecs=0
1813                 sysctl -w vm.dirty_writeback_centisecs=0
1814                 # save and increase /proc/sys/vm/dirty_ratio
1815                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
1816                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
1817                 # save and increase /proc/sys/vm/dirty_background_ratio
1818                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
1819                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
1820         else
1821                 # if file not here, we are a 2.4 kernel
1822                 kill -STOP `pidof kupdated`
1823         fi
1824 }
1825
1826 # ensure that all stripes have some grant before we test client-side cache
1827 setup_test42() {
1828         [ "$SETUP_TEST42" ] && return
1829         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
1830                 dd if=/dev/zero of=$i bs=4k count=1
1831                 rm $i
1832         done
1833         SETUP_TEST42=DONE
1834 }
1835
1836 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
1837 # file truncation, and file removal.
1838 test_42a() {
1839         setup_test42
1840         cancel_lru_locks osc
1841         stop_writeback
1842         sync; sleep 1; sync # just to be safe
1843         BEFOREWRITES=`count_ost_writes`
1844         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
1845         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
1846         AFTERWRITES=`count_ost_writes`
1847         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1848                 error "$BEFOREWRITES < $AFTERWRITES"
1849         start_writeback
1850 }
1851 run_test 42a "ensure that we don't flush on close =============="
1852
1853 test_42b() {
1854         setup_test42
1855         cancel_lru_locks osc
1856         stop_writeback
1857         sync
1858         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
1859         BEFOREWRITES=`count_ost_writes`
1860         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
1861         AFTERWRITES=`count_ost_writes`
1862         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1863                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
1864         fi
1865         BEFOREWRITES=`count_ost_writes`
1866         sync || error "sync: $?"
1867         AFTERWRITES=`count_ost_writes`
1868         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1869                 error "$BEFOREWRITES < $AFTERWRITES on sync"
1870         fi
1871         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
1872         start_writeback
1873         return 0
1874 }
1875 run_test 42b "test destroy of file with cached dirty data ======"
1876
1877 # if these tests just want to test the effect of truncation,
1878 # they have to be very careful.  consider:
1879 # - the first open gets a {0,EOF}PR lock
1880 # - the first write conflicts and gets a {0, count-1}PW
1881 # - the rest of the writes are under {count,EOF}PW
1882 # - the open for truncate tries to match a {0,EOF}PR
1883 #   for the filesize and cancels the PWs.
1884 # any number of fixes (don't get {0,EOF} on open, match
1885 # composite locks, do smarter file size management) fix
1886 # this, but for now we want these tests to verify that
1887 # the cancellation with truncate intent works, so we
1888 # start the file with a full-file pw lock to match against
1889 # until the truncate.
1890 trunc_test() {
1891         test=$1
1892         file=$DIR/$test
1893         offset=$2
1894         cancel_lru_locks osc
1895         stop_writeback
1896         # prime the file with 0,EOF PW to match
1897         touch $file
1898         $TRUNCATE $file 0
1899         sync; sync
1900         # now the real test..
1901         dd if=/dev/zero of=$file bs=1024 count=100
1902         BEFOREWRITES=`count_ost_writes`
1903         $TRUNCATE $file $offset
1904         cancel_lru_locks osc
1905         AFTERWRITES=`count_ost_writes`
1906         start_writeback
1907 }
1908
1909 test_42c() {
1910         trunc_test 42c 1024
1911         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
1912             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
1913         rm $file
1914 }
1915 run_test 42c "test partial truncate of file with cached dirty data"
1916
1917 test_42d() {
1918         trunc_test 42d 0
1919         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1920             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
1921         rm $file
1922 }
1923 run_test 42d "test complete truncate of file with cached dirty data"
1924
1925 test_43() {
1926         mkdir -p $DIR/$tdir
1927         cp -p /bin/ls $DIR/$tdir/$tfile
1928         multiop $DIR/$tdir/$tfile Ow_c &
1929         pid=$!
1930         # give multiop a chance to open
1931         sleep 1
1932
1933         $DIR/$tdir/$tfile && error || true
1934         kill -USR1 $pid
1935 }
1936 run_test 43 "execution of file opened for write should return -ETXTBSY"
1937
1938 test_43a() {
1939         mkdir -p $DIR/d43
1940         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
1941         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
1942         MULTIOP_PID=$!
1943         multiop $DIR/d43/multiop Oc && error "expected error, got success"
1944         kill -USR1 $MULTIOP_PID || return 2
1945         wait $MULTIOP_PID || return 3
1946         rm $TMP/test43.junk
1947 }
1948 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
1949
1950 test_43b() {
1951         mkdir -p $DIR/d43
1952         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
1953         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
1954         MULTIOP_PID=$!
1955         truncate $DIR/d43/multiop 0 && error "expected error, got success"
1956         kill -USR1 $MULTIOP_PID || return 2
1957         wait $MULTIOP_PID || return 3
1958         rm $TMP/test43.junk
1959 }
1960 run_test 43b "truncate of file being executed should return -ETXTBSY"
1961
1962 test_43c() {
1963         local testdir="$DIR/d43c"
1964         mkdir -p $testdir
1965         cp $SHELL $testdir/
1966         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
1967                 ( cd $testdir && md5sum -c)
1968 }
1969 run_test 43c "md5sum of copy into lustre========================"
1970
1971 test_44() {
1972         [  "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
1973         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
1974         dd if=$DIR/f1 bs=4k count=1 > /dev/null
1975 }
1976 run_test 44 "zero length read from a sparse stripe ============="
1977
1978 test_44a() {
1979     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
1980                          awk '{print $2}'`
1981     [ -z "$nstripe" ] && skip "can't get stripe info" && return
1982     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
1983     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
1984                       awk '{print $2}'`
1985     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
1986         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
1987     fi
1988
1989     OFFSETS="0 $((stride/2)) $((stride-1))"
1990     for offset in $OFFSETS ; do
1991       for i in `seq 0 $((nstripe-1))`; do
1992         local GLOBALOFFSETS=""
1993         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
1994         local myfn=$DIR/d44a-$size
1995         echo "--------writing $myfn at $size"
1996         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
1997         GLOBALOFFSETS="$GLOBALOFFSETS $size"
1998         ll_sparseness_verify $myfn $GLOBALOFFSETS \
1999                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2000
2001         for j in `seq 0 $((nstripe-1))`; do
2002             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
2003             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
2004             GLOBALOFFSETS="$GLOBALOFFSETS $size"
2005         done
2006         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2007                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2008         rm -f $myfn
2009       done
2010     done
2011 }
2012 run_test 44a "test sparse pwrite ==============================="
2013
2014 dirty_osc_total() {
2015         tot=0
2016         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
2017                 tot=$(($tot + $d))
2018         done
2019         echo $tot
2020 }
2021 do_dirty_record() {
2022         before=`dirty_osc_total`
2023         echo executing "\"$*\""
2024         eval $*
2025         after=`dirty_osc_total`
2026         echo before $before, after $after
2027 }
2028 test_45() {
2029         f="$DIR/f45"
2030         # Obtain grants from OST if it supports it
2031         echo blah > ${f}_grant
2032         stop_writeback
2033         sync
2034         do_dirty_record "echo blah > $f"
2035         [ $before -eq $after ] && error "write wasn't cached"
2036         do_dirty_record "> $f"
2037         [ $before -gt $after ] || error "truncate didn't lower dirty count"
2038         do_dirty_record "echo blah > $f"
2039         [ $before -eq $after ] && error "write wasn't cached"
2040         do_dirty_record "sync"
2041         [ $before -gt $after ] || error "writeback didn't lower dirty count"
2042         do_dirty_record "echo blah > $f"
2043         [ $before -eq $after ] && error "write wasn't cached"
2044         do_dirty_record "cancel_lru_locks osc"
2045         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
2046         start_writeback
2047 }
2048 run_test 45 "osc io page accounting ============================"
2049
2050 page_size() {
2051         getconf PAGE_SIZE
2052 }
2053
2054 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
2055 # test tickles a bug where re-dirtying a page was failing to be mapped to the
2056 # objects offset and an assert hit when an rpc was built with 1023's mapped
2057 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
2058 test_46() {
2059         f="$DIR/f46"
2060         stop_writeback
2061         sync
2062         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2063         sync
2064         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
2065         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2066         sync
2067         start_writeback
2068 }
2069 run_test 46 "dirtying a previously written page ================"
2070
2071 # Check that device nodes are created and then visible correctly (#2091)
2072 test_47() {
2073         cmknod $DIR/test_47_node || error
2074 }
2075 run_test 47 "Device nodes check ================================"
2076
2077 test_48a() { # bug 2399
2078         check_kernel_version 34 || return 0
2079         mkdir -p $DIR/d48a
2080         cd $DIR/d48a
2081         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
2082         mkdir $DIR/d48a || error "recreate directory failed"
2083         touch foo || error "'touch foo' failed after recreating cwd"
2084         mkdir bar || error "'mkdir foo' failed after recreating cwd"
2085         if check_kernel_version 44; then
2086                 touch .foo || error "'touch .foo' failed after recreating cwd"
2087                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
2088         fi
2089         ls . > /dev/null || error "'ls .' failed after recreating cwd"
2090         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2091         cd . || error "'cd .' failed after recreating cwd"
2092         mkdir . && error "'mkdir .' worked after recreating cwd"
2093         rmdir . && error "'rmdir .' worked after recreating cwd"
2094         ln -s . baz || error "'ln -s .' failed after recreating cwd"
2095         cd .. || error "'cd ..' failed after recreating cwd"
2096 }
2097 run_test 48a "Access renamed working dir (should return errors)="
2098
2099 test_48b() { # bug 2399
2100         check_kernel_version 34 || return 0
2101         mkdir -p $DIR/d48b
2102         cd $DIR/d48b
2103         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
2104         touch foo && error "'touch foo' worked after removing cwd"
2105         mkdir foo && error "'mkdir foo' worked after removing cwd"
2106         if check_kernel_version 44; then
2107                 touch .foo && error "'touch .foo' worked after removing cwd"
2108                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2109         fi
2110         ls . > /dev/null && error "'ls .' worked after removing cwd"
2111         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2112         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
2113         mkdir . && error "'mkdir .' worked after removing cwd"
2114         rmdir . && error "'rmdir .' worked after removing cwd"
2115         ln -s . foo && error "'ln -s .' worked after removing cwd"
2116         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
2117 }
2118 run_test 48b "Access removed working dir (should return errors)="
2119
2120 test_48c() { # bug 2350
2121         check_kernel_version 36 || return 0
2122         #lctl set_param debug=-1
2123         #set -vx
2124         mkdir -p $DIR/d48c/dir
2125         cd $DIR/d48c/dir
2126         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
2127         $TRACE touch foo && error "'touch foo' worked after removing cwd"
2128         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
2129         if check_kernel_version 44; then
2130                 touch .foo && error "'touch .foo' worked after removing cwd"
2131                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2132         fi
2133         $TRACE ls . && error "'ls .' worked after removing cwd"
2134         $TRACE ls .. || error "'ls ..' failed after removing cwd"
2135         is_patchless || ( $TRACE cd . && error "'cd .' worked after removing cwd" )
2136         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
2137         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
2138         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
2139         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
2140 }
2141 run_test 48c "Access removed working subdir (should return errors)"
2142
2143 test_48d() { # bug 2350
2144         check_kernel_version 36 || return 0
2145         #lctl set_param debug=-1
2146         #set -vx
2147         mkdir -p $DIR/d48d/dir
2148         cd $DIR/d48d/dir
2149         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
2150         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
2151         $TRACE touch foo && error "'touch foo' worked after removing parent"
2152         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
2153         if check_kernel_version 44; then
2154                 touch .foo && error "'touch .foo' worked after removing parent"
2155                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
2156         fi
2157         $TRACE ls . && error "'ls .' worked after removing parent"
2158         $TRACE ls .. && error "'ls ..' worked after removing parent"
2159         is_patchless || ( $TRACE cd . && error "'cd .' worked after recreate parent" )
2160         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
2161         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
2162         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
2163         is_patchless || ( $TRACE cd .. && error "'cd ..' worked after removing parent" || true )
2164 }
2165 run_test 48d "Access removed parent subdir (should return errors)"
2166
2167 test_48e() { # bug 4134
2168         check_kernel_version 41 || return 0
2169         #lctl set_param debug=-1
2170         #set -vx
2171         mkdir -p $DIR/d48e/dir
2172         cd $DIR/d48e/dir
2173         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
2174         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
2175         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
2176         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
2177         # On a buggy kernel addition of "touch foo" after cd .. will
2178         # produce kernel oops in lookup_hash_it
2179         touch ../foo && error "'cd ..' worked after recreate parent"
2180         cd $DIR
2181         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
2182 }
2183 run_test 48e "Access to recreated parent subdir (should return errors)"
2184
2185 test_50() {
2186         # bug 1485
2187         mkdir $DIR/d50
2188         cd $DIR/d50
2189         ls /proc/$$/cwd || error
2190 }
2191 run_test 50 "special situations: /proc symlinks  ==============="
2192
2193 test_51a() {    # was test_51
2194         # bug 1516 - create an empty entry right after ".." then split dir
2195         mkdir $DIR/d51
2196         touch $DIR/d51/foo
2197         $MCREATE $DIR/d51/bar
2198         rm $DIR/d51/foo
2199         createmany -m $DIR/d51/longfile 201
2200         FNUM=202
2201         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
2202                 $MCREATE $DIR/d51/longfile$FNUM
2203                 FNUM=$(($FNUM + 1))
2204                 echo -n "+"
2205         done
2206         echo
2207         ls -l $DIR/d51 > /dev/null || error
2208 }
2209 run_test 51a "special situations: split htree with empty entry =="
2210
2211 #export NUMTEST=70000
2212 # FIXME: I select a relatively small number to do basic test.
2213 # large number may give panic(). debugging on this is going on.
2214 export NUMTEST=70
2215 test_51b() {
2216         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2217         [ $NUMFREE -lt 21000 ] && \
2218                 skip "not enough free inodes ($NUMFREE)" && \
2219                 return
2220
2221         check_kernel_version 40 || NUMTEST=31000
2222         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
2223
2224         mkdir -p $DIR/d51b
2225         createmany -d $DIR/d51b/t- $NUMTEST
2226 }
2227 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
2228
2229 test_51bb() {
2230         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2231
2232         local ndirs=${TEST51BB_NDIRS:-10}
2233         local nfiles=${TEST51BB_NFILES:-100}
2234
2235         local numfree=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2236
2237         [ $numfree -lt $(( ndirs * nfiles)) ] && \
2238                 nfiles=$(( numfree / ndirs - 10 ))
2239
2240         local dir=$DIR/d51bb
2241         mkdir -p $dir
2242         local savePOLICY=$(lctl get_param -n lmv.*.placement)
2243         lctl set_param -n lmv.*.placement=CHAR
2244
2245         lfs df -i $dir
2246         local IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2247         OLDUSED=($IUSED)
2248
2249         declare -a dirs
2250         for ((i=0; i < $ndirs; i++)); do
2251                 dirs[i]=$dir/$RANDOM
2252                 echo Creating directory ${dirs[i]}
2253                 mkdir -p ${dirs[i]}
2254                 ls $dir
2255                 echo Creating $nfiles in dir ${dirs[i]} ...
2256                 echo "createmany -o ${dirs[i]}/$tfile- $nfiles"
2257                 createmany -o ${dirs[i]}/$tfile- $nfiles
2258         done
2259         ls $dir
2260
2261         sleep 1
2262
2263         IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2264         NEWUSED=($IUSED)
2265
2266         local rc=0
2267         for ((i=0; i<${#NEWUSED[@]}; i++)); do
2268                 echo "mds $i: inodes count OLD ${OLDUSED[$i]} NEW ${NEWUSED[$i]}"
2269                 [ ${OLDUSED[$i]} -lt ${NEWUSED[$i]} ] || rc=$((rc + 1))
2270         done
2271         
2272         lctl set_param -n lmv.*.placement=$savePOLICY
2273
2274         [ $rc -ne $MDSCOUNT ] || \
2275                 error "Objects/inodes are not distributed over all mds servers"
2276 }
2277 run_test 51bb "mkdir createmany CMD $MDSCOUNT  ===================="
2278
2279
2280 test_51c() {
2281         [ ! -d $DIR/d51b ] && skip "$DIR/51b missing" && \
2282                 return
2283
2284         unlinkmany -d $DIR/d51b/t- $NUMTEST
2285 }
2286 run_test 51c "rmdir .../t-0 --- .../t-$NUMTEST ===================="
2287
2288 test_51d() {
2289         [  "$OSTCOUNT" -lt "3" ] && skip "skipping test with few OSTs" && return
2290         mkdir -p $DIR/d51d
2291         createmany -o $DIR/d51d/t- 1000
2292         $LFS getstripe $DIR/d51d > $TMP/files
2293         for N in `seq 0 $((OSTCOUNT - 1))`; do
2294             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
2295             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
2296             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
2297         done
2298         unlinkmany $DIR/d51d/t- 1000
2299
2300         NLAST=0
2301         for N in `seq 1 $((OSTCOUNT - 1))`; do
2302             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
2303                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2304             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
2305                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2306
2307             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
2308                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2309             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
2310                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2311             NLAST=$N
2312         done
2313 }
2314 run_test 51d "check object distribution ===================="
2315
2316 test_52a() {
2317         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
2318         mkdir -p $DIR/d52a
2319         touch $DIR/d52a/foo
2320         chattr =a $DIR/d52a/foo || error "chattr =a failed"
2321         echo bar >> $DIR/d52a/foo || error "append bar failed"
2322         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
2323         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
2324         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
2325         echo foo >> $DIR/d52a/foo || error "append foo failed"
2326         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
2327         lsattr $DIR/d52a/foo | egrep -q "^-+a-+ $DIR/d52a/foo" || error "lsattr"
2328         chattr -a $DIR/d52a/foo || error "chattr -a failed"
2329
2330         rm -fr $DIR/d52a || error "cleanup rm failed"
2331 }
2332 run_test 52a "append-only flag test (should return errors) ====="
2333
2334 test_52b() {
2335         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
2336         mkdir -p $DIR/d52b
2337         touch $DIR/d52b/foo
2338         chattr =i $DIR/d52b/foo || error
2339         cat test > $DIR/d52b/foo && error
2340         cp /etc/hosts $DIR/d52b/foo && error
2341         rm -f $DIR/d52b/foo 2>/dev/null && error
2342         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error
2343         echo foo >> $DIR/d52b/foo && error
2344         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error
2345         [ -f $DIR/d52b/foo ] || error
2346         [ -f $DIR/d52b/foo_ren ] && error
2347         lsattr $DIR/d52b/foo | egrep -q "^-+i-+ $DIR/d52b/foo" || error
2348         chattr -i $DIR/d52b/foo || error
2349
2350         rm -fr $DIR/d52b || error
2351 }
2352 run_test 52b "immutable flag test (should return errors) ======="
2353
2354 test_53() {
2355         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2356         remote_ost_nodsh && skip "remote OST with nodsh" && return
2357
2358         local param
2359         local ostname
2360         local mds_last
2361         local ost_last
2362         local ostnum
2363
2364         # only test MDT0000
2365         for value in $(do_facet $SINGLEMDS lctl get_param osc.*-osc-MDT0000.prealloc_last_id) ; do
2366                 param=`echo ${value[0]} | cut -d "=" -f1`
2367                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
2368                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
2369                 ostnum=$(echo $ostname | sed "s/${FSNAME}-OST//g" | awk '{print ($1+1)}' )
2370                 ost_last=$(do_facet ost$ostnum lctl get_param -n obdfilter.$ostname.last_id | head -n 1)
2371                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2372                 if [ $ost_last != $mds_last ]; then
2373                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2374                 fi
2375         done
2376 }
2377 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
2378
2379 test_54a() {
2380         [ ! -f "$SOCKETSERVER" ] && skip "no socketserver, skipping" && return
2381         [ ! -f "$SOCKETCLIENT" ] && skip "no socketclient, skipping" && return
2382         $SOCKETSERVER $DIR/socket
2383         $SOCKETCLIENT $DIR/socket || error
2384         $MUNLINK $DIR/socket
2385 }
2386 run_test 54a "unix domain socket test =========================="
2387
2388 test_54b() {
2389         f="$DIR/f54b"
2390         mknod $f c 1 3
2391         chmod 0666 $f
2392         dd if=/dev/zero of=$f bs=`page_size` count=1
2393 }
2394 run_test 54b "char device works in lustre ======================"
2395
2396 find_loop_dev() {
2397         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
2398         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
2399         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
2400
2401         for i in `seq 3 7`; do
2402                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
2403                 LOOPDEV=$LOOPBASE$i
2404                 LOOPNUM=$i
2405                 break
2406         done
2407 }
2408
2409 test_54c() {
2410         tfile="$DIR/f54c"
2411         tdir="$DIR/d54c"
2412         loopdev="$DIR/loop54c"
2413
2414         find_loop_dev
2415         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
2416         mknod $loopdev b 7 $LOOPNUM
2417         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
2418         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
2419         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
2420         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
2421         mkdir -p $tdir
2422         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
2423         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
2424         df $tdir
2425         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
2426         $UMOUNT $tdir
2427         losetup -d $loopdev
2428         rm $loopdev
2429 }
2430 run_test 54c "block device works in lustre ====================="
2431
2432 test_54d() {
2433         f="$DIR/f54d"
2434         string="aaaaaa"
2435         mknod $f p
2436         [ "$string" = `echo $string > $f | cat $f` ] || error
2437 }
2438 run_test 54d "fifo device works in lustre ======================"
2439
2440 test_54e() {
2441         check_kernel_version 46 || return 0
2442         f="$DIR/f54e"
2443         string="aaaaaa"
2444         cp -aL /dev/console $f
2445         echo $string > $f || error
2446 }
2447 run_test 54e "console/tty device works in lustre ======================"
2448
2449 check_fstype() {
2450         grep -q $FSTYPE /proc/filesystems && return 1
2451         modprobe $FSTYPE
2452         grep -q $FSTYPE /proc/filesystems && return 1
2453         insmod ../$FSTYPE/$FSTYPE.o
2454         grep -q $FSTYPE /proc/filesystems && return 1
2455         insmod ../$FSTYPE/$FSTYPE.ko
2456         grep -q $FSTYPE /proc/filesystems && return 1
2457         return 0
2458 }
2459
2460 test_55() {
2461         rm -rf $DIR/d55
2462         mkdir $DIR/d55
2463         check_fstype && skip "can't find fs $FSTYPE" && return
2464         mount -t $FSTYPE -o loop,iopen $EXT2_DEV $DIR/d55 || error "mounting"
2465         touch $DIR/d55/foo
2466         $IOPENTEST1 $DIR/d55/foo $DIR/d55 || error "running $IOPENTEST1"
2467         $IOPENTEST2 $DIR/d55 || error "running $IOPENTEST2"
2468         echo "check for $EXT2_DEV. Please wait..."
2469         rm -rf $DIR/d55/*
2470         $UMOUNT $DIR/d55 || error "unmounting"
2471 }
2472 run_test 55 "check iopen_connect_dentry() ======================"
2473
2474 test_56a() {    # was test_56
2475         rm -rf $DIR/d56
2476         $SETSTRIPE -d $DIR
2477         mkdir $DIR/d56
2478         mkdir $DIR/d56/dir
2479         NUMFILES=3
2480         NUMFILESx2=$(($NUMFILES * 2))
2481         for i in `seq 1 $NUMFILES` ; do
2482                 touch $DIR/d56/file$i
2483                 touch $DIR/d56/dir/file$i
2484         done
2485
2486         # test lfs getstripe with --recursive
2487         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
2488         [ $FILENUM -eq $NUMFILESx2 ] || error \
2489                 "lfs getstripe --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
2490         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
2491         [ $FILENUM -eq $NUMFILES ] || error \
2492                 "lfs getstripe $DIR/d56 without --recursive wrong: found $FILENUM, expected $NUMFILES"
2493         echo "lfs getstripe --recursive passed."
2494
2495         # test lfs getstripe with file instead of dir
2496         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
2497         [ $FILENUM  -eq 1 ] || error \
2498                  "lfs getstripe $DIR/d56/file1 wrong:found $FILENUM, expected 1"
2499         echo "lfs getstripe file passed."
2500
2501         #test lfs getstripe with --verbose
2502         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
2503                 error "lfs getstripe --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
2504         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
2505                 "lfs getstripe $DIR/d56 without --verbose wrong: should not show lmm_magic info"
2506         echo "lfs getstripe --verbose passed."
2507
2508         #test lfs getstripe with --obd
2509         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
2510                 error "lfs getstripe --obd wrong_uuid should return error message"
2511
2512         [  "$OSTCOUNT" -lt 2 ] && \
2513                 skip "skipping other lfs getstripe --obd test" && return
2514         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1[    ]/p' | wc -l`
2515         OBDUUID=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1:/p' | awk '{print $2}'`
2516         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | wc -l`
2517         [ $FOUND -eq $FILENUM ] || \
2518                 error "lfs getstripe --obd wrong: found $FOUND, expected $FILENUM"
2519         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 | sed '/^[   ]*1[    ]/d' |\
2520                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
2521                 error "lfs getstripe --obd wrong: should not show file on other obd"
2522         echo "lfs getstripe --obd passed."
2523 }
2524 run_test 56a "check lfs getstripe ===================================="
2525
2526 NUMFILES=3
2527 NUMDIRS=3
2528 setup_56() {
2529         LOCAL_NUMFILES=$1
2530         LOCAL_NUMDIRS=$2
2531         if [ ! -d "$DIR/${tdir}g" ] ; then
2532                 mkdir -p $DIR/${tdir}g
2533                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2534                         touch $DIR/${tdir}g/file$i
2535                 done
2536                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2537                         mkdir $DIR/${tdir}g/dir$i
2538                         for j in `seq 1 $LOCAL_NUMFILES` ; do
2539                                 touch $DIR/${tdir}g/dir$i/file$j
2540                         done
2541                 done
2542         fi
2543 }
2544
2545 setup_56_special() {
2546         LOCAL_NUMFILES=$1
2547         LOCAL_NUMDIRS=$2
2548         TDIR=$DIR/${tdir}g
2549         setup_56 $1 $2
2550         if [ ! -e "$TDIR/loop1b" ] ; then
2551                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2552                         mknod $TDIR/loop${i}b b 7 $i
2553                         mknod $TDIR/null${i}c c 1 3
2554                         ln -s $TDIR/file1 $TDIR/link${i}l
2555                 done
2556                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2557                         mknod $TDIR/dir$i/loop${i}b b 7 $i
2558                         mknod $TDIR/dir$i/null${i}c c 1 3
2559                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
2560                 done
2561         fi
2562 }
2563
2564 test_56g() {
2565         $LSTRIPE -d $DIR
2566
2567         setup_56 $NUMFILES $NUMDIRS
2568
2569         EXPECTED=$(($NUMDIRS + 2))
2570         # test lfs find with -name
2571         for i in `seq 1 $NUMFILES` ; do
2572                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
2573                 [ $NUMS -eq $EXPECTED ] || error \
2574                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2575         done
2576         echo "lfs find -name passed."
2577 }
2578 run_test 56g "check lfs find -name ============================="
2579
2580 test_56h() {
2581         $LSTRIPE -d $DIR
2582
2583         setup_56 $NUMFILES $NUMDIRS
2584
2585         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
2586         # test lfs find with ! -name
2587         for i in `seq 1 $NUMFILES` ; do
2588                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
2589                 [ $NUMS -eq $EXPECTED ] || error \
2590                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2591         done
2592         echo "lfs find ! -name passed."
2593 }
2594 run_test 56h "check lfs find ! -name ============================="
2595
2596 test_56i() {
2597        tdir=${tdir}i
2598        mkdir -p $DIR/$tdir
2599        UUID=`$GETSTRIPE $DIR/$tdir | awk '/0: / { print $2 }'`
2600        OUT="`$LFIND -ost $UUID $DIR/$tdir`"
2601        [ "$OUT" ] && error "$LFIND returned directory '$OUT'" || true
2602 }
2603 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
2604
2605 test_56j() {
2606         setup_56_special $NUMFILES $NUMDIRS
2607
2608         EXPECTED=$((NUMDIRS+1))
2609         NUMS=`$LFIND -type d $DIR/${tdir}g | wc -l`
2610         [ $NUMS -eq $EXPECTED ] || \
2611                 error "lfs find -type d $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2612 }
2613 run_test 56j "check lfs find -type d ============================="
2614
2615 test_56k() {
2616         setup_56_special $NUMFILES $NUMDIRS
2617
2618         EXPECTED=$(((NUMDIRS+1) * NUMFILES))
2619         NUMS=`$LFIND -type f $DIR/${tdir}g | wc -l`
2620         [ $NUMS -eq $EXPECTED ] || \
2621                 error "lfs find -type f $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2622 }
2623 run_test 56k "check lfs find -type f ============================="
2624
2625 test_56l() {
2626         setup_56_special $NUMFILES $NUMDIRS
2627
2628         EXPECTED=$((NUMDIRS + NUMFILES))
2629         NUMS=`$LFIND -type b $DIR/${tdir}g | wc -l`
2630         [ $NUMS -eq $EXPECTED ] || \
2631                 error "lfs find -type b $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2632 }
2633 run_test 56l "check lfs find -type b ============================="
2634
2635 test_56m() {
2636         setup_56_special $NUMFILES $NUMDIRS
2637
2638         EXPECTED=$((NUMDIRS + NUMFILES))
2639         NUMS=`$LFIND -type c $DIR/${tdir}g | wc -l`
2640         [ $NUMS -eq $EXPECTED ] || \
2641                 error "lfs find -type c $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2642 }
2643 run_test 56m "check lfs find -type c ============================="
2644
2645 test_56n() {
2646         setup_56_special $NUMFILES $NUMDIRS
2647
2648         EXPECTED=$((NUMDIRS + NUMFILES))
2649         NUMS=`$LFIND -type l $DIR/${tdir}g | wc -l`
2650         [ $NUMS -eq $EXPECTED ] || \
2651                 error "lfs find -type l $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2652 }
2653 run_test 56n "check lfs find -type l ============================="
2654
2655 test_56o() {
2656         setup_56 $NUMFILES $NUMDIRS
2657         TDIR=$DIR/${tdir}g
2658
2659         utime $TDIR/file1 > /dev/null || error "utime (1)"
2660         utime $TDIR/file2 > /dev/null || error "utime (2)"
2661         utime $TDIR/dir1 > /dev/null || error "utime (3)"
2662         utime $TDIR/dir2 > /dev/null || error "utime (4)"
2663         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
2664
2665         EXPECTED=5
2666         NUMS=`$LFIND -mtime +1 $TDIR | wc -l`
2667         [ $NUMS -eq $EXPECTED ] || \
2668                 error "lfs find -mtime $TDIR wrong: found $NUMS, expected $EXPECTED"
2669 }
2670 run_test 56o "check lfs find -mtime for old files =========================="
2671
2672 test_56p() {
2673         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
2674
2675         TDIR=$DIR/${tdir}g
2676         rm -rf $TDIR
2677
2678         setup_56 $NUMFILES $NUMDIRS
2679
2680         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
2681         EXPECTED=$NUMFILES
2682         NUMS="`$LFIND -uid $RUNAS_ID $TDIR | wc -l`"
2683         [ $NUMS -eq $EXPECTED ] || \
2684                 error "lfs find -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
2685
2686         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
2687         NUMS="`$LFIND ! -uid $RUNAS_ID $TDIR | wc -l`"
2688         [ $NUMS -eq $EXPECTED ] || \
2689                 error "lfs find ! -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
2690
2691         echo "lfs find -uid and ! -uid passed."
2692 }
2693 run_test 56p "check lfs find -uid and ! -uid ==============================="
2694
2695 test_56q() {
2696         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
2697
2698         TDIR=$DIR/${tdir}g
2699         rm -rf $TDIR
2700
2701         setup_56 $NUMFILES $NUMDIRS
2702
2703         chgrp $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
2704         EXPECTED=$NUMFILES
2705         NUMS="`$LFIND -gid $RUNAS_ID $TDIR | wc -l`"
2706         [ $NUMS -eq $EXPECTED ] || \
2707                 error "lfs find -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
2708
2709         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
2710         NUMS="`$LFIND ! -gid $RUNAS_ID $TDIR | wc -l`"
2711         [ $NUMS -eq $EXPECTED ] || \
2712                 error "lfs find ! -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
2713
2714         echo "lfs find -gid and ! -gid passed."
2715 }
2716 run_test 56q "check lfs find -gid and ! -gid ==============================="
2717
2718 test_57a() {
2719         # note test will not do anything if MDS is not local
2720         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2721
2722         local MNTDEV="osd.*MDT*.mntdev"
2723         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
2724         [ -z "$DEV" ] && error "can't access $MNTDEV"
2725         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
2726                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
2727                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
2728                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
2729                 rm $TMP/t57a.dump
2730         done
2731 }
2732 run_test 57a "verify MDS filesystem created with large inodes =="
2733
2734 test_57b() {
2735         local dir=$DIR/d57b
2736
2737         local FILECOUNT=100
2738         local FILE1=$dir/f1
2739         local FILEN=$dir/f$FILECOUNT
2740
2741         rm -rf $dir || error "removing $dir"
2742         mkdir -p $dir || error "creating $dir"
2743         local num=$(get_mds_dir $dir)
2744         local mymds=mds$num
2745         
2746         echo "mcreating $FILECOUNT files"
2747         createmany -m $dir/f 1 $FILECOUNT || \
2748                 error "creating files in $dir"
2749
2750         # verify that files do not have EAs yet
2751         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
2752         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
2753
2754         sync
2755         sleep 1
2756         df $dir  #make sure we get new statfs data
2757         local MDSFREE=$(do_facet $mymds lctl get_param -n osd.*MDT000$((num -1)).kbytesfree)
2758         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
2759         echo "opening files to create objects/EAs"
2760         local FILE
2761         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
2762                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
2763         done
2764
2765         # verify that files have EAs now
2766         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
2767         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
2768
2769         sleep 1  #make sure we get new statfs data
2770         df $dir
2771         local MDSFREE2=$(do_facet $mymds lctl get_param -n osd.*MDT000$((num -1)).kbytesfree)
2772         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
2773         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
2774                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
2775                         error "MDC before $MDCFREE != after $MDCFREE2"
2776                 else
2777                         echo "MDC before $MDCFREE != after $MDCFREE2"
2778                         echo "unable to confirm if MDS has large inodes"
2779                 fi
2780         fi
2781         rm -rf $dir
2782 }
2783 run_test 57b "default LOV EAs are stored inside large inodes ==="
2784
2785 test_58() {
2786     [ -z "$(which wiretest 2>/dev/null)" ] && skip "could not find wiretest" && return
2787     wiretest
2788 }
2789 run_test 58 "verify cross-platform wire constants =============="
2790
2791 test_59() {
2792         echo "touch 130 files"
2793         createmany -o $DIR/f59- 130
2794         echo "rm 130 files"
2795         unlinkmany $DIR/f59- 130
2796         sync
2797         sleep 2
2798         # wait for commitment of removal
2799 }
2800 run_test 59 "verify cancellation of llog records async ========="
2801
2802 TEST60_HEAD="test_60 run $RANDOM"
2803 test_60a() {
2804         [ ! -f run-llog.sh ] && skip "missing subtest run-llog.sh" && return
2805         log "$TEST60_HEAD - from kernel mode"
2806         sh run-llog.sh
2807 }
2808 run_test 60a "llog sanity tests run from kernel module =========="
2809
2810 test_60b() { # bug 6411
2811         dmesg > $DIR/$tfile
2812         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
2813                                  /llog.test/ {
2814                                          if (marker)
2815                                                  from_marker++
2816                                          from_begin++
2817                                  }
2818                                  END {
2819                                          if (marker)
2820                                                  print from_marker
2821                                          else
2822                                                  print from_begin
2823                                  }"`
2824         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
2825 }
2826 run_test 60b "limit repeated messages from CERROR/CWARN ========"
2827
2828 test_60c() {
2829         echo "create 5000 files"
2830         createmany -o $DIR/f60c- 5000
2831 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
2832         lctl set_param fail_loc=0x80000137
2833         unlinkmany $DIR/f60c- 5000
2834         lctl set_param fail_loc=0
2835 }
2836 run_test 60c "unlink file when mds full"
2837
2838 test_60d() {
2839         SAVEPRINTK=$(lctl get_param -n printk)
2840
2841         # verify "lctl mark" is even working"
2842         MESSAGE="test message ID $RANDOM $$"
2843         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
2844         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
2845
2846         lctl set_param printk=0 || error "set lnet.printk failed"
2847         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
2848         MESSAGE="new test message ID $RANDOM $$"
2849         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
2850         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
2851         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
2852
2853         lctl set_param -n printk="$SAVEPRINTK"
2854 }
2855 run_test 60d "test printk console message masking"
2856
2857 test_61() {
2858         f="$DIR/f61"
2859         dd if=/dev/zero of=$f bs=`page_size` count=1
2860         cancel_lru_locks osc
2861         multiop $f OSMWUc || error
2862         sync
2863 }
2864 run_test 61 "mmap() writes don't make sync hang ================"
2865
2866 # bug 2330 - insufficient obd_match error checking causes LBUG
2867 test_62() {
2868         f="$DIR/f62"
2869         echo foo > $f
2870         cancel_lru_locks osc
2871         lctl set_param fail_loc=0x405
2872         cat $f && error "cat succeeded, expect -EIO"
2873         lctl set_param fail_loc=0
2874 }
2875 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
2876 # match every page all of the time.
2877 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
2878
2879 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
2880 test_63a() {    # was test_63
2881         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
2882         lctl set_param -n osc.*.max_dirty_mb 0
2883         for i in `seq 10` ; do
2884                 dd if=/dev/zero of=$DIR/f63 bs=8k &
2885                 sleep 5
2886                 kill $!
2887                 sleep 1
2888         done
2889
2890         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
2891         rm -f $DIR/f63 || true
2892 }
2893 run_test 63a "Verify oig_wait interruption does not crash ======="
2894
2895 # bug 2248 - async write errors didn't return to application on sync
2896 # bug 3677 - async write errors left page locked
2897 test_63b() {
2898         debugsave
2899         lctl set_param debug=-1
2900
2901         # ensure we have a grant to do async writes
2902         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
2903         rm $DIR/$tfile
2904
2905         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
2906         lctl set_param fail_loc=0x80000406
2907         multiop $DIR/$tfile Owy && \
2908                 error "sync didn't return ENOMEM"
2909         sync; sleep 2; sync     # do a real sync this time to flush page
2910         lctl get_param -n llite.*.dump_page_cache | grep locked && \
2911                 error "locked page left in cache after async error" || true
2912         debugrestore
2913 }
2914 run_test 63b "async write errors should be returned to fsync ==="
2915
2916 test_64a () {
2917         df $DIR
2918         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
2919 }
2920 run_test 64a "verify filter grant calculations (in kernel) ====="
2921
2922 test_64b () {
2923         [ ! -f oos.sh ] && skip "missing subtest oos.sh" && return
2924         sh oos.sh $MOUNT
2925 }
2926 run_test 64b "check out-of-space detection on client ==========="
2927
2928 # bug 1414 - set/get directories' stripe info
2929 test_65a() {
2930         mkdir -p $DIR/d65
2931         touch $DIR/d65/f1
2932         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
2933 }
2934 run_test 65a "directory with no stripe info ===================="
2935
2936 test_65b() {
2937         mkdir -p $DIR/d65
2938         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2939         touch $DIR/d65/f2
2940         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
2941 }
2942 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
2943
2944 test_65c() {
2945         if [ $OSTCOUNT -gt 1 ]; then
2946                 mkdir -p $DIR/d65
2947                 $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 4)) -i 1 \
2948                         -c $(($OSTCOUNT - 1)) || error "setstripe"
2949                 touch $DIR/d65/f3
2950                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
2951         fi
2952 }
2953 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
2954
2955 test_65d() {
2956         mkdir -p $DIR/d65
2957         if [ $STRIPECOUNT -le 0 ]; then
2958                 sc=1
2959         elif [ $STRIPECOUNT -gt 160 ]; then
2960 #LOV_MAX_STRIPE_COUNT is 160
2961                 [ $OSTCOUNT -gt 160 ] && sc=160 || sc=$(($OSTCOUNT - 1))
2962         else
2963                 sc=$(($STRIPECOUNT - 1))
2964         fi
2965         $SETSTRIPE $DIR/d65 -s $STRIPESIZE -c $sc || error "setstripe"
2966         touch $DIR/d65/f4 $DIR/d65/f5
2967         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
2968 }
2969 run_test 65d "directory setstripe $STRIPESIZE -1 stripe_count =============="
2970
2971 test_65e() {
2972         mkdir -p $DIR/d65
2973
2974         $SETSTRIPE $DIR/d65 || error "setstripe"
2975         $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
2976         touch $DIR/d65/f6
2977         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
2978 }
2979 run_test 65e "directory setstripe defaults ======================="
2980
2981 test_65f() {
2982         mkdir -p $DIR/d65f
2983         $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
2984 }
2985 run_test 65f "dir setstripe permission (should return error) ==="
2986
2987 test_65g() {
2988         mkdir -p $DIR/d65
2989         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2990         $SETSTRIPE -d $DIR/d65 || error "setstripe"
2991         $GETSTRIPE -v $DIR/d65 | grep "Default" || \
2992                 error "delete default stripe failed"
2993 }
2994 run_test 65g "directory setstripe -d ==========================="
2995
2996 test_65h() {
2997         mkdir -p $DIR/d65
2998         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
2999         mkdir -p $DIR/d65/dd1
3000         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
3001           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
3002 }
3003 run_test 65h "directory stripe info inherit ===================="
3004
3005 test_65i() { # bug6367
3006         $SETSTRIPE $MOUNT -s 65536 -c -1
3007 }
3008 run_test 65i "set non-default striping on root directory (bug 6367)="
3009
3010 test_65ia() { # bug12836
3011         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
3012 }
3013 run_test 65ia "getstripe on -1 default directory striping"
3014
3015 test_65ib() { # bug12836
3016         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
3017 }
3018 run_test 65ib "getstripe -v on -1 default directory striping"
3019
3020 test_65ic() { # bug12836
3021         $LFS find -mtime -1 $MOUNT || error "find $MOUNT failed"
3022 }
3023 run_test 65ic "new find on -1 default directory striping"
3024
3025 test_65j() { # bug6367
3026         sync; sleep 1
3027         # if we aren't already remounting for each test, do so for this test
3028         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
3029                 cleanup || error "failed to unmount"
3030                 setup
3031         fi
3032         $SETSTRIPE -d $MOUNT || error "setstripe failed"
3033 }
3034 run_test 65j "set default striping on root directory (bug 6367)="
3035
3036 test_65k() { # bug11679
3037         [ "$OSTCOUNT" -lt 2 ] && skip "too few OSTs" && return
3038         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3039
3040         echo "Check OST status: "
3041         MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
3042         for OSC in $MDS_OSCS; do
3043                 echo $OSC "is activate"
3044                 do_facet $SINGLEMDS lctl --device %$OSC activate
3045         done
3046         do_facet client mkdir -p $DIR/$tdir
3047         for INACTIVE_OSC in $MDS_OSCS; do
3048                 echo $INACTIVE_OSC "is Deactivate:"
3049                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC deactivate
3050                 for STRIPE_OSC in $MDS_OSCS; do
3051                         STRIPE_OST=`osc_to_ost $STRIPE_OSC`
3052                         STRIPE_INDEX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
3053                                       grep $STRIPE_OST | awk -F: '{print $1}' | head -n 1`
3054
3055                         [ -f $DIR/$tdir/${STRIPE_INDEX} ] && continue
3056                         echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1"
3057                         do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1
3058                         RC=$?
3059                         [ $RC -ne 0 ] && error "setstripe should have succeeded"
3060                 done
3061                 do_facet client rm -f $DIR/$tdir/*
3062                 echo $INACTIVE_OSC "is Activate."
3063                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
3064         done
3065 }
3066 run_test 65k "validate manual striping works properly with deactivated OSCs"
3067
3068 test_65l() { # bug 12836
3069         mkdir -p $DIR/$tdir/test_dir
3070         $SETSTRIPE $DIR/$tdir/test_dir -c -1
3071         $LFS find -mtime -1 $DIR/$tdir >/dev/null
3072 }
3073 run_test 65l "lfs find on -1 stripe dir ========================"
3074
3075 # bug 2543 - update blocks count on client
3076 test_66() {
3077         COUNT=${COUNT:-8}
3078         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
3079         sync; sleep 1; sync
3080         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
3081         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
3082 }
3083 run_test 66 "update inode blocks count on client ==============="
3084
3085 LLOOP=
3086 cleanup_68() {
3087         trap 0
3088         if [ ! -z "$LLOOP" ]; then
3089                 if swapon -s | grep -q $LLOOP; then
3090                         swapoff $LLOOP || error "swapoff failed"
3091                 fi
3092
3093                 $LCTL blockdev_detach $LLOOP || error "detach failed"
3094                 rm -f $LLOOP
3095                 unset LLOOP
3096         fi
3097         rm -f $DIR/f68*
3098 }
3099
3100 meminfo() {
3101         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
3102 }
3103
3104 swap_used() {
3105         swapon -s | awk '($1 == "'$1'") { print $4 }'
3106 }
3107
3108 # test case for lloop driver, basic function
3109 test_68a() {
3110         [ "$UID" != 0 ] && skip "must run as root" && return
3111
3112         grep -q llite_lloop /proc/modules
3113         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
3114
3115         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3116         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
3117         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
3118
3119         trap cleanup_68 EXIT
3120
3121         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
3122         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
3123
3124         cleanup_68
3125 }
3126 run_test 68a "lloop driver - basic test ========================"
3127
3128 # excercise swapping to lustre by adding a high priority swapfile entry
3129 # and then consuming memory until it is used.
3130 test_68b() {  # was test_68
3131         [ "$UID" != 0 ] && skip "must run as root" && return
3132         lctl get_param -n devices | grep -q obdfilter && \
3133                 skip "local OST" && return
3134
3135         grep -q llite_lloop /proc/modules
3136         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
3137
3138         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
3139                 skip "can't reliably test swap with TCP" && return
3140
3141         MEMTOTAL=`meminfo MemTotal`
3142         NR_BLOCKS=$((MEMTOTAL>>8))
3143         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
3144
3145         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3146         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
3147         mkswap $DIR/f68b
3148
3149         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
3150
3151         trap cleanup_68 EXIT
3152
3153         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
3154
3155         echo "before: `swapon -s | grep $LLOOP`"
3156         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
3157         echo "after: `swapon -s | grep $LLOOP`"
3158         SWAPUSED=`swap_used $LLOOP`
3159
3160         cleanup_68
3161
3162         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
3163 }
3164 run_test 68b "support swapping to Lustre ========================"
3165
3166 # bug5265, obdfilter oa2dentry return -ENOENT
3167 # #define OBD_FAIL_OST_ENOENT 0x217
3168 test_69() {
3169         remote_ost_nodsh && skip "remote OST with nodsh" && return
3170
3171         f="$DIR/$tfile"
3172         $SETSTRIPE $f -c 1 -i 0
3173
3174         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
3175
3176         do_facet ost1 lctl set_param fail_loc=0x217
3177         truncate $f 1 # vmtruncate() will ignore truncate() error.
3178         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
3179
3180         do_facet ost1 lctl set_param fail_loc=0
3181         $DIRECTIO write $f 0 2 || error "write error"
3182
3183         cancel_lru_locks osc
3184         $DIRECTIO read $f 0 1 || error "read error"
3185
3186         do_facet ost1 lctl set_param fail_loc=0x217
3187         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
3188
3189         do_facet ost1 lctl set_param fail_loc=0
3190         rm -f $f
3191 }
3192 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
3193
3194 test_71() {
3195     mkdir -p $DIR/$tdir
3196     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
3197 }
3198 run_test 71 "Running dbench on lustre (don't segment fault) ===="
3199
3200 test_72() { # bug 5695 - Test that on 2.6 remove_suid works properly
3201         check_kernel_version 43 || return 0
3202         [ "$RUNAS_ID" = "$UID" ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
3203
3204         # Check that testing environment is properly set up. Skip if not
3205         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
3206                 skip "User $RUNAS_ID does not exist - skipping"
3207                 return 0
3208         }
3209         # We had better clear the $DIR to get enough space for dd
3210         rm -rf $DIR/*
3211         touch $DIR/f72
3212         chmod 777 $DIR/f72
3213         chmod ug+s $DIR/f72
3214         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
3215         # See if we are still setuid/sgid
3216         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
3217         # Now test that MDS is updated too
3218         cancel_lru_locks mdc
3219         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
3220         true
3221         rm -f $DIR/f72
3222 }
3223 run_test 72 "Test that remove suid works properly (bug5695) ===="
3224
3225 # bug 3462 - multiple simultaneous MDC requests
3226 test_73() {
3227         mkdir $DIR/d73-1
3228         mkdir $DIR/d73-2
3229         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
3230         pid1=$!
3231
3232         lctl set_param fail_loc=0x80000129
3233         multiop $DIR/d73-1/f73-2 Oc &
3234         sleep 1
3235         lctl set_param fail_loc=0
3236
3237         multiop $DIR/d73-2/f73-3 Oc &
3238         pid3=$!
3239
3240         kill -USR1 $pid1
3241         wait $pid1 || return 1
3242
3243         sleep 25
3244
3245         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
3246         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
3247         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
3248
3249         rm -rf $DIR/d73-*
3250 }
3251 run_test 73 "multiple MDC requests (should not deadlock)"
3252
3253 test_74a() { # bug 6149, 6184
3254         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
3255         #
3256         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
3257         # will spin in a tight reconnection loop
3258         touch $DIR/f74a
3259         lctl set_param fail_loc=0x8000030e
3260         # get any lock that won't be difficult - lookup works.
3261         ls $DIR/f74a
3262         lctl set_param fail_loc=0
3263         true
3264         rm -f $DIR/f74a
3265 }
3266 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
3267
3268 test_74b() { # bug 13310
3269         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
3270         #
3271         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
3272         # will spin in a tight reconnection loop
3273         lctl set_param fail_loc=0x8000030e
3274         # get a "difficult" lock
3275         touch $DIR/f74b
3276         lctl set_param fail_loc=0
3277         true
3278         rm -f $DIR/f74b
3279 }
3280 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
3281
3282 JOIN=${JOIN:-"lfs join"}
3283 F75=$DIR/f75
3284 F128k=${F75}_128k
3285 FHEAD=${F75}_head
3286 FTAIL=${F75}_tail
3287 export T75_PREP=no
3288 test75_prep() {
3289         [ $T75_PREP = "yes" ] && return
3290         echo "using F75=$F75, F128k=$F128k, FHEAD=$FHEAD, FTAIL=$FTAIL"
3291
3292         dd if=/dev/urandom of=${F75}_128k bs=128k count=1 || error "dd failed"
3293         log "finished dd"
3294         chmod 777 ${F128k}
3295         T75_PREP=yes
3296 }
3297
3298 test_75a() {
3299         test75_prep
3300
3301         cp -p ${F128k} ${FHEAD}
3302         log "finished cp to $FHEAD"
3303         cp -p ${F128k} ${FTAIL}
3304         log "finished cp to $FTAIL"
3305         cat ${F128k} ${F128k} > ${F75}_sim_sim
3306
3307         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3308         log "finished join $FHEAD to ${F75}_sim_sim"
3309         cmp ${FHEAD} ${F75}_sim_sim || error "${FHEAD} ${F75}_sim_sim differ"
3310         log "finished cmp $FHEAD to ${F75}_sim_sim"
3311         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} still exist after join"
3312 }
3313 run_test 75a "TEST join file ===================================="
3314
3315 test_75b() {
3316         test75_prep
3317
3318         cp -p ${F128k} ${FTAIL}
3319         cat ${F75}_sim_sim >> ${F75}_join_sim
3320         cat ${F128k} >> ${F75}_join_sim
3321         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3322         cmp ${FHEAD} ${F75}_join_sim || \
3323                 error "${FHEAD} ${F75}_join_sim are different"
3324         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join"
3325 }
3326 run_test 75b "TEST join file 2 =================================="
3327
3328 test_75c() {
3329         test75_prep
3330
3331         cp -p ${F128k} ${FTAIL}
3332         cat ${F128k} >> ${F75}_sim_join
3333         cat ${F75}_join_sim >> ${F75}_sim_join
3334         $JOIN ${FTAIL} ${FHEAD} || error "join error"
3335         cmp ${FTAIL} ${F75}_sim_join || \
3336                 error "${FTAIL} ${F75}_sim_join are different"
3337         $CHECKSTAT -a ${FHEAD} || error "tail ${FHEAD} exist after join"
3338 }
3339 run_test 75c "TEST join file 3 =================================="
3340
3341 test_75d() {
3342         test75_prep
3343
3344         cp -p ${F128k} ${FHEAD}
3345         cp -p ${F128k} ${FHEAD}_tmp
3346         cat ${F75}_sim_sim >> ${F75}_join_join
3347         cat ${F75}_sim_join >> ${F75}_join_join
3348         $JOIN ${FHEAD} ${FHEAD}_tmp || error "join ${FHEAD} ${FHEAD}_tmp error"
3349         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3350         cmp ${FHEAD} ${F75}_join_join ||error "${FHEAD} ${F75}_join_join differ"        $CHECKSTAT -a ${FHEAD}_tmp || error "${FHEAD}_tmp exist after join"
3351         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join (2)"
3352 }
3353 run_test 75d "TEST join file 4 =================================="
3354
3355 test_75e() {
3356         test75_prep
3357
3358         rm -rf ${FHEAD} || "delete join file error"
3359 }
3360 run_test 75e "TEST join file 5 (remove joined file) ============="
3361
3362 test_75f() {
3363         test75_prep
3364
3365         cp -p ${F128k} ${F75}_join_10_compare
3366         cp -p ${F128k} ${F75}_join_10
3367         for ((i = 0; i < 10; i++)); do
3368                 cat ${F128k} >> ${F75}_join_10_compare
3369                 cp -p ${F128k} ${FTAIL}
3370                 $JOIN ${F75}_join_10 ${FTAIL} || \
3371                         error "join ${F75}_join_10 ${FTAIL} error"
3372                 $CHECKSTAT -a ${FTAIL} || error "tail file exist after join"
3373         done
3374         cmp ${F75}_join_10 ${F75}_join_10_compare || \
3375                 error "files ${F75}_join_10 ${F75}_join_10_compare differ"
3376 }
3377 run_test 75f "TEST join file 6 (join 10 files) =================="
3378
3379 test_75g() {
3380         [ ! -f ${F75}_join_10 ] && echo "${F75}_join_10 missing" && return
3381         $LFS getstripe ${F75}_join_10
3382
3383         $OPENUNLINK ${F75}_join_10 ${F75}_join_10 || error "files unlink open"
3384
3385         ls -l $F75*
3386 }
3387 run_test 75g "TEST join file 7 (open unlink) ===================="
3388
3389 num_inodes() {
3390         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
3391 }
3392
3393 test_76() { # bug 1443
3394         DETH=$(grep deathrow /proc/kallsyms /proc/ksyms 2> /dev/null | wc -l)
3395         [ $DETH -eq 0 ] && skip "No _iget." && return 0
3396         BEFORE_INODES=`num_inodes`
3397         echo "before inodes: $BEFORE_INODES"
3398         local COUNT=1000
3399         [ "$SLOW" = "no" ] && COUNT=100
3400         for i in `seq $COUNT`; do
3401                 touch $DIR/$tfile
3402                 rm -f $DIR/$tfile
3403         done
3404         AFTER_INODES=`num_inodes`
3405         echo "after inodes: $AFTER_INODES"
3406         [ $AFTER_INODES -gt $((BEFORE_INODES + 32)) ] && \
3407                 error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
3408         true
3409 }
3410 run_test 76 "destroy duplicate inodes in client inode cache ===="
3411
3412 export ORIG_CSUM=""
3413 set_checksums()
3414 {
3415         # Note: in sptlrpc modes which enable its own bulk checksum, the
3416         # original crc32_le bulk checksum will be automatically disabled,
3417         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
3418         # will be checked by sptlrpc code against sptlrpc bulk checksum.
3419         # In this case set_checksums() will not be no-op, because sptlrpc
3420         # bulk checksum will be enabled all through the test.
3421
3422         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
3423         lctl set_param -n osc.*.checksums $1
3424         return 0
3425 }
3426
3427 export ORIG_CSUM_TYPE=""
3428 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
3429 set_checksum_type()
3430 {
3431         [ "$ORIG_CSUM_TYPE" ] || \
3432                 ORIG_CSUM_TYPE=`lctl get_param -n osc/*osc-[^mM]*/checksum_type |
3433                                 sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`
3434         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
3435         log "set checksum type to $1"
3436         return 0
3437 }
3438 F77_TMP=$TMP/f77-temp
3439 F77SZ=8
3440 setup_f77() {
3441         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
3442                 error "error writing to $F77_TMP"
3443 }
3444
3445 test_77a() { # bug 10889
3446         $GSS && skip "could not run with gss" && return
3447         [ ! -f $F77_TMP ] && setup_f77
3448         set_checksums 1
3449         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
3450         set_checksums 0
3451         rm -f $DIR/$tfile
3452 }
3453 run_test 77a "normal checksum read/write operation ============="
3454
3455 test_77b() { # bug 10889
3456         $GSS && skip "could not run with gss" && return
3457         [ ! -f $F77_TMP ] && setup_f77
3458         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3459         lctl set_param fail_loc=0x80000409
3460         set_checksums 1
3461         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
3462                 error "dd error: $?"
3463         lctl set_param fail_loc=0
3464         set_checksums 0
3465         rm -f $DIR/f77b
3466 }
3467 run_test 77b "checksum error on client write ===================="
3468
3469 test_77c() { # bug 10889
3470         $GSS && skip "could not run with gss" && return
3471         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
3472         set_checksums 1
3473         for algo in $CKSUM_TYPES; do
3474                 cancel_lru_locks osc
3475                 set_checksum_type $algo
3476                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3477                 lctl set_param fail_loc=0x80000408
3478                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
3479                 lctl set_param fail_loc=0
3480         done
3481         set_checksums 0
3482         set_checksum_type $ORIG_CSUM_TYPE
3483 }
3484 run_test 77c "checksum error on client read ==================="
3485
3486 test_77d() { # bug 10889
3487         $GSS && skip "could not run with gss" && return
3488         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3489         lctl set_param fail_loc=0x80000409
3490         set_checksums 1
3491         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3492                 error "direct write: rc=$?"
3493         lctl set_param fail_loc=0
3494         set_checksums 0
3495 }
3496 run_test 77d "checksum error on OST direct write ==============="
3497
3498 test_77e() { # bug 10889
3499         $GSS && skip "could not run with gss" && return
3500         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
3501         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3502         lctl set_param fail_loc=0x80000408
3503         set_checksums 1
3504         cancel_lru_locks osc
3505         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3506                 error "direct read: rc=$?"
3507         lctl set_param fail_loc=0
3508         set_checksums 0
3509 }
3510 run_test 77e "checksum error on OST direct read ================"
3511
3512 test_77f() { # bug 10889
3513         $GSS && skip "could not run with gss" && return
3514         set_checksums 1
3515         for algo in $CKSUM_TYPES; do
3516                 cancel_lru_locks osc
3517                 set_checksum_type $algo
3518                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3519                 lctl set_param fail_loc=0x409
3520                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
3521                         error "direct write succeeded"
3522                 lctl set_param fail_loc=0
3523         done
3524         set_checksum_type $ORIG_CSUM_TYPE
3525         set_checksums 0
3526 }
3527 run_test 77f "repeat checksum error on write (expect error) ===="
3528
3529 test_77g() { # bug 10889
3530         $GSS && skip "could not run with gss" && return
3531         remote_ost_nodsh && skip "remote OST with nodsh" && return
3532
3533         [ ! -f $F77_TMP ] && setup_f77
3534
3535         $SETSTRIPE $DIR/f77g -c 1 -i 0
3536         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
3537         do_facet ost1 lctl set_param fail_loc=0x8000021a
3538         set_checksums 1
3539         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
3540                 error "write error: rc=$?"
3541         do_facet ost1 lctl set_param fail_loc=0
3542         set_checksums 0
3543 }
3544 run_test 77g "checksum error on OST write ======================"
3545
3546 test_77h() { # bug 10889
3547         $GSS && skip "could not run with gss" && return
3548         remote_ost_nodsh && skip "remote OST with nodsh" && return
3549
3550         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
3551         cancel_lru_locks osc
3552         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
3553         do_facet ost1 lctl set_param fail_loc=0x8000021b
3554         set_checksums 1
3555         cmp $F77_TMP $DIR/f77g || error "file compare failed"
3556         do_facet ost1 lctl set_param fail_loc=0
3557         set_checksums 0
3558 }
3559 run_test 77h "checksum error on OST read ======================="
3560
3561 test_77i() { # bug 13805
3562         $GSS && skip "could not run with gss" && return
3563         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
3564         lctl set_param fail_loc=0x40b
3565         remount_client $MOUNT
3566         lctl set_param fail_loc=0
3567         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
3568                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
3569                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
3570                 [ "$algo" = "crc32" ] || error "algo set to $algo instead of crc32"
3571         done
3572         remount_client $MOUNT
3573 }
3574 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
3575
3576 test_77j() { # bug 13805
3577         $GSS && skip "could not run with gss" && return
3578         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
3579         lctl set_param fail_loc=0x40c
3580         remount_client $MOUNT
3581         lctl set_param fail_loc=0
3582         sleep 2 # wait async osc connect to finish
3583         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
3584                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
3585                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
3586                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
3587         done
3588         remount_client $MOUNT
3589 }
3590 run_test 77j "client only supporting ADLER32 ===================="
3591
3592 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
3593 rm -f $F77_TMP
3594 unset F77_TMP
3595
3596 test_78() { # bug 10901
3597         NSEQ=5
3598         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
3599         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
3600         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
3601         echo "MemTotal: $MEMTOTAL"
3602 # reserve 256MB of memory for the kernel and other running processes,
3603 # and then take 1/2 of the remaining memory for the read/write buffers.
3604     if [ $MEMTOTAL -gt 512 ] ;then
3605         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
3606     else
3607         # for those poor memory-starved high-end clusters...
3608         MEMTOTAL=$((MEMTOTAL / 2))
3609     fi
3610         echo "Mem to use for directio: $MEMTOTAL"
3611         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
3612         [ $F78SIZE -gt 512 ] && F78SIZE=512
3613         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
3614         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
3615         echo "Smallest OST: $SMALLESTOST"
3616         [ $SMALLESTOST -lt 10240 ] && \
3617                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
3618
3619         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
3620                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
3621
3622         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
3623         echo "File size: $F78SIZE"
3624         $SETSTRIPE $DIR/$tfile -c $OSTCOUNT || error "setstripe failed"
3625         for i in `seq 1 $NSEQ`
3626         do
3627                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
3628                 echo directIO rdwr round $i of $NSEQ
3629                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
3630         done
3631
3632         rm -f $DIR/$tfile
3633 }
3634 run_test 78 "handle large O_DIRECT writes correctly ============"
3635
3636 test_79() { # bug 12743
3637         wait_delete_completed
3638
3639         BKTOTAL=$(calc_osc_kbytes kbytestotal)
3640         BKFREE=$(calc_osc_kbytes kbytesfree)
3641         BKAVAIL=$(calc_osc_kbytes kbytesavail)
3642
3643         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
3644         DFTOTAL=`echo $STRING | cut -d, -f1`
3645         DFUSED=`echo $STRING  | cut -d, -f2`
3646         DFAVAIL=`echo $STRING | cut -d, -f3`
3647         DFFREE=$(($DFTOTAL - $DFUSED))
3648
3649         ALLOWANCE=$((64 * $OSTCOUNT))
3650
3651         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
3652            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
3653                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
3654         fi
3655         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
3656            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
3657                 error "df free($DFFREE) mismatch OST free($BKFREE)"
3658         fi
3659         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
3660            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
3661                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
3662         fi
3663 }
3664 run_test 79 "df report consistency check ======================="
3665
3666 test_80() { # bug 10718
3667         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
3668         sync; sleep 1; sync
3669         BEFORE=`date +%s`
3670         cancel_lru_locks osc
3671         AFTER=`date +%s`
3672         DIFF=$((AFTER-BEFORE))
3673         if [ $DIFF -gt 1 ] ; then
3674                 error "elapsed for 1M@1T = $DIFF"
3675         fi
3676         true
3677         rm -f $DIR/$tfile
3678 }
3679 run_test 80 "Page eviction is equally fast at high offsets too  ===="
3680
3681 test_99a() {
3682         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && \
3683             return
3684         mkdir -p $DIR/d99cvsroot
3685         chown $RUNAS_ID $DIR/d99cvsroot
3686         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
3687         cd $TMP
3688         
3689         $RUNAS cvs -d $DIR/d99cvsroot init || error
3690         cd $oldPWD
3691 }
3692 run_test 99a "cvs init ========================================="
3693
3694 test_99b() {
3695         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3696         [ ! -d $DIR/d99cvsroot ] && test_99a
3697         cd /etc/init.d
3698         # some versions of cvs import exit(1) when asked to import links or
3699         # files they can't read.  ignore those files.
3700         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
3701                         ! -perm +4 -printf '-I %f\n')
3702         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
3703                 d99reposname vtag rtag
3704 }
3705 run_test 99b "cvs import ======================================="
3706
3707 test_99c() {
3708         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3709         [ ! -d $DIR/d99cvsroot ] && test_99b
3710         cd $DIR
3711         mkdir -p $DIR/d99reposname
3712         chown $RUNAS_ID $DIR/d99reposname
3713         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
3714 }
3715 run_test 99c "cvs checkout ====================================="
3716
3717 test_99d() {
3718         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3719         [ ! -d $DIR/d99cvsroot ] && test_99c
3720         cd $DIR/d99reposname
3721         $RUNAS touch foo99
3722         $RUNAS cvs add -m 'addmsg' foo99
3723 }
3724 run_test 99d "cvs add =========================================="
3725
3726 test_99e() {
3727         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3728         [ ! -d $DIR/d99cvsroot ] && test_99c
3729         cd $DIR/d99reposname
3730         $RUNAS cvs update
3731 }
3732 run_test 99e "cvs update ======================================="
3733
3734 test_99f() {
3735         [ -z "$(which cvs 2>/dev/null)" ] && skip "could not find cvs" && return
3736         [ ! -d $DIR/d99cvsroot ] && test_99d
3737         cd $DIR/d99reposname
3738         $RUNAS cvs commit -m 'nomsg' foo99
3739     rm -fr $DIR/d99cvsroot
3740 }
3741 run_test 99f "cvs commit ======================================="
3742
3743 test_100() {
3744         [ "$NETTYPE" = tcp ] || \
3745                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
3746                         return ; }
3747
3748         remote_ost_nodsh && skip "remote OST with nodsh" && return
3749         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3750         remote_servers || \
3751                 { skip "useless for local single node setup" && return; }
3752
3753         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
3754                 [ "$PROT" != "tcp" ] && continue
3755                 RPORT=$(echo $REMOTE | cut -d: -f2)
3756                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
3757
3758                 rc=0
3759                 LPORT=`echo $LOCAL | cut -d: -f2`
3760                 if [ $LPORT -ge 1024 ]; then
3761                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
3762                         netstat -tna
3763                         error "local: $LPORT > 1024, remote: $RPORT"
3764                 fi
3765         done
3766         [ "$rc" = 0 ] || error "privileged port not found" )
3767 }
3768 run_test 100 "check local port using privileged port ==========="
3769
3770 function get_named_value()
3771 {
3772     local tag
3773
3774     tag=$1
3775     while read ;do
3776         line=$REPLY
3777         case $line in
3778         $tag*)
3779             echo $line | sed "s/^$tag//"
3780             break
3781             ;;
3782         esac
3783     done
3784 }
3785
3786 export CACHE_MAX=`lctl get_param -n llite.*.max_cached_mb | head -n 1`
3787 cleanup_101() {
3788         lctl set_param -n llite.*.max_cached_mb $CACHE_MAX
3789         trap 0
3790 }
3791
3792 test_101() {
3793         local s
3794         local discard
3795         local nreads=10000
3796         [ "$CPU" = "UML" ] && nreads=1000
3797         local cache_limit=32
3798
3799         lctl set_param -n osc.*-osc*.rpc_stats 0
3800         trap cleanup_101 EXIT
3801         lctl set_param -n llite.*.read_ahead_stats 0
3802         lctl set_param -n llite.*.max_cached_mb $cache_limit
3803
3804         #
3805         # randomly read 10000 of 64K chunks from file 3x 32MB in size
3806         #
3807         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
3808         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
3809
3810         discard=0
3811         for s in `lctl get_param -n llite.*.read_ahead_stats | \
3812                 get_named_value 'read but discarded' | cut -d" " -f1`; do
3813                         discard=$(($discard + $s))
3814         done
3815         cleanup_101
3816
3817         if [ $(($discard * 10)) -gt $nreads ] ;then
3818                 lctl get_param osc.*-osc*.rpc_stats
3819                 lctl get_param llite.*.read_ahead_stats
3820                 error "too many ($discard) discarded pages"
3821         fi
3822         rm -f $DIR/$tfile || true
3823 }
3824 run_test 101 "check read-ahead for random reads ================"
3825
3826 export SETUP_TEST101=no
3827 setup_test101() {
3828         [ "$SETUP_TEST101" = "yes" ] && return
3829         mkdir -p $DIR/$tdir
3830         STRIPE_SIZE=1048576
3831         STRIPE_COUNT=$OSTCOUNT
3832         STRIPE_OFFSET=0
3833
3834         trap cleanup_test101 EXIT
3835         # prepare the read-ahead file
3836         $SETSTRIPE $DIR/$tfile -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT
3837
3838         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
3839         SETUP_TEST101=yes
3840 }
3841
3842 cleanup_test101() {
3843         [ "$SETUP_TEST101" = "yes" ] || return
3844         trap 0
3845         rm -rf $DIR/$tdir
3846         rm -f $DIR/$tfile
3847         SETUP_TEST101=no
3848 }
3849
3850 calc_total() {
3851         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
3852 }
3853
3854 ra_check_101() {
3855         local READ_SIZE=$1
3856         local STRIPE_SIZE=1048576
3857         local RA_INC=1048576
3858         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
3859         local FILE_LENGTH=$((64*100))
3860         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
3861                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
3862         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
3863                         get_named_value 'read but discarded' | \
3864                         cut -d" " -f1 | calc_total`
3865
3866         if [ $DISCARD -gt $discard_limit ]; then
3867                 lctl get_param llite.*.read_ahead_stats
3868                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
3869         else
3870                 echo "Read-ahead success for size ${READ_SIZE}"
3871         fi
3872 }
3873
3874 test_101b() {
3875         [ "$OSTCOUNT" -lt "2" ] && skip "skipping stride IO stride-ahead test" && return
3876         local STRIPE_SIZE=1048576
3877         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
3878         local FILE_LENGTH=$((STRIPE_SIZE*100))
3879         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
3880         # prepare the read-ahead file
3881         setup_test101
3882         cancel_lru_locks osc
3883         for BIDX in 2 4 8 16 32 64 128 256
3884         do
3885                 local BSIZE=$((BIDX*4096))
3886                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
3887                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
3888                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
3889                 $LCTL set_param -n llite.*.read_ahead_stats 0
3890                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
3891                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
3892                 cancel_lru_locks osc
3893                 ra_check_101 $BSIZE
3894         done
3895         cleanup_test101
3896         true
3897 }
3898 run_test 101b "check stride-io mode read-ahead ================="
3899
3900 export SETUP_TEST102=no
3901 setup_test102() {
3902         [ "$SETUP_TEST102" = "yes" ] && return
3903         mkdir -p $DIR/$tdir
3904         chown $RUNAS_ID $DIR/$tdir
3905         STRIPE_SIZE=65536
3906         STRIPE_OFFSET=1
3907         STRIPE_COUNT=$OSTCOUNT
3908         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
3909
3910         trap cleanup_test102 EXIT
3911         cd $DIR
3912         $1 $SETSTRIPE $tdir -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT
3913         cd $DIR/$tdir
3914         for num in 1 2 3 4
3915         do
3916                 for count in `seq 1 $STRIPE_COUNT`
3917                 do
3918                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
3919                         do
3920                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
3921                                 local file=file"$num-$offset-$count"
3922                                 $1 $SETSTRIPE $file -s $stripe_size -i $offset -c $count
3923                         done
3924                 done
3925         done
3926
3927         cd $DIR
3928         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
3929         SETUP_TEST102=yes
3930 }
3931
3932 cleanup_test102() {
3933         trap 0
3934         [ "$SETUP_TEST102" = "yes" ] || return 0
3935         rm -f $TMP/f102.tar
3936         SETUP_TEST102=no
3937 }
3938
3939 test_102a() {
3940         local testfile=$DIR/xattr_testfile
3941
3942         rm -f $testfile
3943         touch $testfile
3944
3945         [ "$UID" != 0 ] && skip "must run as root" && return
3946         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] && skip "must have user_xattr" && return
3947
3948         [ -z "$(which setfattr 2>/dev/null)" ] && skip "could not find setfattr" && return
3949
3950         echo "set/get xattr..."
3951         setfattr -n trusted.name1 -v value1 $testfile || error
3952         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
3953         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
3954
3955         setfattr -n user.author1 -v author1 $testfile || error
3956         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
3957         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
3958
3959         echo "listxattr..."
3960         setfattr -n trusted.name2 -v value2 $testfile || error
3961         setfattr -n trusted.name3 -v value3 $testfile || error
3962         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3963         grep "trusted.name" | wc -l` -eq 3 ] || error
3964
3965
3966         setfattr -n user.author2 -v author2 $testfile || error
3967         setfattr -n user.author3 -v author3 $testfile || error
3968         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
3969         grep "user" | wc -l` -eq 3 ] || error
3970
3971         echo "remove xattr..."
3972         setfattr -x trusted.name1 $testfile || error
3973         getfattr -d -m trusted $testfile 2> /dev/null | \
3974         grep "trusted.name1" && error || true
3975
3976         setfattr -x user.author1 $testfile || error
3977         getfattr -d -m user $testfile 2> /dev/null | \
3978         grep "user.author1" && error || true
3979
3980         # b10667: setting lustre special xattr be silently discarded
3981         echo "set lustre special xattr ..."
3982         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
3983
3984         rm -f $testfile
3985 }
3986 run_test 102a "user xattr test =================================="
3987
3988 test_102b() {
3989         # b10930: get/set/list trusted.lov xattr
3990         echo "get/set/list trusted.lov xattr ..."
3991         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
3992         local testfile=$DIR/$tfile
3993         $SETSTRIPE $testfile -s 65536 -i 1 -c 2
3994         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3995         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
3996
3997         local testfile2=${testfile}2
3998         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3999                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
4000         
4001         $MCREATE $testfile2
4002         setfattr -n trusted.lov -v $value $testfile2    
4003         local tmp_file=${testfile}3
4004         $GETSTRIPE -v $testfile2 > $tmp_file
4005         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4006         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4007         [ "$stripe_size" -eq 65536 ] || error "stripe size $stripe_size != 65536"
4008         [ "$stripe_count" -eq 2 ] || error "stripe count $stripe_count != 2"
4009         rm -f $DIR/$tfile
4010 }
4011 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
4012
4013 test_102c() {
4014         # b10930: get/set/list lustre.lov xattr
4015         echo "get/set/list lustre.lov xattr ..."
4016         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
4017         mkdir -p $DIR/$tdir
4018         chown $RUNAS_ID $DIR/$tdir
4019         local testfile=$DIR/$tdir/$tfile
4020         $RUNAS $SETSTRIPE $testfile -s 65536 -i 1 -c 2
4021         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
4022         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
4023
4024         local testfile2=${testfile}2
4025         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
4026                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
4027         
4028         $RUNAS $MCREATE $testfile2
4029         $RUNAS setfattr -n lustre.lov -v $value $testfile2      
4030         local tmp_file=${testfile}3
4031         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
4032         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4033         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4034         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
4035         [ $stripe_count -eq 2 ] || error "stripe count $stripe_count != 2"
4036 }
4037 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
4038
4039 compare_stripe_info1() {
4040         for num in 1 2 3 4
4041         do
4042                 for count in `seq 1 $STRIPE_COUNT`
4043                 do
4044                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4045                         do
4046                                 local size=`expr $STRIPE_SIZE \* $num`
4047                                 local file=file"$num-$offset-$count"
4048                                 get_stripe_info client $PWD/$file "$1"
4049                                 if [ $stripe_size -ne $size ]; then
4050                                         error "$file: different stripe size $stripe_size, expected $size" && return
4051                                 fi
4052                                 if [ $stripe_count -ne $count ]; then
4053                                         error "$file: different stripe count $stripe_count, expected $count" && return
4054                                 fi
4055                                 if [ $stripe_index -ne 0 ]; then
4056                                         error "$file: different stripe offset $stripe_index, expected 0" && return
4057                                 fi
4058                         done
4059                 done
4060         done
4061 }
4062
4063 compare_stripe_info2() {
4064         for num in 1 2 3 4
4065         do
4066                 for count in `seq 1 $STRIPE_COUNT`
4067                 do
4068                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4069                         do
4070                                 local size=`expr $STRIPE_SIZE \* $num`
4071                                 local file=file"$num-$offset-$count"
4072                                 get_stripe_info client $PWD/$file
4073                                 if [ $stripe_size -ne $size ]; then
4074                                         error "$file: different stripe size $stripe_size, expected $size" && return
4075                                 fi
4076                                 if [ $stripe_count -ne $count ]; then
4077                                         error "$file: different stripe count $stripe_count, expected $count" && return
4078                                 fi
4079                                 if [ $stripe_index -ne $offset ]; then
4080                                         error "$file: different stripe offset $stripe_index, expected $offset" && return
4081                                 fi
4082                         done
4083                 done
4084         done
4085 }
4086
4087 find_lustre_tar() {
4088         [ -n "$(which tar 2>/dev/null)" ] && strings $(which tar) | grep -q lustre && echo tar
4089 }
4090
4091 test_102d() {
4092         # b10930: tar test for trusted.lov xattr
4093         TAR=$(find_lustre_tar)
4094         [ -z "$TAR" ] && skip "lustre-aware tar is not installed" && return
4095         [ "$OSTCOUNT" -lt "2" ] && skip "skipping N-stripe test" && return
4096         setup_test102
4097         mkdir -p $DIR/d102d
4098         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
4099         cd $DIR/d102d/$tdir
4100         compare_stripe_info1
4101 }
4102 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
4103
4104 test_102f() {
4105         # b10930: tar test for trusted.lov xattr
4106         TAR=$(find_lustre_tar)
4107         [ -z "$TAR" ] && skip "lustre-aware tar is not installed" && return
4108         [ "$OSTCOUNT" -lt "2" ] && skip "skipping N-stripe test" && return
4109         setup_test102
4110         mkdir -p $DIR/d102f
4111         cd $DIR
4112         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
4113         cd $DIR/d102f/$tdir
4114         compare_stripe_info1
4115 }
4116 run_test 102f "tar copy files, not keep osts ==========="
4117
4118 test_102h() { # bug 15777
4119         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
4120                 skip "must have user_xattr" && return
4121         [ -z "$(which setfattr 2>/dev/null)" ] &&
4122                 skip "could not find setfattr" && return
4123
4124         XBIG=trusted.big
4125         XSIZE=1024
4126         touch $DIR/$tfile
4127         VALUE=datadatadatadatadatadatadatadata
4128         while [ $(echo $VALUE | wc -c) -lt $XSIZE ]; do
4129                 VALUE="$VALUE$VALUE"
4130         done
4131         log "save $XBIG on $DIR/$tfile"
4132         setfattr -n $XBIG -v "$VALUE" $DIR/$tfile ||
4133                 error "saving $XBIG on $DIR/$tfile failed"
4134         ORIG=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4135         OSIZE=$(echo $ORIG | wc -c)
4136         [ $OSIZE -lt $XSIZE ] && error "set $XBIG too small ($OSIZE < $XSIZE)"
4137
4138         XSML=trusted.sml
4139         log "save $XSML on $DIR/$tfile"
4140         setfattr -n $XSML -v val $DIR/$tfile ||
4141                 error "saving $XSML on $DIR/$tfile failed"
4142         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4143         if [ "$NEW" != "$ORIG" ]; then
4144                 log "orig: $ORIG"
4145                 log "new: $NEW"
4146                 error "$XBIG different after saving $XSML"
4147         fi
4148
4149         log "grow $XSML on $DIR/$tfile"
4150         setfattr -n $XSML -v "$VALUE" $DIR/$tfile ||
4151                 error "growing $XSML on $DIR/$tfile failed"
4152         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4153         if [ "$NEW" != "$ORIG" ]; then
4154                 log "orig: $ORIG"
4155                 log "new: $NEW"
4156                 error "$XBIG different after growing $XSML"
4157         fi
4158         log "$XBIG still valid after growing $XSML"
4159         rm -f $file
4160 }
4161 run_test 102h "grow xattr from inside inode to external block"
4162
4163 test_102i() { # bug 17038
4164         touch $DIR/$tfile
4165         ln -s $DIR/$tfile $DIR/${tfile}link
4166         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
4167         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 | grep -i "no such attr" || error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
4168         rm -f $DIR/$tfile $DIR/${tfile}link
4169 }
4170 run_test 102i "lgetxattr test on symbolic link ============"
4171
4172 test_102j() {
4173         TAR=$(find_lustre_tar)
4174         [ -z "$TAR" ] && skip "lustre-aware tar is not installed" && return
4175         [ "$OSTCOUNT" -lt "2" ] && skip "skipping N-stripe test" && return
4176         setup_test102 "$RUNAS"
4177         mkdir -p $DIR/d102j
4178         chown $RUNAS_ID $DIR/d102j
4179         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
4180         cd $DIR/d102j/$tdir
4181         compare_stripe_info1 "$RUNAS"
4182 }
4183 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
4184
4185 cleanup_test102
4186
4187 run_acl_subtest()
4188 {
4189     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
4190     return $?
4191 }
4192
4193 test_103 () {
4194     [ "$UID" != 0 ] && skip "must run as root" && return
4195     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
4196     [ -z "$(which setfacl 2>/dev/null)" ] && skip "could not find setfacl" && return
4197     $GSS && skip "could not run under gss" && return
4198
4199     declare -a identity_old
4200
4201     for num in `seq $MDSCOUNT`; do
4202         switch_identity $num true || identity_old[$num]=$?
4203     done
4204
4205     SAVE_UMASK=`umask`
4206     umask 0022
4207     cd $DIR
4208
4209     echo "performing cp ..."
4210     run_acl_subtest cp || error
4211     echo "performing getfacl-noacl..."
4212     run_acl_subtest getfacl-noacl || error
4213     echo "performing misc..."
4214     run_acl_subtest misc || error
4215     echo "performing permissions..."
4216     run_acl_subtest permissions || error
4217     echo "performing setfacl..."
4218     run_acl_subtest setfacl || error
4219
4220     # inheritance test got from HP
4221     echo "performing inheritance..."
4222     cp $LUSTRE/tests/acl/make-tree . || error
4223     chmod +x make-tree || error
4224     run_acl_subtest inheritance || error
4225     rm -f make-tree
4226
4227     cd $SAVE_PWD
4228     umask $SAVE_UMASK
4229
4230     for num in `seq $MDSCOUNT`; do
4231         if [ "${identity_old[$num]}" = 1 ]; then
4232             switch_identity $num false || identity_old[$num]=$?
4233         fi
4234     done
4235 }
4236 run_test 103 "acl test ========================================="
4237
4238 test_104() {
4239         touch $DIR/$tfile
4240         lfs df || error "lfs df failed"
4241         lfs df -ih || error "lfs df -ih failed"
4242         lfs df -h $DIR || error "lfs df -h $DIR failed"
4243         lfs df -i $DIR || error "lfs df -i $DIR failed"
4244         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
4245         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
4246         
4247         OSC=`lctl get_param -n devices | awk '/-osc-/ {print $4}' | head -n 1`
4248         lctl --device %$OSC deactivate
4249         lfs df || error "lfs df with deactivated OSC failed"
4250         lctl --device %$OSC recover
4251         lfs df || error "lfs df with reactivated OSC failed"
4252         rm -f $DIR/$tfile
4253 }
4254 run_test 104 "lfs df [-ih] [path] test ========================="
4255
4256 test_105a() {
4257         # doesn't work on 2.4 kernels
4258         touch $DIR/$tfile
4259         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
4260         then
4261                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
4262         else
4263                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
4264         fi
4265         rm -f $DIR/$tfile
4266 }
4267 run_test 105a "flock when mounted without -o flock test ========"
4268
4269 test_105b() {
4270         touch $DIR/$tfile
4271         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
4272         then
4273                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
4274         else
4275                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
4276         fi
4277         rm -f $DIR/$tfile
4278 }
4279 run_test 105b "fcntl when mounted without -o flock test ========"
4280
4281 test_105c() {
4282         touch $DIR/$tfile
4283         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
4284         then
4285                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
4286         else
4287                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
4288         fi
4289         rm -f $DIR/$tfile
4290 }
4291 run_test 105c "lockf when mounted without -o flock test ========"
4292
4293 test_105d() { # bug 15924
4294         mkdir -p $DIR/$tdir
4295         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
4296                 skip "mount w/o flock enabled" && return
4297         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
4298         $LCTL set_param fail_loc=0x80000315
4299         flocks_test 2 $DIR/$tdir
4300 }
4301 run_test 105d "flock race (should not freeze) ========"
4302
4303 test_106() { #bug 10921
4304         mkdir -p $DIR/$tdir
4305         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
4306         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
4307 }
4308 run_test 106 "attempt exec of dir followed by chown of that dir"
4309
4310 test_107() {
4311         CDIR=`pwd`
4312         cd $DIR
4313
4314         local file=core
4315         rm -f $file
4316
4317         local save_pattern=$(sysctl -n kernel.core_pattern)
4318         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
4319         sysctl -w kernel.core_pattern=$file
4320         sysctl -w kernel.core_uses_pid=0
4321
4322         ulimit -c unlimited
4323         sleep 60 &
4324         SLEEPPID=$!
4325
4326         sleep 1
4327
4328         kill -s 11 $SLEEPPID
4329         wait $SLEEPPID
4330         if [ -e $file ]; then
4331                 size=`stat -c%s $file`
4332                 [ $size -eq 0 ] && error "Fail to create core file $file"
4333         else
4334                 error "Fail to create core file $file"
4335         fi
4336         rm -f $file
4337         sysctl -w kernel.core_pattern=$save_pattern
4338         sysctl -w kernel.core_uses_pid=$save_uses_pid
4339         cd $CDIR
4340 }
4341 run_test 107 "Coredump on SIG"
4342
4343 test_110() {
4344         mkdir -p $DIR/d110
4345         mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
4346         mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
4347         touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
4348         touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
4349
4350         ls -l $DIR/d110
4351     rm -fr $DIR/d110
4352 }
4353 run_test 110 "filename length checking"
4354
4355 test_115() {
4356         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
4357             cut -c11-20)
4358         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
4359             return
4360         echo "Starting with $OSTIO_pre threads"
4361
4362         NUMTEST=20000
4363         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
4364         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
4365         echo "$NUMTEST creates/unlinks"
4366         mkdir -p $DIR/$tdir
4367         createmany -o $DIR/$tdir/$tfile $NUMTEST
4368         unlinkmany $DIR/$tdir/$tfile $NUMTEST
4369
4370         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
4371             cut -c11-20)
4372
4373         # don't return an error
4374         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
4375             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&\
4376             echo "This may be fine, depending on what ran before this test" &&\
4377             echo "and how fast this system is." && return
4378
4379         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
4380 }
4381 run_test 115 "verify dynamic thread creation===================="
4382
4383 free_min_max () {
4384         wait_delete_completed
4385         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
4386         echo OST kbytes available: ${AVAIL[@]}
4387         MAXI=0; MAXV=${AVAIL[0]}
4388         MINI=0; MINV=${AVAIL[0]}
4389         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
4390             #echo OST $i: ${AVAIL[i]}kb
4391             if [ ${AVAIL[i]} -gt $MAXV ]; then
4392                 MAXV=${AVAIL[i]}; MAXI=$i
4393             fi
4394             if [ ${AVAIL[i]} -lt $MINV ]; then
4395                 MINV=${AVAIL[i]}; MINI=$i
4396             fi
4397         done
4398         echo Min free space: OST $MINI: $MINV
4399         echo Max free space: OST $MAXI: $MAXV
4400 }
4401
4402 test_116() {
4403         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs" && return
4404
4405         echo -n "Free space priority "
4406         lctl get_param -n lov.*-clilov-*.qos_prio_free
4407         DELAY=$(lctl get_param -n lov.*-clilov-*.qos_maxage | head -1 | awk '{print $1}')
4408         declare -a AVAIL
4409         free_min_max
4410         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
4411                 return
4412
4413         # generate uneven OSTs
4414         mkdir -p $DIR/$tdir/OST${MINI}
4415         declare -i FILL
4416         FILL=$(($MINV / 4))
4417         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
4418         $SETSTRIPE $DIR/$tdir/OST${MINI} -i $MINI -c 1
4419         i=0
4420         while [ $FILL -gt 0 ]; do
4421             i=$(($i + 1))
4422             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
4423             FILL=$(($FILL - 2048))
4424             echo -n .
4425         done
4426         FILL=$(($MINV / 4))
4427         sync
4428         sleep $DELAY
4429
4430         free_min_max
4431         DIFF=$(($MAXV - $MINV))
4432         DIFF2=$(($DIFF * 100 / $MINV))
4433         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
4434         if [ $DIFF2 -gt 20 ]; then
4435             echo "ok"
4436         else
4437             echo "failed - QOS mode won't be used"
4438             error_ignore "QOS imbalance criteria not met"
4439             return
4440         fi
4441
4442         MINI1=$MINI; MINV1=$MINV
4443         MAXI1=$MAXI; MAXV1=$MAXV
4444
4445         # now fill using QOS
4446         echo writing a bunch of files to QOS-assigned OSTs
4447         $SETSTRIPE $DIR/$tdir -c 1
4448         i=0
4449         while [ $FILL -gt 0 ]; do
4450             i=$(($i + 1))
4451             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
4452             FILL=$(($FILL - 200))
4453             echo -n .
4454         done
4455         echo "wrote $i 200k files"
4456         sync
4457         sleep $DELAY
4458
4459         echo "Note: free space may not be updated, so measurements might be off"
4460         free_min_max
4461         DIFF2=$(($MAXV - $MINV))
4462         echo "free space delta: orig $DIFF final $DIFF2"
4463         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
4464         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
4465         echo "Wrote $DIFF to smaller OST $MINI1"
4466         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
4467         echo "Wrote $DIFF2 to larger OST $MAXI1"
4468         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
4469
4470         # Figure out which files were written where
4471         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
4472                awk '/'$MINI1': / {print $2; exit}')
4473         echo $UUID
4474         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
4475         echo "$MINC files created on smaller OST $MINI1"
4476         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
4477                awk '/'$MAXI1': / {print $2; exit}')
4478         echo $UUID
4479         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
4480         echo "$MAXC files created on larger OST $MAXI1"
4481         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
4482         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
4483
4484         rm -rf $DIR/$tdir/OST${MINI}
4485 }
4486 run_test 116 "stripe QOS: free space balance ==================="
4487
4488 test_117() # bug 10891
4489 {
4490         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
4491         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
4492         lctl set_param fail_loc=0x21e
4493         > $DIR/$tfile || error "truncate failed"
4494         lctl set_param fail_loc=0
4495         echo "Truncate succeeded."
4496         rm -f $DIR/$tfile
4497 }
4498 run_test 117 "verify fsfilt_extend =========="
4499
4500 export OLD_RESENDCOUNT=""
4501 set_resend_count () {
4502         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
4503         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
4504         lctl set_param -n $PROC_RESENDCOUNT $1
4505         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
4506 }
4507
4508 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
4509
4510 # Reset async IO behavior after error case
4511 reset_async() {
4512         FILE=$DIR/reset_async
4513
4514         # Ensure all OSCs are cleared
4515         $LSTRIPE -c -1 $FILE
4516         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
4517         sync
4518         rm $FILE
4519 }
4520
4521 test_118a() #bug 11710
4522 {
4523         reset_async
4524         
4525         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4526         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4527         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
4528
4529         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4530                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4531                 return 1;
4532         fi
4533         rm -f $DIR/$tfile
4534 }
4535 run_test 118a "verify O_SYNC works =========="
4536
4537 test_118b()
4538 {
4539         remote_ost_nodsh && skip "remote OST with nodsh" && return
4540
4541         reset_async
4542
4543         #define OBD_FAIL_OST_ENOENT 0x217
4544         set_nodes_failloc "$(osts_nodes)" 0x217
4545         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4546         RC=$?
4547         set_nodes_failloc "$(osts_nodes)" 0
4548         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4549         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4550                     grep -c writeback)
4551
4552         if [[ $RC -eq 0 ]]; then
4553                 error "Must return error due to dropped pages, rc=$RC"
4554                 return 1;
4555         fi
4556
4557         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4558                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4559                 return 1;
4560         fi
4561
4562         echo "Dirty pages not leaked on ENOENT"
4563
4564         # Due to the above error the OSC will issue all RPCs syncronously
4565         # until a subsequent RPC completes successfully without error.
4566         multiop $DIR/$tfile Ow4096yc
4567         rm -f $DIR/$tfile
4568         
4569         return 0
4570 }
4571 run_test 118b "Reclaim dirty pages on fatal error =========="
4572
4573 test_118c()
4574 {
4575         remote_ost_nodsh && skip "remote OST with nodsh" && return
4576
4577         reset_async
4578
4579         #define OBD_FAIL_OST_EROFS               0x216
4580         set_nodes_failloc "$(osts_nodes)" 0x216
4581
4582         # multiop should block due to fsync until pages are written
4583         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4584         MULTIPID=$!
4585         sleep 1
4586
4587         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4588                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4589         fi
4590
4591         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4592                     grep -c writeback)
4593         if [[ $WRITEBACK -eq 0 ]]; then
4594                 error "No page in writeback, writeback=$WRITEBACK"
4595         fi
4596
4597         set_nodes_failloc "$(osts_nodes)" 0
4598         wait $MULTIPID
4599         RC=$?
4600         if [[ $RC -ne 0 ]]; then
4601                 error "Multiop fsync failed, rc=$RC"
4602         fi
4603
4604         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4605         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4606                     grep -c writeback)
4607         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4608                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4609         fi
4610         
4611         rm -f $DIR/$tfile
4612         echo "Dirty pages flushed via fsync on EROFS"
4613         return 0
4614 }
4615 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
4616
4617 test_118d()
4618 {
4619         remote_ost_nodsh && skip "remote OST with nodsh" && return
4620
4621         reset_async
4622
4623         #define OBD_FAIL_OST_BRW_PAUSE_BULK
4624         set_nodes_failloc "$(osts_nodes)" 0x214
4625         # multiop should block due to fsync until pages are written
4626         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &     
4627         MULTIPID=$!
4628         sleep 1
4629
4630         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4631                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4632         fi
4633
4634         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4635                     grep -c writeback)
4636         if [[ $WRITEBACK -eq 0 ]]; then
4637                 error "No page in writeback, writeback=$WRITEBACK"
4638         fi
4639
4640         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
4641         set_nodes_failloc "$(osts_nodes)" 0
4642
4643         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4644         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4645                     grep -c writeback)
4646         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4647                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4648         fi
4649
4650         rm -f $DIR/$tfile
4651         echo "Dirty pages gaurenteed flushed via fsync"
4652         return 0
4653 }
4654 run_test 118d "Fsync validation inject a delay of the bulk =========="
4655
4656 test_118f() {
4657         reset_async
4658
4659         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
4660         lctl set_param fail_loc=0x8000040a
4661
4662         # Should simulate EINVAL error which is fatal
4663         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4664         RC=$?
4665         if [[ $RC -eq 0 ]]; then
4666                 error "Must return error due to dropped pages, rc=$RC"
4667         fi
4668         
4669         lctl set_param fail_loc=0x0
4670
4671         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4672         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4673         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4674                     grep -c writeback)
4675         if [[ $LOCKED -ne 0 ]]; then
4676                 error "Locked pages remain in cache, locked=$LOCKED"
4677         fi
4678
4679         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4680                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4681         fi
4682
4683         rm -f $DIR/$tfile
4684         echo "No pages locked after fsync"
4685
4686         reset_async
4687         return 0
4688 }
4689 run_test 118f "Simulate unrecoverable OSC side error =========="
4690
4691 test_118g() {
4692         reset_async
4693
4694         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4695         lctl set_param fail_loc=0x406
4696
4697         # simulate local -ENOMEM
4698         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4699         RC=$?
4700         
4701         lctl set_param fail_loc=0
4702         if [[ $RC -eq 0 ]]; then
4703                 error "Must return error due to dropped pages, rc=$RC"
4704         fi
4705
4706         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4707         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4708         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4709                         grep -c writeback)
4710         if [[ $LOCKED -ne 0 ]]; then
4711                 error "Locked pages remain in cache, locked=$LOCKED"
4712         fi
4713         
4714         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4715                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4716         fi
4717
4718         rm -f $DIR/$tfile
4719         echo "No pages locked after fsync"
4720
4721         reset_async
4722         return 0
4723 }
4724 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
4725
4726 test_118h() {
4727         remote_ost_nodsh && skip "remote OST with nodsh" && return
4728
4729         reset_async
4730
4731         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4732         set_nodes_failloc "$(osts_nodes)" 0x20e
4733         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4734         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4735         RC=$?
4736         
4737         set_nodes_failloc "$(osts_nodes)" 0
4738         if [[ $RC -eq 0 ]]; then
4739                 error "Must return error due to dropped pages, rc=$RC"
4740         fi
4741
4742         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4743         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4744         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
4745                     grep -c writeback)
4746         if [[ $LOCKED -ne 0 ]]; then
4747                 error "Locked pages remain in cache, locked=$LOCKED"
4748         fi
4749         
4750         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4751                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4752         fi
4753
4754         rm -f $DIR/$tfile
4755         echo "No pages locked after fsync"
4756
4757         return 0
4758 }
4759 run_test 118h "Verify timeout in handling recoverables errors  =========="
4760
4761 test_118i() {
4762         remote_ost_nodsh && skip "remote OST with nodsh" && return
4763
4764         reset_async
4765
4766         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4767         set_nodes_failloc "$(osts_nodes)" 0x20e
4768         
4769         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4770         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4771         PID=$!
4772         sleep 5
4773         set_nodes_failloc "$(osts_nodes)" 0
4774         
4775         wait $PID
4776         RC=$?
4777         if [[ $RC -ne 0 ]]; then
4778                 error "got error, but should be not, rc=$RC"
4779         fi
4780
4781         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4782         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4783         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
4784         if [[ $LOCKED -ne 0 ]]; then
4785                 error "Locked pages remain in cache, locked=$LOCKED"
4786         fi
4787         
4788         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4789                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4790         fi
4791
4792         rm -f $DIR/$tfile
4793         echo "No pages locked after fsync"
4794
4795         return 0
4796 }
4797 run_test 118i "Fix error before timeout in recoverable error  =========="
4798
4799 test_118j() {
4800         remote_ost_nodsh && skip "remote OST with nodsh" && return
4801
4802         reset_async
4803
4804         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
4805         set_nodes_failloc "$(osts_nodes)" 0x220
4806
4807         # return -EIO from OST
4808         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4809         RC=$?
4810         set_nodes_failloc "$(osts_nodes)" 0x0
4811         if [[ $RC -eq 0 ]]; then
4812                 error "Must return error due to dropped pages, rc=$RC"
4813         fi
4814
4815         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
4816         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
4817         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
4818         if [[ $LOCKED -ne 0 ]]; then
4819                 error "Locked pages remain in cache, locked=$LOCKED"
4820         fi
4821         
4822         # in recoverable error on OST we want resend and stay until it finished
4823         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4824                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4825         fi
4826
4827         rm -f $DIR/$tfile
4828         echo "No pages locked after fsync"
4829
4830         return 0
4831 }
4832 run_test 118j "Simulate unrecoverable OST side error =========="
4833
4834 test_118k()
4835 {
4836         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
4837
4838         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4839         set_nodes_failloc "$(osts_nodes)" 0x20e
4840         mkdir -p $DIR/$tdir
4841
4842         for ((i=0;i<10;i++)); do
4843                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
4844                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
4845                 SLEEPPID=$!
4846                 sleep 0.500s
4847                 kill $SLEEPPID
4848                 wait $SLEEPPID
4849         done
4850
4851         set_nodes_failloc "$(osts_nodes)" 0
4852 }
4853 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
4854
4855 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
4856
4857 test_119a() # bug 11737
4858 {
4859         BSIZE=$((512 * 1024))
4860         directio write $DIR/$tfile 0 1 $BSIZE
4861         # We ask to read two blocks, which is more than a file size.
4862         # directio will indicate an error when requested and actual
4863         # sizes aren't equeal (a normal situation in this case) and
4864         # print actual read amount.
4865         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
4866         if [ "$NOB" != "$BSIZE" ]; then
4867                 error "read $NOB bytes instead of $BSIZE"
4868         fi
4869         rm -f $DIR/$tfile
4870 }
4871 run_test 119a "Short directIO read must return actual read amount"
4872
4873 test_119b() # bug 11737
4874 {
4875         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
4876
4877         $SETSTRIPE $DIR/$tfile -c 2
4878         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
4879         sync
4880         multiop $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
4881                 error "direct read failed"
4882         rm -f $DIR/$tfile
4883 }
4884 run_test 119b "Sparse directIO read must return actual read amount"
4885
4886 test_119c() # bug 13099
4887 {
4888         BSIZE=1048576
4889         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
4890         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
4891         rm -f $DIR/$tfile
4892 }
4893 run_test 119c "Testing for direct read hitting hole"
4894
4895 test_119d() # bug 15950
4896 {
4897         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
4898         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
4899         BSIZE=1048576
4900         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
4901         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
4902         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
4903         lctl set_param fail_loc=0x40d
4904         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
4905         pid_dio=$!
4906         sleep 1
4907         cat $DIR/$tfile > /dev/null &
4908         lctl set_param fail_loc=0
4909         pid_reads=$!
4910         wait $pid_dio
4911         log "the DIO writes have completed, now wait for the reads (should not block very long)"
4912         sleep 2
4913         [ -n "`ps h -p $pid_reads -o comm`" ] && \
4914         error "the read rpcs have not completed in 2s"
4915         rm -f $DIR/$tfile
4916         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
4917 }
4918 run_test 119d "The DIO path should try to send a new rpc once one is completed"
4919
4920 test_120a() {
4921         mkdir -p $DIR/$tdir
4922         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4923                skip "no early lock cancel on server" && return 0
4924         lru_resize_disable mdc
4925         lru_resize_disable osc
4926         cancel_lru_locks mdc
4927         stat $DIR/$tdir > /dev/null
4928         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4929         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4930         mkdir $DIR/$tdir/d1
4931         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4932         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4933         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4934         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4935         lru_resize_enable mdc
4936         lru_resize_enable osc
4937 }
4938 run_test 120a "Early Lock Cancel: mkdir test"
4939
4940 test_120b() {
4941         mkdir -p $DIR/$tdir
4942         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4943                skip "no early lock cancel on server" && return 0
4944         lru_resize_disable mdc
4945         lru_resize_disable osc
4946         cancel_lru_locks mdc
4947         stat $DIR/$tdir > /dev/null
4948         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4949         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4950         touch $DIR/$tdir/f1
4951         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4952         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4953         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4954         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4955         lru_resize_enable mdc
4956         lru_resize_enable osc
4957 }
4958 run_test 120b "Early Lock Cancel: create test"
4959
4960 test_120c() {
4961         mkdir -p $DIR/$tdir
4962         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4963                skip "no early lock cancel on server" && return 0
4964         lru_resize_disable mdc
4965         lru_resize_disable osc
4966         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
4967         touch $DIR/$tdir/d1/f1
4968         cancel_lru_locks mdc
4969         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
4970         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4971         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4972         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
4973         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4974         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4975         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4976         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4977         lru_resize_enable mdc
4978         lru_resize_enable osc
4979 }
4980 run_test 120c "Early Lock Cancel: link test"
4981
4982 test_120d() {
4983         mkdir -p $DIR/$tdir
4984         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
4985                skip "no early lock cancel on server" && return 0
4986         lru_resize_disable mdc
4987         lru_resize_disable osc
4988         touch $DIR/$tdir
4989         cancel_lru_locks mdc
4990         stat $DIR/$tdir > /dev/null
4991         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4992         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4993         chmod a+x $DIR/$tdir
4994         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
4995         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
4996         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4997         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4998         lru_resize_enable mdc
4999         lru_resize_enable osc
5000 }
5001 run_test 120d "Early Lock Cancel: setattr test"
5002
5003 test_120e() {
5004         mkdir -p $DIR/$tdir
5005         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5006                skip "no early lock cancel on server" && return 0
5007         lru_resize_disable mdc
5008         lru_resize_disable osc
5009         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
5010         cancel_lru_locks mdc
5011         cancel_lru_locks osc
5012         dd if=$DIR/$tdir/f1 of=/dev/null
5013         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
5014         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5015               awk '/ldlm_cancel/ {print $2}'`
5016         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5017               awk '/ldlm_bl_callback/ {print $2}'`
5018         unlink $DIR/$tdir/f1
5019         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5020               awk '/ldlm_cancel/ {print $2}'`
5021         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5022               awk '/ldlm_bl_callback/ {print $2}'`
5023         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5024         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5025         lru_resize_enable mdc
5026         lru_resize_enable osc
5027 }
5028 run_test 120e "Early Lock Cancel: unlink test"
5029
5030 test_120f() {
5031         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5032                skip "no early lock cancel on server" && return 0
5033         mkdir -p $DIR/$tdir
5034         lru_resize_disable mdc
5035         lru_resize_disable osc
5036         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5037         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
5038         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
5039         cancel_lru_locks mdc
5040         cancel_lru_locks osc
5041         dd if=$DIR/$tdir/d1/f1 of=/dev/null
5042         dd if=$DIR/$tdir/d2/f2 of=/dev/null
5043         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
5044         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5045               awk '/ldlm_cancel/ {print $2}'`
5046         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5047               awk '/ldlm_bl_callback/ {print $2}'`
5048         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5049         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5050               awk '/ldlm_cancel/ {print $2}'`
5051         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5052               awk '/ldlm_bl_callback/ {print $2}'`
5053         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5054         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5055         lru_resize_enable mdc
5056         lru_resize_enable osc
5057 }
5058 run_test 120f "Early Lock Cancel: rename test"
5059
5060 test_120g() {
5061         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5062                skip "no early lock cancel on server" && return 0
5063         lru_resize_disable mdc
5064         lru_resize_disable osc
5065         count=10000
5066         echo create $count files
5067         mkdir -p $DIR/$tdir
5068         cancel_lru_locks mdc
5069         cancel_lru_locks osc
5070         t0=`date +%s`
5071
5072         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5073               awk '/ldlm_cancel/ {print $2}'`
5074         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5075               awk '/ldlm_bl_callback/ {print $2}'`
5076         createmany -o $DIR/$tdir/f $count
5077         sync
5078         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5079               awk '/ldlm_cancel/ {print $2}'`
5080         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5081               awk '/ldlm_bl_callback/ {print $2}'`
5082         t1=`date +%s`
5083         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
5084         echo rm $count files
5085         rm -r $DIR/$tdir
5086         sync
5087         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5088               awk '/ldlm_cancel/ {print $2}'`
5089         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5090               awk '/ldlm_bl_callback/ {print $2}'`
5091         t2=`date +%s`
5092         echo total: $count removes in $((t2-t1))
5093         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
5094         sleep 2
5095         # wait for commitment of removal
5096         lru_resize_enable mdc
5097         lru_resize_enable osc
5098 }
5099 run_test 120g "Early Lock Cancel: performance test"
5100
5101 test_121() { #bug #10589
5102         rm -rf $DIR/$tfile
5103         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out/ {print $1}')
5104 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
5105         lctl set_param fail_loc=0x310
5106         cancel_lru_locks osc > /dev/null
5107         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in/ {print $1}')
5108         lctl set_param fail_loc=0
5109         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
5110 }
5111 run_test 121 "read cancel race ========="
5112
5113 test_123a() { # was test 123, statahead(bug 11401)
5114         SLOWOK=0
5115         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
5116                 log "testing on UP system. Performance may be not as good as expected."
5117                 SLOWOK=1
5118         fi
5119
5120         rm -rf $DIR/$tdir
5121         mkdir -p $DIR/$tdir
5122         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5123         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
5124         MULT=10
5125         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
5126                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
5127
5128                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5129                 lctl set_param -n llite.*.statahead_max 0
5130                 lctl get_param llite.*.statahead_max
5131                 cancel_lru_locks mdc
5132                 cancel_lru_locks osc
5133                 stime=`date +%s`
5134                 time ls -l $DIR/$tdir | wc -l
5135                 etime=`date +%s`
5136                 delta=$((etime - stime))
5137                 log "ls $i files without statahead: $delta sec"
5138                 lctl set_param llite.*.statahead_max=$max
5139
5140                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5141                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
5142                 cancel_lru_locks mdc
5143                 cancel_lru_locks osc
5144                 stime=`date +%s`
5145                 time ls -l $DIR/$tdir | wc -l
5146                 etime=`date +%s`
5147                 delta_sa=$((etime - stime))
5148                 log "ls $i files with statahead: $delta_sa sec"
5149                 lctl get_param -n llite.*.statahead_stats
5150                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5151
5152                 if [ $swrong -lt $ewrong ]; then
5153                         log "statahead was stopped, maybe too many locks held!"
5154                 fi
5155
5156                 [ $delta -eq 0 ] && continue
5157
5158                 if [ $((delta_sa * 100)) -gt $((delta * 105)) ]; then
5159                         if [  $SLOWOK -eq 0 ]; then
5160                                 error "ls $i files is slower with statahead!"
5161
5162                                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5163                                 lctl set_param -n llite.*.statahead_max 0
5164                                 lctl get_param llite.*.statahead_max
5165                                 cancel_lru_locks mdc
5166                                 cancel_lru_locks osc
5167                                 $LCTL dk > /dev/null
5168                                 stime=`date +%s`
5169                                 time ls -l $DIR/$tdir | wc -l
5170                                 etime=`date +%s`
5171                                 $LCTL dk > $TMP/sanity_test_123a_${i}_disable_${etime}.log
5172                                 delta=$((etime - stime))
5173                                 log "ls $i files without statahead: $delta sec, dump to $TMP/sanity_test_123a_${i}_disable_${etime}.log"
5174                                 lctl set_param llite.*.statahead_max=$max
5175
5176                                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
5177                                 cancel_lru_locks mdc
5178                                 cancel_lru_locks osc
5179                                 $LCTL dk > /dev/null
5180                                 stime=`date +%s`
5181                                 time ls -l $DIR/$tdir | wc -l
5182                                 etime=`date +%s`
5183                                 $LCTL dk > $TMP/sanity_test_123a_${i}_enable_${etime}.log
5184                                 delta_sa=$((etime - stime))
5185                                 log "ls $i files with statahead: $delta_sa sec, dump to $TMP/sanity_test_123a_${i}_enable_${etime}.log"
5186                                 lctl get_param -n llite.*.statahead_stats
5187                         else
5188                                 log "ls $i files is slower with statahead!"
5189                         fi
5190                         break
5191                 fi
5192
5193                 [ $delta -gt 20 ] && break
5194                 [ $delta -gt 8 ] && MULT=$((50 / delta))
5195                 [ "$SLOW" = "no" -a $delta -gt 3 ] && break
5196         done
5197         log "ls done"
5198
5199         stime=`date +%s`
5200         rm -r $DIR/$tdir
5201         sync
5202         etime=`date +%s`
5203         delta=$((etime - stime))
5204         log "rm -r $DIR/$tdir/: $delta seconds"
5205         log "rm done"
5206         lctl get_param -n llite.*.statahead_stats
5207 }
5208 run_test 123a "verify statahead work"
5209
5210 test_123b () { # statahead(bug 15027)
5211         mkdir -p $DIR/$tdir
5212         createmany -o $DIR/$tdir/$tfile-%d 1000
5213         
5214         cancel_lru_locks mdc
5215         cancel_lru_locks osc
5216
5217 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
5218         lctl set_param fail_loc=0x80000803
5219         ls -lR $DIR/$tdir > /dev/null
5220         log "ls done"
5221         lctl set_param fail_loc=0x0
5222         lctl get_param -n llite.*.statahead_stats
5223         rm -r $DIR/$tdir
5224         sync
5225
5226 }
5227 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
5228
5229 test_124a() {
5230         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
5231                skip "no lru resize on server" && return 0
5232         local NR=2000
5233         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
5234
5235         log "create $NR files at $DIR/$tdir"
5236         createmany -o $DIR/$tdir/f $NR ||
5237                 error "failed to create $NR files in $DIR/$tdir"
5238
5239         cancel_lru_locks mdc
5240         ls -l $DIR/$tdir > /dev/null
5241
5242         local NSDIR=""
5243         local LRU_SIZE=0
5244         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
5245                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5246                 LRU_SIZE=$(lctl get_param -n $PARAM)
5247                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
5248                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
5249                         log "NS=$(basename $NSDIR)"
5250                         break
5251                 fi
5252         done
5253
5254         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
5255                 skip "Not enough cached locks created!"
5256                 return 0
5257         fi
5258         log "LRU=$LRU_SIZE"
5259
5260         local SLEEP=30
5261
5262         # We know that lru resize allows one client to hold $LIMIT locks
5263         # for 10h. After that locks begin to be killed by client.
5264         local MAX_HRS=10
5265         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
5266
5267         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
5268         # killing locks. Some time was spent for creating locks. This means
5269         # that up to the moment of sleep finish we must have killed some of
5270         # them (10-100 locks). This depends on how fast ther were created.
5271         # Many of them were touched in almost the same moment and thus will
5272         # be killed in groups.
5273         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
5274
5275         # Use $LRU_SIZE_B here to take into account real number of locks
5276         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
5277         local LRU_SIZE_B=$LRU_SIZE
5278         log "LVF=$LVF"
5279         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
5280         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
5281         
5282         # Let's make sure that we really have some margin. Client checks
5283         # cached locks every 10 sec.
5284         SLEEP=$((SLEEP+20))
5285         log "Sleep ${SLEEP} sec"
5286         local SEC=0
5287         while ((SEC<$SLEEP)); do
5288                 echo -n "..."
5289                 sleep 5
5290                 SEC=$((SEC+5))
5291                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
5292                 echo -n "$LRU_SIZE"
5293         done
5294         echo ""
5295         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
5296         local LRU_SIZE_A=`lctl get_param -n $NSDIR/lru_size`
5297
5298         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
5299                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
5300                 unlinkmany $DIR/$tdir/f $NR
5301                 return
5302         }
5303
5304         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
5305         log "unlink $NR files at $DIR/$tdir"
5306         unlinkmany $DIR/$tdir/f $NR
5307 }
5308 run_test 124a "lru resize ======================================="
5309
5310 get_max_pool_limit()
5311 {
5312         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
5313         local max=0
5314         for l in $limit; do
5315                 if test $l -gt $max; then
5316                         max=$l
5317                 fi
5318         done
5319         echo $max
5320 }
5321
5322 test_124b() {
5323         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
5324                skip "no lru resize on server" && return 0
5325
5326         LIMIT=`get_max_pool_limit`
5327
5328         NR=$(($(default_lru_size)*20))
5329         if [ $NR -gt $LIMIT ]; then
5330                 log "Limit lock number by $LIMIT locks"
5331                 NR=$LIMIT
5332         fi
5333         lru_resize_disable mdc
5334         mkdir -p $DIR/$tdir/disable_lru_resize ||
5335                 error "failed to create $DIR/$tdir/disable_lru_resize"
5336
5337         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
5338         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
5339         cancel_lru_locks mdc
5340         stime=`date +%s`
5341         PID=""
5342         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
5343         PID="$PID $!"
5344         sleep 2
5345         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
5346         PID="$PID $!"
5347         sleep 2
5348         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
5349         PID="$PID $!"
5350         wait $PID
5351         etime=`date +%s`
5352         nolruresize_delta=$((etime-stime))
5353         log "ls -la time: $nolruresize_delta seconds"
5354         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
5355         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
5356
5357         lru_resize_enable mdc
5358         mkdir -p $DIR/$tdir/enable_lru_resize ||
5359                 error "failed to create $DIR/$tdir/enable_lru_resize"
5360
5361         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
5362         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
5363         cancel_lru_locks mdc
5364         stime=`date +%s`
5365         PID=""
5366         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
5367         PID="$PID $!"
5368         sleep 2
5369         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
5370         PID="$PID $!"
5371         sleep 2
5372         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
5373         PID="$PID $!"
5374         wait $PID
5375         etime=`date +%s`
5376         lruresize_delta=$((etime-stime))
5377         log "ls -la time: $lruresize_delta seconds"
5378         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
5379
5380         if [ $lruresize_delta -gt $nolruresize_delta ]; then
5381                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
5382         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
5383                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
5384         else
5385                 log "lru resize performs the same with no lru resize"
5386         fi
5387         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
5388 }
5389 run_test 124b "lru resize (performance test) ======================="
5390
5391 test_125() { # 13358
5392         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
5393         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
5394         mkdir -p $DIR/d125 || error "mkdir failed"
5395         $SETSTRIPE $DIR/d125 -s 65536 -c -1 || error "setstripe failed"
5396         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
5397         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
5398 }
5399 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
5400
5401 test_126() { # bug 12829/13455
5402         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
5403         [ "$UID" != 0 ] && echo "skipping $TESTNAME (must run as root)" && return
5404         $GSS && skip "must run as gss disabled" && return
5405
5406         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
5407         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
5408         rm -f $DIR/$tfile
5409         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
5410 }
5411 run_test 126 "check that the fsgid provided by the client is taken into account"
5412
5413 test_127() { # bug 15521
5414         $LSTRIPE -i 0 -c 1 $DIR/$tfile
5415         $LCTL set_param osc.*.stats=0
5416         FSIZE=$((2048 * 1024))
5417         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
5418         cancel_lru_locks osc
5419         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
5420
5421         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
5422         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
5423                 echo "got $COUNT $NAME"
5424                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
5425                 eval $NAME=$COUNT || error "Wrong proc format"
5426                 
5427                 case $NAME in
5428                         read_bytes|write_bytes)
5429                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
5430                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
5431                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
5432                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
5433                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
5434                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
5435                                 error "sumsquare is too small: $SUMSQ"
5436                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
5437                                 error "sumsquare is too big: $SUMSQ"
5438                         ;;
5439                         *) ;;
5440                 esac
5441         done < $DIR/${tfile}.tmp
5442
5443         #check that we actually got some stats
5444         [ "$read_bytes" ] || error "Missing read_bytes stats"
5445         [ "$write_bytes" ] || error "Missing write_bytes stats"
5446         [ "$read_bytes" != 0 ] || error "no read done"
5447         [ "$write_bytes" != 0 ] || error "no write done"
5448 }
5449 run_test 127 "verify the client stats are sane"
5450
5451 test_128() { # bug 15212
5452         touch $DIR/$tfile
5453         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
5454                 find $DIR/$tfile
5455                 find $DIR/$tfile
5456         EOF
5457
5458         result=$(grep error $TMP/$tfile.log)
5459         rm -f $DIR/$tfile
5460         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
5461 }
5462 run_test 128 "interactive lfs for 2 consecutive find's"
5463
5464 set_dir_limits () {
5465         local mntdev
5466         local node
5467
5468         local LDPROC=/proc/fs/ldiskfs
5469
5470         for node in $(mdts_nodes); do
5471                 devs=$(do_node $node "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
5472                 for dev in $devs; do
5473                         mntdev=$(do_node $node "lctl get_param -n osd.$dev.mntdev")
5474                         do_node $node "echo $1 >$LDPROC/\\\$(basename $mntdev)/max_dir_size"
5475                 done
5476         done
5477 }
5478 test_129() {
5479         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return 0
5480         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5481
5482         EFBIG=27
5483         MAX=16384
5484
5485         set_dir_limits $MAX
5486
5487         mkdir -p $DIR/$tdir
5488
5489         I=0
5490         J=0
5491         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
5492                 multiop $DIR/$tdir/$J Oc
5493                 rc=$?
5494                 if [ $rc -eq $EFBIG ]; then
5495                         set_dir_limits 0
5496                         echo "return code $rc received as expected"
5497                         return 0
5498                 elif [ $rc -ne 0 ]; then
5499                         set_dir_limits 0
5500                         error_exit "return code $rc received instead of expected $EFBIG"
5501                 fi
5502                 J=$((J+1))
5503                 I=$(stat -c%s "$DIR/$tdir")
5504         done
5505
5506         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
5507         do_facet $SINGLEMDS "echo 0 >$LDPROC"
5508 }
5509 run_test 129 "test directory size limit ========================"
5510
5511 OLDIFS="$IFS"
5512 cleanup_130() {
5513         trap 0
5514         IFS="$OLDIFS"
5515 }
5516
5517 test_130a() {
5518         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5519         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5520
5521         trap cleanup_130 EXIT RETURN
5522
5523         local fm_file=$DIR/$tfile
5524         lfs setstripe -s 65536 -c 1 $fm_file || error "setstripe failed on $fm_file"
5525         dd if=/dev/zero of=$fm_file bs=65536 count=1 || error "dd failed for $fm_file"
5526
5527         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5528         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5529
5530         lun=`$GETSTRIPE $fm_file  | grep -A 10 obdidx | awk '{print $1}' | grep -v "obdidx"`
5531
5532         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
5533         IFS=$'\n'
5534         tot_len=0
5535         for line in $filefrag_op
5536         do
5537                 frag_lun=`echo $line | cut -d: -f5`
5538                 ext_len=`echo $line | cut -d: -f4`
5539                 if (( $frag_lun != $lun )); then
5540                         cleanup_130
5541                         error "FIEMAP on 1-stripe file($fm_file) failed"
5542                         return
5543                 fi
5544                 (( tot_len += ext_len ))
5545         done
5546
5547         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
5548                 cleanup_130
5549                 error "FIEMAP on 1-stripe file($fm_file) failed;"
5550                 return
5551         fi
5552
5553         cleanup_130
5554
5555         echo "FIEMAP on single striped file succeeded"
5556 }
5557 run_test 130a "FIEMAP (1-stripe file)"
5558
5559 test_130b() {
5560         [ "$OSTCOUNT" -lt "2" ] && skip "skipping FIEMAP on 2-stripe file test" && return
5561
5562         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5563         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5564
5565         trap cleanup_130 EXIT RETURN
5566
5567         local fm_file=$DIR/$tfile
5568         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
5569         dd if=/dev/zero of=$fm_file bs=1M count=2 || error "dd failed on $fm_file"
5570
5571         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5572         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5573
5574         last_lun=`echo $filefrag_op | cut -d: -f5`
5575
5576         IFS=$'\n'
5577         tot_len=0
5578         num_luns=1
5579         for line in $filefrag_op
5580         do
5581                 frag_lun=`echo $line | cut -d: -f5`
5582                 ext_len=`echo $line | cut -d: -f4`
5583                 if (( $frag_lun != $last_lun )); then
5584                         if (( tot_len != 1024 )); then
5585                                 cleanup_130
5586                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
5587                                 return
5588                         else
5589                                 (( num_luns += 1 ))
5590                                 tot_len=0
5591                         fi
5592                 fi
5593                 (( tot_len += ext_len ))
5594                 last_lun=$frag_lun
5595         done
5596         if (( num_luns != 2 || tot_len != 1024 )); then
5597                 cleanup_130
5598                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5599                 return
5600         fi
5601
5602         cleanup_130
5603
5604         echo "FIEMAP on 2-stripe file succeeded"
5605 }
5606 run_test 130b "FIEMAP (2-stripe file)"
5607
5608 test_130c() {
5609         [ "$OSTCOUNT" -lt "2" ] && skip "skipping FIEMAP on 2-stripe file with hole test" && return
5610
5611         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5612         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5613
5614         trap cleanup_130 EXIT RETURN
5615
5616         local fm_file=$DIR/$tfile
5617         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
5618         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
5619
5620         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5621         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5622
5623         last_lun=`echo $filefrag_op | cut -d: -f5`
5624
5625         IFS=$'\n'
5626         tot_len=0
5627         num_luns=1
5628         for line in $filefrag_op
5629         do
5630                 frag_lun=`echo $line | cut -d: -f5`
5631                 ext_len=`echo $line | cut -d: -f4`
5632                 if (( $frag_lun != $last_lun )); then
5633                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
5634                         if (( logical != 512 )); then
5635                                 cleanup_130
5636                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
5637                                 return
5638                         fi
5639                         if (( tot_len != 512 )); then
5640                                 cleanup_130
5641                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
5642                                 return
5643                         else
5644                                 (( num_luns += 1 ))
5645                                 tot_len=0
5646                         fi
5647                 fi
5648                 (( tot_len += ext_len ))
5649                 last_lun=$frag_lun
5650         done
5651         if (( num_luns != 2 || tot_len != 512 )); then
5652                 cleanup_130
5653                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5654                 return
5655         fi
5656
5657         cleanup_130
5658
5659         echo "FIEMAP on 2-stripe file with hole succeeded"
5660 }
5661 run_test 130c "FIEMAP (2-stripe file with hole)"
5662
5663 test_130d() {
5664         [ "$OSTCOUNT" -lt "3" ] && skip "skipping FIEMAP on N-stripe file test" && return
5665
5666         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5667         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5668
5669         trap cleanup_130 EXIT RETURN
5670
5671         local fm_file=$DIR/$tfile
5672         lfs setstripe -s 65536 -c $OSTCOUNT $fm_file || error "setstripe failed on $fm_file"
5673         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
5674
5675         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5676         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
5677
5678         last_lun=`echo $filefrag_op | cut -d: -f5`
5679
5680         IFS=$'\n'
5681         tot_len=0
5682         num_luns=1
5683         for line in $filefrag_op
5684         do
5685                 frag_lun=`echo $line | cut -d: -f5`
5686                 ext_len=`echo $line | cut -d: -f4`
5687                 if (( $frag_lun != $last_lun )); then
5688                         if (( tot_len != 1024 )); then
5689                                 cleanup_130
5690                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
5691                                 return
5692                         else
5693                                 (( num_luns += 1 ))
5694                                 tot_len=0
5695                         fi
5696                 fi
5697                 (( tot_len += ext_len ))
5698                 last_lun=$frag_lun
5699         done
5700         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
5701                 cleanup_130
5702                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5703                 return
5704         fi
5705
5706         cleanup_130
5707
5708         echo "FIEMAP on N-stripe file succeeded"
5709 }
5710 run_test 130d "FIEMAP (N-stripe file)"
5711
5712 test_130e() {
5713         [ "$OSTCOUNT" -lt "2" ] && skip "skipping continuation FIEMAP test" && return
5714
5715         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
5716         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
5717
5718         trap cleanup_130 EXIT RETURN
5719
5720         local fm_file=$DIR/$tfile
5721         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
5722         NUM_BLKS=512
5723         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 4 ))
5724         for ((i = 0; i < $NUM_BLKS; i++))
5725         do
5726                 dd if=/dev/zero of=$fm_file count=1 bs=4096 seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
5727         done
5728
5729         filefrag -ves $fm_file || error "filefrag $fm_file failed"
5730         filefrag_op=`filefrag -ve $fm_file | grep -A 750 "ext:" | grep -v "ext:" | grep -v "found"`
5731
5732         last_lun=`echo $filefrag_op | cut -d: -f5`
5733
5734         IFS=$'\n'
5735         tot_len=0
5736         num_luns=1
5737         for line in $filefrag_op
5738         do
5739                 frag_lun=`echo $line | cut -d: -f5`
5740                 ext_len=`echo $line | cut -d: -f4`
5741                 if (( $frag_lun != $last_lun )); then
5742                         if (( tot_len != $EXPECTED_LEN )); then
5743                                 cleanup_130
5744                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
5745                                 return
5746                         else
5747                                 (( num_luns += 1 ))
5748                                 tot_len=0
5749                         fi
5750                 fi
5751                 (( tot_len += ext_len ))
5752                 last_lun=$frag_lun
5753         done
5754         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
5755                 cleanup_130
5756                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
5757                 return
5758         fi
5759
5760         cleanup_130
5761
5762         echo "FIEMAP with continuation calls succeeded"
5763 }
5764 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
5765
5766 # Test for writev/readv
5767 test_131a() {
5768         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
5769         error "writev test failed"
5770         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
5771         error "readv failed"
5772         rm -f $DIR/$tfile
5773 }
5774 run_test 131a "test iov's crossing stripe boundary for writev/readv"
5775
5776 test_131b() {
5777         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
5778         error "append writev test failed"
5779         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
5780         error "append writev test failed"
5781         rm -f $DIR/$tfile
5782 }
5783 run_test 131b "test append writev"
5784
5785 test_131c() {
5786         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
5787         error "NOT PASS"
5788 }
5789 run_test 131c "test read/write on file w/o objects"
5790
5791 test_131d() {
5792         rwv -f $DIR/$tfile -w -n 1 1572864
5793         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
5794         if [ "$NOB" != 1572864 ]; then
5795                 error "Short read filed: read $NOB bytes instead of 1572864"
5796         fi
5797         rm -f $DIR/$tfile
5798 }
5799 run_test 131d "test short read"
5800
5801 test_131e() {
5802         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
5803         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
5804         error "read hitting hole failed"
5805         rm -f $DIR/$tfile
5806 }
5807 run_test 131e "test read hitting hole"
5808
5809 test_140() { #bug-17379
5810         mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
5811         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
5812         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
5813
5814         # VFS limits max symlink depth to 5(4KSTACK) or 8
5815         local i=0
5816         while i=`expr $i + 1`; do
5817                 mkdir -p $i || error "Creating dir $i"
5818                 cd $i || error "Changing to $i"
5819                 ln -s ../stat stat || error "Creating stat symlink"
5820                 # Read the symlink until ELOOP present,
5821                 # not LBUGing the system is considered success,
5822                 # we didn't overrun the stack.
5823                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
5824                 [ $ret -ne 0 ] && {
5825                         if [ $ret -eq 40 ]; then
5826                                 break  # -ELOOP
5827                         else
5828                                 error "Open stat symlink"
5829                                 return
5830                         fi
5831                 }
5832         done
5833         i=`expr $i - 1`
5834         echo "The symlink depth = $i"
5835         [ $i -eq 4 -o $i -eq 8 ] || error "Invalid symlink depth"
5836 }
5837 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
5838
5839 test_150() {
5840         local TF="$TMP/$tfile"
5841
5842         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
5843         cp $TF $DIR/$tfile
5844         cancel_lru_locks osc
5845         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
5846         remount_client $MOUNT
5847         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
5848
5849         $TRUNCATE $TF 6000
5850         $TRUNCATE $DIR/$tfile 6000
5851         cancel_lru_locks osc
5852         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
5853
5854         echo "12345" >>$TF
5855         echo "12345" >>$DIR/$tfile
5856         cancel_lru_locks osc
5857         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
5858
5859         echo "12345" >>$TF
5860         echo "12345" >>$DIR/$tfile
5861         cancel_lru_locks osc
5862         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
5863
5864         rm -f $TF
5865         true
5866 }
5867 run_test 150 "truncate/append tests"
5868
5869 function roc_access() {
5870         ACCNUM=`$LCTL get_param -n obdfilter.*.stats | \
5871                 grep 'cache_access'| awk '{print $2}' | \
5872                 awk '{sum=sum+$3} END{print sum}'`
5873         echo $ACCNUM
5874 }
5875
5876 function roc_hit() {
5877         ACCNUM=`$LCTL get_param -n obdfilter.*.stats | \
5878                 grep 'cache_hit'|awk '{print $2}' | \
5879                 awk '{sum=sum+$1} END{print sum}'`
5880         echo $ACCNUM
5881 }
5882
5883 test_151() {
5884         local CPAGES=3
5885
5886         # check whether obdfilter is cache capable at all
5887         if ! $LCTL get_param -n obdfilter.*.read_cache_enable; then
5888                 echo "not cache-capable obdfilter"
5889                 return 0
5890         fi
5891
5892         # check cache is enabled on all obdfilters
5893         if $LCTL get_param -n obdfilter.*.read_cache_enable | grep 0 >&/dev/null; then
5894                 echo "oss cache is disabled"
5895                 return 0
5896         fi
5897
5898         $LCTL set_param -n obdfilter.*.writethrough_cache_enable 1
5899
5900         # pages should be in the case right after write
5901         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
5902         BEFORE=`roc_hit`
5903         cancel_lru_locks osc
5904         cat $DIR/$tfile >/dev/null
5905         AFTER=`roc_hit`
5906         if ! let "AFTER - BEFORE == CPAGES"; then
5907                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
5908         fi
5909
5910         # the following read invalidates the cache
5911         cancel_lru_locks osc
5912         $LCTL set_param -n obdfilter.*.read_cache_enable 0
5913         cat $DIR/$tfile >/dev/null
5914
5915         # now data shouldn't be found in the cache
5916         BEFORE=`roc_hit`
5917         cancel_lru_locks osc
5918         cat $DIR/$tfile >/dev/null
5919         AFTER=`roc_hit`
5920         if let "AFTER - BEFORE != 0"; then
5921                 error "IN CACHE: before: $BEFORE, after: $AFTER"
5922         fi
5923
5924         $LCTL set_param -n obdfilter.*.read_cache_enable 1
5925         rm -f $DIR/$tfile
5926 }
5927 run_test 151 "test cache on oss and controls ==============================="
5928
5929 test_152() {
5930         local TF="$TMP/$tfile"
5931
5932         # simulate ENOMEM during write
5933 #define OBD_FAIL_OST_NOMEM      0x226
5934         lctl set_param fail_loc=0x80000226
5935         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
5936         cp $TF $DIR/$tfile
5937         sync || error "sync failed"
5938         lctl set_param fail_loc=0
5939         
5940         # discard client's cache
5941         cancel_lru_locks osc
5942
5943         # simulate ENOMEM during read
5944         lctl set_param fail_loc=0x80000226
5945         cmp $TF $DIR/$tfile || error "cmp failed"
5946         lctl set_param fail_loc=0
5947
5948         rm -f $TF
5949 }
5950 run_test 152 "test read/write with enomem ============================"
5951
5952 test_153() {
5953         multiop $DIR/$tfile Ow4096Ycu || error "multiop failed"
5954 }
5955 run_test 153 "test if fdatasync does not crash ======================="
5956
5957 err17935 () {
5958     if [ $MDSCOUNT -gt 1 ]; then
5959         error_ignore 17935 $*
5960     else
5961         error $*
5962     fi
5963 }
5964
5965 test_154() {
5966         cp /etc/hosts $DIR/$tfile
5967
5968         fid=`$LFS path2fid $DIR/$tfile`
5969         rc=$?
5970         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
5971
5972         diff $DIR/$tfile $DIR/.lustre/fid/$fid || error "open by fid failed: did not find expected data in file."
5973
5974         echo "Opening a file by FID succeeded"
5975 }
5976 run_test 154 "Opening a file by FID"
5977
5978 #Changelogs
5979 test_160() {
5980     remote_mds && skip "remote MDS" && return
5981     lctl set_param -n mdd.*.changelog on
5982     $LFS changelog_clear $FSNAME 0
5983
5984     # change something
5985     mkdir -p $DIR/$tdir/pics/2008/zachy
5986     touch $DIR/$tdir/pics/2008/zachy/timestamp
5987     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
5988     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
5989     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
5990     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
5991     rm $DIR/$tdir/pics/desktop.jpg
5992
5993     # verify contents
5994     $LFS changelog $FSNAME
5995     # check target fid
5996     fidc=$($LFS changelog $FSNAME | grep timestamp | grep "CREAT" | tail -1 | \
5997         awk '{print $5}')
5998     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
5999     [ "$fidc" == "t=$fidf" ] || \
6000         err17935 "fid in changelog $fidc != file fid $fidf"
6001     # check parent fid
6002     fidc=$($LFS changelog $FSNAME | grep timestamp | grep "CREAT" | tail -1 | \
6003         awk '{print $6}')
6004     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
6005     [ "$fidc" == "p=$fidf" ] || \
6006         err17935 "pfid in changelog $fidc != dir fid $fidf" 
6007
6008     # verify purge
6009     FIRST_REC=$($LFS changelog $FSNAME | head -1 | awk '{print $1}')
6010     $LFS changelog_clear $FSNAME $(($FIRST_REC + 5)) 
6011     PURGE_REC=$($LFS changelog $FSNAME | head -1 | awk '{print $1}')
6012     [ $PURGE_REC == $(($FIRST_REC + 6)) ] || \
6013      err17935 "first rec after purge should be $(($FIRST_REC + 6)); is $PURGE_REC"
6014     # purge all
6015     $LFS changelog_clear $FSNAME 0
6016     lctl set_param -n mdd.*.changelog off
6017 }
6018 run_test 160 "changelog sanity"
6019
6020 test_161() {
6021     # need local MDT for fid2path
6022     remote_mds && skip "remote MDS" && return
6023
6024     mkdir -p $DIR/$tdir
6025     cp /etc/hosts $DIR/$tdir/$tfile
6026     mkdir $DIR/$tdir/foo1
6027     mkdir $DIR/$tdir/foo2
6028     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
6029     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
6030     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
6031     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
6032     local FID=$($LFS path2fid $DIR/$tdir/$tfile)
6033     if [ "$($LFS fid2path ${mds1_svc} $FID | wc -l)" != "5" ]; then
6034         $LFS fid2path ${mds1_svc} $FID
6035         err17935 "bad link ea"
6036     fi
6037     # middle
6038     rm $DIR/$tdir/foo2/zachary
6039     # last
6040     rm $DIR/$tdir/foo2/thor
6041     # first
6042     rm $DIR/$tdir/$tfile
6043     # rename
6044     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
6045     if [ "$($LFS fid2path ${mds1_svc} --link 1 $FID)" != "/$tdir/foo2/maggie" ]
6046         then
6047         $LFS fid2path ${mds1_svc} $FID
6048         err17935 "bad link rename"
6049     fi
6050     rm $DIR/$tdir/foo2/maggie
6051
6052     # overflow the EA
6053     local longname=filename_avg_len_is_thirty_two_
6054     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
6055         error "failed to hardlink many files"
6056     links=$($LFS fid2path ${mds1_svc} $FID | wc -l)
6057     echo -n "${links}/1000 links in link EA"
6058     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
6059     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
6060         error "failed to unlink many hardlinks" 
6061 }
6062 run_test 161 "link ea sanity"
6063
6064 check_path() {
6065     local expected=$1
6066     shift
6067     local fid=$2
6068
6069     local path=$(${LFS} fid2path $*)
6070     RC=$?
6071
6072     if [ $RC -ne 0 ]; then
6073         err17935 "path looked up of $expected failed. Error $RC"
6074         return $RC
6075     elif [ "${path}" != "${expected}" ]; then
6076         err17935 "path looked up \"${path}\" instead of \"${expected}\""
6077         return 2
6078     fi
6079     echo "fid $fid resolves to path $path"
6080 }
6081
6082 test_162() {
6083     # need local MDT for fid2path
6084     remote_mds && skip "remote MDS" && return
6085
6086     # Make changes to filesystem
6087     mkdir -p $DIR/$tdir/d2
6088     touch $DIR/$tdir/d2/$tfile
6089     touch $DIR/$tdir/d2/x1
6090     touch $DIR/$tdir/d2/x2
6091     mkdir -p $DIR/$tdir/d2/a/b/c
6092     mkdir -p $DIR/$tdir/d2/p/q/r
6093     fid=$($LFS path2fid $DIR/$tdir/d2/$tfile)
6094     check_path "/$tdir/d2/$tfile" ${mds1_svc} $fid --link 0
6095     ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
6096     mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
6097     fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file)
6098     check_path "/$tdir/d2/a/b/c/new_file" ${mds1_svc} $fid --link 1
6099     check_path "/$tdir/d2/p/q/r/hlink" ${mds1_svc} $fid --link 0
6100     # check that there are 2 links, and that --rec doesnt break anything
6101     ${LFS} fid2path ${mds1_svc} $fid --rec 20 | wc -l | grep -q 2 || \
6102         err17935 "expected 2 links" 
6103
6104     rm $DIR/$tdir/d2/p/q/r/hlink
6105     check_path "/$tdir/d2/a/b/c/new_file" ${mds1_svc} $fid --link 0
6106     # Doesnt work with CMD yet: 17935 
6107     return 0
6108 }
6109 run_test 162 "path lookup sanity"
6110
6111 test_170() {
6112         $LCTL debug_daemon start $TMP/${tfile}_log_good
6113         touch $DIR/$tfile
6114         $LCTL debug_daemon stop
6115         cat $TMP/${tfile}_log_good | sed -e "s/^...../a/g" > $TMP/${tfile}_log_bad
6116
6117         $LCTL debug_daemon start $TMP/${tfile}_log_good
6118         rm -rf $DIR/$tfile
6119         $LCTL debug_daemon stop
6120
6121         $LCTL df $TMP/${tfile}_log_bad 2&> $TMP/${tfile}_log_bad.out
6122         bad_line=`tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}'`
6123         good_line1=`tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}'`
6124
6125         $LCTL df $TMP/${tfile}_log_good 2&>$TMP/${tfile}_log_good.out 
6126         good_line2=`tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}'`
6127
6128         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
6129         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt 
6130         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt           
6131
6132         $LCTL df $TMP/${tfile}_logs_corrupt 2&> $TMP/${tfile}_log_bad.out
6133         bad_line_new=`tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}'`
6134         good_line_new=`tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}'`
6135         expected_good=$((good_line1 + good_line2*2))
6136
6137         rm -rf $TMP/${tfile}*
6138         if [ $bad_line -ne $bad_line_new ]; then
6139                 error "expected $bad_line bad lines, but got $bad_line_new"
6140                 return 1 
6141         fi
6142
6143         if [ $expected_good -ne $good_line_new ]; then
6144                 error "expected $expected_good good lines, but got $good_line_new"
6145                 return 2 
6146         fi
6147         true
6148 }
6149 run_test 170 "test lctl df to handle corruputed log ====================="
6150
6151 # OST pools tests
6152 POOL=${POOL:-cea1}
6153 TGT_COUNT=$OSTCOUNT
6154 TGTPOOL_FIRST=1
6155 TGTPOOL_MAX=$(($TGT_COUNT - 1))
6156 TGTPOOL_STEP=2
6157 TGTPOOL_LIST=`seq $TGTPOOL_FIRST $TGTPOOL_STEP $TGTPOOL_MAX`
6158 POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
6159 POOL_DIR=$POOL_ROOT/dir_tst
6160 POOL_FILE=$POOL_ROOT/file_tst
6161
6162 check_file_in_pool()
6163 {
6164         file=$1
6165         res=$($GETSTRIPE $file | grep 0x | cut -f2)
6166         for i in $res
6167         do
6168                 found=$(echo :$TGTPOOL_LIST: | tr " " ":"  | grep :$i:)
6169                 if [[ "$found" == "" ]]
6170                 then
6171                         echo "pool list: $TGTPOOL_LIST"
6172                         echo "striping: $res"
6173                         error "$file not allocated in $POOL"
6174                         return 1
6175                 fi
6176         done
6177         return 0
6178 }
6179
6180 test_200a() {
6181         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6182         do_facet mgs $LCTL pool_new $FSNAME.$POOL
6183         do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL
6184         [ $? == 0 ] || error "Pool creation of $POOL failed"
6185 }
6186 run_test 200a "Create new pool =========================================="
6187
6188 test_200b() {
6189         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6190         TGT=$(seq -f $FSNAME-OST%04g_UUID $TGTPOOL_FIRST $TGTPOOL_STEP \
6191                 $TGTPOOL_MAX | tr '\n' ' ')
6192         do_facet mgs $LCTL pool_add $FSNAME.$POOL \
6193                 $FSNAME-OST[$TGTPOOL_FIRST-$TGTPOOL_MAX/$TGTPOOL_STEP]_UUID
6194         res=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL | sort \
6195                         | tr '\n' ' ')
6196         [ "$res" = "$TGT" ] || error "Pool content ($res) do not match requested ($TGT)"
6197 }
6198 run_test 200b "Add targets to a pool ===================================="
6199
6200 test_200c() {
6201         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6202         mkdir -p $POOL_DIR
6203         $SETSTRIPE -c 2 -p $POOL $POOL_DIR
6204         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR"
6205 }
6206 run_test 200c "Set pool on a directory ================================="
6207
6208 test_200d() {
6209         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6210         res=$($GETSTRIPE $POOL_DIR | grep pool: | cut -f8 -d " ")
6211         [ "$res" = $POOL ] || error "Pool on $POOL_DIR is not $POOL"
6212 }
6213 run_test 200d "Check pool on a directory ==============================="
6214
6215 test_200e() {
6216         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6217         failed=0
6218         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
6219         do
6220                 file=$POOL_DIR/file-$i
6221                 touch $file
6222                 check_file_in_pool $file
6223                 if [[ $? != 0 ]]
6224                 then
6225                         failed=$(($failed + 1))
6226                 fi
6227         done
6228         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
6229 }
6230 run_test 200e "Check files allocation from directory pool =============="
6231
6232 test_200f() {
6233         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6234         mkdir -p $POOL_FILE
6235         failed=0
6236         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
6237         do
6238                 file=$POOL_FILE/spoo-$i
6239                 $SETSTRIPE -p $POOL $file
6240                 check_file_in_pool $file
6241                 if [[ $? != 0 ]]
6242                 then
6243                         failed=$(($failed + 1))
6244                 fi
6245         done
6246         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
6247 }
6248 run_test 200f "Create files in a pool ==================================="
6249
6250 test_200g() {
6251         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6252         TGT=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL | head -1)
6253         do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
6254         res=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL | grep $TGT)
6255         [ "$res" = "" ] || error "$TGT not removed from $FSNAME.$POOL"
6256 }
6257 run_test 200g "Remove a target from a pool ============================="
6258
6259 test_200h() {
6260         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6261         for TGT in $(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL)
6262         do
6263                 do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
6264         done
6265         res=$(do_facet mgs $LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL)
6266         [ "$res" = "" ] || error "Pool $FSNAME.$POOL cannot be drained"
6267 }
6268 run_test 200h "Remove all targets from a pool =========================="
6269
6270 test_200i() {
6271         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6272         do_facet mgs $LCTL pool_destroy $FSNAME.$POOL
6273         res=$(do_facet mgs "$LCTL get_param -n lov.$FSNAME-MDT0000-mdtlov.pools.$POOL 2>/dev/null")
6274         [ "$res" = "" ] || error "Pool $FSNAME.$POOL is not destroyed"
6275 }
6276 run_test 200i "Remove a pool ============================================"
6277
6278 test_212() {
6279         size=`date +%s`
6280         size=$((size % 8192 + 1))
6281         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
6282         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
6283         rm -f $DIR/f212 $DIR/f212.xyz
6284 }
6285 run_test 212 "Sendfile test ============================================"
6286
6287 #
6288 # tests that do cleanup/setup should be run at the end
6289 #
6290
6291 test_900() {
6292         local ls
6293         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
6294         $LCTL set_param fail_loc=0x903
6295         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
6296         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
6297                 echo "clear" > $ls
6298         done
6299         FAIL_ON_ERROR=true cleanup
6300         FAIL_ON_ERROR=true setup
6301 }
6302 run_test 900 "umount should not race with any mgc requeue thread"
6303
6304 log "cleanup: ======================================================"
6305 check_and_cleanup_lustre
6306 if [ "$I_MOUNTED" != "yes" ]; then
6307         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
6308 fi
6309
6310 echo '=========================== finished ==============================='
6311 [ -f "$SANITYLOG" ] && cat $SANITYLOG && grep -q FAIL $SANITYLOG && exit 1 || true
6312 echo "$0: completed"