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