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