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