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