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