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