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