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