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