3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
6 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
10 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
11 ALWAYS_EXCEPT=" 27u 42a 42b 42c 42d 45 51d 68b $SANITY_EXCEPT"
12 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14 # with LOD/OSP landing
15 # bug number for skipped tests: LU2036
16 ALWAYS_EXCEPT=" 76 $ALWAYS_EXCEPT"
19 # Tests that fail on uml
20 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
21 # buffer i/o errs sock spc runas
22 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 27m 27n 27o 27p 27q 27r 31d 54a 64b 99a 99b 99c 99d 99e 99f 101a"
24 SRCDIR=$(cd $(dirname $0); echo $PWD)
25 export PATH=$PATH:/sbin
29 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
30 CREATETEST=${CREATETEST:-createtest}
32 LFIND=${LFIND:-"$LFS find"}
33 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
35 MCREATE=${MCREATE:-mcreate}
36 OPENFILE=${OPENFILE:-openfile}
37 OPENUNLINK=${OPENUNLINK:-openunlink}
38 export MULTIOP=${MULTIOP:-multiop}
39 READS=${READS:-"reads"}
40 MUNLINK=${MUNLINK:-munlink}
41 SOCKETSERVER=${SOCKETSERVER:-socketserver}
42 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
43 MEMHOG=${MEMHOG:-memhog}
44 DIRECTIO=${DIRECTIO:-directio}
45 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
46 UMOUNT=${UMOUNT:-"umount -d"}
48 CHECK_GRANT=${CHECK_GRANT:-"yes"}
49 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
51 export NAME=${NAME:-local}
58 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
59 . $LUSTRE/tests/test-framework.sh
61 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
64 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24v 27m 36f 36g 36h 51b 60c 63 64b 68 71 73 77f 78 101a 103 115 120g 124b"
70 pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
71 cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
80 check_kernel_version() {
82 GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84 patchless|patchless_client) return 0;;
85 *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87 log "test needs at least kernel version $WANT_VER, running $GOT_VER"
91 if [ "$ONLY" == "cleanup" ]; then
96 check_and_setup_lustre
101 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
102 awk '{gsub(/_UUID/,""); print $1}' | head -1)
103 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
104 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
105 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
106 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
107 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
108 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
110 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
111 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
112 rm -rf $DIR/[Rdfs][0-9]*
114 # $RUNAS_ID may get set incorrectly somewhere else
115 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
117 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
121 if [ "${ONLY}" = "MOUNT" ] ; then
122 echo "Lustre is up, please go on"
126 echo "preparing for tests involving mounts"
127 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
129 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
130 echo # add a newline after mke2fs.
134 OLDDEBUG="`lctl get_param -n debug 2> /dev/null`"
135 lctl set_param debug=-1 2> /dev/null || true
138 $CHECKSTAT -t file $DIR/$tfile || error
140 $CHECKSTAT -a $DIR/$tfile || error
142 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
145 chmod 0755 $DIR || error
146 $CHECKSTAT -p 0755 $DIR || error
148 run_test 0b "chmod 0755 $DIR ============================="
151 $LCTL get_param mdc.*.import | grep "state: FULL" || error "import not FULL"
152 $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" || error "bad target"
154 run_test 0c "check import proc ============================="
159 mkdir $DIR/d1/d2 && error "we expect EEXIST, but not returned"
160 $CHECKSTAT -t dir $DIR/d1/d2 || error
162 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
167 $CHECKSTAT -a $DIR/d1 || error
169 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
174 $CHECKSTAT -t file $DIR/d2/f || error
176 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
180 $CHECKSTAT -a $DIR/d2 || error
182 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
186 $CHECKSTAT -t dir $DIR/d3 || error
188 run_test 3a "mkdir .../d3 ======================================"
191 if [ ! -d $DIR/d3 ]; then
195 $CHECKSTAT -t file $DIR/d3/f || error
197 run_test 3b "touch .../d3/f ===================================="
201 $CHECKSTAT -a $DIR/d3 || error
203 run_test 3c "rm -r .../d3 ======================================"
207 $CHECKSTAT -t dir $DIR/d4 || error
209 run_test 4a "mkdir .../d4 ======================================"
212 if [ ! -d $DIR/d4 ]; then
216 $CHECKSTAT -t dir $DIR/d4/d2 || error
218 run_test 4b "mkdir .../d4/d2 ==================================="
223 chmod 0707 $DIR/d5/d2
224 $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
226 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
230 chmod 0666 $DIR/f6a || error
231 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
233 run_test 6a "touch .../f6a; chmod .../f6a ======================"
236 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
237 if [ ! -f $DIR/f6a ]; then
241 $RUNAS chmod 0444 $DIR/f6a && error
242 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
244 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
247 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
249 chown $RUNAS_ID $DIR/f6c || error
250 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
252 run_test 6c "touch .../f6c; chown .../f6c ======================"
255 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
256 if [ ! -f $DIR/f6c ]; then
258 chown $RUNAS_ID $DIR/f6c
260 $RUNAS chown $UID $DIR/f6c && error
261 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
263 run_test 6d "$RUNAS chown .../f6c (should return error) =="
266 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
268 chgrp $RUNAS_ID $DIR/f6e || error
269 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
271 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
274 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
275 if [ ! -f $DIR/f6e ]; then
277 chgrp $RUNAS_ID $DIR/f6e
279 $RUNAS chgrp $UID $DIR/f6e && error
280 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
282 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
285 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
286 mkdir $DIR/d6g || error
287 chmod 777 $DIR/d6g || error
288 $RUNAS mkdir $DIR/d6g/d || error
289 chmod g+s $DIR/d6g/d || error
290 mkdir $DIR/d6g/d/subdir
291 $CHECKSTAT -g \#$RUNAS_GID $DIR/d6g/d/subdir || error
293 run_test 6g "Is new dir in sgid dir inheriting group?"
295 test_6h() { # bug 7331
296 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
297 touch $DIR/f6h || error "touch failed"
298 chown $RUNAS_ID:$RUNAS_GID $DIR/f6h || error "initial chown failed"
299 $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
300 $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/f6h || error
302 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
308 $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
310 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
313 if [ ! -d $DIR/d7 ]; then
317 echo -n foo > $DIR/d7/f2
318 [ "`cat $DIR/d7/f2`" = "foo" ] || error
319 $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
321 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
327 $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
329 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
335 $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
337 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
343 $CHECKSTAT -t file $DIR/d10/d2/f || error
345 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
350 chmod 0666 $DIR/d11/d2
351 chmod 0705 $DIR/d11/d2
352 $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
354 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
359 chmod 0666 $DIR/d12/f
360 chmod 0654 $DIR/d12/f
361 $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
363 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
367 dd if=/dev/zero of=$DIR/d13/f count=10
369 $CHECKSTAT -t file -s 0 $DIR/d13/f || error
371 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
377 $CHECKSTAT -a $DIR/d14/f || error
379 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
384 mv $DIR/d15/f $DIR/d15/f2
385 $CHECKSTAT -t file $DIR/d15/f2 || error
387 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
393 $CHECKSTAT -a $DIR/d16/f || error
395 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
400 ln -s $DIR/d17/f $DIR/d17/l-exist
402 $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
403 $CHECKSTAT -f -t f $DIR/d17/l-exist || error
404 rm -f $DIR/d17/l-exist
405 $CHECKSTAT -a $DIR/d17/l-exist || error
407 run_test 17a "symlinks: create, remove (real) =================="
411 ln -s no-such-file $DIR/d17/l-dangle
413 $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
414 $CHECKSTAT -fa $DIR/d17/l-dangle || error
415 rm -f $DIR/d17/l-dangle
416 $CHECKSTAT -a $DIR/d17/l-dangle || error
418 run_test 17b "symlinks: create, remove (dangling) =============="
420 test_17c() { # bug 3440 - don't save failed open RPC for replay
422 ln -s foo $DIR/d17/f17c
423 cat $DIR/d17/f17c && error "opened non-existent symlink" || true
425 run_test 17c "symlinks: open dangling (should return error) ===="
429 ln -s foo $DIR/d17/f17d
430 touch $DIR/d17/f17d || error "creating to new symlink"
432 run_test 17d "symlinks: create dangling ========================"
436 local foo=$DIR/$tdir/$tfile
437 ln -s $foo $foo || error "create symlink failed"
438 ls -l $foo || error "ls -l failed"
439 ls $foo && error "ls not failed" || true
441 run_test 17e "symlinks: create recursive symlink (should return error) ===="
445 ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
446 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
447 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
448 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
449 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
450 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
453 run_test 17f "symlinks: long and very long symlink name ========================"
457 LONGSYMLINK="$(dd if=/dev/zero bs=4095 count=1 | tr '\0' 'x')"
458 ln -s $LONGSYMLINK $DIR/$tdir/$tfile
461 run_test 17g "symlinks: really long symlink name ==============================="
463 test_17h() { #bug 17378
464 remote_mds_nodsh && skip "remote MDS with nodsh" && return
466 $SETSTRIPE -c -1 $DIR/$tdir
467 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
468 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000141
469 touch $DIR/$tdir/$tfile || true
471 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
473 test_17i() { #bug 20018
474 remote_mds_nodsh && skip "remote MDS with nodsh" && return
476 local foo=$DIR/$tdir/$tfile
477 ln -s $foo $foo || error "create symlink failed"
478 #define OBD_FAIL_MDS_READLINK_EPROTO 0x143
479 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000143
480 ls -l $foo && error "error not detected"
483 run_test 17i "don't panic on short symlink"
485 test_17k() { #bug 22301
486 rsync --help | grep -q xattr ||
487 skip_env "$(rsync --version| head -1) does not support xattrs"
488 mkdir -p $DIR/{$tdir,$tdir.new}
489 touch $DIR/$tdir/$tfile
490 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
491 rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
492 error "rsync failed with xattrs enabled"
494 run_test 17k "symlinks: rsync with xattrs enabled ========================="
498 local short_sym="0123456789"
499 local WDIR=$DIR/${tdir}m
506 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
507 [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
508 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
510 [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
511 skip "only for ldiskfs MDT" && return 0
515 # create a long symlink file
516 for ((i = 0; i < 4; ++i)); do
517 long_sym=${long_sym}${long_sym}
520 echo "create 512 short and long symlink files under $WDIR"
521 for ((i = 0; i < 256; ++i)); do
522 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
523 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
531 echo "recreate the 512 symlink files with a shorter string"
532 for ((i = 0; i < 512; ++i)); do
533 # rewrite the symlink file with a shorter string
534 ln -sf ${long_sym} $WDIR/long-$i
535 ln -sf ${short_sym} $WDIR/short-$i
538 mds_index=$($LFS getstripe -M $WDIR)
539 mds_index=$((mds_index+1))
540 devname=$(mdsdevname $mds_index)
541 cmd="$E2FSCK -fnvd $devname"
543 echo "stop and checking mds${mds_index}: $cmd"
544 # e2fsck should not return error
545 stop mds${mds_index} -f
546 do_facet mds${mds_index} $cmd || rc=$?
548 start mds${mds_index} $devname $MDS_MOUNT_OPTS
549 df $MOUNT > /dev/null 2>&1
550 [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
551 "short/long symlink MDT: rc=$rc"
554 run_test 17m "run e2fsck against MDT which contains short/long symlink"
560 run_test 18 "touch .../f ; ls ... =============================="
566 $CHECKSTAT -a $DIR/f19 || error
568 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
571 ls -l $DIR/f19 && error || true
573 run_test 19b "ls -l .../f19 (should return error) =============="
576 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
577 $RUNAS touch $DIR/f19 && error || true
579 run_test 19c "$RUNAS touch .../f19 (should return error) =="
582 cat $DIR/f19 && error || true
584 run_test 19d "cat .../f19 (should return error) =============="
596 $CHECKSTAT -a $DIR/f || error
598 run_test 20 "touch .../f ; ls -l ... ==========================="
602 [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
603 ln -s dangle $DIR/d21/link
604 echo foo >> $DIR/d21/link
606 $CHECKSTAT -t link $DIR/d21/link || error
607 $CHECKSTAT -f -t file $DIR/d21/link || error
609 run_test 21 "write to dangling link ============================"
614 chown $RUNAS_ID:$RUNAS_GID $WDIR
615 (cd $WDIR || error "cd $WDIR failed";
616 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
618 ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
619 $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
620 $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
622 run_test 22 "unpack tar archive as non-root user ==============="
627 local file=$DIR/$tdir/$tfile
629 openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
630 openfile -f O_CREAT:O_EXCL $file &&
631 error "$file recreate succeeded" || true
633 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
635 test_23b() { # bug 18988
637 local file=$DIR/$tdir/$tfile
640 echo foo > $file || error "write filed"
641 echo bar >> $file || error "append filed"
642 $CHECKSTAT -s 8 $file || error "wrong size"
645 run_test 23b "O_APPEND check =========================="
648 echo '== rename sanity =============================================='
649 echo '-- same directory rename'
652 mv $DIR/R1/f $DIR/R1/g
653 $CHECKSTAT -t file $DIR/R1/g || error
655 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
660 mv $DIR/R2/f $DIR/R2/g
661 $CHECKSTAT -a $DIR/R2/f || error
662 $CHECKSTAT -t file $DIR/R2/g || error
664 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
669 mv $DIR/R3/f $DIR/R3/g
670 $CHECKSTAT -a $DIR/R3/f || error
671 $CHECKSTAT -t dir $DIR/R3/g || error
673 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
678 mrename $DIR/R4/f $DIR/R4/g
679 $CHECKSTAT -a $DIR/R4/f || error
680 $CHECKSTAT -t dir $DIR/R4/g || error
682 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
685 echo '-- cross directory renames --'
688 mv $DIR/R5a/f $DIR/R5b/g
689 $CHECKSTAT -a $DIR/R5a/f || error
690 $CHECKSTAT -t file $DIR/R5b/g || error
692 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
696 touch $DIR/R6a/f $DIR/R6b/g
697 mv $DIR/R6a/f $DIR/R6b/g
698 $CHECKSTAT -a $DIR/R6a/f || error
699 $CHECKSTAT -t file $DIR/R6b/g || error
701 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
706 mv $DIR/R7a/d $DIR/R7b/e
707 $CHECKSTAT -a $DIR/R7a/d || error
708 $CHECKSTAT -t dir $DIR/R7b/e || error
710 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
714 mkdir $DIR/R8a/d $DIR/R8b/e
715 mrename $DIR/R8a/d $DIR/R8b/e
716 $CHECKSTAT -a $DIR/R8a/d || error
717 $CHECKSTAT -t dir $DIR/R8b/e || error
719 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
722 echo "-- rename error cases"
726 mrename $DIR/R9/f $DIR/R9/a
727 $CHECKSTAT -t file $DIR/R9/f || error
728 $CHECKSTAT -t dir $DIR/R9/a || error
729 $CHECKSTAT -a $DIR/R9/a/f || error
731 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
735 mrename $DIR/R10/f $DIR/R10/g
736 $CHECKSTAT -t dir $DIR/R10 || error
737 $CHECKSTAT -a $DIR/R10/f || error
738 $CHECKSTAT -a $DIR/R10/g || error
740 run_test 24j "source does not exist ============================"
743 mkdir $DIR/R11a $DIR/R11a/d
745 mv $DIR/R11a/f $DIR/R11a/d
746 $CHECKSTAT -a $DIR/R11a/f || error
747 $CHECKSTAT -t file $DIR/R11a/d/f || error
749 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
751 # bug 2429 - rename foo foo foo creates invalid file
754 $MULTIOP $f OcNs || error
756 run_test 24l "Renaming a file to itself ========================"
760 $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
761 # on ext3 this does not remove either the source or target files
762 # though the "expected" operation would be to remove the source
763 $CHECKSTAT -t file ${f} || error "${f} missing"
764 $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
766 run_test 24m "Renaming a file to a hard link to itself ========="
770 # this stats the old file after it was renamed, so it should fail
774 $CHECKSTAT ${f}.rename
777 run_test 24n "Statting the old file after renaming (Posix rename 2)"
780 check_kernel_version 37 || return 0
782 rename_many -s random -v -n 10 $DIR/d24o
784 run_test 24o "rename of files during htree split ==============="
788 DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
789 mrename $DIR/R12a $DIR/R12b
790 $CHECKSTAT -a $DIR/R12a || error
791 $CHECKSTAT -t dir $DIR/R12b || error
792 DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
793 [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
795 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
799 DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
800 multiop_bg_pause $DIR/R13b D_c || return 1
803 mrename $DIR/R13a $DIR/R13b
804 $CHECKSTAT -a $DIR/R13a || error
805 $CHECKSTAT -t dir $DIR/R13b || error
806 DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
807 [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
809 wait $MULTIPID || error "multiop close failed"
811 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
813 test_24r() { #bug 3789
814 mkdir $DIR/R14a $DIR/R14a/b
815 mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
816 $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
817 $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
819 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
822 mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
823 mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
824 $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
825 $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
827 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
829 mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
830 mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
831 $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
832 $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
834 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
836 test_24u() { # bug12192
837 $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
838 $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
840 run_test 24u "create stripe file"
848 local FREE_INODES=`lfs df -i|grep "filesystem summary" | awk '{print $5}'`
849 [ $FREE_INODES -lt $NRFILES ] && \
850 skip "not enough free inodes $FREE_INODES required $NRFILES" && \
854 createmany -m $DIR/d24v/$tfile $NRFILES
857 lctl set_param mdc.*.stats clear
859 ls $DIR/d24v >/dev/null || error "error in listing large dir"
862 # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
863 # 8 bytes for name(filename is mostly 5 in this test) +
864 # 8 bytes for luda_type
865 # take into account of overhead in lu_dirpage header and end mark in
866 # each page, plus one in RPC_NUM calculation.
868 RPC_SIZE=$(($(lctl get_param -n mdc.*.max_pages_per_rpc)*$(page_size)))
869 RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
870 mds_readpage=`lctl get_param mdc.*.stats | \
871 awk '/^mds_readpage/ {print $2}'`
872 [ $mds_readpage -gt $RPC_NUM ] && \
873 error "large readdir doesn't take effect"
877 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
879 test_24w() { # bug21506
881 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
882 dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
883 dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
884 SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
885 [ "$SZ1" = "$SZ2" ] || \
886 error "Error reading at the end of the file $tfile"
888 run_test 24w "Reading a file larger than 4Gb"
891 echo '== symlink sanity ============================================='
895 touch $DIR/s25/foo || error
897 run_test 25a "create file in symlinked directory ==============="
900 [ ! -d $DIR/d25 ] && test_25a
901 $CHECKSTAT -t file $DIR/s25/foo || error
903 run_test 25b "lookup file in symlinked directory ==============="
908 ln -s d26/d26-2 $DIR/s26
909 touch $DIR/s26/foo || error
911 run_test 26a "multiple component symlink ======================="
914 mkdir -p $DIR/d26b/d26-2
915 ln -s d26b/d26-2/foo $DIR/s26-2
916 touch $DIR/s26-2 || error
918 run_test 26b "multiple component symlink at end of lookup ======"
923 ln -s d26.2 $DIR/s26.2-1
924 ln -s s26.2-1 $DIR/s26.2-2
925 ln -s s26.2-2 $DIR/s26.2-3
926 chmod 0666 $DIR/s26.2-3/foo
928 run_test 26c "chain of symlinks ================================"
930 # recursive symlinks (bug 439)
932 ln -s d26-3/foo $DIR/d26-3
934 run_test 26d "create multiple component recursive symlink ======"
937 [ ! -h $DIR/d26-3 ] && test_26d
940 run_test 26e "unlink multiple component recursive symlink ======"
942 # recursive symlinks (bug 7022)
945 mkdir $DIR/$tdir/$tfile || error "mkdir $DIR/$tdir/$tfile failed"
946 cd $DIR/$tdir/$tfile || error "cd $DIR/$tdir/$tfile failed"
947 mkdir -p lndir/bar1 || error "mkdir lndir/bar1 failed"
948 mkdir $tfile || error "mkdir $tfile failed"
949 cd $tfile || error "cd $tfile failed"
950 ln -s .. dotdot || error "ln dotdot failed"
951 ln -s dotdot/lndir lndir || error "ln lndir failed"
952 cd $DIR/$tdir || error "cd $DIR/$tdir failed"
953 output=`ls $tfile/$tfile/lndir/bar1`
954 [ "$output" = bar1 ] && error "unexpected output"
955 rm -r $tfile || error "rm $tfile failed"
956 $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
958 run_test 26f "rm -r of a directory which has recursive symlink ="
961 echo '== stripe sanity =============================================='
962 mkdir -p $DIR/d27 || error "mkdir failed"
964 $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
965 $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
967 log "== test_27a: write to one stripe file ========================="
968 cp /etc/hosts $DIR/d27/f0 || error
970 run_test 27a "one stripe file =================================="
973 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
975 $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
976 $GETSTRIPE -c $DIR/d27/f01
977 [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
978 error "two-stripe file doesn't have two stripes"
980 run_test 27b "create two stripe file"
983 [ -f $DIR/d27/f01 ] || skip "test_27b not run" && return
985 dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
987 run_test 27c "write to two stripe file"
991 $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
992 $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
993 dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
995 run_test 27d "create file with default settings ================"
999 $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1000 $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1001 $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1003 run_test 27e "setstripe existing file (should return error) ======"
1007 $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1008 dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
1009 $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1011 run_test 27f "setstripe with bad stripe size (should return error)"
1015 $MCREATE $DIR/d27/fnone || error "mcreate failed"
1016 $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1017 error "$DIR/d27/fnone has object"
1019 run_test 27g "$GETSTRIPE with no objects"
1022 touch $DIR/d27/fsome || error "touch failed"
1023 [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1025 run_test 27i "$GETSTRIPE with some objects"
1029 $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1031 run_test 27j "setstripe with bad stripe offset (should return error)"
1033 test_27k() { # bug 2844
1036 LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1037 [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
1038 $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1039 BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1040 [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1041 dd if=/dev/zero of=$FILE bs=4k count=1
1042 BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1043 [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1045 run_test 27k "limit i_blksize for broken user apps ============="
1049 mcreate $DIR/f27l || error "creating file"
1050 $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1051 error "setstripe should have failed" || true
1053 run_test 27l "check setstripe permissions (should return error)"
1056 [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1057 if [ $ORIGFREE -gt $MAXFREE ]; then
1058 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1062 $SETSTRIPE -i 0 -c 1 $DIR/d27/f27m_1
1063 dd if=/dev/zero of=$DIR/d27/f27m_1 bs=1024 count=$MAXFREE &&
1064 error "dd should fill OST0"
1066 while $SETSTRIPE -i 0 -c 1 $DIR/d27/f27m_$i; do
1068 [ $i -gt 256 ] && break
1071 touch $DIR/d27/f27m_$i
1072 [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
1073 error "OST0 was full but new created file still use it"
1075 touch $DIR/d27/f27m_$i
1076 [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
1077 error "OST0 was full but new created file still use it"
1081 run_test 27m "create file while OST0 was full =================="
1084 local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1088 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1089 # if the OST isn't full anymore.
1091 local OSTIDX=${1:-""}
1093 local list=$(comma_list $(osts_nodes))
1094 [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1096 do_nodes $list lctl set_param fail_loc=0
1097 sync # initiate all OST_DESTROYs from MDS to OST
1101 exhaust_precreations() {
1104 local FAILIDX=${3:-$OSTIDX}
1107 local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1108 echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1110 local OST=$(ostname_from_index $OSTIDX)
1111 local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1112 sed -e 's/_UUID$//;s/^.*-//')
1115 local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1116 local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1117 osc.$mdtosc_proc1.prealloc_last_id)
1118 local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1119 osc.$mdtosc_proc1.prealloc_next_id)
1121 local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1122 do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1124 mkdir -p $DIR/$tdir/${OST}
1125 $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1126 #define OBD_FAIL_OST_ENOSPC 0x215
1127 do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1128 do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1129 echo "Creating to objid $last_id on ost $OST..."
1130 createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1131 do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1132 do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1136 exhaust_all_precreations() {
1138 for (( i=0; i < OSTCOUNT; i++ )) ; do
1139 exhaust_precreations $i $1 -1
1144 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1145 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1146 remote_ost_nodsh && skip "remote OST with nodsh" && return
1149 rm -f $DIR/$tdir/$tfile
1150 exhaust_precreations 0 0x80000215
1151 $SETSTRIPE -c -1 $DIR/$tdir
1152 touch $DIR/$tdir/$tfile || error
1153 $GETSTRIPE $DIR/$tdir/$tfile
1156 run_test 27n "create file with some full OSTs =================="
1159 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1160 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1161 remote_ost_nodsh && skip "remote OST with nodsh" && return
1164 rm -f $DIR/$tdir/$tfile
1165 exhaust_all_precreations 0x215
1167 touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1172 run_test 27o "create file with all full OSTs (should error) ===="
1175 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1176 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1177 remote_ost_nodsh && skip "remote OST with nodsh" && return
1180 rm -f $DIR/$tdir/$tfile
1183 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1184 $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1185 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1187 exhaust_precreations 0 0x80000215
1188 echo foo >> $DIR/$tdir/$tfile || error "append failed"
1189 $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1190 $GETSTRIPE $DIR/$tdir/$tfile
1194 run_test 27p "append to a truncated file with some full OSTs ==="
1197 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1198 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1199 remote_ost_nodsh && skip "remote OST with nodsh" && return
1202 rm -f $DIR/$tdir/$tfile
1205 $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1206 $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1207 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1209 exhaust_all_precreations 0x215
1211 echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1212 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1216 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1219 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1220 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1221 remote_ost_nodsh && skip "remote OST with nodsh" && return
1224 rm -f $DIR/$tdir/$tfile
1225 exhaust_precreations 0 0x80000215
1227 $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1231 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1233 test_27s() { # bug 10725
1235 local stripe_size=$((4096 * 1024 * 1024)) # 2^32
1236 local stripe_count=0
1237 [ $OSTCOUNT -eq 1 ] || stripe_count=2
1238 $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1239 error "stripe width >= 2^32 succeeded" || true
1242 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1244 test_27t() { # bug 10864
1249 $WLFS getstripe $tfile
1252 run_test 27t "check that utils parse path correctly"
1254 test_27u() { # bug 4900
1255 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1256 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1258 #define OBD_FAIL_MDS_OSC_PRECREATE 0x139
1259 do_facet $SINGLEMDS lctl set_param fail_loc=0x139
1261 createmany -o $DIR/$tdir/t- 1000
1262 do_facet $SINGLEMDS lctl set_param fail_loc=0
1264 TLOG=$DIR/$tfile.getstripe
1265 $GETSTRIPE $DIR/$tdir > $TLOG
1266 OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1267 unlinkmany $DIR/$tdir/t- 1000
1268 [ $OBJS -gt 0 ] && \
1269 error "$OBJS objects created on OST-0. See $TLOG" || pass
1271 run_test 27u "skip object creation on OSC w/o objects =========="
1273 test_27v() { # bug 4900
1274 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1275 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1276 remote_ost_nodsh && skip "remote OST with nodsh" && return
1278 exhaust_all_precreations 0x215
1282 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe / file
1284 touch $DIR/$tdir/$tfile
1285 #define OBD_FAIL_TGT_DELAY_PRECREATE 0x705
1287 for (( i=1; i < OSTCOUNT; i++ )); do
1288 do_facet ost$i lctl set_param fail_loc=0x705
1290 local START=`date +%s`
1291 createmany -o $DIR/$tdir/$tfile 32
1293 local FINISH=`date +%s`
1294 local TIMEOUT=`lctl get_param -n timeout`
1295 local PROCESS=$((FINISH - START))
1296 [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1297 error "$FINISH - $START >= $TIMEOUT / 2"
1298 sleep $((TIMEOUT / 2 - PROCESS))
1301 run_test 27v "skip object creation on slow OST ================="
1303 test_27w() { # bug 10997
1304 mkdir -p $DIR/$tdir || error "mkdir failed"
1305 $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1306 [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1307 error "stripe size $size != 65536" || true
1308 [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1309 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1311 run_test 27w "check $SETSTRIPE -S option"
1314 [ "$OSTCOUNT" -lt "2" ] &&
1315 skip_env "skipping multiple stripe count/offset test" && return
1317 mkdir -p $DIR/$tdir || error "mkdir failed"
1318 for i in $(seq 1 $OSTCOUNT); do
1320 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1321 error "setstripe -c $i -i $offset failed"
1322 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1323 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1324 [ $count -ne $i ] && error "stripe count $count != $i" || true
1325 [ $index -ne $offset ] &&
1326 error "stripe offset $index != $offset" || true
1329 run_test 27wa "check $SETSTRIPE -c -i options"
1332 remote_ost_nodsh && skip "remote OST with nodsh" && return
1333 [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1334 OFFSET=$(($OSTCOUNT - 1))
1336 local OST=$(ostname_from_index $OSTIDX)
1339 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe per file
1340 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1342 createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1343 for i in `seq 0 $OFFSET`; do
1344 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1345 error "OST0 was degraded but new created file still use it"
1347 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1349 run_test 27x "create files while OST0 is degraded"
1352 [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1353 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1354 remote_ost_nodsh && skip "remote OST with nodsh" && return
1356 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1357 local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1358 osc.$mdtosc.prealloc_last_id)
1359 local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1360 osc.$mdtosc.prealloc_next_id)
1361 local fcount=$((last_id - next_id))
1362 [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1363 [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1365 MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
1366 OFFSET=$(($OSTCOUNT-1))
1368 for OSC in $MDS_OSCS; do
1369 if [ $OST == -1 ]; then {
1370 OST=`osc_to_ost $OSC`
1372 echo $OSC "is Deactivate:"
1373 do_facet $SINGLEMDS lctl --device %$OSC deactivate
1377 OSTIDX=$(index_from_ostuuid $OST)
1379 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe / file
1381 do_facet ost$((OSTIDX+1)) lctl set_param -n obdfilter.$OST.degraded 1
1383 createmany -o $DIR/$tdir/$tfile $fcount
1384 do_facet ost$((OSTIDX+1)) lctl set_param -n obdfilter.$OST.degraded 0
1386 for i in `seq 0 $OFFSET`; do
1387 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "$OSTIDX"` ] || \
1388 error "files created on deactivated OSTs instead of degraded OST"
1390 for OSC in $MDS_OSCS; do
1391 [ `osc_to_ost $OSC` != $OST ] && {
1392 echo $OSC "is activate"
1393 do_facet $SINGLEMDS lctl --device %$OSC activate
1397 run_test 27y "create files while OST0 is degraded and the rest inactive"
1403 lmm_count=$($GETSTRIPE -c $1)
1404 lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1405 lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1407 local old_ifs="$IFS"
1409 fid=($($LFS path2fid $1))
1412 log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1413 log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1415 # compare lmm_seq and lu_fid->f_seq
1416 [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1417 # compare lmm_object_id and lu_fid->oid
1418 [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1420 # check the trusted.fid attribute of the OST objects of the file
1421 local have_obdidx=false
1423 $GETSTRIPE $1 | while read obdidx oid hex seq; do
1424 # skip lines up to and including "obdidx"
1425 [ -z "$obdidx" ] && break
1426 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1427 $have_obdidx || continue
1429 local ost=$((obdidx + 1))
1430 local dev=$(ostdevname $ost)
1432 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1433 echo "Currently only works with ldiskfs-based OSTs"
1437 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1439 #don't unmount/remount the OSTs if we don't need to do that
1440 #local dir=$(facet_mntpt ost$ost)
1442 #do_facet ost$dev mount -t $FSTYPE $dev $dir $OST_MOUNT_OPTS ||
1443 # { error "mounting $dev as $FSTYPE failed"; return 3; }
1444 #local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid)
1445 #local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1447 local obj_file="O/$seq/d$((oid %32))/$oid"
1448 local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1449 $dev 2>/dev/null" | grep "parent=")
1451 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1453 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1455 #do_facet ost$ost umount -d $dir
1456 #start ost$ost $dev $OST_MOUNT_OPTS
1458 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1459 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1460 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1461 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1462 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1463 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1465 # compare lmm_seq and filter_fid->ff_parent.f_seq
1466 [ $ff_pseq = $lmm_seq ] ||
1467 error "FF parent SEQ $ff_pseq != $lmm_seq"
1468 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1469 [ $ff_poid = $lmm_oid ] ||
1470 error "FF parent OID $ff_poid != $lmm_oid"
1471 [ $ff_pstripe = $stripe_nr ] ||
1472 error "FF stripe $ff_pstripe != $stripe_nr"
1474 stripe_nr=$((stripe_nr + 1))
1479 remote_ost_nodsh && skip "remote OST with nodsh" && return
1482 $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1483 { error "setstripe -c -1 failed"; return 1; }
1484 # We need to send a write to every object to get parent FID info set.
1485 # This _should_ also work for setattr, but does not currently.
1486 # touch $DIR/$tdir/$tfile-1 ||
1487 dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1488 { error "dd $tfile-1 failed"; return 2; }
1489 $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1490 { error "setstripe -c -1 failed"; return 3; }
1491 dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1492 { error "dd $tfile-2 failed"; return 4; }
1494 # make sure write RPCs have been sent to OSTs
1497 check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1498 check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1500 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1502 test_27A() { # b=19102
1503 local restore_size=$($GETSTRIPE -S $MOUNT)
1504 local restore_count=$($GETSTRIPE -c $MOUNT)
1505 local restore_offset=$($GETSTRIPE -i $MOUNT)
1506 $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1507 local default_size=$($GETSTRIPE -S $MOUNT)
1508 local default_count=$($GETSTRIPE -c $MOUNT)
1509 local default_offset=$($GETSTRIPE -i $MOUNT)
1510 local dsize=$((1024 * 1024))
1511 [ $default_size -eq $dsize ] ||
1512 error "stripe size $default_size != $dsize"
1513 [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1514 [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1515 $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1517 run_test 27A "check filesystem-wide default LOV EA values"
1519 # createtest also checks that device nodes are created and
1520 # then visible correctly (#2091)
1521 test_28() { # bug 2091
1523 $CREATETEST $DIR/d28/ct || error
1525 run_test 28 "create/mknod/mkdir with bad file types ============"
1528 cancel_lru_locks mdc
1534 declare -i LOCKCOUNTORIG=0
1535 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1536 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1538 [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1540 declare -i LOCKUNUSEDCOUNTORIG=0
1541 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1542 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1549 declare -i LOCKCOUNTCURRENT=0
1550 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1551 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1554 declare -i LOCKUNUSEDCOUNTCURRENT=0
1555 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1556 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1559 if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1560 lctl set_param -n ldlm.dump_namespaces ""
1561 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1562 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1563 log "dumped log to $TMP/test_29.dk (bug 5793)"
1566 if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1567 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1568 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1569 log "dumped log to $TMP/test_29.dk (bug 5793)"
1573 run_test 29 "IT_GETATTR regression ============================"
1575 test_30a() { # was test_30
1576 cp `which ls` $DIR || cp /bin/ls $DIR
1580 run_test 30a "execute binary from Lustre (execve) =============="
1583 cp `which ls` $DIR || cp /bin/ls $DIR
1585 $RUNAS $DIR/ls / || error
1588 run_test 30b "execute binary from Lustre as non-root ==========="
1590 test_30c() { # b=22376
1591 cp `which ls` $DIR || cp /bin/ls $DIR
1593 cancel_lru_locks mdc
1594 cancel_lru_locks osc
1595 $RUNAS $DIR/ls / || error
1598 run_test 30c "execute binary from Lustre without read perms ===="
1601 $OPENUNLINK $DIR/f31 $DIR/f31 || error
1602 $CHECKSTAT -a $DIR/f31 || error
1604 run_test 31a "open-unlink file =================================="
1607 touch $DIR/f31 || error
1608 ln $DIR/f31 $DIR/f31b || error
1609 $MULTIOP $DIR/f31b Ouc || error
1610 $CHECKSTAT -t file $DIR/f31 || error
1612 run_test 31b "unlink file with multiple links while open ======="
1615 touch $DIR/f31 || error
1616 ln $DIR/f31 $DIR/f31c || error
1617 multiop_bg_pause $DIR/f31 O_uc || return 1
1619 $MULTIOP $DIR/f31c Ouc
1620 kill -USR1 $MULTIPID
1623 run_test 31c "open-unlink file with multiple links ============="
1626 opendirunlink $DIR/d31d $DIR/d31d || error
1627 $CHECKSTAT -a $DIR/d31d || error
1629 run_test 31d "remove of open directory ========================="
1631 test_31e() { # bug 2904
1632 check_kernel_version 34 || return 0
1633 openfilleddirunlink $DIR/d31e || error
1635 run_test 31e "remove of open non-empty directory ==============="
1637 test_31f() { # bug 4554
1640 $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1641 cp /etc/hosts $DIR/d31f
1643 $GETSTRIPE $DIR/d31f/hosts
1644 multiop_bg_pause $DIR/d31f D_c || return 1
1647 rm -rv $DIR/d31f || error "first of $DIR/d31f"
1649 $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1650 cp /etc/hosts $DIR/d31f
1652 $GETSTRIPE $DIR/d31f/hosts
1653 multiop_bg_pause $DIR/d31f D_c || return 1
1656 kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1657 wait $MULTIPID || error "first opendir $MULTIPID failed"
1661 kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1662 wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1665 run_test 31f "remove of open directory with open-unlink file ==="
1668 echo "-- cross directory link --"
1669 mkdir $DIR/d31g{a,b}
1671 ln $DIR/d31ga/f $DIR/d31gb/g
1672 $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1673 [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1674 $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1675 [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1677 run_test 31g "cross directory link==============="
1680 echo "-- cross directory link --"
1684 ln $DIR/d31h/f $DIR/d31h/dir/g
1685 $CHECKSTAT -t file $DIR/d31h/f || error "source"
1686 [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1687 $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1688 [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1690 run_test 31h "cross directory link under child==============="
1693 echo "-- cross directory link --"
1696 touch $DIR/d31i/dir/f
1697 ln $DIR/d31i/dir/f $DIR/d31i/g
1698 $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1699 [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1700 $CHECKSTAT -t file $DIR/d31i/g || error "target"
1701 [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1703 run_test 31i "cross directory link under parent==============="
1708 mkdir $DIR/d31j/dir1
1709 ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1710 link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1711 mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1712 mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1715 run_test 31j "link for directory==============="
1721 touch $DIR/d31k/exist
1722 mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1723 mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1724 mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1725 mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1726 mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1727 mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1728 mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1731 run_test 31k "link to file: the same, non-existing, dir==============="
1737 touch $DIR/d31m2/exist
1738 mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1739 mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1740 mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1741 mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1742 mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1743 mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1746 run_test 31m "link to file: the same, non-existing, dir==============="
1749 echo "== more mountpoints and symlinks ================="
1750 [ -e $DIR/d32a ] && rm -fr $DIR/d32a
1751 mkdir -p $DIR/d32a/ext2-mountpoint
1752 mount -t ext2 -o loop $EXT2_DEV $DIR/d32a/ext2-mountpoint || error
1753 $CHECKSTAT -t dir $DIR/d32a/ext2-mountpoint/.. || error
1754 $UMOUNT $DIR/d32a/ext2-mountpoint || error
1756 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1759 [ -e $DIR/d32b ] && rm -fr $DIR/d32b
1760 mkdir -p $DIR/d32b/ext2-mountpoint
1761 mount -t ext2 -o loop $EXT2_DEV $DIR/d32b/ext2-mountpoint || error
1762 ls -al $DIR/d32b/ext2-mountpoint/.. || error
1763 $UMOUNT $DIR/d32b/ext2-mountpoint || error
1765 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1768 [ -e $DIR/d32c ] && rm -fr $DIR/d32c
1769 mkdir -p $DIR/d32c/ext2-mountpoint
1770 mount -t ext2 -o loop $EXT2_DEV $DIR/d32c/ext2-mountpoint || error
1771 mkdir -p $DIR/d32c/d2/test_dir
1772 $CHECKSTAT -t dir $DIR/d32c/ext2-mountpoint/../d2/test_dir || error
1773 $UMOUNT $DIR/d32c/ext2-mountpoint || error
1775 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1778 [ -e $DIR/d32d ] && rm -fr $DIR/d32d
1779 mkdir -p $DIR/d32d/ext2-mountpoint
1780 mount -t ext2 -o loop $EXT2_DEV $DIR/d32d/ext2-mountpoint || error
1781 mkdir -p $DIR/d32d/d2/test_dir
1782 ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
1783 $UMOUNT $DIR/d32d/ext2-mountpoint || error
1785 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1788 [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1789 mkdir -p $DIR/d32e/tmp
1790 TMP_DIR=$DIR/d32e/tmp
1791 ln -s $DIR/d32e $TMP_DIR/symlink11
1792 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1793 $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1794 $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1796 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1799 [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1800 mkdir -p $DIR/d32f/tmp
1801 TMP_DIR=$DIR/d32f/tmp
1802 ln -s $DIR/d32f $TMP_DIR/symlink11
1803 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1804 ls $DIR/d32f/tmp/symlink11 || error
1805 ls $DIR/d32f/symlink01 || error
1807 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1810 TMP_DIR=$DIR/$tdir/tmp
1811 mkdir -p $TMP_DIR $DIR/${tdir}2
1812 ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1813 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1814 $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1815 $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1816 $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1817 $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1819 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1822 rm -fr $DIR/$tdir $DIR/${tdir}2
1823 TMP_DIR=$DIR/$tdir/tmp
1824 mkdir -p $TMP_DIR $DIR/${tdir}2
1825 ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1826 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1827 ls $TMP_DIR/symlink12 || error
1828 ls $DIR/$tdir/symlink02 || error
1830 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1833 [ -e $DIR/d32i ] && rm -fr $DIR/d32i
1834 mkdir -p $DIR/d32i/ext2-mountpoint
1835 mount -t ext2 -o loop $EXT2_DEV $DIR/d32i/ext2-mountpoint || error
1836 touch $DIR/d32i/test_file
1837 $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error
1838 $UMOUNT $DIR/d32i/ext2-mountpoint || error
1840 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1843 [ -e $DIR/d32j ] && rm -fr $DIR/d32j
1844 mkdir -p $DIR/d32j/ext2-mountpoint
1845 mount -t ext2 -o loop $EXT2_DEV $DIR/d32j/ext2-mountpoint || error
1846 touch $DIR/d32j/test_file
1847 cat $DIR/d32j/ext2-mountpoint/../test_file || error
1848 $UMOUNT $DIR/d32j/ext2-mountpoint || error
1850 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1854 mkdir -p $DIR/d32k/ext2-mountpoint
1855 mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint
1856 mkdir -p $DIR/d32k/d2
1857 touch $DIR/d32k/d2/test_file || error
1858 $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
1859 $UMOUNT $DIR/d32k/ext2-mountpoint || error
1861 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1865 mkdir -p $DIR/d32l/ext2-mountpoint
1866 mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
1867 mkdir -p $DIR/d32l/d2
1868 touch $DIR/d32l/d2/test_file
1869 cat $DIR/d32l/ext2-mountpoint/../d2/test_file || error
1870 $UMOUNT $DIR/d32l/ext2-mountpoint || error
1872 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1876 mkdir -p $DIR/d32m/tmp
1877 TMP_DIR=$DIR/d32m/tmp
1878 ln -s $DIR $TMP_DIR/symlink11
1879 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1880 $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1881 $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1883 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1887 mkdir -p $DIR/d32n/tmp
1888 TMP_DIR=$DIR/d32n/tmp
1889 ln -s $DIR $TMP_DIR/symlink11
1890 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1891 ls -l $DIR/d32n/tmp/symlink11 || error
1892 ls -l $DIR/d32n/symlink01 || error
1894 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1897 rm -fr $DIR/d32o $DIR/$tfile
1899 mkdir -p $DIR/d32o/tmp
1900 TMP_DIR=$DIR/d32o/tmp
1901 ln -s $DIR/$tfile $TMP_DIR/symlink12
1902 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1903 $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1904 $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1905 $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1906 $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1908 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1918 mkdir -p $DIR/d32p/tmp
1920 TMP_DIR=$DIR/d32p/tmp
1922 ln -s $DIR/$tfile $TMP_DIR/symlink12
1924 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1926 cat $DIR/d32p/tmp/symlink12 || error
1928 cat $DIR/d32p/symlink02 || error
1931 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1934 [ -e $DIR/d32q ] && rm -fr $DIR/d32q
1936 touch $DIR/d32q/under_the_mount
1937 mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
1938 ls $DIR/d32q/under_the_mount && error || true
1939 $UMOUNT $DIR/d32q || error
1941 run_test 32q "stat follows mountpoints in Lustre (should return error)"
1944 [ -e $DIR/d32r ] && rm -fr $DIR/d32r
1946 touch $DIR/d32r/under_the_mount
1947 mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
1948 ls $DIR/d32r | grep -q under_the_mount && error || true
1949 $UMOUNT $DIR/d32r || error
1951 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
1956 chmod 444 $DIR/$tfile
1957 chown $RUNAS_ID $DIR/$tfile
1959 $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
1962 run_test 33 "write file with mode 444 (should return error) ===="
1967 chown $RUNAS_ID $DIR/d33
1968 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
1969 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
1970 error "open RDWR" || true
1972 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
1977 chown $RUNAS_ID $DIR/d33
1978 $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
1980 run_test 33b "test open file with malformed flags (No panic and return error)"
1988 remote_ost_nodsh && skip "remote OST with nodsh" && return
1992 # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
1995 for ostnum in $(seq $OSTCOUNT); do
1996 # test-framework's OST numbering is one-based, while Lustre's
1998 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
1999 # Parsing llobdstat's output sucks; we could grep the /proc
2000 # path, but that's likely to not be as portable as using the
2001 # llobdstat utility. So we parse lctl output instead.
2002 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2003 obdfilter/$ostname/stats |
2004 awk '/^write_bytes/ {print $7}' )
2005 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2006 if (( ${write_bytes:-0} > 0 ))
2013 $all_zeros || return 0
2016 echo foo > $DIR/d33/bar
2020 # Total up write_bytes after writing. We'd better find non-zeros.
2021 for ostnum in $(seq $OSTCOUNT); do
2022 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2023 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2024 obdfilter/$ostname/stats |
2025 awk '/^write_bytes/ {print $7}' )
2026 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2027 if (( ${write_bytes:-0} > 0 ))
2036 for ostnum in $(seq $OSTCOUNT); do
2037 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2038 echo "Check that write_bytes is present in obdfilter/*/stats:"
2039 do_facet ost$ostnum lctl get_param -n \
2040 obdfilter/$ostname/stats
2042 error "OST not keeping write_bytes stats (b22312)"
2045 run_test 33c "test llobdstat and write_bytes"
2047 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2050 $MCREATE $DIR/f34 || error
2051 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2052 $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2053 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2054 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2056 run_test 34a "truncate file that has not been opened ==========="
2059 [ ! -f $DIR/f34 ] && test_34a
2060 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2061 $OPENFILE -f O_RDONLY $DIR/f34
2062 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2063 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2065 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2068 [ ! -f $DIR/f34 ] && test_34a
2069 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2070 $OPENFILE -f O_RDWR $DIR/f34
2071 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2072 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2074 run_test 34c "O_RDWR opening file-with-size works =============="
2077 [ ! -f $DIR/f34 ] && test_34a
2078 dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2079 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2082 run_test 34d "write to sparse file ============================="
2086 $MCREATE $DIR/f34e || error
2087 $TRUNCATE $DIR/f34e 1000 || error
2088 $CHECKSTAT -s 1000 $DIR/f34e || error
2089 $OPENFILE -f O_RDWR $DIR/f34e
2090 $CHECKSTAT -s 1000 $DIR/f34e || error
2092 run_test 34e "create objects, some with size and some without =="
2094 test_34f() { # bug 6242, 6243
2097 $MCREATE $DIR/f34f || error
2098 $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2099 dd if=$DIR/f34f of=$TMP/f34f
2100 $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2101 dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2102 cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2103 cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2104 rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2106 run_test 34f "read from a file with no objects until EOF ======="
2109 dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2110 $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2111 $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2112 cancel_lru_locks osc
2113 $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2114 error "wrong size after lock cancel"
2116 $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2117 $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2118 error "expanding truncate failed"
2119 cancel_lru_locks osc
2120 $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2121 error "wrong expanded size after lock cancel"
2123 run_test 34g "truncate long file ==============================="
2129 dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2130 $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2134 if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2135 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2139 local nsz=`stat -c %s $DIR/$tfile`
2140 [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2142 run_test 34h "ftruncate file under grouplock should not block"
2145 cp /bin/sh $DIR/f35a
2147 chown $RUNAS_ID $DIR/f35a
2148 $RUNAS $DIR/f35a && error || true
2151 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2155 utime $DIR/f36 || error
2157 run_test 36a "MDS utime check (mknod, utime) ==================="
2161 utime $DIR/f36 || error
2163 run_test 36b "OST utime check (open, utime) ===================="
2168 chown $RUNAS_ID $DIR/d36
2169 $RUNAS utime $DIR/d36/f36 || error
2171 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2174 [ ! -d $DIR/d36 ] && test_36c
2175 echo "" > $DIR/d36/f36
2176 $RUNAS utime $DIR/d36/f36 || error
2178 run_test 36d "non-root OST utime check (open, utime) ==========="
2181 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2183 touch $DIR/$tdir/$tfile
2184 $RUNAS utime $DIR/$tdir/$tfile && \
2185 error "utime worked, expected failure" || true
2187 run_test 36e "utime on non-owned file (should return error) ===="
2191 local LANG_SAVE=$LANG
2192 local LC_LANG_SAVE=$LC_LANG
2193 export LANG=C LC_LANG=C # for date language
2195 DATESTR="Dec 20 2000"
2197 lctl set_param fail_loc=$fl
2199 cp /etc/hosts $DIR/$tdir/$tfile
2200 sync & # write RPC generated with "current" inode timestamp, but delayed
2202 touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2203 LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2204 cancel_lru_locks osc
2205 LS_AFTER="`ls -l $DIR/$tdir/$tfile`" # timestamp from OST object
2207 [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2208 echo "BEFORE: $LS_BEFORE" && \
2209 echo "AFTER : $LS_AFTER" && \
2210 echo "WANT : $DATESTR" && \
2211 error "$DIR/$tdir/$tfile timestamps changed" || true
2213 export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2217 #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2218 subr_36fh "0x80000214"
2220 run_test 36f "utime on file racing with OST BRW write =========="
2223 remote_ost_nodsh && skip "remote OST with nodsh" && return
2229 fmd_max_age=$(do_facet ost1 \
2230 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2233 fmd_before=$(do_facet ost1 \
2234 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2235 touch $DIR/$tdir/$tfile
2236 sleep $((fmd_max_age + 12))
2237 fmd_after=$(do_facet ost1 \
2238 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2240 echo "fmd_before: $fmd_before"
2241 echo "fmd_after: $fmd_after"
2242 [ "$fmd_after" -gt "$fmd_before" ] && \
2243 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2244 error "fmd didn't expire after ping" || true
2246 run_test 36g "filter mod data cache expiry ====================="
2249 #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2250 subr_36fh "0x80000227"
2252 run_test 36h "utime on file racing with OST BRW write =========="
2256 echo f > $DIR/$tdir/fbugfile
2257 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2258 ls $DIR/$tdir | grep "\<fbugfile\>" && error
2259 $UMOUNT $DIR/$tdir || error
2260 rm -f $DIR/$tdir/fbugfile || error
2262 run_test 37 "ls a mounted file system to check old content ====="
2265 local file=$DIR/$tfile
2267 openfile -f O_DIRECTORY $file
2270 [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2271 [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2273 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2277 touch $DIR/${tfile}2
2278 # ls -l $DIR/$tfile $DIR/${tfile}2
2279 # ls -lu $DIR/$tfile $DIR/${tfile}2
2280 # ls -lc $DIR/$tfile $DIR/${tfile}2
2282 $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2283 if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2285 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2287 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2289 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2290 error "O_TRUNC didn't change timestamps"
2293 run_test 39 "mtime changed on create ==========================="
2297 cp -p /etc/passwd $DIR/$tdir/fopen
2298 cp -p /etc/passwd $DIR/$tdir/flink
2299 cp -p /etc/passwd $DIR/$tdir/funlink
2300 cp -p /etc/passwd $DIR/$tdir/frename
2301 ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2304 echo "aaaaaa" >> $DIR/$tdir/fopen
2305 echo "aaaaaa" >> $DIR/$tdir/flink
2306 echo "aaaaaa" >> $DIR/$tdir/funlink
2307 echo "aaaaaa" >> $DIR/$tdir/frename
2309 local open_new=`stat -c %Y $DIR/$tdir/fopen`
2310 local link_new=`stat -c %Y $DIR/$tdir/flink`
2311 local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2312 local rename_new=`stat -c %Y $DIR/$tdir/frename`
2314 cat $DIR/$tdir/fopen > /dev/null
2315 ln $DIR/$tdir/flink $DIR/$tdir/flink2
2316 rm -f $DIR/$tdir/funlink2
2317 mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2319 for (( i=0; i < 2; i++ )) ; do
2320 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2321 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2322 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2323 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2325 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2326 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2327 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2328 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2330 cancel_lru_locks osc
2331 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2334 run_test 39b "mtime change on open, link, unlink, rename ======"
2336 # this should be set to past
2337 TEST_39_MTIME=`date -d "1 year ago" +%s`
2343 local mtime0=`stat -c %Y $DIR1/$tfile`
2345 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2346 local mtime1=`stat -c %Y $DIR1/$tfile`
2347 [ "$mtime1" = $TEST_39_MTIME ] || \
2348 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2351 echo hello >> $DIR1/$tfile
2353 local mtime2=`stat -c %Y $DIR1/$tfile`
2354 [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2355 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2357 mv $DIR1/$tfile $DIR1/$tfile-1
2359 for (( i=0; i < 2; i++ )) ; do
2360 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2361 [ "$mtime2" = "$mtime3" ] || \
2362 error "mtime ($mtime2) changed (to $mtime3) on rename"
2364 cancel_lru_locks osc
2365 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2368 run_test 39c "mtime change on rename ==========================="
2374 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2376 for (( i=0; i < 2; i++ )) ; do
2377 local mtime=`stat -c %Y $DIR1/$tfile`
2378 [ $mtime = $TEST_39_MTIME ] || \
2379 error "mtime($mtime) is not set to $TEST_39_MTIME"
2381 cancel_lru_locks osc
2382 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2385 run_test 39d "create, utime, stat =============================="
2390 local mtime1=`stat -c %Y $DIR1/$tfile`
2392 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2394 for (( i=0; i < 2; i++ )) ; do
2395 local mtime2=`stat -c %Y $DIR1/$tfile`
2396 [ $mtime2 = $TEST_39_MTIME ] || \
2397 error "mtime($mtime2) is not set to $TEST_39_MTIME"
2399 cancel_lru_locks osc
2400 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2403 run_test 39e "create, stat, utime, stat ========================"
2408 mtime1=`stat -c %Y $DIR1/$tfile`
2411 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2413 for (( i=0; i < 2; i++ )) ; do
2414 local mtime2=`stat -c %Y $DIR1/$tfile`
2415 [ $mtime2 = $TEST_39_MTIME ] || \
2416 error "mtime($mtime2) is not set to $TEST_39_MTIME"
2418 cancel_lru_locks osc
2419 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2422 run_test 39f "create, stat, sleep, utime, stat ================="
2426 echo hello >> $DIR1/$tfile
2427 local mtime1=`stat -c %Y $DIR1/$tfile`
2430 chmod o+r $DIR1/$tfile
2432 for (( i=0; i < 2; i++ )) ; do
2433 local mtime2=`stat -c %Y $DIR1/$tfile`
2434 [ "$mtime1" = "$mtime2" ] || \
2435 error "lost mtime: $mtime2, should be $mtime1"
2437 cancel_lru_locks osc
2438 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2441 run_test 39g "write, chmod, stat ==============================="
2449 echo hello >> $DIR1/$tfile
2450 local mtime1=`stat -c %Y $DIR1/$tfile`
2452 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2454 if [ "$d1" != "$d2" ]; then
2455 echo "write and touch not within one second"
2457 for (( i=0; i < 2; i++ )) ; do
2458 local mtime2=`stat -c %Y $DIR1/$tfile`
2459 [ "$mtime2" = $TEST_39_MTIME ] || \
2460 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2462 cancel_lru_locks osc
2463 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2467 run_test 39h "write, utime within one second, stat ============="
2473 echo hello >> $DIR1/$tfile
2474 local mtime1=`stat -c %Y $DIR1/$tfile`
2476 mv $DIR1/$tfile $DIR1/$tfile-1
2478 for (( i=0; i < 2; i++ )) ; do
2479 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2481 [ "$mtime1" = "$mtime2" ] || \
2482 error "lost mtime: $mtime2, should be $mtime1"
2484 cancel_lru_locks osc
2485 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2488 run_test 39i "write, rename, stat =============================="
2491 start_full_debug_logging
2495 #define OBD_FAIL_OSC_DELAY_SETTIME 0x412
2496 lctl set_param fail_loc=0x80000412
2497 multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2498 error "multiop failed"
2500 local mtime1=`stat -c %Y $DIR1/$tfile`
2502 mv $DIR1/$tfile $DIR1/$tfile-1
2504 kill -USR1 $multipid
2505 wait $multipid || error "multiop close failed"
2507 for (( i=0; i < 2; i++ )) ; do
2508 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2509 [ "$mtime1" = "$mtime2" ] ||
2510 error "mtime is lost on close: $mtime2, " \
2513 cancel_lru_locks osc
2514 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2516 lctl set_param fail_loc=0
2517 stop_full_debug_logging
2519 run_test 39j "write, rename, close, stat ======================="
2525 multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2527 local mtime1=`stat -c %Y $DIR1/$tfile`
2529 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2531 kill -USR1 $multipid
2532 wait $multipid || error "multiop close failed"
2534 for (( i=0; i < 2; i++ )) ; do
2535 local mtime2=`stat -c %Y $DIR1/$tfile`
2537 [ "$mtime2" = $TEST_39_MTIME ] || \
2538 error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2540 cancel_lru_locks osc
2541 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2544 run_test 39k "write, utime, close, stat ========================"
2546 # this should be set to future
2547 TEST_39_ATIME=`date -d "1 year" +%s`
2549 is_sles11() # LU-1783
2551 if [ -r /etc/SuSE-release ]
2553 local vers=`grep VERSION /etc/SuSE-release | awk '{print $3}'`
2554 local patchlev=`grep PATCHLEVEL /etc/SuSE-release \
2556 if [ $vers -eq 11 ] && [ $patchlev -eq 1 ]
2565 is_sles11 && skip "SLES 11 SP1" && return # LU-1783
2566 remote_mds_nodsh && skip "remote MDS with nodsh" && return
2567 local atime_diff=$(do_facet $SINGLEMDS lctl get_param -n mdd.*.atime_diff)
2571 # test setting directory atime to future
2572 touch -a -d @$TEST_39_ATIME $DIR/$tdir
2573 local atime=$(stat -c %X $DIR/$tdir)
2574 [ "$atime" = $TEST_39_ATIME ] || \
2575 error "atime is not set to future: $atime, should be $TEST_39_ATIME"
2577 # test setting directory atime from future to now
2578 local d1=$(date +%s)
2580 local d2=$(date +%s)
2582 cancel_lru_locks mdc
2583 atime=$(stat -c %X $DIR/$tdir)
2584 [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2585 error "atime is not updated from future: $atime, should be $d1<atime<$d2"
2587 do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=2
2590 # test setting directory atime when now > dir atime + atime_diff
2594 cancel_lru_locks mdc
2595 atime=$(stat -c %X $DIR/$tdir)
2596 [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2597 error "atime is not updated : $atime, should be $d2"
2599 do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=60
2602 # test not setting directory atime when now < dir atime + atime_diff
2604 cancel_lru_locks mdc
2605 atime=$(stat -c %X $DIR/$tdir)
2606 [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2607 error "atime is updated to $atime, should remain $d1<atime<$d2"
2609 do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=$atime_diff
2611 run_test 39l "directory atime update ==========================="
2616 local far_past_mtime=$(date -d "May 29 1953" +%s)
2617 local far_past_atime=$(date -d "Dec 17 1903" +%s)
2619 touch -m -d @$far_past_mtime $DIR1/$tfile
2620 touch -a -d @$far_past_atime $DIR1/$tfile
2622 for (( i=0; i < 2; i++ )) ; do
2623 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
2624 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
2625 error "atime or mtime set incorrectly"
2627 cancel_lru_locks osc
2628 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2631 run_test 39m "test atime and mtime before 1970"
2634 dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
2635 $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
2636 $CHECKSTAT -t file -s 4096 $DIR/f40 || error
2638 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
2642 small_write $DIR/f41 18
2644 run_test 41 "test small file write + fstat ====================="
2646 count_ost_writes() {
2647 lctl get_param -n osc.*.stats |
2648 awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
2655 BG_DIRTY_RATIO_SAVE=10
2656 MAX_BG_DIRTY_RATIO=25
2660 # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
2661 # dirty_ratio, dirty_background_ratio
2662 if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2663 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
2664 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
2665 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
2667 # if file not here, we are a 2.4 kernel
2668 kill -CONT `pidof kupdated`
2673 # setup the trap first, so someone cannot exit the test at the
2674 # exact wrong time and mess up a machine
2675 trap start_writeback EXIT
2676 # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
2677 if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2678 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
2679 sysctl -w vm.dirty_writeback_centisecs=0
2680 sysctl -w vm.dirty_writeback_centisecs=0
2681 # save and increase /proc/sys/vm/dirty_ratio
2682 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
2683 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
2684 # save and increase /proc/sys/vm/dirty_background_ratio
2685 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
2686 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
2688 # if file not here, we are a 2.4 kernel
2689 kill -STOP `pidof kupdated`
2693 # ensure that all stripes have some grant before we test client-side cache
2695 for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
2696 dd if=/dev/zero of=$i bs=4k count=1
2701 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
2702 # file truncation, and file removal.
2705 cancel_lru_locks osc
2707 sync; sleep 1; sync # just to be safe
2708 BEFOREWRITES=`count_ost_writes`
2709 lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
2710 dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
2711 AFTERWRITES=`count_ost_writes`
2712 [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2713 error "$BEFOREWRITES < $AFTERWRITES"
2716 run_test 42a "ensure that we don't flush on close =============="
2720 cancel_lru_locks osc
2723 dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
2724 BEFOREWRITES=`count_ost_writes`
2725 $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
2726 AFTERWRITES=`count_ost_writes`
2727 if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2728 error "$BEFOREWRITES < $AFTERWRITES on unlink"
2730 BEFOREWRITES=`count_ost_writes`
2731 sync || error "sync: $?"
2732 AFTERWRITES=`count_ost_writes`
2733 if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2734 error "$BEFOREWRITES < $AFTERWRITES on sync"
2736 dmesg | grep 'error from obd_brw_async' && error 'error writing back'
2740 run_test 42b "test destroy of file with cached dirty data ======"
2742 # if these tests just want to test the effect of truncation,
2743 # they have to be very careful. consider:
2744 # - the first open gets a {0,EOF}PR lock
2745 # - the first write conflicts and gets a {0, count-1}PW
2746 # - the rest of the writes are under {count,EOF}PW
2747 # - the open for truncate tries to match a {0,EOF}PR
2748 # for the filesize and cancels the PWs.
2749 # any number of fixes (don't get {0,EOF} on open, match
2750 # composite locks, do smarter file size management) fix
2751 # this, but for now we want these tests to verify that
2752 # the cancellation with truncate intent works, so we
2753 # start the file with a full-file pw lock to match against
2754 # until the truncate.
2759 cancel_lru_locks osc
2761 # prime the file with 0,EOF PW to match
2765 # now the real test..
2766 dd if=/dev/zero of=$file bs=1024 count=100
2767 BEFOREWRITES=`count_ost_writes`
2768 $TRUNCATE $file $offset
2769 cancel_lru_locks osc
2770 AFTERWRITES=`count_ost_writes`
2776 [ $BEFOREWRITES -eq $AFTERWRITES ] && \
2777 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
2780 run_test 42c "test partial truncate of file with cached dirty data"
2784 [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2785 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
2788 run_test 42d "test complete truncate of file with cached dirty data"
2790 test_42e() { # bug22074
2791 local TDIR=$DIR/${tdir}e
2792 local pagesz=$(page_size)
2793 local pages=16 # hardcoded 16 pages, don't change it.
2794 local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
2795 local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
2800 $SETSTRIPE -c 1 $TDIR
2801 createmany -o $TDIR/f $files
2803 max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
2805 # we assume that with $OSTCOUNT files, at least one of them will
2806 # be allocated on OST0.
2807 warmup_files=$((OSTCOUNT * max_dirty_mb))
2808 createmany -o $TDIR/w $warmup_files
2810 # write a large amount of data into one file and sync, to get good
2811 # avail_grant number from OST.
2812 for ((i=0; i<$warmup_files; i++)); do
2813 idx=$($GETSTRIPE -i $TDIR/w$i)
2814 [ $idx -ne 0 ] && continue
2815 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
2818 [ $i -gt $warmup_files ] && error "OST0 is still cold"
2820 $LCTL get_param $proc_osc0/cur_dirty_bytes
2821 $LCTL get_param $proc_osc0/cur_grant_bytes
2823 # create as much dirty pages as we can while not to trigger the actual
2824 # RPCs directly. but depends on the env, VFS may trigger flush during this
2825 # period, hopefully we are good.
2826 for ((i=0; i<$warmup_files; i++)); do
2827 idx=$($GETSTRIPE -i $TDIR/w$i)
2828 [ $idx -ne 0 ] && continue
2829 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
2831 $LCTL get_param $proc_osc0/cur_dirty_bytes
2832 $LCTL get_param $proc_osc0/cur_grant_bytes
2834 # perform the real test
2835 $LCTL set_param $proc_osc0/rpc_stats 0
2836 for ((;i<$files; i++)); do
2837 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
2838 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
2841 $LCTL get_param $proc_osc0/rpc_stats
2844 local have_ppr=false
2845 $LCTL get_param $proc_osc0/rpc_stats |
2846 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
2847 # skip lines until we are at the RPC histogram data
2848 [ "$PPR" == "pages" ] && have_ppr=true && continue
2849 $have_ppr || continue
2851 # we only want the percent stat for < 16 pages
2852 [ $(echo $PPR | tr -d ':') -ge $pages ] && break
2854 percent=$((percent + WPCT))
2855 if [ $percent -gt 15 ]; then
2856 error "less than 16-pages write RPCs" \
2863 run_test 42e "verify sub-RPC writes are not done synchronously"
2867 cp -p /bin/ls $DIR/$tdir/$tfile
2868 $MULTIOP $DIR/$tdir/$tfile Ow_c &
2870 # give multiop a chance to open
2873 $DIR/$tdir/$tfile && error || true
2876 run_test 43 "execution of file opened for write should return -ETXTBSY"
2880 cp -p `which $MULTIOP` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2881 MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2883 $MULTIOP $DIR/d43/multiop Oc && error "expected error, got success"
2884 kill -USR1 $MULTIOP_PID || return 2
2885 wait $MULTIOP_PID || return 3
2888 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
2892 cp -p `which $MULTIOP` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2893 MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2895 $TRUNCATE $DIR/d43/multiop 0 && error "expected error, got success"
2896 kill -USR1 $MULTIOP_PID || return 2
2897 wait $MULTIOP_PID || return 3
2900 run_test 43b "truncate of file being executed should return -ETXTBSY"
2903 local testdir="$DIR/d43c"
2906 ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
2907 ( cd $testdir && md5sum -c)
2909 run_test 43c "md5sum of copy into lustre========================"
2912 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
2913 dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
2914 dd if=$DIR/f1 bs=4k count=1 > /dev/null
2916 run_test 44 "zero length read from a sparse stripe ============="
2919 local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
2921 [ -z "$nstripe" ] && skip "can't get stripe info" && return
2922 [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
2923 local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
2925 if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
2926 nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
2929 OFFSETS="0 $((stride/2)) $((stride-1))"
2930 for offset in $OFFSETS ; do
2931 for i in `seq 0 $((nstripe-1))`; do
2932 local GLOBALOFFSETS=""
2933 local size=$((((i + 2 * $nstripe )*$stride + $offset))) # Bytes
2934 local myfn=$DIR/d44a-$size
2935 echo "--------writing $myfn at $size"
2936 ll_sparseness_write $myfn $size || error "ll_sparseness_write"
2937 GLOBALOFFSETS="$GLOBALOFFSETS $size"
2938 ll_sparseness_verify $myfn $GLOBALOFFSETS \
2939 || error "ll_sparseness_verify $GLOBALOFFSETS"
2941 for j in `seq 0 $((nstripe-1))`; do
2942 size=$((((j + $nstripe )*$stride + $offset))) # Bytes
2943 ll_sparseness_write $myfn $size || error "ll_sparseness_write"
2944 GLOBALOFFSETS="$GLOBALOFFSETS $size"
2946 ll_sparseness_verify $myfn $GLOBALOFFSETS \
2947 || error "ll_sparseness_verify $GLOBALOFFSETS"
2952 run_test 44a "test sparse pwrite ==============================="
2956 for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
2962 before=`dirty_osc_total`
2963 echo executing "\"$*\""
2965 after=`dirty_osc_total`
2966 echo before $before, after $after
2970 # Obtain grants from OST if it supports it
2971 echo blah > ${f}_grant
2974 do_dirty_record "echo blah > $f"
2975 [ $before -eq $after ] && error "write wasn't cached"
2976 do_dirty_record "> $f"
2977 [ $before -gt $after ] || error "truncate didn't lower dirty count"
2978 do_dirty_record "echo blah > $f"
2979 [ $before -eq $after ] && error "write wasn't cached"
2980 do_dirty_record "sync"
2981 [ $before -gt $after ] || error "writeback didn't lower dirty count"
2982 do_dirty_record "echo blah > $f"
2983 [ $before -eq $after ] && error "write wasn't cached"
2984 do_dirty_record "cancel_lru_locks osc"
2985 [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
2988 run_test 45 "osc io page accounting ============================"
2990 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object. this
2991 # test tickles a bug where re-dirtying a page was failing to be mapped to the
2992 # objects offset and an assert hit when an rpc was built with 1023's mapped
2993 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
2998 dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3000 dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3001 dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3005 run_test 46 "dirtying a previously written page ================"
3007 # test_47 is removed "Device nodes check" is moved to test_28
3009 test_48a() { # bug 2399
3010 check_kernel_version 34 || return 0
3013 mv $DIR/d48a $DIR/d48.new || error "move directory failed"
3014 mkdir $DIR/d48a || error "recreate directory failed"
3015 touch foo || error "'touch foo' failed after recreating cwd"
3016 mkdir bar || error "'mkdir foo' failed after recreating cwd"
3017 if check_kernel_version 44; then
3018 touch .foo || error "'touch .foo' failed after recreating cwd"
3019 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3021 ls . > /dev/null || error "'ls .' failed after recreating cwd"
3022 ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3023 cd . || error "'cd .' failed after recreating cwd"
3024 mkdir . && error "'mkdir .' worked after recreating cwd"
3025 rmdir . && error "'rmdir .' worked after recreating cwd"
3026 ln -s . baz || error "'ln -s .' failed after recreating cwd"
3027 cd .. || error "'cd ..' failed after recreating cwd"
3029 run_test 48a "Access renamed working dir (should return errors)="
3031 test_48b() { # bug 2399
3032 check_kernel_version 34 || return 0
3035 rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
3036 touch foo && error "'touch foo' worked after removing cwd"
3037 mkdir foo && error "'mkdir foo' worked after removing cwd"
3038 if check_kernel_version 44; then
3039 touch .foo && error "'touch .foo' worked after removing cwd"
3040 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3042 ls . > /dev/null && error "'ls .' worked after removing cwd"
3043 ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3044 is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3045 mkdir . && error "'mkdir .' worked after removing cwd"
3046 rmdir . && error "'rmdir .' worked after removing cwd"
3047 ln -s . foo && error "'ln -s .' worked after removing cwd"
3048 cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3517
3050 run_test 48b "Access removed working dir (should return errors)="
3052 test_48c() { # bug 2350
3053 check_kernel_version 36 || return 0
3054 #lctl set_param debug=-1
3056 mkdir -p $DIR/d48c/dir
3058 $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
3059 $TRACE touch foo && error "'touch foo' worked after removing cwd"
3060 $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
3061 if check_kernel_version 44; then
3062 touch .foo && error "'touch .foo' worked after removing cwd"
3063 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3065 $TRACE ls . && error "'ls .' worked after removing cwd"
3066 $TRACE ls .. || error "'ls ..' failed after removing cwd"
3067 is_patchless || ( $TRACE cd . && error "'cd .' worked after removing cwd" )
3068 $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
3069 $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3070 $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3071 $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3073 run_test 48c "Access removed working subdir (should return errors)"
3075 test_48d() { # bug 2350
3076 check_kernel_version 36 || return 0
3077 #lctl set_param debug=-1
3079 mkdir -p $DIR/d48d/dir
3081 $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
3082 $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
3083 $TRACE touch foo && error "'touch foo' worked after removing parent"
3084 $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
3085 if check_kernel_version 44; then
3086 touch .foo && error "'touch .foo' worked after removing parent"
3087 mkdir .foo && error "'mkdir .foo' worked after removing parent"
3089 $TRACE ls . && error "'ls .' worked after removing parent"
3090 $TRACE ls .. && error "'ls ..' worked after removing parent"
3091 is_patchless || ( $TRACE cd . && error "'cd .' worked after recreate parent" )
3092 $TRACE mkdir . && error "'mkdir .' worked after removing parent"
3093 $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3094 $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3095 is_patchless || ( $TRACE cd .. && error "'cd ..' worked after removing parent" || true )
3097 run_test 48d "Access removed parent subdir (should return errors)"
3099 test_48e() { # bug 4134
3100 check_kernel_version 41 || return 0
3101 #lctl set_param debug=-1
3103 mkdir -p $DIR/d48e/dir
3105 $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
3106 $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
3107 $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
3108 $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
3109 # On a buggy kernel addition of "touch foo" after cd .. will
3110 # produce kernel oops in lookup_hash_it
3111 touch ../foo && error "'cd ..' worked after recreate parent"
3113 $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
3115 run_test 48e "Access to recreated parent subdir (should return errors)"
3117 test_49() { # LU-1030
3118 # get ost1 size - lustre-OST0000
3119 ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3120 # write 800M at maximum
3121 [ $ost1_size -gt 819200 ] && ost1_size=819200
3123 lfs setstripe -c 1 -i 0 $DIR/$tfile
3124 dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3127 # change max_pages_per_rpc while writing the file
3128 local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3129 local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3130 # loop until dd process exits
3131 while ps ax -opid | grep -wq $dd_pid; do
3132 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3133 sleep $((RANDOM % 5 + 1))
3135 # restore original max_pages_per_rpc
3136 $LCTL set_param $osc1_mppc=$orig_mppc
3137 rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3139 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3145 ls /proc/$$/cwd || error
3147 run_test 50 "special situations: /proc symlinks ==============="
3149 test_51a() { # was test_51
3150 # bug 1516 - create an empty entry right after ".." then split dir
3153 $MCREATE $DIR/d51/bar
3155 createmany -m $DIR/d51/longfile 201
3157 while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
3158 $MCREATE $DIR/d51/longfile$FNUM
3163 ls -l $DIR/d51 > /dev/null || error
3165 run_test 51a "special situations: split htree with empty entry =="
3167 export NUMTEST=70000
3169 NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
3170 [ $NUMFREE -lt 21000 ] && \
3171 skip "not enough free inodes ($NUMFREE)" && \
3174 [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
3177 createmany -d $DIR/d51b/t- $NUMTEST
3179 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
3181 test_51ba() { # LU-993
3182 local BASE=$DIR/d51b
3183 # unlink all but 100 subdirectories, then check it still works
3185 local DELETE=$((NUMTEST - LEFT))
3187 # continue on to run this test even if 51b didn't finish,
3188 # just to delete the many subdirectories created.
3189 ! [ -d "${BASE}/t-1" ] && skip "test_51b() not run" && return 0
3191 # for ldiskfs the nlink count should be 1, but this is OSD specific
3192 # and so this is listed for informational purposes only
3193 log "nlink before: $(stat -c %h $BASE)"
3194 unlinkmany -d $BASE/t- $DELETE ||
3195 error "unlink of first $DELETE subdirs failed"
3197 log "nlink between: $(stat -c %h $BASE)"
3198 local FOUND=$(ls -l ${BASE} | wc -l)
3199 FOUND=$((FOUND - 1)) # trim the first line of ls output
3200 [ $FOUND -ne $LEFT ] &&
3201 error "can't find subdirs: found only $FOUND/$LEFT"
3203 unlinkmany -d $BASE/t- $DELETE $LEFT ||
3204 error "unlink of second $LEFT subdirs failed"
3205 log "nlink after: $(stat -c %h $BASE)"
3207 run_test 51ba "rmdir .../t-0 --- .../t-$NUMTEST"
3210 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3212 local ndirs=${TEST51BB_NDIRS:-10}
3213 local nfiles=${TEST51BB_NFILES:-100}
3215 local numfree=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
3217 [ $numfree -lt $(( ndirs * nfiles)) ] && \
3218 nfiles=$(( numfree / ndirs - 10 ))
3220 local dir=$DIR/d51bb
3222 local savePOLICY=$(lctl get_param -n lmv.*.placement)
3223 lctl set_param -n lmv.*.placement=CHAR
3226 local IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3230 for ((i=0; i < $ndirs; i++)); do
3231 dirs[i]=$dir/$RANDOM
3232 echo Creating directory ${dirs[i]}
3235 echo Creating $nfiles in dir ${dirs[i]} ...
3236 echo "createmany -o ${dirs[i]}/$tfile- $nfiles"
3237 createmany -o ${dirs[i]}/$tfile- $nfiles
3243 IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3247 for ((i=0; i<${#NEWUSED[@]}; i++)); do
3248 echo "mds $i: inodes count OLD ${OLDUSED[$i]} NEW ${NEWUSED[$i]}"
3249 [ ${OLDUSED[$i]} -lt ${NEWUSED[$i]} ] || rc=$((rc + 1))
3252 lctl set_param -n lmv.*.placement=$savePOLICY
3254 [ $rc -ne $MDSCOUNT ] || \
3255 error "Objects/inodes are not distributed over all mds servers"
3257 run_test 51bb "mkdir createmany CMD $MDSCOUNT ===================="
3260 [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3262 createmany -o $DIR/d51d/t- 1000
3263 $GETSTRIPE $DIR/d51d > $TMP/files
3264 for N in `seq 0 $((OSTCOUNT - 1))`; do
3265 OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3266 OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3267 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3269 unlinkmany $DIR/d51d/t- 1000
3272 for N in `seq 1 $((OSTCOUNT - 1))`; do
3273 [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3274 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3275 [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3276 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3278 [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3279 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3280 [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3281 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3285 run_test 51d "check object distribution ===================="
3288 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
3291 chattr +a $DIR/d52a/foo || error "chattr +a failed"
3292 echo bar >> $DIR/d52a/foo || error "append bar failed"
3293 cp /etc/hosts $DIR/d52a/foo && error "cp worked"
3294 rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
3295 link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
3296 echo foo >> $DIR/d52a/foo || error "append foo failed"
3297 mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
3298 lsattr $DIR/d52a/foo | egrep -q "^-+a[-e]+ $DIR/d52a/foo" || error "lsattr"
3299 chattr -a $DIR/d52a/foo || error "chattr -a failed"
3300 cp -r $DIR/d52a /tmp/
3301 rm -fr $DIR/d52a || error "cleanup rm failed"
3303 run_test 52a "append-only flag test (should return errors) ====="
3306 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
3309 chattr +i $DIR/d52b/foo || error "chattr +i failed"
3310 cat test > $DIR/d52b/foo && error "cat test worked"
3311 cp /etc/hosts $DIR/d52b/foo && error "cp worked"
3312 rm -f $DIR/d52b/foo 2>/dev/null && error "rm worked"
3313 link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error "link worked"
3314 echo foo >> $DIR/d52b/foo && error "echo worked"
3315 mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error "rename worked"
3316 [ -f $DIR/d52b/foo ] || error
3317 [ -f $DIR/d52b/foo_ren ] && error
3318 lsattr $DIR/d52b/foo | egrep -q "^-+i[-e]+ $DIR/d52b/foo" || error "lsattr"
3319 chattr -i $DIR/d52b/foo || error "chattr failed"
3321 rm -fr $DIR/d52b || error
3323 run_test 52b "immutable flag test (should return errors) ======="
3326 remote_mds_nodsh && skip "remote MDS with nodsh" && return
3327 remote_ost_nodsh && skip "remote OST with nodsh" && return
3336 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3337 for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3338 param=`echo ${value[0]} | cut -d "=" -f1`
3339 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3340 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3341 ostnum=$(echo $ostname | sed "s/${FSNAME}-OST//g" | awk '{print ($1+1)}' )
3342 ost_last=$(do_facet ost$ostnum lctl get_param -n obdfilter.$ostname.last_id | head -n 1)
3343 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3344 if [ $ost_last != $mds_last ]; then
3345 error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3349 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3352 [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3353 [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3354 $SOCKETSERVER $DIR/socket
3355 $SOCKETCLIENT $DIR/socket || error
3356 $MUNLINK $DIR/socket
3358 run_test 54a "unix domain socket test =========================="
3364 dd if=/dev/zero of=$f bs=`page_size` count=1
3366 run_test 54b "char device works in lustre ======================"
3369 [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3370 [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3371 [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3373 for i in `seq 3 7`; do
3374 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3384 loopdev="$DIR/loop54c"
3387 [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3388 mknod $loopdev b 7 $LOOPNUM
3389 echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3390 dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3391 losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3392 mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3394 mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3395 dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3397 dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3402 run_test 54c "block device works in lustre ====================="
3408 [ "$string" = `echo $string > $f | cat $f` ] || error
3410 run_test 54d "fifo device works in lustre ======================"
3413 check_kernel_version 46 || return 0
3416 cp -aL /dev/console $f
3417 echo $string > $f || error
3419 run_test 54e "console/tty device works in lustre ======================"
3421 #The test_55 used to be iopen test and it was removed by bz#24037.
3422 #run_test 55 "check iopen_connect_dentry() ======================"
3424 test_56a() { # was test_56
3430 NUMFILESx2=$(($NUMFILES * 2))
3431 for i in `seq 1 $NUMFILES` ; do
3432 touch $DIR/d56/file$i
3433 touch $DIR/d56/dir/file$i
3436 # test lfs getstripe with --recursive
3437 FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
3438 [ $FILENUM -eq $NUMFILESx2 ] ||
3439 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3440 FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
3441 [ $FILENUM -eq $NUMFILES ] ||
3442 error "$GETSTRIPE $DIR/d56: found $FILENUM, not $NUMFILES"
3443 echo "$GETSTRIPE --recursive passed."
3445 # test lfs getstripe with file instead of dir
3446 FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
3447 [ $FILENUM -eq 1 ] || error \
3448 "$GETSTRIPE $DIR/d56/file1: found $FILENUM, not 1"
3449 echo "$GETSTRIPE file1 passed."
3451 #test lfs getstripe with --verbose
3452 [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||
3453 error "$GETSTRIPE --verbose $DIR/d56: want $NUMFILES lmm_magic"
3454 [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] ||
3455 error "$GETSTRIPE $DIR/d56: showed lmm_magic"
3456 echo "$GETSTRIPE --verbose passed."
3458 #test lfs getstripe with --obd
3459 $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" ||
3460 error "$GETSTRIPE --obd wrong_uuid should return error message"
3462 [ "$OSTCOUNT" -lt 2 ] &&
3463 skip_env "skipping other $GETSTRIPE --obd test" && return
3466 OBDUUID=$(ostuuid_from_index $OSTIDX)
3467 FILENUM=`$GETSTRIPE -ir $DIR/d56 | grep -x $OSTIDX | wc -l`
3468 FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | grep obdidx | wc -l`
3469 [ $FOUND -eq $FILENUM ] ||
3470 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
3471 [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 |
3472 sed '/^[ ]*'${OSTIDX}'[ ]/d' |
3473 sed -n '/^[ ]*[0-9][0-9]*[ ]/p' | wc -l` -eq 0 ] ||
3474 error "$GETSTRIPE --obd: should not show file on other obd"
3475 echo "$GETSTRIPE --obd passed"
3477 run_test 56a "check $GETSTRIPE"
3482 local LOCAL_NUMFILES="$1"
3483 local LOCAL_NUMDIRS="$2"
3484 local MKDIR_PARAMS="$3"
3486 if [ ! -d "$TDIR" ] ; then
3488 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
3489 for i in `seq 1 $LOCAL_NUMFILES` ; do
3492 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3494 for j in `seq 1 $LOCAL_NUMFILES` ; do
3495 touch $TDIR/dir$i/file$j
3501 setup_56_special() {
3505 if [ ! -e "$TDIR/loop1b" ] ; then
3506 for i in `seq 1 $LOCAL_NUMFILES` ; do
3507 mknod $TDIR/loop${i}b b 7 $i
3508 mknod $TDIR/null${i}c c 1 3
3509 ln -s $TDIR/file1 $TDIR/link${i}l
3511 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3512 mknod $TDIR/dir$i/loop${i}b b 7 $i
3513 mknod $TDIR/dir$i/null${i}c c 1 3
3514 ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3523 setup_56 $NUMFILES $NUMDIRS
3525 EXPECTED=$(($NUMDIRS + 2))
3526 # test lfs find with -name
3527 for i in $(seq 1 $NUMFILES) ; do
3528 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
3529 [ $NUMS -eq $EXPECTED ] ||
3530 error "lfs find -name \"*$i\" $TDIR wrong: "\
3531 "found $NUMS, expected $EXPECTED"
3534 run_test 56g "check lfs find -name ============================="
3540 setup_56 $NUMFILES $NUMDIRS
3542 EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
3543 # test lfs find with ! -name
3544 for i in $(seq 1 $NUMFILES) ; do
3545 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
3546 [ $NUMS -eq $EXPECTED ] ||
3547 error "lfs find ! -name \"*$i\" $TDIR wrong: "\
3548 "found $NUMS, expected $EXPECTED"
3551 run_test 56h "check lfs find ! -name ============================="
3556 UUID=$(ostuuid_from_index 0 $DIR/$tdir)
3557 CMD="$LFIND -ost $UUID $DIR/$tdir"
3559 [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
3561 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
3565 setup_56_special $NUMFILES $NUMDIRS
3567 EXPECTED=$((NUMDIRS + 1))
3568 CMD="$LFIND -type d $TDIR"
3569 NUMS=$($CMD | wc -l)
3570 [ $NUMS -eq $EXPECTED ] ||
3571 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3573 run_test 56j "check lfs find -type d ============================="
3577 setup_56_special $NUMFILES $NUMDIRS
3579 EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3580 CMD="$LFIND -type f $TDIR"
3581 NUMS=$($CMD | wc -l)
3582 [ $NUMS -eq $EXPECTED ] ||
3583 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3585 run_test 56k "check lfs find -type f ============================="
3589 setup_56_special $NUMFILES $NUMDIRS
3591 EXPECTED=$((NUMDIRS + NUMFILES))
3592 CMD="$LFIND -type b $TDIR"
3593 NUMS=$($CMD | wc -l)
3594 [ $NUMS -eq $EXPECTED ] ||
3595 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3597 run_test 56l "check lfs find -type b ============================="
3601 setup_56_special $NUMFILES $NUMDIRS
3603 EXPECTED=$((NUMDIRS + NUMFILES))
3604 CMD="$LFIND -type c $TDIR"
3605 NUMS=$($CMD | wc -l)
3606 [ $NUMS -eq $EXPECTED ] ||
3607 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3609 run_test 56m "check lfs find -type c ============================="
3613 setup_56_special $NUMFILES $NUMDIRS
3615 EXPECTED=$((NUMDIRS + NUMFILES))
3616 CMD="$LFIND -type l $TDIR"
3617 NUMS=$($CMD | wc -l)
3618 [ $NUMS -eq $EXPECTED ] ||
3619 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3621 run_test 56n "check lfs find -type l ============================="
3625 setup_56 $NUMFILES $NUMDIRS
3627 utime $TDIR/file1 > /dev/null || error "utime (1)"
3628 utime $TDIR/file2 > /dev/null || error "utime (2)"
3629 utime $TDIR/dir1 > /dev/null || error "utime (3)"
3630 utime $TDIR/dir2 > /dev/null || error "utime (4)"
3631 utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
3632 dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
3635 NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
3636 [ $NUMS -eq $EXPECTED ] || \
3637 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
3640 CMD="$LFIND -mtime 0 $TDIR"
3641 NUMS=$($CMD | wc -l)
3642 [ $NUMS -eq $EXPECTED ] ||
3643 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3645 run_test 56o "check lfs find -mtime for old files =========================="
3648 [ $RUNAS_ID -eq $UID ] &&
3649 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3652 setup_56 $NUMFILES $NUMDIRS
3654 chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3656 CMD="$LFIND -uid $RUNAS_ID $TDIR"
3657 NUMS=$($CMD | wc -l)
3658 [ $NUMS -eq $EXPECTED ] || \
3659 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3661 EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
3662 CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
3663 NUMS=$($CMD | wc -l)
3664 [ $NUMS -eq $EXPECTED ] || \
3665 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3667 run_test 56p "check lfs find -uid and ! -uid ==============================="
3670 [ $RUNAS_ID -eq $UID ] &&
3671 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3674 setup_56 $NUMFILES $NUMDIRS
3676 chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
3679 CMD="$LFIND -gid $RUNAS_GID $TDIR"
3680 NUMS=$($CMD | wc -l)
3681 [ $NUMS -eq $EXPECTED ] ||
3682 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3684 EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
3685 CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
3686 NUMS=$($CMD | wc -l)
3687 [ $NUMS -eq $EXPECTED ] ||
3688 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3690 run_test 56q "check lfs find -gid and ! -gid ==============================="
3694 setup_56 $NUMFILES $NUMDIRS
3697 CMD="$LFIND -size 0 -type f $TDIR"
3698 NUMS=$($CMD | wc -l)
3699 [ $NUMS -eq $EXPECTED ] ||
3700 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3702 CMD="$LFIND ! -size 0 -type f $TDIR"
3703 NUMS=$($CMD | wc -l)
3704 [ $NUMS -eq $EXPECTED ] ||
3705 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3706 echo "test" > $TDIR/$tfile
3707 echo "test2" > $TDIR/$tfile.2 && sync
3709 CMD="$LFIND -size 5 -type f $TDIR"
3710 NUMS=$($CMD | wc -l)
3711 [ $NUMS -eq $EXPECTED ] ||
3712 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3714 CMD="$LFIND -size +5 -type f $TDIR"
3715 NUMS=$($CMD | wc -l)
3716 [ $NUMS -eq $EXPECTED ] ||
3717 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3719 CMD="$LFIND -size +0 -type f $TDIR"
3720 NUMS=$($CMD | wc -l)
3721 [ $NUMS -eq $EXPECTED ] ||
3722 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3724 CMD="$LFIND ! -size -5 -type f $TDIR"
3725 NUMS=$($CMD | wc -l)
3726 [ $NUMS -eq $EXPECTED ] ||
3727 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3729 CMD="$LFIND -size -5 -type f $TDIR"
3730 NUMS=$($CMD | wc -l)
3731 [ $NUMS -eq $EXPECTED ] ||
3732 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3734 run_test 56r "check lfs find -size works =========================="
3736 test_56s() { # LU-611
3738 setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
3740 if [ $OSTCOUNT -gt 1 ]; then
3741 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
3745 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
3749 EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3750 CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
3751 NUMS=$($CMD | wc -l)
3752 [ $NUMS -eq $EXPECTED ] ||
3753 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3755 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
3756 CMD="$LFIND -stripe-count +0 -type f $TDIR"
3757 NUMS=$($CMD | wc -l)
3758 [ $NUMS -eq $EXPECTED ] ||
3759 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3762 CMD="$LFIND -stripe-count 1 -type f $TDIR"
3763 NUMS=$($CMD | wc -l)
3764 [ $NUMS -eq $EXPECTED ] ||
3765 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3767 CMD="$LFIND -stripe-count -2 -type f $TDIR"
3768 NUMS=$($CMD | wc -l)
3769 [ $NUMS -eq $EXPECTED ] ||
3770 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3773 CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
3774 NUMS=$($CMD | wc -l)
3775 [ $NUMS -eq $EXPECTED ] ||
3776 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3778 run_test 56s "check lfs find -stripe-count works"
3780 test_56t() { # LU-611
3782 setup_56 $NUMFILES $NUMDIRS "-s 512k"
3784 $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
3786 EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3787 CMD="$LFIND -stripe-size 512k -type f $TDIR"
3788 NUMS=$($CMD | wc -l)
3789 [ $NUMS -eq $EXPECTED ] ||
3790 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3792 CMD="$LFIND -stripe-size +320k -type f $TDIR"
3793 NUMS=$($CMD | wc -l)
3794 [ $NUMS -eq $EXPECTED ] ||
3795 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3797 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
3798 CMD="$LFIND -stripe-size +200k -type f $TDIR"
3799 NUMS=$($CMD | wc -l)
3800 [ $NUMS -eq $EXPECTED ] ||
3801 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3803 CMD="$LFIND -stripe-size -640k -type f $TDIR"
3804 NUMS=$($CMD | wc -l)
3805 [ $NUMS -eq $EXPECTED ] ||
3806 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3809 CMD="$LFIND -stripe-size 256k -type f $TDIR"
3810 NUMS=$($CMD | wc -l)
3811 [ $NUMS -eq $EXPECTED ] ||
3812 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3814 CMD="$LFIND -stripe-size -320k -type f $TDIR"
3815 NUMS=$($CMD | wc -l)
3816 [ $NUMS -eq $EXPECTED ] ||
3817 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3820 CMD="$LFIND -stripe-size 1024k -type f $TDIR"
3821 NUMS=$($CMD | wc -l)
3822 [ $NUMS -eq $EXPECTED ] ||
3823 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3825 run_test 56t "check lfs find -stripe-size works"
3827 test_56u() { # LU-611
3829 setup_56 $NUMFILES $NUMDIRS "-i 0"
3831 if [ $OSTCOUNT -gt 1 ]; then
3832 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
3838 EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3839 CMD="$LFIND -stripe-index 0 -type f $TDIR"
3840 NUMS=$($CMD | wc -l)
3841 [ $NUMS -eq $EXPECTED ] ||
3842 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3845 CMD="$LFIND -stripe-index 1 -type f $TDIR"
3846 NUMS=$($CMD | wc -l)
3847 [ $NUMS -eq $EXPECTED ] ||
3848 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3850 CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
3851 NUMS=$($CMD | wc -l)
3852 [ $NUMS -eq $EXPECTED ] ||
3853 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3856 # This should produce an error and not return any files
3857 CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
3858 NUMS=$($CMD 2>/dev/null | wc -l)
3859 [ $NUMS -eq $EXPECTED ] ||
3860 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3862 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
3863 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
3864 NUMS=$($CMD | wc -l)
3865 [ $NUMS -eq $EXPECTED ] ||
3866 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3868 run_test 56u "check lfs find -stripe-index works"
3875 setup_56 $NUMFILES $NUMDIRS
3877 UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
3878 [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
3880 for file in $($LFIND -mdt $UUID $TDIR); do
3881 file_mdt_idx=$($GETSTRIPE -M $file)
3882 [ $file_mdt_idx -eq $MDT_IDX ] ||
3883 error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
3886 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
3888 # Get and check the actual stripe count of one file.
3889 # Usage: check_stripe_count <file> <expected_stripe_count>
3890 check_stripe_count() {
3895 [[ -z "$file" || -z "$expected" ]] &&
3896 error "check_stripe_count: invalid argument!"
3898 local cmd="$GETSTRIPE -c $file"
3899 actual=$($cmd) || error "$cmd failed"
3900 actual=${actual%% *}
3902 if [[ $actual -ne $expected ]]; then
3903 [[ $expected -eq -1 ]] ||
3904 error "$cmd wrong: found $actual, expected $expected"
3905 [[ $actual -eq $OSTCOUNT ]] ||
3906 error "$cmd wrong: found $actual, expected $OSTCOUNT"
3913 rm -rf $TDIR || error "remove $TDIR failed"
3914 setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
3917 stripe_size=$($GETSTRIPE -S -d $TDIR) ||
3918 error "$GETSTRIPE -S -d $TDIR failed"
3919 stripe_size=${stripe_size%% *}
3921 local file_size=$((stripe_size * OSTCOUNT))
3922 local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
3923 local required_space=$((file_num * file_size))
3924 local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
3925 [[ $free_space -le $((required_space / 1024)) ]] &&
3926 skip_env "need at least $required_space bytes free space," \
3927 "have $free_space kbytes" && return
3930 local dd_count=$((file_size / dd_bs))
3932 # write data into the files
3936 for i in $(seq 1 $NUMFILES); do
3938 yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
3939 error "write data into $file failed"
3941 for i in $(seq 1 $NUMDIRS); do
3942 for j in $(seq 1 $NUMFILES); do
3943 file=$TDIR/dir$i/file$j
3944 yes | dd bs=$dd_bs count=$dd_count of=$file \
3946 error "write data into $file failed"
3951 [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
3954 local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
3956 eval $cmd || error "$cmd failed"
3958 check_stripe_count $TDIR/file1 $expected
3961 cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
3963 eval $cmd || error "$cmd failed"
3965 for j in $(seq 1 $NUMFILES); do
3966 check_stripe_count $TDIR/dir1/file$j $expected
3969 # lfs_migrate works with lfs find
3970 cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
3971 $LFS_MIGRATE -y -c $expected"
3973 eval $cmd || error "$cmd failed"
3975 for i in $(seq 2 $NUMFILES); do
3976 check_stripe_count $TDIR/file$i $expected
3978 for i in $(seq 2 $NUMDIRS); do
3979 for j in $(seq 1 $NUMFILES); do
3980 check_stripe_count $TDIR/dir$i/file$j $expected
3984 run_test 56w "check lfs_migrate -c stripe_count works"
3987 # note test will not do anything if MDS is not local
3988 remote_mds_nodsh && skip "remote MDS with nodsh" && return
3989 local MNTDEV="osd*.*MDT*.mntdev"
3990 DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
3991 [ -z "$DEV" ] && error "can't access $MNTDEV"
3992 for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
3993 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
3994 error "can't access $DEV"
3995 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
3996 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4000 run_test 57a "verify MDS filesystem created with large inodes =="
4003 remote_mds_nodsh && skip "remote MDS with nodsh" && return
4008 local FILEN=$dir/f$FILECOUNT
4010 rm -rf $dir || error "removing $dir"
4011 mkdir -p $dir || error "creating $dir"
4012 local num=$(get_mds_dir $dir)
4015 echo "mcreating $FILECOUNT files"
4016 createmany -m $dir/f 1 $FILECOUNT || \
4017 error "creating files in $dir"
4019 # verify that files do not have EAs yet
4020 $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4021 $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4025 df $dir #make sure we get new statfs data
4026 local MDSFREE=$(do_facet $mymds \
4027 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4028 local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4029 echo "opening files to create objects/EAs"
4031 for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4032 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4035 # verify that files have EAs now
4036 $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4037 $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4039 sleep 1 #make sure we get new statfs data
4041 local MDSFREE2=$(do_facet $mymds \
4042 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4043 local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4044 if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4045 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4046 error "MDC before $MDCFREE != after $MDCFREE2"
4048 echo "MDC before $MDCFREE != after $MDCFREE2"
4049 echo "unable to confirm if MDS has large inodes"
4054 run_test 57b "default LOV EAs are stored inside large inodes ==="
4057 [ -z "$(which wiretest 2>/dev/null)" ] && skip_env "could not find wiretest" && return
4060 run_test 58 "verify cross-platform wire constants =============="
4063 echo "touch 130 files"
4064 createmany -o $DIR/f59- 130
4066 unlinkmany $DIR/f59- 130
4069 # wait for commitment of removal
4071 run_test 59 "verify cancellation of llog records async ========="
4073 TEST60_HEAD="test_60 run $RANDOM"
4075 remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4076 [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
4077 log "$TEST60_HEAD - from kernel mode"
4078 do_facet mgs sh run-llog.sh
4080 run_test 60a "llog sanity tests run from kernel module =========="
4082 test_60b() { # bug 6411
4084 LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4096 [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4098 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4101 echo "create 5000 files"
4102 createmany -o $DIR/f60c- 5000
4103 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED 0x137
4104 lctl set_param fail_loc=0x80000137
4105 unlinkmany $DIR/f60c- 5000
4106 lctl set_param fail_loc=0
4108 run_test 60c "unlink file when mds full"
4111 SAVEPRINTK=$(lctl get_param -n printk)
4113 # verify "lctl mark" is even working"
4114 MESSAGE="test message ID $RANDOM $$"
4115 $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4116 dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4118 lctl set_param printk=0 || error "set lnet.printk failed"
4119 lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4120 MESSAGE="new test message ID $RANDOM $$"
4121 # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4122 $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4123 dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4125 lctl set_param -n printk="$SAVEPRINTK"
4127 run_test 60d "test printk console message masking"
4131 dd if=/dev/zero of=$f bs=`page_size` count=1
4132 cancel_lru_locks osc
4133 $MULTIOP $f OSMWUc || error
4136 run_test 61 "mmap() writes don't make sync hang ================"
4138 # bug 2330 - insufficient obd_match error checking causes LBUG
4142 cancel_lru_locks osc
4143 lctl set_param fail_loc=0x405
4144 cat $f && error "cat succeeded, expect -EIO"
4145 lctl set_param fail_loc=0
4147 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4148 # match every page all of the time.
4149 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4151 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4152 test_63a() { # was test_63
4153 MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4154 lctl set_param -n osc.*.max_dirty_mb 0
4155 for i in `seq 10` ; do
4156 dd if=/dev/zero of=$DIR/f63 bs=8k &
4162 lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4163 rm -f $DIR/f63 || true
4165 run_test 63a "Verify oig_wait interruption does not crash ======="
4167 # bug 2248 - async write errors didn't return to application on sync
4168 # bug 3677 - async write errors left page locked
4171 lctl set_param debug=-1
4173 # ensure we have a grant to do async writes
4174 dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4177 #define OBD_FAIL_OSC_BRW_PREP_REQ 0x406
4178 lctl set_param fail_loc=0x80000406
4179 $MULTIOP $DIR/$tfile Owy && \
4180 error "sync didn't return ENOMEM"
4181 sync; sleep 2; sync # do a real sync this time to flush page
4182 lctl get_param -n llite.*.dump_page_cache | grep locked && \
4183 error "locked page left in cache after async error" || true
4186 run_test 63b "async write errors should be returned to fsync ==="
4190 lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4192 run_test 64a "verify filter grant calculations (in kernel) ====="
4195 [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
4198 run_test 64b "check out-of-space detection on client ==========="
4200 # bug 1414 - set/get directories' stripe info
4204 $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
4206 run_test 65a "directory with no stripe info ===================="
4210 $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/d65||error "setstripe"
4212 $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
4214 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4217 if [ $OSTCOUNT -gt 1 ]; then
4219 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4220 -c $(($OSTCOUNT - 1)) $DIR/d65 || error "setstripe"
4222 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
4225 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4229 if [ $STRIPECOUNT -le 0 ]; then
4231 elif [ $STRIPECOUNT -gt 2000 ]; then
4232 #LOV_MAX_STRIPE_COUNT is 2000
4233 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4235 sc=$(($STRIPECOUNT - 1))
4237 $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/d65 || error "setstripe"
4238 touch $DIR/d65/f4 $DIR/d65/f5
4239 $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
4241 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4246 $SETSTRIPE $DIR/d65 || error "setstripe"
4247 $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
4249 $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
4251 run_test 65e "directory setstripe defaults ======================="
4255 $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
4257 run_test 65f "dir setstripe permission (should return error) ==="
4261 $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/d65 ||error "setstripe"
4262 $SETSTRIPE -d $DIR/d65 || error "setstripe"
4263 $GETSTRIPE -v $DIR/d65 | grep "Default" || \
4264 error "delete default stripe failed"
4266 run_test 65g "directory setstripe -d ==========================="
4270 $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/d65 ||error "setstripe"
4271 mkdir -p $DIR/d65/dd1
4272 [ $($GETSTRIPE -c $DIR/d65) == $($GETSTRIPE -c $DIR/d65/dd1) ] ||
4273 error "stripe info inherit failed"
4275 run_test 65h "directory stripe info inherit ===================="
4277 test_65i() { # bug6367
4278 $SETSTRIPE -S 65536 -c -1 $MOUNT
4280 run_test 65i "set non-default striping on root directory (bug 6367)="
4282 test_65ia() { # bug12836
4283 $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4285 run_test 65ia "getstripe on -1 default directory striping"
4287 test_65ib() { # bug12836
4288 $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4290 run_test 65ib "getstripe -v on -1 default directory striping"
4292 test_65ic() { # bug12836
4293 $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4295 run_test 65ic "new find on -1 default directory striping"
4297 test_65j() { # bug6367
4299 # if we aren't already remounting for each test, do so for this test
4300 if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4301 cleanup || error "failed to unmount"
4304 $SETSTRIPE -d $MOUNT || error "setstripe failed"
4306 run_test 65j "set default striping on root directory (bug 6367)="
4308 test_65k() { # bug11679
4309 [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4310 remote_mds_nodsh && skip "remote MDS with nodsh" && return
4312 echo "Check OST status: "
4313 local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4314 awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4316 for OSC in $MDS_OSCS; do
4317 echo $OSC "is activate"
4318 do_facet $SINGLEMDS lctl --device %$OSC activate
4321 do_facet client mkdir -p $DIR/$tdir
4322 for INACTIVE_OSC in $MDS_OSCS; do
4323 echo "Deactivate: " $INACTIVE_OSC
4324 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4325 for STRIPE_OSC in $MDS_OSCS; do
4326 OST=`osc_to_ost $STRIPE_OSC`
4327 IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4328 awk -F: /$OST/'{ print $1 }' | head -n 1`
4330 [ -f $DIR/$tdir/$IDX ] && continue
4331 echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4332 do_facet client $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4334 [ $RC -ne 0 ] && error "setstripe should have succeeded"
4336 do_facet client rm -f $DIR/$tdir/*
4337 echo $INACTIVE_OSC "is Activate."
4338 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC activate
4341 run_test 65k "validate manual striping works properly with deactivated OSCs"
4343 test_65l() { # bug 12836
4344 mkdir -p $DIR/$tdir/test_dir
4345 $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4346 $LFS find -mtime -1 $DIR/$tdir >/dev/null
4348 run_test 65l "lfs find on -1 stripe dir ========================"
4350 # bug 2543 - update blocks count on client
4353 dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4354 sync; sync_all_data; sync; sync_all_data
4355 cancel_lru_locks osc
4356 BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4357 [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4359 run_test 66 "update inode blocks count on client ==============="
4365 if [ ! -z "$LLOOP" ]; then
4366 if swapon -s | grep -q $LLOOP; then
4367 swapoff $LLOOP || error "swapoff failed"
4370 $LCTL blockdev_detach $LLOOP || error "detach failed"
4374 if [ ! -z "$LLITELOOPLOAD" ]; then
4382 awk '($1 == "'$1':") { print $2 }' /proc/meminfo
4386 swapon -s | awk '($1 == "'$1'") { print $4 }'
4389 # test case for lloop driver, basic function
4391 [ "$UID" != 0 ] && skip_env "must run as root" && return
4392 llite_lloop_enabled || \
4393 { skip_env "llite_lloop module disabled" && return; }
4395 trap cleanup_68 EXIT
4397 if ! module_loaded llite_lloop; then
4398 if load_module llite/llite_lloop; then
4401 skip_env "can't find module llite_lloop"
4406 LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4407 dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
4408 $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
4410 directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
4411 directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
4415 run_test 68a "lloop driver - basic test ========================"
4417 # excercise swapping to lustre by adding a high priority swapfile entry
4418 # and then consuming memory until it is used.
4419 test_68b() { # was test_68
4420 [ "$UID" != 0 ] && skip_env "must run as root" && return
4421 lctl get_param -n devices | grep -q obdfilter && \
4422 skip "local OST" && return
4424 grep -q llite_lloop /proc/modules
4425 [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
4427 [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
4428 skip "can't reliably test swap with TCP" && return
4430 MEMTOTAL=`meminfo MemTotal`
4431 NR_BLOCKS=$((MEMTOTAL>>8))
4432 [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
4434 LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4435 dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
4438 $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
4440 trap cleanup_68 EXIT
4442 swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
4444 echo "before: `swapon -s | grep $LLOOP`"
4445 $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
4446 echo "after: `swapon -s | grep $LLOOP`"
4447 SWAPUSED=`swap_used $LLOOP`
4451 [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
4453 run_test 68b "support swapping to Lustre ========================"
4455 # bug5265, obdfilter oa2dentry return -ENOENT
4456 # #define OBD_FAIL_OST_ENOENT 0x217
4458 remote_ost_nodsh && skip "remote OST with nodsh" && return
4461 $SETSTRIPE -c 1 -i 0 $f
4463 $DIRECTIO write ${f}.2 0 1 || error "directio write error"
4465 do_facet ost1 lctl set_param fail_loc=0x217
4466 $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
4467 $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
4469 do_facet ost1 lctl set_param fail_loc=0
4470 $DIRECTIO write $f 0 2 || error "write error"
4472 cancel_lru_locks osc
4473 $DIRECTIO read $f 0 1 || error "read error"
4475 do_facet ost1 lctl set_param fail_loc=0x217
4476 $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
4478 do_facet ost1 lctl set_param fail_loc=0
4481 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
4485 sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
4487 run_test 71 "Running dbench on lustre (don't segment fault) ===="
4489 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
4490 check_kernel_version 43 || return 0
4491 [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4493 # Check that testing environment is properly set up. Skip if not
4494 FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
4495 skip_env "User $RUNAS_ID does not exist - skipping"
4498 # We had better clear the $DIR to get enough space for dd
4503 $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
4504 # See if we are still setuid/sgid
4505 test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
4506 # Now test that MDS is updated too
4507 cancel_lru_locks mdc
4508 test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
4512 run_test 72a "Test that remove suid works properly (bug5695) ===="
4514 test_72b() { # bug 24226 -- keep mode setting when size is not changing
4517 [ "$RUNAS_ID" = "$UID" ] && \
4518 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4519 [ "$RUNAS_ID" -eq 0 ] && \
4520 skip_env "RUNAS_ID = 0 -- skipping" && return
4522 # Check that testing environment is properly set up. Skip if not
4523 FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
4524 skip_env "User $RUNAS_ID does not exist - skipping"
4527 touch $DIR/${tfile}-f{g,u}
4528 mkdir $DIR/${tfile}-d{g,u}
4529 chmod 770 $DIR/${tfile}-{f,d}{g,u}
4530 chmod g+s $DIR/${tfile}-{f,d}g
4531 chmod u+s $DIR/${tfile}-{f,d}u
4532 for perm in 777 2777 4777; do
4533 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
4534 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
4535 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
4536 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
4540 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
4542 # bug 3462 - multiple simultaneous MDC requests
4546 multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
4549 lctl set_param fail_loc=0x80000129
4550 $MULTIOP $DIR/d73-1/f73-2 Oc &
4552 lctl set_param fail_loc=0
4554 $MULTIOP $DIR/d73-2/f73-3 Oc &
4558 wait $pid1 || return 1
4562 $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4563 $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4564 $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4568 run_test 73 "multiple MDC requests (should not deadlock)"
4570 test_74a() { # bug 6149, 6184
4571 #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4573 # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4574 # will spin in a tight reconnection loop
4576 lctl set_param fail_loc=0x8000030e
4577 # get any lock that won't be difficult - lookup works.
4579 lctl set_param fail_loc=0
4583 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4585 test_74b() { # bug 13310
4586 #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4588 # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4589 # will spin in a tight reconnection loop
4590 lctl set_param fail_loc=0x8000030e
4591 # get a "difficult" lock
4593 lctl set_param fail_loc=0
4597 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
4600 #define OBD_FAIL_LDLM_NEW_LOCK
4601 lctl set_param fail_loc=0x80000319
4602 touch $DIR/$tfile && error "Touch successful"
4605 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
4608 awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
4611 get_inode_slab_tunables() {
4612 awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
4615 set_inode_slab_tunables() {
4616 echo "lustre_inode_cache $1" > /proc/slabinfo
4619 test_76() { # Now for bug 20433, added originally in bug 1443
4620 local SLAB_SETTINGS=`get_inode_slab_tunables`
4621 local CPUS=`getconf _NPROCESSORS_ONLN`
4622 # we cannot set limit below 1 which means 1 inode in each
4623 # per-cpu cache is still allowed
4624 set_inode_slab_tunables "1 1 0"
4625 cancel_lru_locks osc
4626 BEFORE_INODES=`num_inodes`
4627 echo "before inodes: $BEFORE_INODES"
4629 [ "$SLOW" = "no" ] && COUNT=100
4630 for i in `seq $COUNT`; do
4634 cancel_lru_locks osc
4635 AFTER_INODES=`num_inodes`
4636 echo "after inodes: $AFTER_INODES"
4638 while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
4640 AFTER_INODES=`num_inodes`
4642 echo "wait $wait seconds inodes: $AFTER_INODES"
4643 if [ $wait -gt 30 ]; then
4644 error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
4647 set_inode_slab_tunables "$SLAB_SETTINGS"
4649 run_test 76 "confirm clients recycle inodes properly ===="
4655 # Note: in sptlrpc modes which enable its own bulk checksum, the
4656 # original crc32_le bulk checksum will be automatically disabled,
4657 # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
4658 # will be checked by sptlrpc code against sptlrpc bulk checksum.
4659 # In this case set_checksums() will not be no-op, because sptlrpc
4660 # bulk checksum will be enabled all through the test.
4662 [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
4663 lctl set_param -n osc.*.checksums $1
4667 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
4668 sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
4669 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
4670 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
4673 lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
4674 log "set checksum type to $1"
4677 F77_TMP=$TMP/f77-temp
4680 dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
4681 error "error writing to $F77_TMP"
4684 test_77a() { # bug 10889
4685 $GSS && skip "could not run with gss" && return
4686 [ ! -f $F77_TMP ] && setup_f77
4688 dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
4692 run_test 77a "normal checksum read/write operation ============="
4694 test_77b() { # bug 10889
4695 $GSS && skip "could not run with gss" && return
4696 [ ! -f $F77_TMP ] && setup_f77
4697 #define OBD_FAIL_OSC_CHECKSUM_SEND 0x409
4698 lctl set_param fail_loc=0x80000409
4700 dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
4701 error "dd error: $?"
4702 lctl set_param fail_loc=0
4705 run_test 77b "checksum error on client write ===================="
4707 test_77c() { # bug 10889
4708 $GSS && skip "could not run with gss" && return
4709 [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
4711 for algo in $CKSUM_TYPES; do
4712 cancel_lru_locks osc
4713 set_checksum_type $algo
4714 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE 0x408
4715 lctl set_param fail_loc=0x80000408
4716 cmp $F77_TMP $DIR/f77b || error "file compare failed"
4717 lctl set_param fail_loc=0
4720 set_checksum_type $ORIG_CSUM_TYPE
4723 run_test 77c "checksum error on client read ==================="
4725 test_77d() { # bug 10889
4726 $GSS && skip "could not run with gss" && return
4727 #define OBD_FAIL_OSC_CHECKSUM_SEND 0x409
4728 lctl set_param fail_loc=0x80000409
4730 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4731 error "direct write: rc=$?"
4732 lctl set_param fail_loc=0
4735 run_test 77d "checksum error on OST direct write ==============="
4737 test_77e() { # bug 10889
4738 $GSS && skip "could not run with gss" && return
4739 [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
4740 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE 0x408
4741 lctl set_param fail_loc=0x80000408
4743 cancel_lru_locks osc
4744 directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4745 error "direct read: rc=$?"
4746 lctl set_param fail_loc=0
4749 run_test 77e "checksum error on OST direct read ================"
4751 test_77f() { # bug 10889
4752 $GSS && skip "could not run with gss" && return
4754 for algo in $CKSUM_TYPES; do
4755 cancel_lru_locks osc
4756 set_checksum_type $algo
4757 #define OBD_FAIL_OSC_CHECKSUM_SEND 0x409
4758 lctl set_param fail_loc=0x409
4759 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
4760 error "direct write succeeded"
4761 lctl set_param fail_loc=0
4763 set_checksum_type $ORIG_CSUM_TYPE
4766 run_test 77f "repeat checksum error on write (expect error) ===="
4768 test_77g() { # bug 10889
4769 $GSS && skip "could not run with gss" && return
4770 remote_ost_nodsh && skip "remote OST with nodsh" && return
4772 [ ! -f $F77_TMP ] && setup_f77
4774 $SETSTRIPE -c 1 -i 0 $DIR/f77g
4775 #define OBD_FAIL_OST_CHECKSUM_RECEIVE 0x21a
4776 do_facet ost1 lctl set_param fail_loc=0x8000021a
4778 dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
4779 error "write error: rc=$?"
4780 do_facet ost1 lctl set_param fail_loc=0
4783 run_test 77g "checksum error on OST write ======================"
4785 test_77h() { # bug 10889
4786 $GSS && skip "could not run with gss" && return
4787 remote_ost_nodsh && skip "remote OST with nodsh" && return
4789 [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
4790 cancel_lru_locks osc
4791 #define OBD_FAIL_OST_CHECKSUM_SEND 0x21b
4792 do_facet ost1 lctl set_param fail_loc=0x8000021b
4794 cmp $F77_TMP $DIR/f77g || error "file compare failed"
4795 do_facet ost1 lctl set_param fail_loc=0
4798 run_test 77h "checksum error on OST read ======================="
4800 test_77i() { # bug 13805
4801 $GSS && skip "could not run with gss" && return
4802 #define OBD_FAIL_OSC_CONNECT_CKSUM 0x40b
4803 lctl set_param fail_loc=0x40b
4804 remount_client $MOUNT
4805 lctl set_param fail_loc=0
4806 for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4807 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4808 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4809 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
4811 remount_client $MOUNT
4813 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
4815 test_77j() { # bug 13805
4816 $GSS && skip "could not run with gss" && return
4817 #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY 0x40c
4818 lctl set_param fail_loc=0x40c
4819 remount_client $MOUNT
4820 lctl set_param fail_loc=0
4821 sleep 2 # wait async osc connect to finish
4822 for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4823 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4824 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4825 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
4827 remount_client $MOUNT
4829 run_test 77j "client only supporting ADLER32 ===================="
4831 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
4835 test_78() { # bug 10901
4836 remote_ost || { skip_env "local OST" && return; }
4839 F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
4840 echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
4841 MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
4842 echo "MemTotal: $MEMTOTAL"
4843 # reserve 256MB of memory for the kernel and other running processes,
4844 # and then take 1/2 of the remaining memory for the read/write buffers.
4845 if [ $MEMTOTAL -gt 512 ] ;then
4846 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
4848 # for those poor memory-starved high-end clusters...
4849 MEMTOTAL=$((MEMTOTAL / 2))
4851 echo "Mem to use for directio: $MEMTOTAL"
4852 [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
4853 [ $F78SIZE -gt 512 ] && F78SIZE=512
4854 [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
4855 SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
4856 echo "Smallest OST: $SMALLESTOST"
4857 [ $SMALLESTOST -lt 10240 ] && \
4858 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
4860 [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
4861 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
4863 [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
4864 echo "File size: $F78SIZE"
4865 $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
4866 for i in `seq 1 $NSEQ`
4868 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
4869 echo directIO rdwr round $i of $NSEQ
4870 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
4875 run_test 78 "handle large O_DIRECT writes correctly ============"
4877 test_79() { # bug 12743
4878 wait_delete_completed
4880 BKTOTAL=$(calc_osc_kbytes kbytestotal)
4881 BKFREE=$(calc_osc_kbytes kbytesfree)
4882 BKAVAIL=$(calc_osc_kbytes kbytesavail)
4884 STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
4885 DFTOTAL=`echo $STRING | cut -d, -f1`
4886 DFUSED=`echo $STRING | cut -d, -f2`
4887 DFAVAIL=`echo $STRING | cut -d, -f3`
4888 DFFREE=$(($DFTOTAL - $DFUSED))
4890 ALLOWANCE=$((64 * $OSTCOUNT))
4892 if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
4893 [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
4894 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
4896 if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
4897 [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
4898 error "df free($DFFREE) mismatch OST free($BKFREE)"
4900 if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
4901 [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
4902 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
4905 run_test 79 "df report consistency check ======================="
4907 test_80() { # bug 10718
4908 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
4910 local BEFORE=`date +%s`
4911 cancel_lru_locks osc
4912 local AFTER=`date +%s`
4913 local DIFF=$((AFTER-BEFORE))
4914 if [ $DIFF -gt 1 ] ; then
4915 error "elapsed for 1M@1T = $DIFF"
4920 run_test 80 "Page eviction is equally fast at high offsets too ===="
4922 test_81a() { # LU-456
4923 remote_ost_nodsh && skip "remote OST with nodsh" && return
4924 # define OBD_FAIL_OST_MAPBLK_ENOSPC 0x228
4925 # MUST OR with the OBD_FAIL_ONCE (0x80000000)
4926 do_facet ost0 lctl set_param fail_loc=0x80000228
4928 # write should trigger a retry and success
4929 $SETSTRIPE -i 0 -c 1 $DIR/$tfile
4930 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4932 if [ $RC -ne 0 ] ; then
4933 error "write should success, but failed for $RC"
4936 run_test 81a "OST should retry write when get -ENOSPC ==============="
4938 test_81b() { # LU-456
4939 remote_ost_nodsh && skip "remote OST with nodsh" && return
4940 # define OBD_FAIL_OST_MAPBLK_ENOSPC 0x228
4941 # Don't OR with the OBD_FAIL_ONCE (0x80000000)
4942 do_facet ost0 lctl set_param fail_loc=0x228
4944 # write should retry several times and return -ENOSPC finally
4945 $SETSTRIPE -i 0 -c 1 $DIR/$tfile
4946 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4949 if [ $RC -ne $ENOSPC ] ; then
4950 error "dd should fail for -ENOSPC, but succeed."
4953 run_test 81b "OST should return -ENOSPC when retry still fails ======="
4955 test_82() { # LU-1031
4956 dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
4960 multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
4962 multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
4964 kill -USR1 $MULTIPID2
4966 if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
4967 error "First grouplock does not block second one"
4969 echo "Second grouplock blocks first one"
4971 kill -USR1 $MULTIPID1
4975 run_test 82 "Basic grouplock test ==============================="
4978 [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
4980 mkdir -p $DIR/d99cvsroot
4981 chown $RUNAS_ID $DIR/d99cvsroot
4982 local oldPWD=$PWD # bug 13584, use $TMP as working dir
4985 $RUNAS cvs -d $DIR/d99cvsroot init || error
4988 run_test 99a "cvs init ========================================="
4991 [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4992 [ ! -d $DIR/d99cvsroot ] && test_99a
4994 # some versions of cvs import exit(1) when asked to import links or
4995 # files they can't read. ignore those files.
4996 TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
4997 ! -perm +4 -printf '-I %f\n')
4998 $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
4999 d99reposname vtag rtag
5001 run_test 99b "cvs import ======================================="
5004 [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5005 [ ! -d $DIR/d99cvsroot ] && test_99b
5007 mkdir -p $DIR/d99reposname
5008 chown $RUNAS_ID $DIR/d99reposname
5009 $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5011 run_test 99c "cvs checkout ====================================="
5014 [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5015 [ ! -d $DIR/d99cvsroot ] && test_99c
5016 cd $DIR/d99reposname
5018 $RUNAS cvs add -m 'addmsg' foo99
5020 run_test 99d "cvs add =========================================="
5023 [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5024 [ ! -d $DIR/d99cvsroot ] && test_99c
5025 cd $DIR/d99reposname
5028 run_test 99e "cvs update ======================================="
5031 [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5032 [ ! -d $DIR/d99cvsroot ] && test_99d
5033 cd $DIR/d99reposname
5034 $RUNAS cvs commit -m 'nomsg' foo99
5035 rm -fr $DIR/d99cvsroot
5037 run_test 99f "cvs commit ======================================="
5040 [ "$NETTYPE" = tcp ] || \
5041 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5044 remote_ost_nodsh && skip "remote OST with nodsh" && return
5045 remote_mds_nodsh && skip "remote MDS with nodsh" && return
5047 { skip "useless for local single node setup" && return; }
5049 netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5050 [ "$PROT" != "tcp" ] && continue
5051 RPORT=$(echo $REMOTE | cut -d: -f2)
5052 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5055 LPORT=`echo $LOCAL | cut -d: -f2`
5056 if [ $LPORT -ge 1024 ]; then
5057 echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5059 error_exit "local: $LPORT > 1024, remote: $RPORT"
5062 [ "$rc" = 0 ] || error_exit "privileged port not found" )
5064 run_test 100 "check local port using privileged port ==========="
5066 function get_named_value()
5075 echo $line | sed "s/^$tag[ ]*//"
5082 export CACHE_MAX=`$LCTL get_param -n llite.*.max_cached_mb | head -n 1`
5084 $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5092 [ "$CPU" = "UML" ] && nreads=1000
5093 local cache_limit=32
5095 $LCTL set_param -n osc.*-osc*.rpc_stats 0
5096 trap cleanup_101a EXIT
5097 $LCTL set_param -n llite.*.read_ahead_stats 0
5098 $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5101 # randomly read 10000 of 64K chunks from file 3x 32MB in size
5103 echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5104 $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5107 for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5108 get_named_value 'read but discarded' | cut -d" " -f1`; do
5109 discard=$(($discard + $s))
5113 if [ $(($discard * 10)) -gt $nreads ] ;then
5114 $LCTL get_param osc.*-osc*.rpc_stats
5115 $LCTL get_param llite.*.read_ahead_stats
5116 error "too many ($discard) discarded pages"
5118 rm -f $DIR/$tfile || true
5120 run_test 101a "check read-ahead for random reads ================"
5125 STRIPE_COUNT=$OSTCOUNT
5128 local list=$(comma_list $(osts_nodes))
5129 do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable=0
5130 do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable=0
5132 trap cleanup_test101bc EXIT
5133 # prepare the read-ahead file
5134 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5136 dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5139 cleanup_test101bc() {
5144 local list=$(comma_list $(osts_nodes))
5145 do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable=1
5146 do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable=1
5150 awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5155 local STRIPE_SIZE=1048576
5156 local RA_INC=1048576
5157 local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5158 local FILE_LENGTH=$((64*100))
5159 local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5160 (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5161 DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5162 get_named_value 'read but discarded' | \
5163 cut -d" " -f1 | calc_total`
5164 if [ $DISCARD -gt $discard_limit ]; then
5165 $LCTL get_param llite.*.read_ahead_stats
5166 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5168 echo "Read-ahead success for size ${READ_SIZE}"
5173 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5174 local STRIPE_SIZE=1048576
5175 local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5176 local FILE_LENGTH=$((STRIPE_SIZE*100))
5177 local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5178 # prepare the read-ahead file
5180 cancel_lru_locks osc
5181 for BIDX in 2 4 8 16 32 64 128 256
5183 local BSIZE=$((BIDX*4096))
5184 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5185 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5186 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5187 $LCTL set_param -n llite.*.read_ahead_stats 0
5188 $READS -f $DIR/$tfile -l $STRIDE_LENGTH -o $OFFSET \
5189 -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5190 cancel_lru_locks osc
5196 run_test 101b "check stride-io mode read-ahead ================="
5199 local STRIPE_SIZE=1048576
5200 local FILE_LENGTH=$((STRIPE_SIZE*100))
5206 cancel_lru_locks osc
5207 $LCTL set_param osc.*.rpc_stats 0
5208 $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5209 for osc in $($LCTL get_param -N osc.*); do
5210 if [ "$osc" == "osc.num_refs" ]; then
5214 local lines=$($LCTL get_param -n ${osc}.rpc_stats | wc | awk '{print $1}')
5215 if [ $lines -le 20 ]; then
5219 local rpc4k=$($LCTL get_param -n ${osc}.rpc_stats |
5220 awk '$1 == "1:" { print $2; exit; }')
5221 local rpc8k=$($LCTL get_param -n ${osc}.rpc_stats |
5222 awk '$1 == "2:" { print $2; exit; }')
5223 local rpc16k=$($LCTL get_param -n ${osc}.rpc_stats |
5224 awk '$1 == "4:" { print $2; exit; }')
5225 local rpc32k=$($LCTL get_param -n ${osc}.rpc_stats |
5226 awk '$1 == "8:" { print $2; exit; }')
5228 [ $rpc4k != 0 ] && error "Small 4k read IO ${rpc4k}!"
5229 [ $rpc8k != 0 ] && error "Small 8k read IO ${rpc8k}!"
5230 [ $rpc16k != 0 ] && error "Small 16k read IO ${rpc16k}!"
5231 [ $rpc32k != 0 ] && error "Small 32k read IO ${rpc32k}!"
5232 echo "${osc} rpc check passed!"
5237 run_test 101c "check stripe_size aligned read-ahead ================="
5240 $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5241 $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5245 local file=$DIR/$tfile
5246 local size=${FILESIZE_101c:-500}
5247 local ra_MB=${READAHEAD_MB:-40}
5249 local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5250 [ $space -gt $((size / 1024)) ] ||
5251 { skip "Need free space ${size}M, have $space" && return; }
5253 echo Creating ${size}M test file $file
5254 dd if=/dev/zero of=$file bs=1M count=$size
5255 echo Cancel LRU locks on lustre client to flush the client cache
5256 cancel_lru_locks osc
5258 echo Disable read-ahead
5259 local old_READAHEAD=$(set_read_ahead 0)
5261 echo Reading the test file $file with read-ahead disabled
5262 time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5264 echo Cancel LRU locks on lustre client to flush the client cache
5265 cancel_lru_locks osc
5266 echo Enable read-ahead with ${ra_MB}MB
5267 set_read_ahead $ra_MB
5269 echo Reading the test file $file with read-ahead enabled
5270 time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5272 echo read-ahead disabled time read $time_ra_OFF
5273 echo read-ahead enabled time read $time_ra_ON
5275 set_read_ahead $old_READAHEAD
5277 wait_delete_completed
5279 [ $time_ra_ON -lt $time_ra_OFF ] ||
5280 error "read-ahead enabled time read (${time_ra_ON}s) is more than
5281 read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5283 run_test 101d "file read with and without read-ahead enabled ================="
5286 local file=$DIR/$tfile
5291 local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5292 local need_space=$((count * size))
5293 [ $space -gt $need_space ] ||
5294 { skip_env "Need free space $need_space, have $space" && return; }
5296 echo Creating $count ${size}K test files
5297 for ((i = 0; i < $count; i++)); do
5298 dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5301 echo Cancel LRU locks on lustre client to flush the client cache
5302 cancel_lru_locks osc
5304 echo Reset readahead stats
5305 $LCTL set_param -n llite.*.read_ahead_stats 0
5307 for ((i = 0; i < $count; i++)); do
5308 dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5311 local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5312 get_named_value 'misses' | cut -d" " -f1 | calc_total)
5314 for ((i = 0; i < $count; i++)); do
5315 rm -rf ${file}_${i} 2>/dev/null
5318 #10000 means 20% reads are missing in readahead
5319 [ $miss -lt 10000 ] || error "misses too much for small reads"
5321 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5323 cleanup_test101f() {
5325 $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5326 rm -rf $DIR/$tfile 2>/dev/null
5330 local file=$DIR/$tfile
5333 MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5334 $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5335 dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5336 trap cleanup_test101f EXIT
5338 echo Cancel LRU locks on lustre client to flush the client cache
5339 cancel_lru_locks osc
5341 echo Reset readahead stats
5342 $LCTL set_param -n llite.*.read_ahead_stats 0
5343 # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
5344 # readahead should read in 2M file on second read, so only miss
5346 echo Random 4K reads on 2M file for 1000 times
5347 $READS -f $file -s 2097152 -b 4096 -n $nreads
5349 echo checking missing pages
5350 local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
5351 get_named_value 'misses' | cut -d" " -f1 | calc_total)
5353 [ $miss -lt 3 ] || error "misses too much pages!"
5356 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
5360 chown $RUNAS_ID $DIR/$tdir
5363 STRIPE_COUNT=$OSTCOUNT
5364 [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
5366 trap cleanup_test102 EXIT
5368 $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
5370 for num in 1 2 3 4; do
5371 for count in $(seq 1 $STRIPE_COUNT); do
5372 for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
5373 local size=`expr $STRIPE_SIZE \* $num`
5374 local file=file"$num-$idx-$count"
5375 $1 $SETSTRIPE -S $size -i $idx -c $count $file
5381 $1 $TAR cf $TMP/f102.tar $tdir --xattrs
5387 rm -rf $DIR/d0.sanity/d102
5391 local testfile=$DIR/xattr_testfile
5395 [ "$UID" != 0 ] && skip_env "must run as root" && return
5396 [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] &&
5397 skip_env "must have user_xattr" && return
5399 [ -z "$(which setfattr 2>/dev/null)" ] &&
5400 skip_env "could not find setfattr" && return
5402 echo "set/get xattr..."
5403 setfattr -n trusted.name1 -v value1 $testfile || error
5404 getfattr -n trusted.name1 $testfile 2> /dev/null |
5405 grep "trusted.name1=.value1" ||
5406 error "$testfile missing trusted.name1=value1"
5408 setfattr -n user.author1 -v author1 $testfile || error
5409 getfattr -n user.author1 $testfile 2> /dev/null |
5410 grep "user.author1=.author1" ||
5411 error "$testfile missing trusted.author1=author1"
5414 setfattr -n trusted.name2 -v value2 $testfile ||
5415 error "$testfile unable to set trusted.name2"
5416 setfattr -n trusted.name3 -v value3 $testfile ||
5417 error "$testfile unable to set trusted.name3"
5418 [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
5419 grep "trusted.name" | wc -l) -eq 3 ] ||
5420 error "$testfile missing 3 trusted.name xattrs"
5422 setfattr -n user.author2 -v author2 $testfile ||
5423 error "$testfile unable to set user.author2"
5424 setfattr -n user.author3 -v author3 $testfile ||
5425 error "$testfile unable to set user.author3"
5426 [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
5427 grep "user.author" | wc -l) -eq 3 ] ||
5428 error "$testfile missing 3 user.author xattrs"
5430 echo "remove xattr..."
5431 setfattr -x trusted.name1 $testfile ||
5432 error "$testfile error deleting trusted.name1"
5433 getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
5434 error "$testfile did not delete trusted.name1 xattr"
5436 setfattr -x user.author1 $testfile ||
5437 error "$testfile error deleting user.author1"
5438 getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
5439 error "$testfile did not delete trusted.name1 xattr"
5441 # b10667: setting lustre special xattr be silently discarded
5442 echo "set lustre special xattr ..."
5443 setfattr -n "trusted.lov" -v "invalid value" $testfile ||
5444 error "$testfile allowed setting trusted.lov"
5446 run_test 102a "user xattr test =================================="
5449 # b10930: get/set/list trusted.lov xattr
5450 echo "get/set/list trusted.lov xattr ..."
5451 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5452 local testfile=$DIR/$tfile
5453 $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5454 error "setstripe failed"
5455 local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
5456 error "getstripe failed"
5457 getfattr -d -m "^trusted" $testfile 2> /dev/null | \
5458 grep "trusted.lov" || error "can't get trusted.lov from $testfile"
5460 local testfile2=${testfile}2
5461 local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
5462 grep "trusted.lov" |sed -e 's/[^=]\+=//'`
5465 setfattr -n trusted.lov -v $value $testfile2
5466 local stripe_size=$($GETSTRIPE -S $testfile2)
5467 local stripe_count=$($GETSTRIPE -c $testfile2)
5468 [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5469 [ $stripe_count -eq $STRIPECOUNT ] ||
5470 error "stripe count $stripe_count != $STRIPECOUNT"
5473 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
5476 # b10930: get/set/list lustre.lov xattr
5477 echo "get/set/list lustre.lov xattr ..."
5478 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5480 chown $RUNAS_ID $DIR/$tdir
5481 local testfile=$DIR/$tdir/$tfile
5482 $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5483 error "setstripe failed"
5484 local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
5485 error "getstripe failed"
5486 $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
5487 grep "lustre.lov" || error "can't get lustre.lov from $testfile"
5489 local testfile2=${testfile}2
5490 local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
5491 grep "lustre.lov" |sed -e 's/[^=]\+=//' `
5493 $RUNAS $MCREATE $testfile2
5494 $RUNAS setfattr -n lustre.lov -v $value $testfile2
5495 local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
5496 local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
5497 [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5498 [ $stripe_count -eq $STRIPECOUNT ] ||
5499 error "stripe count $stripe_count != $STRIPECOUNT"
5501 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
5503 compare_stripe_info1() {
5504 local stripe_index_all_zero=true
5506 for num in 1 2 3 4; do
5507 for count in $(seq 1 $STRIPE_COUNT); do
5508 for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
5509 local size=$((STRIPE_SIZE * num))
5510 local file=file"$num-$offset-$count"
5511 stripe_size=$(lfs getstripe -S $PWD/$file)
5512 [ $stripe_size -ne $size ] &&
5513 error "$file: size $stripe_size != $size"
5514 stripe_count=$(lfs getstripe -c $PWD/$file)
5515 # allow fewer stripes to be created, ORI-601
5516 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
5517 error "$file: count $stripe_count != $count"
5518 stripe_index=$(lfs getstripe -i $PWD/$file)
5519 [ $stripe_index -ne 0 ] &&
5520 stripe_index_all_zero=false
5524 $stripe_index_all_zero &&
5525 error "all files are being extracted starting from OST index 0"
5530 [ -n "$(which tar 2>/dev/null)" ] &&
5531 strings $(which tar) | grep -q "lustre" && echo tar
5535 # b10930: tar test for trusted.lov xattr
5536 TAR=$(find_lustre_tar)
5537 [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5538 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5541 $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
5543 compare_stripe_info1
5545 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
5548 # b10930: tar test for trusted.lov xattr
5549 TAR=$(find_lustre_tar)
5550 [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5551 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5555 $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
5557 compare_stripe_info1
5559 run_test 102f "tar copy files, not keep osts ==========="
5562 local xsize=${1:-1024} # in bytes
5563 local file=$DIR/$tfile
5565 [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
5566 skip "must have user_xattr" && return 0
5567 [ -z "$(which setfattr 2>/dev/null)" ] &&
5568 skip_env "could not find setfattr" && return 0
5569 [ -z "$(which getfattr 2>/dev/null)" ] &&
5570 skip_env "could not find getfattr" && return 0
5574 local value="$(generate_string $xsize)"
5576 local xbig=trusted.big
5577 log "save $xbig on $file"
5578 setfattr -n $xbig -v $value $file ||
5579 error "saving $xbig on $file failed"
5581 local orig=$(get_xattr_value $xbig $file)
5582 [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
5584 local xsml=trusted.sml
5585 log "save $xsml on $file"
5586 setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
5588 local new=$(get_xattr_value $xbig $file)
5589 [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
5591 log "grow $xsml on $file"
5592 setfattr -n $xsml -v "$value" $file ||
5593 error "growing $xsml on $file failed"
5595 new=$(get_xattr_value $xbig $file)
5596 [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
5597 log "$xbig still valid after growing $xsml"
5602 test_102h() { # bug 15777
5605 run_test 102h "grow xattr from inside inode to external block"
5608 large_xattr_enabled || { skip "large_xattr disabled" && return; }
5609 grow_xattr $(max_xattr_size)
5611 run_test 102ha "grow xattr from inside inode to external inode"
5613 test_102i() { # bug 17038
5615 ln -s $DIR/$tfile $DIR/${tfile}link
5616 getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
5617 getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 | grep -i "no such attr" || error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
5618 rm -f $DIR/$tfile $DIR/${tfile}link
5620 run_test 102i "lgetxattr test on symbolic link ============"
5623 TAR=$(find_lustre_tar)
5624 [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5625 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5626 setup_test102 "$RUNAS"
5628 chown $RUNAS_ID $DIR/d102j
5629 $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
5631 compare_stripe_info1 "$RUNAS"
5633 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
5637 # b22187 just check that does not crash for regular file.
5638 setfattr -n trusted.lov $DIR/$tfile
5639 # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
5640 local test_kdir=$DIR/d102k
5642 local default_size=`$GETSTRIPE -S $test_kdir`
5643 local default_count=`$GETSTRIPE -c $test_kdir`
5644 local default_offset=`$GETSTRIPE -i $test_kdir`
5645 $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $test_kdir ||
5646 error 'dir setstripe failed'
5647 setfattr -n trusted.lov $test_kdir
5648 local stripe_size=`$GETSTRIPE -S $test_kdir`
5649 local stripe_count=`$GETSTRIPE -c $test_kdir`
5650 local stripe_offset=`$GETSTRIPE -i $test_kdir`
5651 [ $stripe_size -eq $default_size ] ||
5652 error "stripe size $stripe_size != $default_size"
5653 [ $stripe_count -eq $default_count ] ||
5654 error "stripe count $stripe_count != $default_count"
5655 [ $stripe_offset -eq $default_offset ] ||
5656 error "stripe offset $stripe_offset != $default_offset"
5657 rm -rf $DIR/$tfile $test_kdir
5659 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
5662 # LU-532 trusted. xattr is invisible to non-root
5663 local testfile=$DIR/$tfile
5667 echo "listxattr as user..."
5668 chown $RUNAS_ID $testfile
5669 $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
5670 grep -q "trusted" &&
5671 error "$testfile trusted xattrs are user visible"
5675 run_test 102l "listxattr filter test =================================="
5681 $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
5686 [ "$UID" != 0 ] && skip_env "must run as root" && return
5687 [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
5688 [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
5689 $GSS && skip "could not run under gss" && return
5691 declare -a identity_old
5693 for num in `seq $MDSCOUNT`; do
5694 switch_identity $num true || identity_old[$num]=$?
5701 echo "performing cp ..."
5702 run_acl_subtest cp || error
5703 echo "performing getfacl-noacl..."
5704 run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
5705 echo "performing misc..."
5706 run_acl_subtest misc || error "misc test failed"
5707 echo "performing permissions..."
5708 run_acl_subtest permissions || error "permissions failed"
5709 echo "performing setfacl..."
5710 run_acl_subtest setfacl || error "setfacl test failed"
5712 # inheritance test got from HP
5713 echo "performing inheritance..."
5714 cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
5715 chmod +x make-tree || error "chmod +x failed"
5716 run_acl_subtest inheritance || error "inheritance test failed"
5722 for num in `seq $MDSCOUNT`; do
5723 if [ "${identity_old[$num]}" = 1 ]; then
5724 switch_identity $num false || identity_old[$num]=$?
5728 run_test 103 "acl test ========================================="
5732 lfs df || error "lfs df failed"
5733 lfs df -ih || error "lfs df -ih failed"
5734 lfs df -h $DIR || error "lfs df -h $DIR failed"
5735 lfs df -i $DIR || error "lfs df -i $DIR failed"
5736 lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
5737 lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
5739 OSC=`lctl dl |grep OST0000-osc-[^M] |awk '{print $4}'`
5740 lctl --device %$OSC deactivate
5741 lfs df || error "lfs df with deactivated OSC failed"
5742 lctl --device %$OSC activate
5743 # wait the osc back to normal
5744 wait_osc_import_state client ost FULL
5746 lfs df || error "lfs df with reactivated OSC failed"
5749 run_test 104a "lfs df [-ih] [path] test ========================="
5752 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5754 denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
5755 if [ $denied_cnt -ne 0 ];
5757 error "lfs check servers test failed"
5760 run_test 104b "$RUNAS lfs check servers test ===================="
5763 # doesn't work on 2.4 kernels
5765 if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5767 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
5769 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
5773 run_test 105a "flock when mounted without -o flock test ========"
5777 if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5779 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
5781 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
5785 run_test 105b "fcntl when mounted without -o flock test ========"
5789 if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5791 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
5793 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
5797 run_test 105c "lockf when mounted without -o flock test ========"
5799 test_105d() { # bug 15924
5801 [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5802 skip "mount w/o flock enabled" && return
5803 #define OBD_FAIL_LDLM_CP_CB_WAIT 0x315
5804 $LCTL set_param fail_loc=0x80000315
5805 flocks_test 2 $DIR/$tdir
5807 run_test 105d "flock race (should not freeze) ========"
5809 test_105e() { # bug 22660 && 22040
5810 [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5811 skip "mount w/o flock enabled" && return
5813 flocks_test 3 $DIR/$tfile
5815 run_test 105e "Two conflicting flocks from same process ======="
5817 test_106() { #bug 10921
5819 $DIR/$tdir && error "exec $DIR/$tdir succeeded"
5820 chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
5822 run_test 106 "attempt exec of dir followed by chown of that dir"
5831 local save_pattern=$(sysctl -n kernel.core_pattern)
5832 local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
5833 sysctl -w kernel.core_pattern=$file
5834 sysctl -w kernel.core_uses_pid=0
5842 kill -s 11 $SLEEPPID
5844 if [ -e $file ]; then
5845 size=`stat -c%s $file`
5846 [ $size -eq 0 ] && error "Fail to create core file $file"
5848 error "Fail to create core file $file"
5851 sysctl -w kernel.core_pattern=$save_pattern
5852 sysctl -w kernel.core_uses_pid=$save_uses_pid
5855 run_test 107 "Coredump on SIG"
5859 mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
5860 mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
5861 touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
5862 touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
5867 run_test 110 "filename length checking"
5870 OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5872 [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
5874 echo "Starting with $OSTIO_pre threads"
5877 NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5878 [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
5879 echo "$NUMTEST creates/unlinks"
5881 createmany -o $DIR/$tdir/$tfile $NUMTEST
5882 unlinkmany $DIR/$tdir/$tfile $NUMTEST
5884 OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5887 # don't return an error
5888 [ $OSTIO_post == $OSTIO_pre ] && echo \
5889 "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
5890 echo "This may be fine, depending on what ran before this test" &&
5891 echo "and how fast this system is." && return
5893 echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
5895 run_test 115 "verify dynamic thread creation===================="
5898 wait_delete_completed
5899 AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
5900 echo OST kbytes available: ${AVAIL[@]}
5901 MAXI=0; MAXV=${AVAIL[0]}
5902 MINI=0; MINV=${AVAIL[0]}
5903 for ((i = 0; i < ${#AVAIL[@]}; i++)); do
5904 #echo OST $i: ${AVAIL[i]}kb
5905 if [ ${AVAIL[i]} -gt $MAXV ]; then
5906 MAXV=${AVAIL[i]}; MAXI=$i
5908 if [ ${AVAIL[i]} -lt $MINV ]; then
5909 MINV=${AVAIL[i]}; MINI=$i
5912 echo Min free space: OST $MINI: $MINV
5913 echo Max free space: OST $MAXI: $MAXV
5917 [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
5919 echo -n "Free space priority "
5920 lctl get_param -n lov.*-clilov-*.qos_prio_free
5923 [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
5926 # generate uneven OSTs
5927 mkdir -p $DIR/$tdir/OST${MINI}
5930 echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
5931 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
5933 while [ $FILL -gt 0 ]; do
5935 dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
5936 FILL=$(($FILL - 2048))
5944 DIFF=$(($MAXV - $MINV))
5945 DIFF2=$(($DIFF * 100 / $MINV))
5946 echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
5947 if [ $DIFF2 -gt 20 ]; then
5950 echo "failed - QOS mode won't be used"
5951 error_ignore "QOS imbalance criteria not met"
5955 MINI1=$MINI; MINV1=$MINV
5956 MAXI1=$MAXI; MAXV1=$MAXV
5958 # now fill using QOS
5959 echo writing a bunch of files to QOS-assigned OSTs
5960 $SETSTRIPE -c 1 $DIR/$tdir
5962 while [ $FILL -gt 0 ]; do
5964 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
5965 FILL=$(($FILL - 200))
5968 echo "wrote $i 200k files"
5972 echo "Note: free space may not be updated, so measurements might be off"
5974 DIFF2=$(($MAXV - $MINV))
5975 echo "free space delta: orig $DIFF final $DIFF2"
5976 [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
5977 DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
5978 echo "Wrote $DIFF to smaller OST $MINI1"
5979 DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
5980 echo "Wrote $DIFF2 to larger OST $MAXI1"
5981 [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
5983 # Figure out which files were written where
5984 UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5985 awk '/'$MINI1': / {print $2; exit}')
5987 MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5988 echo "$MINC files created on smaller OST $MINI1"
5989 UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5990 awk '/'$MAXI1': / {print $2; exit}')
5992 MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5993 echo "$MAXC files created on larger OST $MAXI1"
5994 [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
5995 [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
5999 run_test 116 "stripe QOS: free space balance ==================="
6001 test_117() # bug 10891
6003 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6004 #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6005 lctl set_param fail_loc=0x21e
6006 > $DIR/$tfile || error "truncate failed"
6007 lctl set_param fail_loc=0
6008 echo "Truncate succeeded."
6011 run_test 117 "verify fsfilt_extend =========="
6013 export OLD_RESENDCOUNT=""
6014 set_resend_count () {
6015 local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6016 OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6017 lctl set_param -n $PROC_RESENDCOUNT $1
6018 echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6021 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
6023 # Reset async IO behavior after error case
6025 FILE=$DIR/reset_async
6027 # Ensure all OSCs are cleared
6028 $SETSTRIPE -c -1 $FILE
6029 dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6034 test_118a() #bug 11710
6038 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6039 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6040 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6042 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6043 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6048 run_test 118a "verify O_SYNC works =========="
6052 remote_ost_nodsh && skip "remote OST with nodsh" && return
6056 #define OBD_FAIL_OST_ENOENT 0x217
6057 set_nodes_failloc "$(osts_nodes)" 0x217
6058 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6060 set_nodes_failloc "$(osts_nodes)" 0
6061 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6062 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6065 if [[ $RC -eq 0 ]]; then
6066 error "Must return error due to dropped pages, rc=$RC"
6070 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6071 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6075 echo "Dirty pages not leaked on ENOENT"
6077 # Due to the above error the OSC will issue all RPCs syncronously
6078 # until a subsequent RPC completes successfully without error.
6079 $MULTIOP $DIR/$tfile Ow4096yc
6084 run_test 118b "Reclaim dirty pages on fatal error =========="
6088 remote_ost_nodsh && skip "remote OST with nodsh" && return
6092 #define OBD_FAIL_OST_EROFS 0x216
6093 set_nodes_failloc "$(osts_nodes)" 0x216
6095 # multiop should block due to fsync until pages are written
6096 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6100 if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6101 error "Multiop failed to block on fsync, pid=$MULTIPID"
6104 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6106 if [[ $WRITEBACK -eq 0 ]]; then
6107 error "No page in writeback, writeback=$WRITEBACK"
6110 set_nodes_failloc "$(osts_nodes)" 0
6113 if [[ $RC -ne 0 ]]; then
6114 error "Multiop fsync failed, rc=$RC"
6117 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6118 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6120 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6121 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6125 echo "Dirty pages flushed via fsync on EROFS"
6128 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6132 remote_ost_nodsh && skip "remote OST with nodsh" && return
6136 #define OBD_FAIL_OST_BRW_PAUSE_BULK
6137 set_nodes_failloc "$(osts_nodes)" 0x214
6138 # multiop should block due to fsync until pages are written
6139 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6143 if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6144 error "Multiop failed to block on fsync, pid=$MULTIPID"
6147 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6149 if [[ $WRITEBACK -eq 0 ]]; then
6150 error "No page in writeback, writeback=$WRITEBACK"
6153 wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6154 set_nodes_failloc "$(osts_nodes)" 0
6156 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6157 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6159 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6160 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6164 echo "Dirty pages gaurenteed flushed via fsync"
6167 run_test 118d "Fsync validation inject a delay of the bulk =========="
6172 #define OBD_FAIL_OSC_BRW_PREP_REQ2 0x40a
6173 lctl set_param fail_loc=0x8000040a
6175 # Should simulate EINVAL error which is fatal
6176 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6178 if [[ $RC -eq 0 ]]; then
6179 error "Must return error due to dropped pages, rc=$RC"
6182 lctl set_param fail_loc=0x0
6184 LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6185 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6186 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6188 if [[ $LOCKED -ne 0 ]]; then
6189 error "Locked pages remain in cache, locked=$LOCKED"
6192 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6193 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6197 echo "No pages locked after fsync"
6202 run_test 118f "Simulate unrecoverable OSC side error =========="
6207 #define OBD_FAIL_OSC_BRW_PREP_REQ 0x406
6208 lctl set_param fail_loc=0x406
6210 # simulate local -ENOMEM
6211 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6214 lctl set_param fail_loc=0
6215 if [[ $RC -eq 0 ]]; then
6216 error "Must return error due to dropped pages, rc=$RC"
6219 LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6220 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6221 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6223 if [[ $LOCKED -ne 0 ]]; then
6224 error "Locked pages remain in cache, locked=$LOCKED"
6227 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6228 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6232 echo "No pages locked after fsync"
6237 run_test 118g "Don't stay in wait if we got local -ENOMEM =========="
6240 remote_ost_nodsh && skip "remote OST with nodsh" && return
6244 #define OBD_FAIL_OST_BRW_WRITE_BULK 0x20e
6245 set_nodes_failloc "$(osts_nodes)" 0x20e
6246 # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6247 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6250 set_nodes_failloc "$(osts_nodes)" 0
6251 if [[ $RC -eq 0 ]]; then
6252 error "Must return error due to dropped pages, rc=$RC"
6255 LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6256 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6257 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6259 if [[ $LOCKED -ne 0 ]]; then
6260 error "Locked pages remain in cache, locked=$LOCKED"
6263 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6264 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6268 echo "No pages locked after fsync"
6272 run_test 118h "Verify timeout in handling recoverables errors =========="
6274 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6277 remote_ost_nodsh && skip "remote OST with nodsh" && return
6281 #define OBD_FAIL_OST_BRW_WRITE_BULK 0x20e
6282 set_nodes_failloc "$(osts_nodes)" 0x20e
6284 # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6285 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6288 set_nodes_failloc "$(osts_nodes)" 0
6292 if [[ $RC -ne 0 ]]; then
6293 error "got error, but should be not, rc=$RC"
6296 LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6297 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6298 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6299 if [[ $LOCKED -ne 0 ]]; then
6300 error "Locked pages remain in cache, locked=$LOCKED"
6303 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6304 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6308 echo "No pages locked after fsync"
6312 run_test 118i "Fix error before timeout in recoverable error =========="
6314 [ "$SLOW" = "no" ] && set_resend_count 4
6317 remote_ost_nodsh && skip "remote OST with nodsh" && return
6321 #define OBD_FAIL_OST_BRW_WRITE_BULK2 0x220
6322 set_nodes_failloc "$(osts_nodes)" 0x220
6324 # return -EIO from OST
6325 $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6327 set_nodes_failloc "$(osts_nodes)" 0x0
6328 if [[ $RC -eq 0 ]]; then
6329 error "Must return error due to dropped pages, rc=$RC"
6332 LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6333 DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6334 WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6335 if [[ $LOCKED -ne 0 ]]; then
6336 error "Locked pages remain in cache, locked=$LOCKED"
6339 # in recoverable error on OST we want resend and stay until it finished
6340 if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6341 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6345 echo "No pages locked after fsync"
6349 run_test 118j "Simulate unrecoverable OST side error =========="
6353 remote_ost_nodsh && skip "remote OSTs with nodsh" && return
6355 #define OBD_FAIL_OST_BRW_WRITE_BULK 0x20e
6356 set_nodes_failloc "$(osts_nodes)" 0x20e
6359 for ((i=0;i<10;i++)); do
6360 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
6361 error "dd to $DIR/$tdir/$tfile-$i failed" )&
6368 set_nodes_failloc "$(osts_nodes)" 0
6371 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
6377 $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
6380 run_test 118l "fsync dir ========="
6382 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6384 test_119a() # bug 11737
6386 BSIZE=$((512 * 1024))
6387 directio write $DIR/$tfile 0 1 $BSIZE
6388 # We ask to read two blocks, which is more than a file size.
6389 # directio will indicate an error when requested and actual
6390 # sizes aren't equeal (a normal situation in this case) and
6391 # print actual read amount.
6392 NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
6393 if [ "$NOB" != "$BSIZE" ]; then
6394 error "read $NOB bytes instead of $BSIZE"
6398 run_test 119a "Short directIO read must return actual read amount"
6400 test_119b() # bug 11737
6402 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6404 $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
6405 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
6407 $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
6408 error "direct read failed"
6411 run_test 119b "Sparse directIO read must return actual read amount"
6413 test_119c() # bug 13099
6416 directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
6417 directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
6420 run_test 119c "Testing for direct read hitting hole"
6422 test_119d() # bug 15950
6424 MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
6425 $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
6427 $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
6428 $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
6429 #define OBD_FAIL_OSC_DIO_PAUSE 0x40d
6430 lctl set_param fail_loc=0x40d
6431 $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
6434 cat $DIR/$tfile > /dev/null &
6435 lctl set_param fail_loc=0
6438 log "the DIO writes have completed, now wait for the reads (should not block very long)"
6440 [ -n "`ps h -p $pid_reads -o comm`" ] && \
6441 error "the read rpcs have not completed in 2s"
6443 $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
6445 run_test 119d "The DIO path should try to send a new rpc once one is completed"
6449 [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6450 skip "no early lock cancel on server" && return 0
6451 lru_resize_disable mdc
6452 lru_resize_disable osc
6453 cancel_lru_locks mdc
6454 stat $DIR/$tdir > /dev/null
6455 can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6456 blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6458 can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6459 blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6460 [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6461 [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6462 lru_resize_enable mdc
6463 lru_resize_enable osc
6465 run_test 120a "Early Lock Cancel: mkdir test"
6469 [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6470 skip "no early lock cancel on server" && return 0
6471 lru_resize_disable mdc
6472 lru_resize_disable osc
6473 cancel_lru_locks mdc
6474 stat $DIR/$tdir > /dev/null
6475 can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6476 blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6478 can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6479 blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6480 [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6481 [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6482 lru_resize_enable mdc
6483 lru_resize_enable osc
6485 run_test 120b "Early Lock Cancel: create test"
6489 [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6490 skip "no early lock cancel on server" && return 0
6491 lru_resize_disable mdc
6492 lru_resize_disable osc
6493 mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
6494 touch $DIR/$tdir/d1/f1
6495 cancel_lru_locks mdc
6496 stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
6497 can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6498 blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6499 ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
6500 can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6501 blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6502 [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6503 [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6504 lru_resize_enable mdc
6505 lru_resize_enable osc
6507 run_test 120c "Early Lock Cancel: link test"
6511 [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6512 skip "no early lock cancel on server" && return 0
6513 lru_resize_disable mdc
6514 lru_resize_disable osc
6516 cancel_lru_locks mdc
6517 stat $DIR/$tdir > /dev/null
6518 can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6519 blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6520 chmod a+x $DIR/$tdir
6521 can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6522 blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6523 [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6524 [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6525 lru_resize_enable mdc
6526 lru_resize_enable osc
6528 run_test 120d "Early Lock Cancel: setattr test"
6532 [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6533 skip "no early lock cancel on server" && return 0
6534 lru_resize_disable mdc
6535 lru_resize_disable osc
6536 dd if=/dev/zero of=$DIR/$tdir/f1 count=1
6537 cancel_lru_locks mdc
6538 cancel_lru_locks osc
6539 dd if=$DIR/$tdir/f1 of=/dev/null
6540 stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
6541 can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6542 awk '/ldlm_cancel/ {print $2}'`
6543 blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6544 awk '/ldlm_bl_callback/ {print $2}'`
6545 unlink $DIR/$tdir/f1
6546 can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6547 awk '/ldlm_cancel/ {print $2}'`
6548 blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6549 awk '/ldlm_bl_callback/ {print $2}'`
6550 [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6551 [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6552 lru_resize_enable mdc
6553 lru_resize_enable osc
6555 run_test 120e "Early Lock Cancel: unlink test"
6558 [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6559 skip "no early lock cancel on server" && return 0
6561 lru_resize_disable mdc
6562 lru_resize_disable osc
6563 mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
6564 dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
6565 dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
6566 cancel_lru_locks mdc
6567 cancel_lru_locks osc
6568 dd if=$DIR/$tdir/d1/f1 of=/dev/null
6569 dd if=$DIR/$tdir/d2/f2 of=/dev/null
6570 stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
6571 can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6572 awk '/ldlm_cancel/ {print $2}'`
6573 blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6574 awk '/ldlm_bl_callback/ {print $2}'`
6575 mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
6576 can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6577 awk '/ldlm_cancel/ {print $2}'`
6578 blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6579 awk '/ldlm_bl_callback/ {print $2}'`
6580 [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6581 [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6582 lru_resize_enable mdc
6583 lru_resize_enable osc
6585 run_test 120f "Early Lock Cancel: rename test"
6588 [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6589 skip "no early lock cancel on server" && return 0
6590 lru_resize_disable mdc
6591 lru_resize_disable osc
6593 echo create $count files
6595 cancel_lru_locks mdc
6596 cancel_lru_locks osc
6599 can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6600 awk '/ldlm_cancel/ {print $2}'`
6601 blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6602 awk '/ldlm_bl_callback/ {print $2}'`
6603 createmany -o $DIR/$tdir/f $count
6605 can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6606 awk '/ldlm_cancel/ {print $2}'`
6607 blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6608 awk '/ldlm_bl_callback/ {print $2}'`
6610 echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
6611 echo rm $count files
6614 can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6615 awk '/ldlm_cancel/ {print $2}'`
6616 blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6617 awk '/ldlm_bl_callback/ {print $2}'`
6619 echo total: $count removes in $((t2-t1))
6620 echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
6622 # wait for commitment of removal
6623 lru_resize_enable mdc
6624 lru_resize_enable osc
6626 run_test 120g "Early Lock Cancel: performance test"
6628 test_121() { #bug #10589
6630 writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
6631 #define OBD_FAIL_LDLM_CANCEL_RACE 0x310
6632 lctl set_param fail_loc=0x310
6633 cancel_lru_locks osc > /dev/null
6634 reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
6635 lctl set_param fail_loc=0
6636 [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
6638 run_test 121 "read cancel race ========="
6640 test_123a() { # was test 123, statahead(bug 11401)
6642 if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
6643 log "testing on UP system. Performance may be not as good as expected."
6649 NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6650 [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
6652 for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
6653 createmany -o $DIR/$tdir/$tfile $j $((i - j))
6655 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
6656 lctl set_param -n llite.*.statahead_max 0
6657 lctl get_param llite.*.statahead_max
6658 cancel_lru_locks mdc
6659 cancel_lru_locks osc
6661 time ls -l $DIR/$tdir | wc -l
6663 delta=$((etime - stime))
6664 log "ls $i files without statahead: $delta sec"
6665 lctl set_param llite.*.statahead_max=$max
6667 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
6668 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
6669 cancel_lru_locks mdc
6670 cancel_lru_locks osc
6672 time ls -l $DIR/$tdir | wc -l
6674 delta_sa=$((etime - stime))
6675 log "ls $i files with statahead: $delta_sa sec"
6676 lctl get_param -n llite.*.statahead_stats
6677 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
6679 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
6680 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
6682 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
6683 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
6684 lctl set_param -n llite.*.statahead_max 0
6685 lctl get_param llite.*.statahead_max
6686 cancel_lru_locks mdc
6687 cancel_lru_locks osc
6689 time ls -l $DIR/$tdir | wc -l
6691 delta=$((etime - stime))
6692 log "ls $i files again without statahead: $delta sec"
6693 lctl set_param llite.*.statahead_max=$max
6694 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
6695 if [ $SLOWOK -eq 0 ]; then
6696 error "ls $i files is slower with statahead!"
6698 log "ls $i files is slower with statahead!"
6704 [ $delta -gt 20 ] && break
6705 [ $delta -gt 8 ] && MULT=$((50 / delta))
6706 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
6714 delta=$((etime - stime))
6715 log "rm -r $DIR/$tdir/: $delta seconds"
6717 lctl get_param -n llite.*.statahead_stats
6719 run_test 123a "verify statahead work"
6721 test_123b () { # statahead(bug 15027)
6723 createmany -o $DIR/$tdir/$tfile-%d 1000
6725 cancel_lru_locks mdc
6726 cancel_lru_locks osc
6728 #define OBD_FAIL_MDC_GETATTR_ENQUEUE 0x803
6729 lctl set_param fail_loc=0x80000803
6730 ls -lR $DIR/$tdir > /dev/null
6732 lctl set_param fail_loc=0x0
6733 lctl get_param -n llite.*.statahead_stats
6738 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
6741 [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6742 skip "no lru resize on server" && return 0
6744 mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
6746 log "create $NR files at $DIR/$tdir"
6747 createmany -o $DIR/$tdir/f $NR ||
6748 error "failed to create $NR files in $DIR/$tdir"
6750 cancel_lru_locks mdc
6751 ls -l $DIR/$tdir > /dev/null
6755 for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
6756 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6757 LRU_SIZE=$(lctl get_param -n $PARAM)
6758 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
6759 NSDIR=$(echo $PARAM | cut -d "." -f1-3)
6761 log "NS=$(basename $NSDIR)"
6766 if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
6767 skip "Not enough cached locks created!"
6774 # We know that lru resize allows one client to hold $LIMIT locks
6775 # for 10h. After that locks begin to be killed by client.
6777 local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
6780 # Make LVF so higher that sleeping for $SLEEP is enough to _start_
6781 # killing locks. Some time was spent for creating locks. This means
6782 # that up to the moment of sleep finish we must have killed some of
6783 # them (10-100 locks). This depends on how fast ther were created.
6784 # Many of them were touched in almost the same moment and thus will
6785 # be killed in groups.
6786 local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
6788 # Use $LRU_SIZE_B here to take into account real number of locks
6789 # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
6790 local LRU_SIZE_B=$LRU_SIZE
6792 local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
6793 log "OLD_LVF=$OLD_LVF"
6794 lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
6796 # Let's make sure that we really have some margin. Client checks
6797 # cached locks every 10 sec.
6799 log "Sleep ${SLEEP} sec"
6801 while ((SEC<$SLEEP)); do
6805 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
6809 lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
6810 local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
6812 [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
6813 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
6814 unlinkmany $DIR/$tdir/f $NR
6818 log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
6819 log "unlink $NR files at $DIR/$tdir"
6820 unlinkmany $DIR/$tdir/f $NR
6822 run_test 124a "lru resize ======================================="
6824 get_max_pool_limit()
6826 local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
6829 if test $l -gt $max; then
6837 [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6838 skip "no lru resize on server" && return 0
6840 LIMIT=`get_max_pool_limit`
6842 NR=$(($(default_lru_size)*20))
6843 if [ $NR -gt $LIMIT ]; then
6844 log "Limit lock number by $LIMIT locks"
6847 lru_resize_disable mdc
6848 mkdir -p $DIR/$tdir/disable_lru_resize ||
6849 error "failed to create $DIR/$tdir/disable_lru_resize"
6851 createmany -o $DIR/$tdir/disable_lru_resize/f $NR
6852 log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
6853 cancel_lru_locks mdc
6856 ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6859 ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6862 ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6866 nolruresize_delta=$((etime-stime))
6867 log "ls -la time: $nolruresize_delta seconds"
6868 log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6869 unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
6871 lru_resize_enable mdc
6872 mkdir -p $DIR/$tdir/enable_lru_resize ||
6873 error "failed to create $DIR/$tdir/enable_lru_resize"
6875 createmany -o $DIR/$tdir/enable_lru_resize/f $NR
6876 log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
6877 cancel_lru_locks mdc
6880 ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6883 ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6886 ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6890 lruresize_delta=$((etime-stime))
6891 log "ls -la time: $lruresize_delta seconds"
6892 log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6894 if [ $lruresize_delta -gt $nolruresize_delta ]; then
6895 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
6896 elif [ $nolruresize_delta -gt $lruresize_delta ]; then
6897 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
6899 log "lru resize performs the same with no lru resize"
6901 unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
6903 run_test 124b "lru resize (performance test) ======================="
6905 test_125() { # 13358
6906 [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6907 [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6908 mkdir -p $DIR/d125 || error "mkdir failed"
6909 $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
6910 setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
6911 ls -ld $DIR/d125 || error "cannot access $DIR/d125"
6913 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
6915 test_126() { # bug 12829/13455
6916 [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6917 [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
6918 $GSS && skip "must run as gss disabled" && return
6920 $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
6921 gid=`ls -n $DIR/$tfile | awk '{print $4}'`
6923 [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
6925 run_test 126 "check that the fsgid provided by the client is taken into account"
6927 test_127a() { # bug 15521
6928 $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
6929 $LCTL set_param osc.*.stats=0
6930 FSIZE=$((2048 * 1024))
6931 dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
6932 cancel_lru_locks osc
6933 dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
6935 $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
6936 while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
6937 echo "got $COUNT $NAME"
6938 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
6939 eval $NAME=$COUNT || error "Wrong proc format"
6942 read_bytes|write_bytes)
6943 [ $MIN -lt 4096 ] && error "min is too small: $MIN"
6944 [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
6945 [ $MAX -lt 4096 ] && error "max is too small: $MAX"
6946 [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
6947 [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
6948 [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
6949 error "sumsquare is too small: $SUMSQ"
6950 [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
6951 error "sumsquare is too big: $SUMSQ"
6955 done < $DIR/${tfile}.tmp
6957 #check that we actually got some stats
6958 [ "$read_bytes" ] || error "Missing read_bytes stats"
6959 [ "$write_bytes" ] || error "Missing write_bytes stats"
6960 [ "$read_bytes" != 0 ] || error "no read done"
6961 [ "$write_bytes" != 0 ] || error "no write done"
6963 run_test 127a "verify the client stats are sane"
6965 test_127b() { # bug LU-333
6966 $LCTL set_param llite.*.stats=0
6967 FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
6968 # perform 2 reads and writes so MAX is different from SUM.
6969 dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
6970 dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
6971 cancel_lru_locks osc
6972 dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
6973 dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
6975 $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
6976 while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
6977 echo "got $COUNT $NAME"
6978 eval $NAME=$COUNT || error "Wrong proc format"
6982 [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
6983 [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
6984 [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
6985 [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
6988 [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
6989 [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
6990 [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
6991 [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
6995 done < $TMP/${tfile}.tmp
6997 #check that we actually got some stats
6998 [ "$read_bytes" ] || error "Missing read_bytes stats"
6999 [ "$write_bytes" ] || error "Missing write_bytes stats"
7000 [ "$read_bytes" != 0 ] || error "no read done"
7001 [ "$write_bytes" != 0 ] || error "no write done"
7003 run_test 127b "verify the llite client stats are sane"
7005 test_128() { # bug 15212
7007 $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7012 result=$(grep error $TMP/$tfile.log)
7014 [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7016 run_test 128 "interactive lfs for 2 consecutive find's"
7023 local LDPROC=/proc/fs/ldiskfs
7025 for facet in $(get_facets MDS); do
7026 canondev=$(ldiskfs_canon *.$(convert_facet2label $facet).mntdev $facet)
7027 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" || LDPROC=/sys/fs/ldiskfs
7028 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7032 if [ "$(facet_type_fstype MDS)" != ldiskfs ]; then
7033 skip "Only applicable to ldiskfs-based MDTs"
7036 remote_mds_nodsh && skip "remote MDS with nodsh" && return
7047 while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
7048 $MULTIOP $DIR/$tdir/$J Oc
7050 if [ $rc -eq $EFBIG ]; then
7052 echo "return code $rc received as expected"
7054 elif [ $rc -ne 0 ]; then
7056 error_exit "return code $rc received instead of expected $EFBIG"
7059 I=$(stat -c%s "$DIR/$tdir")
7063 error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
7065 run_test 129 "test directory size limit ========================"
7074 local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7075 [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7078 trap cleanup_130 EXIT RETURN
7080 local fm_file=$DIR/$tfile
7081 $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7082 dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7083 error "dd failed for $fm_file"
7085 # LU-1795: test filefrag/FIEMAP once, even if unsupported
7086 filefrag -ves $fm_file
7088 [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7089 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7090 [ $RC != 0 ] && error "filefrag $fm_file failed"
7092 filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7093 grep -v "ext:" | grep -v "found")
7094 lun=$($GETSTRIPE -i $fm_file)
7096 start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7099 for line in $filefrag_op
7101 frag_lun=`echo $line | cut -d: -f5`
7102 ext_len=`echo $line | cut -d: -f4`
7103 if (( $frag_lun != $lun )); then
7105 error "FIEMAP on 1-stripe file($fm_file) failed"
7108 (( tot_len += ext_len ))
7111 if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7113 error "FIEMAP on 1-stripe file($fm_file) failed;"
7119 echo "FIEMAP on single striped file succeeded"
7121 run_test 130a "FIEMAP (1-stripe file)"
7124 [ "$OSTCOUNT" -lt "2" ] &&
7125 skip_env "skipping FIEMAP on 2-stripe file test" && return
7127 local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7128 [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7131 trap cleanup_130 EXIT RETURN
7133 local fm_file=$DIR/$tfile
7134 $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7135 [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7136 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7138 dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7139 error "dd failed on $fm_file"
7141 filefrag -ves $fm_file || error "filefrag $fm_file failed"
7142 filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7143 grep -v "ext:" | grep -v "found")
7145 last_lun=$(echo $filefrag_op | cut -d: -f5)
7150 for line in $filefrag_op
7152 frag_lun=`echo $line | cut -d: -f5`
7153 ext_len=`echo $line | cut -d: -f4`
7154 if (( $frag_lun != $last_lun )); then
7155 if (( tot_len != 1024 )); then
7157 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7164 (( tot_len += ext_len ))
7167 if (( num_luns != 2 || tot_len != 1024 )); then
7169 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7175 echo "FIEMAP on 2-stripe file succeeded"
7177 run_test 130b "FIEMAP (2-stripe file)"
7180 [ "$OSTCOUNT" -lt "2" ] &&
7181 skip_env "skipping FIEMAP on 2-stripe file" && return
7183 filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7184 [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7187 trap cleanup_130 EXIT RETURN
7189 local fm_file=$DIR/$tfile
7190 $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7191 [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7192 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7194 dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7196 filefrag -ves $fm_file || error "filefrag $fm_file failed"
7197 filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7199 last_lun=`echo $filefrag_op | cut -d: -f5`
7204 for line in $filefrag_op
7206 frag_lun=`echo $line | cut -d: -f5`
7207 ext_len=`echo $line | cut -d: -f4`
7208 if (( $frag_lun != $last_lun )); then
7209 logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7210 if (( logical != 512 )); then
7212 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7215 if (( tot_len != 512 )); then
7217 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7224 (( tot_len += ext_len ))
7227 if (( num_luns != 2 || tot_len != 512 )); then
7229 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7235 echo "FIEMAP on 2-stripe file with hole succeeded"
7237 run_test 130c "FIEMAP (2-stripe file with hole)"
7240 [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
7242 filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7243 [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7245 trap cleanup_130 EXIT RETURN
7247 local fm_file=$DIR/$tfile
7248 $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
7249 [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7250 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7251 dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
7253 filefrag -ves $fm_file || error "filefrag $fm_file failed"
7254 filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7256 last_lun=`echo $filefrag_op | cut -d: -f5`
7261 for line in $filefrag_op
7263 frag_lun=`echo $line | cut -d: -f5`
7264 ext_len=`echo $line | cut -d: -f4`
7265 if (( $frag_lun != $last_lun )); then
7266 if (( tot_len != 1024 )); then
7268 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7275 (( tot_len += ext_len ))
7278 if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
7280 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7286 echo "FIEMAP on N-stripe file succeeded"
7288 run_test 130d "FIEMAP (N-stripe file)"
7291 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
7293 filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7294 [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7296 trap cleanup_130 EXIT RETURN
7298 local fm_file=$DIR/$tfile
7299 $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
7300 [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7301 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7304 EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
7305 for ((i = 0; i < $NUM_BLKS; i++))
7307 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
7310 filefrag -ves $fm_file || error "filefrag $fm_file failed"
7311 filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
7313 last_lun=`echo $filefrag_op | cut -d: -f5`
7318 for line in $filefrag_op
7320 frag_lun=`echo $line | cut -d: -f5`
7321 ext_len=`echo $line | cut -d: -f4`
7322 if (( $frag_lun != $last_lun )); then
7323 if (( tot_len != $EXPECTED_LEN )); then
7325 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
7332 (( tot_len += ext_len ))
7335 if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
7337 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7343 echo "FIEMAP with continuation calls succeeded"
7345 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
7347 # Test for writev/readv
7349 rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
7350 error "writev test failed"
7351 rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
7352 error "readv failed"
7355 run_test 131a "test iov's crossing stripe boundary for writev/readv"
7358 rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
7359 error "append writev test failed"
7360 rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
7361 error "append writev test failed"
7364 run_test 131b "test append writev"
7367 rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
7370 run_test 131c "test read/write on file w/o objects"
7373 rwv -f $DIR/$tfile -w -n 1 1572864
7374 NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
7375 if [ "$NOB" != 1572864 ]; then
7376 error "Short read filed: read $NOB bytes instead of 1572864"
7380 run_test 131d "test short read"
7383 rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
7384 rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
7385 error "read hitting hole failed"
7388 run_test 131e "test read hitting hole"
7393 for node in $(osts_nodes); do
7394 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
7395 [ x$gl = x"" ] && gl=0
7396 gl_sum=$((gl_sum + gl))
7406 if [ x$som = x"enabled" ]; then
7407 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
7408 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
7409 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
7411 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
7412 MOUNTOPT="$MOUNTOPT,som_preview"
7413 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
7416 # do remount to make new mount-conf parameters actual
7423 test_132() { #1028, SOM
7424 remote_mds_nodsh && skip "remote MDS with nodsh" && return
7425 local num=$(get_mds_dir $DIR)
7426 local mymds=mds${num}
7427 local MOUNTOPT_SAVE=$MOUNTOPT
7429 dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7430 cancel_lru_locks osc
7432 som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" | awk -F= ' {print $2}' | head -n 1)
7434 gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7435 stat $DIR/$tfile >/dev/null
7436 gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7437 echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
7439 som_mode_switch $som1 $gl1 $gl2
7441 dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7442 cancel_lru_locks osc
7444 som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" | awk -F= ' {print $2}' | head -n 1)
7445 if [ $som1 == $som2 ]; then
7446 error "som is still "$som2
7447 if [ x$som2 = x"enabled" ]; then
7454 gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7455 stat $DIR/$tfile >/dev/null
7456 gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7457 echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
7458 som_mode_switch $som2 $gl1 $gl2
7459 MOUNTOPT=$MOUNTOPT_SAVE
7461 run_test 132 "som avoids glimpse rpc"
7467 $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
7469 ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
7471 *) error "Wrong argument $1" ;;
7474 count=`echo $res | awk '{print $2}'`
7475 [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
7476 # if the argument $3 is zero, it means any stat increment is ok.
7477 if [ $3 -gt 0 ] ; then
7478 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
7483 remote_ost_nodsh && skip "remote OST with nodsh" && return
7484 remote_mds_nodsh && skip "remote MDS with nodsh" && return
7486 do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
7487 { skip "MDS doesn't support rename stats"; return; }
7488 local testdir=$DIR/${tdir}/stats_testdir
7489 mkdir -p $DIR/${tdir}
7492 do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7493 do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7495 # verify mdt stats first.
7496 mkdir ${testdir} || error "mkdir failed"
7497 check_stats $SINGLEMDS "mkdir" 1
7498 touch ${testdir}/${tfile} || "touch failed"
7499 check_stats $SINGLEMDS "open" 1
7500 check_stats $SINGLEMDS "close" 1
7501 mknod ${testdir}/${tfile}-pipe p || "mknod failed"
7502 check_stats $SINGLEMDS "mknod" 1
7503 rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
7504 check_stats $SINGLEMDS "unlink" 1
7505 rm -f ${testdir}/${tfile} || error "file remove failed"
7506 check_stats $SINGLEMDS "unlink" 2
7508 # remove working dir and check mdt stats again.
7509 rmdir ${testdir} || error "rmdir failed"
7510 check_stats $SINGLEMDS "rmdir" 1
7512 local testdir1=$DIR/${tdir}/stats_testdir1
7514 mkdir -p ${testdir1}
7515 touch ${testdir1}/test1
7516 mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
7517 check_stats $SINGLEMDS "crossdir_rename" 1
7519 mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
7520 check_stats $SINGLEMDS "samedir_rename" 1
7524 run_test 133a "Verifying MDT stats ========================================"
7527 remote_ost_nodsh && skip "remote OST with nodsh" && return
7528 remote_mds_nodsh && skip "remote MDS with nodsh" && return
7529 local testdir=$DIR/${tdir}/stats_testdir
7530 mkdir -p ${testdir} || error "mkdir failed"
7531 touch ${testdir}/${tfile} || "touch failed"
7532 cancel_lru_locks mdc
7535 do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7536 do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7538 # extra mdt stats verification.
7539 chmod 444 ${testdir}/${tfile} || error "chmod failed"
7540 check_stats $SINGLEMDS "setattr" 1
7541 do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7542 if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
7544 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
7545 check_stats $SINGLEMDS "getattr" 1
7547 $LFS df || error "lfs failed"
7548 check_stats $SINGLEMDS "statfs" 1
7552 run_test 133b "Verifying extra MDT stats =================================="
7555 remote_ost_nodsh && skip "remote OST with nodsh" && return
7556 remote_mds_nodsh && skip "remote MDS with nodsh" && return
7557 local testdir=$DIR/${tdir}/stats_testdir
7558 mkdir -p ${testdir} || error "mkdir failed"
7560 # verify obdfilter stats.
7561 $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
7563 cancel_lru_locks osc
7564 wait_delete_completed
7567 do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7568 do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7570 dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
7572 cancel_lru_locks osc
7573 check_stats ost "write" 1
7575 dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
7576 check_stats ost "read" 1
7578 > ${testdir}/${tfile} || error "truncate failed"
7579 check_stats ost "punch" 1
7581 rm -f ${testdir}/${tfile} || error "file remove failed"
7582 wait_delete_completed
7583 check_stats ost "destroy" 1
7587 run_test 133c "Verifying OST stats ========================================"
7594 while [ $value -ge 2 ]; do
7599 if [ $orig -gt $order ]; then
7607 local size=('K' 'M' 'G' 'T');
7609 local size_string=$value
7611 while [ $value -ge 1024 ]; do
7612 if [ $i -gt 3 ]; then
7613 #T is the biggest unit we get here, if that is bigger,
7615 size_string=${value}T
7618 value=$((value >> 10))
7619 if [ $value -lt 1024 ]; then
7620 size_string=${value}${size[$i]}
7631 local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
7632 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
7637 remote_ost_nodsh && skip "remote OST with nodsh" && return
7638 remote_mds_nodsh && skip "remote MDS with nodsh" && return
7639 do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
7640 { skip "MDS doesn't support rename stats"; return; }
7642 local testdir1=$DIR/${tdir}/stats_testdir1
7643 local testdir2=$DIR/${tdir}/stats_testdir2
7645 do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
7647 mkdir -p ${testdir1} || error "mkdir failed"
7648 mkdir -p ${testdir2} || error "mkdir failed"
7650 createmany -o $testdir1/test 512 || error "createmany failed"
7652 # check samedir rename size
7653 mv ${testdir1}/test0 ${testdir1}/test_0
7655 local testdir1_size=$(ls -l $DIR/${tdir} |
7656 awk '/stats_testdir1/ {print $5}')
7657 local testdir2_size=$(ls -l $DIR/${tdir} |
7658 awk '/stats_testdir2/ {print $5}')
7660 testdir1_size=$(order_2 $testdir1_size)
7661 testdir2_size=$(order_2 $testdir2_size)
7663 testdir1_size=$(size_in_KMGT $testdir1_size)
7664 testdir2_size=$(size_in_KMGT $testdir2_size)
7666 echo "source rename dir size: ${testdir1_size}"
7667 echo "target rename dir size: ${testdir2_size}"
7669 local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
7670 eval $cmd || error "$cmd failed"
7671 local samedir=$($cmd | grep 'same_dir')
7672 local same_sample=$(get_rename_size $testdir1_size)
7673 [ -z "$samedir" ] && error "samedir_rename_size count error"
7674 [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
7675 echo "Check same dir rename stats success"
7677 do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
7679 # check crossdir rename size
7680 mv ${testdir1}/test_0 ${testdir2}/test_0
7682 testdir1_size=$(ls -l $DIR/${tdir} |
7683 awk '/stats_testdir1/ {print $5}')
7684 testdir2_size=$(ls -l $DIR/${tdir} |
7685 awk '/stats_testdir2/ {print $5}')
7687 testdir1_size=$(order_2 $testdir1_size)
7688 testdir2_size=$(order_2 $testdir2_size)
7690 testdir1_size=$(size_in_KMGT $testdir1_size)
7691 testdir2_size=$(size_in_KMGT $testdir2_size)
7693 echo "source rename dir size: ${testdir1_size}"
7694 echo "target rename dir size: ${testdir2_size}"
7696 eval $cmd || error "$cmd failed"
7697 local crossdir=$($cmd | grep 'crossdir')
7698 local src_sample=$(get_rename_size $testdir1_size)
7699 local tgt_sample=$(get_rename_size $testdir2_size)
7700 [ -z "$crossdir" ] && error "crossdir_rename_size count error"
7701 [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
7702 [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
7703 echo "Check cross dir rename stats success"
7706 run_test 133d "Verifying rename_stats ========================================"
7708 test_140() { #bug-17379
7709 mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
7710 cd $DIR/$tdir || error "Changing to $DIR/$tdir"
7711 cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
7713 # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
7715 while i=`expr $i + 1`; do
7716 mkdir -p $i || error "Creating dir $i"
7717 cd $i || error "Changing to $i"
7718 ln -s ../stat stat || error "Creating stat symlink"
7719 # Read the symlink until ELOOP present,
7720 # not LBUGing the system is considered success,
7721 # we didn't overrun the stack.
7722 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
7724 if [ $ret -eq 40 ]; then
7727 error "Open stat symlink"
7733 echo "The symlink depth = $i"
7734 [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 ] || error "Invalid symlink depth"
7736 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
7739 local TF="$TMP/$tfile"
7741 dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
7743 cancel_lru_locks osc
7744 cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
7745 remount_client $MOUNT
7747 cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
7750 $TRUNCATE $DIR/$tfile 6000
7751 cancel_lru_locks osc
7752 cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
7755 echo "12345" >>$DIR/$tfile
7756 cancel_lru_locks osc
7757 cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
7760 echo "12345" >>$DIR/$tfile
7761 cancel_lru_locks osc
7762 cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
7767 run_test 150 "truncate/append tests"
7769 function roc_hit() {
7770 local list=$(comma_list $(osts_nodes))
7772 echo $(get_obdfilter_param $list '' stats |
7773 awk '/'cache_hit'/ {sum+=$2} END {print sum}')
7776 function set_cache() {
7779 if [ "$2" == "off" ]; then
7782 local list=$(comma_list $(osts_nodes))
7783 set_obdfilter_param $list '' $1_cache_enable $on
7785 cancel_lru_locks osc
7789 remote_ost_nodsh && skip "remote OST with nodsh" && return
7792 local list=$(comma_list $(osts_nodes))
7794 # check whether obdfilter is cache capable at all
7795 if ! get_obdfilter_param $list '' read_cache_enable >/dev/null; then
7796 echo "not cache-capable obdfilter"
7800 # check cache is enabled on all obdfilters
7801 if get_obdfilter_param $list '' read_cache_enable | grep 0; then
7802 echo "oss cache is disabled"
7806 set_obdfilter_param $list '' writethrough_cache_enable 1
7808 # pages should be in the case right after write
7809 dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
7810 local BEFORE=`roc_hit`
7811 cancel_lru_locks osc
7812 cat $DIR/$tfile >/dev/null
7813 local AFTER=`roc_hit`
7814 if ! let "AFTER - BEFORE == CPAGES"; then
7815 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
7818 # the following read invalidates the cache
7819 cancel_lru_locks osc
7820 set_obdfilter_param $list '' read_cache_enable 0
7821 cat $DIR/$tfile >/dev/null
7823 # now data shouldn't be found in the cache
7825 cancel_lru_locks osc
7826 cat $DIR/$tfile >/dev/null
7828 if let "AFTER - BEFORE != 0"; then
7829 error "IN CACHE: before: $BEFORE, after: $AFTER"
7832 set_obdfilter_param $list '' read_cache_enable 1
7835 run_test 151 "test cache on oss and controls ==============================="
7838 local TF="$TMP/$tfile"
7840 # simulate ENOMEM during write
7841 #define OBD_FAIL_OST_NOMEM 0x226
7842 lctl set_param fail_loc=0x80000226
7843 dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
7845 sync || error "sync failed"
7846 lctl set_param fail_loc=0
7848 # discard client's cache
7849 cancel_lru_locks osc
7851 # simulate ENOMEM during read
7852 lctl set_param fail_loc=0x80000226
7853 cmp $TF $DIR/$tfile || error "cmp failed"
7854 lctl set_param fail_loc=0
7858 run_test 152 "test read/write with enomem ============================"
7861 $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
7863 run_test 153 "test if fdatasync does not crash ======================="
7866 [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
7867 { skip "Need MDS version at least 2.2.51"; return 0; }
7869 cp /etc/hosts $DIR/$tfile
7871 fid=$($LFS path2fid $DIR/$tfile)
7873 [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
7875 ffid=$DIR/.lustre/fid/$fid
7877 echo "stat fid $fid"
7878 stat $ffid > /dev/null || error "stat $ffid failed."
7879 echo "touch fid $fid"
7880 touch $ffid || error "touch $ffid failed."
7881 echo "write to fid $fid"
7882 cat /etc/hosts > $ffid || error "write $ffid failed."
7883 echo "read fid $fid"
7884 diff /etc/hosts $ffid || error "read $ffid failed."
7885 echo "append write to fid $fid"
7886 cat /etc/hosts >> $ffid || error "append write $ffid failed."
7887 echo "rename fid $fid"
7888 mv $ffid $DIR/$tfile.1 && error "rename $ffid to $tfile.1 should fail."
7890 mv $DIR/$tfile.1 $ffid && error "rename $tfile.1 to $ffid should fail."
7892 echo "truncate fid $fid"
7893 $TRUNCATE $ffid 777 || error "truncate $ffid failed."
7894 echo "link fid $fid"
7895 ln -f $ffid $DIR/tfile.lnk || error "link $ffid failed."
7896 if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
7897 echo "setfacl fid $fid"
7898 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
7899 echo "getfacl fid $fid"
7900 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
7902 echo "unlink fid $fid"
7903 unlink $DIR/.lustre/fid/$fid && error "unlink $ffid should fail."
7904 echo "mknod fid $fid"
7905 mknod $ffid c 1 3 && error "mknod $ffid should fail."
7907 fid=[0xf00000400:0x1:0x0]
7908 ffid=$DIR/.lustre/fid/$fid
7910 echo "stat non-exist fid $fid"
7911 stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
7912 echo "write to non-exist fid $fid"
7913 cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
7914 echo "link new fid $fid"
7915 ln $DIR/$tfile $ffid && error "link $ffid should fail."
7918 touch $DIR/$tdir/$tfile
7919 fid=$($LFS path2fid $DIR/$tdir)
7921 [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
7923 ffid=$DIR/.lustre/fid/$fid
7926 ls $ffid > /dev/null || error "ls $ffid failed."
7927 echo "touch $fid/$tfile.1"
7928 touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
7930 echo "touch $DIR/.lustre/fid/$tfile"
7931 touch $DIR/.lustre/fid/$tfile && \
7932 error "touch $DIR/.lustre/fid/$tfile should fail."
7934 echo "setxattr to $DIR/.lustre/fid"
7935 setfattr -n trusted.name1 -v value1 $DIR/.lustre/fid &&
7936 error "setxattr should fail."
7938 echo "listxattr for $DIR/.lustre/fid"
7939 getfattr -d -m "^trusted" $DIR/.lustre/fid &&
7940 error "listxattr should fail."
7942 echo "delxattr from $DIR/.lustre/fid"
7943 setfattr -x trusted.name1 $DIR/.lustre/fid &&
7944 error "delxattr should fail."
7946 echo "touch invalid fid: $DIR/.lustre/fid/[0x200000400:0x2:0x3]"
7947 touch $DIR/.lustre/fid/[0x200000400:0x2:0x3] &&
7948 error "touch invalid fid should fail."
7950 echo "touch non-normal fid: $DIR/.lustre/fid/[0x1:0x2:0x0]"
7951 touch $DIR/.lustre/fid/[0x1:0x2:0x0] &&
7952 error "touch non-normal fid should fail."
7954 echo "rename $tdir to $DIR/.lustre/fid"
7955 mrename $DIR/$tdir $DIR/.lustre/fid &&
7956 error "rename to $DIR/.lustre/fid should fail."
7958 echo "rename .lustre to itself"
7959 fid=$($LFS path2fid $DIR)
7960 mrename $DIR/.lustre $DIR/.lustre/fid/$fid/.lustre &&
7961 error "rename .lustre to itself should fail."
7963 $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $DIR/$tfile-2
7964 fid=$($LFS path2fid $DIR/$tfile-2)
7965 echo "cp /etc/passwd $DIR/.lustre/fid/$fid"
7966 cp /etc/passwd $DIR/.lustre/fid/$fid &&
7967 error "create lov data thru .lustre should fail."
7968 echo "cp /etc/passwd $DIR/$tfile-2"
7969 cp /etc/passwd $DIR/$tfile-2 || error "copy to $DIR/$tfile-2 failed."
7970 echo "diff /etc/passwd $DIR/.lustre/fid/$fid"
7971 diff /etc/passwd $DIR/.lustre/fid/$fid ||
7972 error "diff /etc/passwd $DIR/.lustre/fid/$fid failed."
7974 echo "Open-by-FID succeeded"
7976 run_test 154 "Open-by-FID"
7978 test_155_small_load() {
7979 local temp=$TMP/$tfile
7980 local file=$DIR/$tfile
7982 dd if=/dev/urandom of=$temp bs=6096 count=1 || \
7983 error "dd of=$temp bs=6096 count=1 failed"
7985 cancel_lru_locks osc
7986 cmp $temp $file || error "$temp $file differ"
7988 $TRUNCATE $temp 6000
7989 $TRUNCATE $file 6000
7990 cmp $temp $file || error "$temp $file differ (truncate1)"
7992 echo "12345" >>$temp
7993 echo "12345" >>$file
7994 cmp $temp $file || error "$temp $file differ (append1)"
7996 echo "12345" >>$temp
7997 echo "12345" >>$file
7998 cmp $temp $file || error "$temp $file differ (append2)"
8004 test_155_big_load() {
8005 remote_ost_nodsh && skip "remote OST with nodsh" && return
8006 local temp=$TMP/$tfile
8007 local file=$DIR/$tfile
8010 local cache_size=$(do_facet ost$((MAXI+1)) \
8011 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
8012 local large_file_size=$((cache_size * 2))
8014 echo "OSS cache size: $cache_size KB"
8015 echo "Large file size: $large_file_size KB"
8017 [ $MAXV -le $large_file_size ] && \
8018 skip_env "max available OST size needs > $large_file_size KB" && \
8021 $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
8023 dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
8024 error "dd of=$temp bs=$large_file_size count=1k failed"
8027 cancel_lru_locks osc
8028 cmp $temp $file || error "$temp $file differ"
8036 set_cache writethrough on
8039 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
8043 set_cache writethrough off
8046 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
8050 set_cache writethrough on
8053 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
8057 set_cache writethrough off
8060 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
8064 set_cache writethrough on
8067 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
8071 set_cache writethrough off
8074 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
8078 set_cache writethrough on
8081 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
8085 set_cache writethrough off
8088 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
8094 local file="$DIR/$tfile"
8096 log "Turn on read and write cache"
8098 set_cache writethrough on
8100 log "Write data and read it back."
8101 log "Read should be satisfied from the cache."
8102 dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8104 cancel_lru_locks osc
8105 cat $file >/dev/null
8107 if ! let "AFTER - BEFORE == CPAGES"; then
8108 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8110 log "cache hits:: before: $BEFORE, after: $AFTER"
8113 log "Read again; it should be satisfied from the cache."
8115 cancel_lru_locks osc
8116 cat $file >/dev/null
8118 if ! let "AFTER - BEFORE == CPAGES"; then
8119 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8121 log "cache hits:: before: $BEFORE, after: $AFTER"
8125 log "Turn off the read cache and turn on the write cache"
8127 set_cache writethrough on
8129 log "Read again; it should be satisfied from the cache."
8131 cancel_lru_locks osc
8132 cat $file >/dev/null
8134 if ! let "AFTER - BEFORE == CPAGES"; then
8135 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8137 log "cache hits:: before: $BEFORE, after: $AFTER"
8140 log "Read again; it should not be satisfied from the cache."
8142 cancel_lru_locks osc
8143 cat $file >/dev/null
8145 if ! let "AFTER - BEFORE == 0"; then
8146 error "IN CACHE: before: $BEFORE, after: $AFTER"
8148 log "cache hits:: before: $BEFORE, after: $AFTER"
8151 log "Write data and read it back."
8152 log "Read should be satisfied from the cache."
8153 dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8155 cancel_lru_locks osc
8156 cat $file >/dev/null
8158 if ! let "AFTER - BEFORE == CPAGES"; then
8159 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8161 log "cache hits:: before: $BEFORE, after: $AFTER"
8164 log "Read again; it should not be satisfied from the cache."
8166 cancel_lru_locks osc
8167 cat $file >/dev/null
8169 if ! let "AFTER - BEFORE == 0"; then
8170 error "IN CACHE: before: $BEFORE, after: $AFTER"
8172 log "cache hits:: before: $BEFORE, after: $AFTER"
8176 log "Turn off read and write cache"
8178 set_cache writethrough off
8180 log "Write data and read it back"
8181 log "It should not be satisfied from the cache."
8183 dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8184 cancel_lru_locks osc
8186 cat $file >/dev/null
8188 if ! let "AFTER - BEFORE == 0"; then
8189 error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8191 log "cache hits:: before: $BEFORE, after: $AFTER"
8195 log "Turn on the read cache and turn off the write cache"
8197 set_cache writethrough off
8199 log "Write data and read it back"
8200 log "It should not be satisfied from the cache."
8202 dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8204 cancel_lru_locks osc
8205 cat $file >/dev/null
8207 if ! let "AFTER - BEFORE == 0"; then
8208 error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8210 log "cache hits:: before: $BEFORE, after: $AFTER"
8213 log "Read again; it should be satisfied from the cache."
8215 cancel_lru_locks osc
8216 cat $file >/dev/null
8218 if ! let "AFTER - BEFORE == CPAGES"; then
8219 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8221 log "cache hits:: before: $BEFORE, after: $AFTER"
8226 run_test 156 "Verification of tunables ============================"
8230 if [ $MDSCOUNT -gt 1 ]; then
8231 error_ignore 17935 $*
8239 MASK=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_mask |\
8242 if [ $MASK -eq 1 ]; then
8243 do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="-$1"
8245 do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="+$1"
8250 remote_mds_nodsh && skip "remote MDS with nodsh" && return
8251 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
8252 { skip "Need MDS version at least 2.2.0"; return; }
8253 USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
8254 echo "Registered as changelog user $USER"
8255 do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8256 grep -q $USER || error "User $USER not found in changelog_users"
8259 mkdir -p $DIR/$tdir/pics/2008/zachy
8260 touch $DIR/$tdir/pics/2008/zachy/timestamp
8261 cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
8262 mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
8263 ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
8264 ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
8265 rm $DIR/$tdir/pics/desktop.jpg
8267 $LFS changelog $MDT0 | tail -5
8269 echo "verifying changelog mask"
8270 changelog_chmask "MKDIR"
8271 changelog_chmask "CLOSE"
8273 mkdir -p $DIR/$tdir/pics/zach/sofia
8274 echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8276 changelog_chmask "MKDIR"
8277 changelog_chmask "CLOSE"
8279 mkdir -p $DIR/$tdir/pics/2008/sofia
8280 echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8282 $LFS changelog $MDT0
8283 MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
8284 CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
8285 [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
8286 [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
8289 echo "verifying target fid"
8290 fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8291 tail -1 | awk '{print $6}')
8292 fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
8293 [ "$fidc" == "t=$fidf" ] || \
8294 err17935 "fid in changelog $fidc != file fid $fidf"
8295 echo "verifying parent fid"
8296 fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8297 tail -1 | awk '{print $7}')
8298 fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
8299 [ "$fidc" == "p=$fidf" ] || \
8300 err17935 "pfid in changelog $fidc != dir fid $fidf"
8302 USER_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8303 mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8304 $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
8305 USER_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8306 mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8307 echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
8308 [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
8309 err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
8311 MIN_REC=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_users | \
8312 awk 'min == "" || $2 < min {min = $2}; END {print min}')
8313 FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
8314 echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
8315 [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
8316 err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
8318 echo "verifying user deregister"
8319 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
8320 do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8321 grep -q $USER && error "User $USER still found in changelog_users"
8323 USERS=$(( $(do_facet $SINGLEMDS $LCTL get_param -n \
8324 mdd.$MDT0.changelog_users | wc -l) - 2 ))
8325 if [ $USERS -eq 0 ]; then
8326 LAST_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8327 mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8328 touch $DIR/$tdir/chloe
8329 LAST_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8330 mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8331 echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
8332 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
8334 echo "$USERS other changelog users; can't verify off"
8337 run_test 160 "changelog sanity"
8341 cp /etc/hosts $DIR/$tdir/$tfile
8342 mkdir $DIR/$tdir/foo1
8343 mkdir $DIR/$tdir/foo2
8344 ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
8345 ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
8346 ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
8347 ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
8348 local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
8349 if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
8350 $LFS fid2path $DIR $FID
8351 err17935 "bad link ea"
8354 rm $DIR/$tdir/foo2/zachary
8356 rm $DIR/$tdir/foo2/thor
8358 rm $DIR/$tdir/$tfile
8360 mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
8361 if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
8363 $LFS fid2path $DIR $FID
8364 err17935 "bad link rename"
8366 rm $DIR/$tdir/foo2/maggie
8369 local longname=filename_avg_len_is_thirty_two_
8370 createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
8371 error "failed to hardlink many files"
8372 links=$($LFS fid2path $DIR $FID | wc -l)
8373 echo -n "${links}/1000 links in link EA"
8374 [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
8375 unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
8376 error "failed to unlink many hardlinks"
8378 run_test 161 "link ea sanity"
8385 local path=$(${LFS} fid2path $*)
8388 if [ $RC -ne 0 ]; then
8389 err17935 "path looked up of $expected failed. Error $RC"
8391 elif [ "${path}" != "${expected}" ]; then
8392 err17935 "path looked up \"${path}\" instead of \"${expected}\""
8395 echo "fid $fid resolves to path $path (expected $expected)"
8399 # Make changes to filesystem
8400 mkdir -p $DIR/$tdir/d2
8401 touch $DIR/$tdir/d2/$tfile
8402 touch $DIR/$tdir/d2/x1
8403 touch $DIR/$tdir/d2/x2
8404 mkdir -p $DIR/$tdir/d2/a/b/c
8405 mkdir -p $DIR/$tdir/d2/p/q/r
8407 FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
8408 check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
8411 ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
8412 FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
8413 check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
8415 # softlink to wrong file
8416 ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
8417 FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
8418 check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
8421 ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
8422 mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
8423 FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
8424 # fid2path dir/fsname should both work
8425 check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
8426 check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
8428 # hardlink count: check that there are 2 links
8429 # Doesnt work with CMD yet: 17935
8430 ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
8431 err17935 "expected 2 links"
8433 # hardlink indexing: remove the first link
8434 rm $DIR/$tdir/d2/p/q/r/hlink
8435 check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
8439 run_test 162 "path lookup sanity"
8442 remote_mds_nodsh && skip "remote MDS with nodsh" && return
8443 copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
8446 local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
8447 # this proc file is temporary and linux-only
8448 do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
8449 error "kernel->userspace send failed"
8452 run_test 163 "kernel <-> userspace comms"
8455 # do directio so as not to populate the page cache
8456 log "creating a 10 Mb file"
8457 $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
8458 log "starting reads"
8459 dd if=$DIR/$tfile of=/dev/null bs=4096 &
8460 log "truncating the file"
8461 $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
8463 kill %+ || true # reads might have finished
8464 echo "wait until dd is finished"
8466 log "removing the temporary file"
8467 rm -rf $DIR/$tfile || error "tmp file removal failed"
8469 run_test 169 "parallel read and truncate should not deadlock"
8472 $LCTL clear # bug 18514
8473 $LCTL debug_daemon start $TMP/${tfile}_log_good
8475 $LCTL debug_daemon stop
8476 sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
8477 error "sed failed to read log_good"
8479 $LCTL debug_daemon start $TMP/${tfile}_log_good
8481 $LCTL debug_daemon stop
8483 $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
8484 error "lctl df log_bad failed"
8486 local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
8487 local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
8489 $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
8490 local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
8492 [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
8493 error "bad_line good_line1 good_line2 are empty"
8495 cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
8496 cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
8497 cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
8499 $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
8500 local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
8501 local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
8503 [ "$bad_line_new" ] && [ "$good_line_new" ] ||
8504 error "bad_line_new good_line_new are empty"
8506 local expected_good=$((good_line1 + good_line2*2))
8508 rm -f $TMP/${tfile}*
8509 # LU-231, short malformed line may not be counted into bad lines
8510 if [ $bad_line -ne $bad_line_new ] &&
8511 [ $bad_line -ne $((bad_line_new - 1)) ]; then
8512 error "expected $bad_line bad lines, but got $bad_line_new"
8516 if [ $expected_good -ne $good_line_new ]; then
8517 error "expected $expected_good good lines, but got $good_line_new"
8522 run_test 170 "test lctl df to handle corrupted log ====================="
8524 test_171() { # bug20592
8525 #define OBD_FAIL_PTLRPC_DUMP_LOG 0x50e
8526 $LCTL set_param fail_loc=0x50e
8527 $LCTL set_param fail_val=3000
8528 multiop_bg_pause $DIR/$tfile O_s || true
8530 kill -USR1 $MULTIPID
8534 if dmesg | grep "recursive fault"; then
8535 error "caught a recursive fault"
8537 $LCTL set_param fail_loc=0
8540 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
8542 # it would be good to share it with obdfilter-survey/libecho code
8543 setup_obdecho_osc () {
8546 local obdfilter_name=$2
8547 echo "Creating new osc for $obdfilter_name on $ost_nid"
8548 # make sure we can find loopback nid
8549 $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
8551 [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc \
8552 ${obdfilter_name}_osc_UUID || rc=2; }
8553 [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
8554 ${obdfilter_name}_UUID $ost_nid || rc=3; }
8558 cleanup_obdecho_osc () {
8559 local obdfilter_name=$1
8560 $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
8561 $LCTL --device ${obdfilter_name}_osc detach >/dev/null
8565 obdecho_create_test() {
8570 do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
8571 [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
8573 if [ $rc -eq 0 ]; then
8574 id=$(do_facet $node "$LCTL --device ec create 1" | awk '/object id/ {print $6}')
8575 [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
8577 echo "New object id is $id"
8578 [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
8580 [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec " \
8581 "cleanup" || rc=5; }
8582 [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec " \
8584 [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
8589 remote_ost_nodsh && skip "remote OST with nodsh" && return
8593 if ! module_loaded obdecho; then
8594 load_module obdecho/obdecho
8598 local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
8599 local host=$(lctl get_param -n osc.$osc.import |
8600 awk '/current_connection:/ {print $2}' )
8601 local target=$(lctl get_param -n osc.$osc.import |
8602 awk '/target:/ {print $2}' )
8603 target=${target%_UUID}
8605 [[ -n $target ]] && { setup_obdecho_osc $host $target || rc=1; } || rc=1
8606 [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
8607 [[ -n $target ]] && cleanup_obdecho_osc $target
8608 [ $rmmod_local -eq 1 ] && rmmod obdecho
8611 run_test 180a "test obdecho on osc"
8614 remote_ost_nodsh && skip "remote OST with nodsh" && return
8616 local rmmod_remote=0
8618 do_facet ost1 "lsmod | grep -q obdecho || " \
8619 "{ insmod ${LUSTRE}/obdecho/obdecho.ko || " \
8620 "modprobe obdecho; }" && rmmod_remote=1
8621 target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
8622 [[ -n $target ]] && { obdecho_create_test $target ost1 || rc=1; }
8623 [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
8626 run_test 180b "test obdecho directly on obdfilter"
8628 test_181() { # bug 22177
8629 mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
8630 # create enough files to index the directory
8631 createmany -o $DIR/$tdir/foobar 4000
8632 # print attributes for debug purpose
8635 multiop_bg_pause $DIR/$tdir D_Sc || return 1
8637 # remove the files & current working dir
8638 unlinkmany $DIR/$tdir/foobar 4000
8640 kill -USR1 $MULTIPID
8642 stat $DIR/$tdir && error "open-unlinked dir was not removed!"
8645 run_test 181 "Test open-unlinked dir ========================"
8648 # disable MDC RPC lock wouldn't crash client
8652 mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
8653 #define OBD_FAIL_MDC_RPCS_SEM 0x804
8654 $LCTL set_param fail_loc=0x804
8656 for (( i=0; i < $tcount; i++ )) ; do
8658 createmany -o $DIR/$tdir/$i/f- $fcount &
8662 for (( i=0; i < $tcount; i++ )) ; do
8663 unlinkmany $DIR/$tdir/$i/f- $fcount &
8669 $LCTL set_param fail_loc=0
8671 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
8674 check_file_in_pool()
8679 local res=$($GETSTRIPE $file | grep 0x | cut -f2)
8682 for t in $tlist ; do
8683 [ "$i" -eq "$t" ] && continue 2
8686 echo "pool list: $tlist"
8687 echo "striping: $res"
8688 error_noexit "$file not allocated in $pool"
8695 echo "Creating new pool"
8698 create_pool $FSNAME.$pool ||
8699 { error_noexit "No pool created, result code $?"; return 1; }
8700 [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
8701 { error_noexit "$pool not in lfs pool_list"; return 2; }
8704 pool_add_targets() {
8705 echo "Adding targets to pool"
8711 local list=$(seq $first $step $last)
8713 local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
8714 do_facet mgs $LCTL pool_add \
8715 $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
8716 wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
8717 | sort -u | tr '\n' ' ' " "$t" || {
8718 error_noexit "Add to pool failed"
8721 local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
8722 local addcount=$(((last - first) / step + 1))
8723 [ $lfscount -eq $addcount ] || {
8724 error_noexit "lfs pool_list bad ost count" \
8725 "$lfscount != $addcount"
8733 echo "Setting pool on directory $tdir"
8735 $SETSTRIPE -c 2 -p $pool $tdir && return 0
8737 error_noexit "Cannot set pool $pool to $tdir"
8744 echo "Checking pool on directory $tdir"
8746 local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
8747 [ "$res" = "$pool" ] && return 0
8749 error_noexit "Pool on '$tdir' is '$res', not '$pool'"
8753 pool_dir_rel_path() {
8754 echo "Testing relative path works well"
8759 mkdir -p $root/$tdir/$tdir
8761 pool_set_dir $pool $tdir || return 1
8762 pool_set_dir $pool ./$tdir || return 2
8763 pool_set_dir $pool ../$tdir || return 3
8764 pool_set_dir $pool ../$tdir/$tdir || return 4
8765 rm -rf $tdir; cd - > /dev/null
8768 pool_alloc_files() {
8769 echo "Checking files allocation from directory pool"
8776 for i in $(seq -w 1 $count)
8778 local file=$tdir/file-$i
8780 check_file_in_pool $file $pool "$tlist" || \
8781 failed=$((failed + 1))
8783 [ "$failed" = 0 ] && return 0
8785 error_noexit "$failed files not allocated in $pool"
8789 pool_create_files() {
8790 echo "Creating files in pool"
8798 for i in $(seq -w 1 $count)
8800 local file=$tdir/spoo-$i
8801 $SETSTRIPE -p $pool $file
8802 check_file_in_pool $file $pool "$tlist" || \
8803 failed=$((failed + 1))
8805 [ "$failed" = 0 ] && return 0
8807 error_noexit "$failed files not allocated in $pool"
8812 echo "Checking 'lfs df' output"
8815 local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
8817 local res=$($LFS df --pool $FSNAME.$pool |
8819 grep "$FSNAME-OST" |
8821 [ "$res" = "$t" ] && return 0
8823 error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
8827 pool_file_rel_path() {
8828 echo "Creating files in a pool with relative pathname"
8833 { error_noexit "unable to create $tdir"; return 1 ; }
8834 local file="/..$tdir/$tfile-1"
8835 $SETSTRIPE -p $pool $file ||
8836 { error_noexit "unable to create $file" ; return 2 ; }
8839 $SETSTRIPE -p $pool $tfile-2 || {
8840 error_noexit "unable to create $tfile-2 in $tdir"
8845 pool_remove_first_target() {
8846 echo "Removing first target from a pool"
8849 local pname="lov.$FSNAME-*.pools.$pool"
8850 local t=$($LCTL get_param -n $pname | head -1)
8851 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
8852 wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
8853 error_noexit "$t not removed from $FSNAME.$pool"
8858 pool_remove_all_targets() {
8859 echo "Removing all targets from pool"
8862 local pname="lov.$FSNAME-*.pools.$pool"
8863 for t in $($LCTL get_param -n $pname | sort -u)
8865 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
8867 wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
8868 error_noexit "Pool $FSNAME.$pool cannot be drained"
8871 # striping on an empty/nonexistant pool should fall back
8872 # to "pool of everything"
8874 error_noexit "failed to use fallback striping for empty pool"
8877 # setstripe on an empty pool should fail
8878 $SETSTRIPE -p $pool $file 2>/dev/null && {
8879 error_noexit "expected failure when creating file" \
8887 echo "Destroying pool"
8891 do_facet mgs $LCTL pool_destroy $FSNAME.$pool
8894 # striping on an empty/nonexistant pool should fall back
8895 # to "pool of everything"
8897 error_noexit "failed to use fallback striping for missing pool"
8900 # setstripe on an empty pool should fail
8901 $SETSTRIPE -p $pool $file 2>/dev/null && {
8902 error_noexit "expected failure when creating file" \
8907 # get param should return err once pool is gone
8908 if wait_update $HOSTNAME "lctl get_param -n \
8909 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
8911 remove_pool_from_list $FSNAME.$pool
8914 error_noexit "Pool $FSNAME.$pool is not destroyed"
8919 remote_mgs_nodsh && skip "remote MGS with nodsh" && return
8921 local POOL=${POOL:-cea1}
8922 local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
8923 local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
8926 local last_ost=$(($OSTCOUNT - 1))
8928 local ost_list=$(seq $first_ost $ost_step $last_ost)
8929 local ost_range="$first_ost $last_ost $ost_step"
8930 local test_path=$POOL_ROOT/$POOL_DIR_NAME
8931 local file_dir=$POOL_ROOT/file_tst
8935 # former test_200a test_200b
8936 pool_add $POOL || { rc=$? ; break; }
8937 pool_add_targets $POOL $ost_range || { rc=$? ; break; }
8938 # former test_200c test_200d
8940 pool_set_dir $POOL $test_path || { rc=$? ; break; }
8941 pool_check_dir $POOL $test_path || { rc=$? ; break; }
8942 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
8943 || { rc=$? ; break; }
8944 # former test_200e test_200f
8945 local files=$((OSTCOUNT*3))
8946 pool_alloc_files $POOL $test_path $files "$ost_list" \
8947 || { rc=$? ; break; }
8948 pool_create_files $POOL $file_dir $files "$ost_list" \
8949 || { rc=$? ; break; }
8950 # former test_200g test_200h
8951 pool_lfs_df $POOL || { rc=$? ; break; }
8952 pool_file_rel_path $POOL $test_path || { rc=$? ; break; }
8954 # former test_201a test_201b test_201c
8955 pool_remove_first_target $POOL || { rc=$? ; break; }
8957 local f=$test_path/$tfile
8958 pool_remove_all_targets $POOL $f || { rc=$? ; break; }
8959 pool_remove $POOL $f || { rc=$? ; break; }
8966 run_test 200 "OST pools"
8968 # usage: default_attr <count | size | offset>
8970 $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
8973 # usage: check_default_stripe_attr
8974 check_default_stripe_attr() {
8975 ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
8977 --stripe-count|--count)
8978 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
8979 --stripe-size|--size)
8980 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
8981 --stripe-index|--index)
8984 error "unknown getstripe attr '$1'"
8987 [ $ACTUAL != $EXPECTED ] &&
8988 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
8993 $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
8995 check_default_stripe_attr --stripe-count
8996 check_default_stripe_attr --stripe-size
8997 check_default_stripe_attr --stripe-index
9001 run_test 204a "Print default stripe attributes ================="
9005 $SETSTRIPE --stripe-count 1 $DIR/$tdir
9007 check_default_stripe_attr --stripe-size
9008 check_default_stripe_attr --stripe-index
9012 run_test 204b "Print default stripe size and offset ==========="
9016 $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9018 check_default_stripe_attr --stripe-count
9019 check_default_stripe_attr --stripe-index
9023 run_test 204c "Print default stripe count and offset ==========="
9027 $SETSTRIPE --stripe-index 0 $DIR/$tdir
9029 check_default_stripe_attr --stripe-count
9030 check_default_stripe_attr --stripe-size
9034 run_test 204d "Print default stripe count and size ============="
9038 $SETSTRIPE -d $DIR/$tdir
9040 check_default_stripe_attr --stripe-count --raw
9041 check_default_stripe_attr --stripe-size --raw
9042 check_default_stripe_attr --stripe-index --raw
9046 run_test 204e "Print raw stripe attributes ================="
9050 $SETSTRIPE --stripe-count 1 $DIR/$tdir
9052 check_default_stripe_attr --stripe-size --raw
9053 check_default_stripe_attr --stripe-index --raw
9057 run_test 204f "Print raw stripe size and offset ==========="
9061 $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9063 check_default_stripe_attr --stripe-count --raw
9064 check_default_stripe_attr --stripe-index --raw
9068 run_test 204g "Print raw stripe count and offset ==========="
9072 $SETSTRIPE --stripe-index 0 $DIR/$tdir
9074 check_default_stripe_attr --stripe-count --raw
9075 check_default_stripe_attr --stripe-size --raw
9079 run_test 204h "Print raw stripe count and size ============="
9081 # Figure out which job scheduler is being used, if any,
9083 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
9085 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
9087 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
9089 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
9090 JOBENV=LOADL_STEP_ID
9091 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
9101 # clear old jobstats
9102 do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
9103 do_facet ost0 lctl set_param obdfilter.*.job_stats="clear"
9105 # use a new JobID for this test, or we might see an old one
9106 [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
9110 log "Using JobID environment variable $JOBENV=$JOBVAL"
9112 if [ $JOBENV = "FAKE_JOBID" ]; then
9113 FAKE_JOBID=$JOBVAL $cmd
9118 if [ "$target" = "mdt" -o "$target" = "both" ]; then
9119 FACET="$SINGLEMDS" # will need to get MDS number for DNE
9120 do_facet $FACET lctl get_param mdt.*.job_stats |
9121 grep $JOBVAL || error "No job stats found on MDT $FACET"
9123 if [ "$target" = "ost" -o "$target" = "both" ]; then
9125 do_facet $FACET lctl get_param obdfilter.*.job_stats |
9126 grep $JOBVAL || error "No job stats found on OST $FACET"
9130 test_205() { # Job stats
9131 [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
9132 skip "Server doesn't support jobstats" && return 0
9135 OLD_JOBENV=`$LCTL get_param -n jobid_var`
9136 if [ $OLD_JOBENV != $JOBENV ]; then
9137 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$JOBENV
9138 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9143 cmd="mkdir $DIR/$tfile"
9144 verify_jobstats "$cmd" "mdt"
9146 cmd="rm -fr $DIR/$tfile"
9147 verify_jobstats "$cmd" "mdt"
9149 cmd="mknod $DIR/$tfile c 1 3"
9150 verify_jobstats "$cmd" "mdt"
9152 cmd="rm -f $DIR/$tfile"
9153 verify_jobstats "$cmd" "mdt"
9155 cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
9156 verify_jobstats "$cmd" "mdt"
9158 cmd="touch $DIR/$tfile"
9159 verify_jobstats "$cmd" "both"
9161 cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
9162 verify_jobstats "$cmd" "ost"
9164 cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
9165 verify_jobstats "$cmd" "ost"
9167 cmd="$TRUNCATE $DIR/$tfile 0"
9168 verify_jobstats "$cmd" "both"
9170 cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
9171 verify_jobstats "$cmd" "mdt"
9174 rm -f $DIR/jobstats_test_rename
9176 if [ $OLD_JOBENV != $JOBENV ]; then
9177 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$OLD_JOBENV
9178 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9179 $OLD_JOBENV || return 1
9182 run_test 205 "Verify job stats"
9184 # LU-1480, LU-1773 and LU-1657
9187 lfs setstripe -c -1 $DIR/$tdir
9188 #define OBD_FAIL_LOV_INIT 0x1403
9189 $LCTL set_param fail_loc=0xa0001403
9190 $LCTL set_param fail_val=1
9191 touch $DIR/$tdir/$tfile || true
9193 run_test 206 "fail lov_init_raid0() doesn't lbug"
9197 size=$((size % 8192 + 1))
9198 dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
9199 sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
9200 rm -f $DIR/f212 $DIR/f212.xyz
9202 run_test 212 "Sendfile test ============================================"
9205 dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
9206 cancel_lru_locks osc
9207 lctl set_param fail_loc=0x8000040f
9208 # generate a read lock
9209 cat $DIR/$tfile > /dev/null
9210 # write to the file, it will try to cancel the above read lock.
9211 cat /etc/hosts >> $DIR/$tfile
9213 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
9215 test_214() { # for bug 20133
9216 mkdir -p $DIR/d214p/d214c
9217 for (( i=0; i < 340; i++ )) ; do
9218 touch $DIR/d214p/d214c/a$i
9221 ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
9222 mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
9223 ls $DIR/d214c || error "ls $DIR/d214c failed"
9224 rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
9226 run_test 214 "hash-indexed directory test - bug 20133"
9228 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
9229 create_lnet_proc_files() {
9230 cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
9231 sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
9233 sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
9234 rm -f "$TMP/lnet_$1.sys_tmp"
9237 # counterpart of create_lnet_proc_files
9238 remove_lnet_proc_files() {
9239 rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
9242 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9243 # 3rd arg as regexp for body
9244 check_lnet_proc_stats() {
9245 local l=$(cat "$TMP/lnet_$1" |wc -l)
9246 [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
9248 grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
9251 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9252 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
9253 # optional and can be regexp for 2nd line (lnet.routes case)
9254 check_lnet_proc_entry() {
9255 local blp=2 # blp stands for 'position of 1st line of body'
9256 [ "$5" = "" ] || blp=3 # lnet.routes case
9258 local l=$(cat "$TMP/lnet_$1" |wc -l)
9259 # subtracting one from $blp because the body can be empty
9260 [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
9262 sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
9263 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
9265 [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
9266 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
9268 # bail out if any unexpected line happened
9269 sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
9270 [ "$?" != 0 ] || error "$2 misformatted"
9273 test_215() { # for bugs 18102, 21079, 21517
9274 local N='(0|[1-9][0-9]*)' # non-negative numeric
9275 local P='[1-9][0-9]*' # positive numeric
9276 local I='(0|-?[1-9][0-9]*|NA)' # any numeric (0 | >0 | <0) or NA if no value
9277 local NET='[a-z][a-z0-9]*' # LNET net like o2ib2
9278 local ADDR='[0-9.]+' # LNET addr like 10.0.0.1
9279 local NID="$ADDR@$NET" # LNET nid like 10.0.0.1@o2ib2
9281 local L1 # regexp for 1st line
9282 local L2 # regexp for 2nd line (optional)
9283 local BR # regexp for the rest (body)
9285 # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
9286 BR="^$N $N $N $N $N $N $N $N $N $N $N$"
9287 create_lnet_proc_files "stats"
9288 check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
9289 check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
9290 remove_lnet_proc_files "stats"
9292 # /proc/sys/lnet/routes should look like this:
9293 # Routing disabled/enabled
9294 # net hops state router
9295 # where net is a string like tcp0, hops >= 0, state is up/down,
9296 # router is a string like 192.168.1.1@tcp2
9297 L1="^Routing (disabled|enabled)$"
9298 L2="^net +hops +state +router$"
9299 BR="^$NET +$N +(up|down) +$NID$"
9300 create_lnet_proc_files "routes"
9301 check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
9302 check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
9303 remove_lnet_proc_files "routes"
9305 # /proc/sys/lnet/routers should look like this:
9306 # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
9307 # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
9308 # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
9309 # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
9310 L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
9311 BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
9312 create_lnet_proc_files "routers"
9313 check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
9314 check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
9315 remove_lnet_proc_files "routers"
9317 # /proc/sys/lnet/peers should look like this:
9318 # nid refs state last max rtr min tx min queue
9319 # where nid is a string like 192.168.1.1@tcp2, refs > 0,
9320 # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
9321 # numeric (0 or >0 or <0), queue >= 0.
9322 L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
9323 BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
9324 create_lnet_proc_files "peers"
9325 check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
9326 check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
9327 remove_lnet_proc_files "peers"
9329 # /proc/sys/lnet/buffers should look like this:
9330 # pages count credits min
9331 # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
9332 L1="^pages +count +credits +min$"
9333 BR="^ +$N +$N +$I +$I$"
9334 create_lnet_proc_files "buffers"
9335 check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
9336 check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
9337 remove_lnet_proc_files "buffers"
9339 # /proc/sys/lnet/nis should look like this:
9340 # nid status alive refs peer rtr max tx min
9341 # where nid is a string like 192.168.1.1@tcp2, status is up/down,
9342 # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
9343 # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
9344 L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
9345 BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
9346 create_lnet_proc_files "nis"
9347 check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
9348 check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
9349 remove_lnet_proc_files "nis"
9351 # can we successfully write to /proc/sys/lnet/stats?
9352 echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
9353 sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
9355 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
9357 test_216() { # bug 20317
9358 remote_ost_nodsh && skip "remote OST with nodsh" && return
9360 local p="$TMP/sanityN-$TESTNAME.parameters"
9361 save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
9362 for node in $(osts_nodes); do
9363 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
9364 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
9365 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
9369 # agressive lockless i/o settings
9370 for node in $(osts_nodes); do
9371 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 2000000; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 0; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 60'
9373 lctl set_param -n osc.*.contention_seconds 60
9375 $DIRECTIO write $DIR/$tfile 0 10 4096
9376 $CHECKSTAT -s 40960 $DIR/$tfile
9378 # disable lockless i/o
9379 for node in $(osts_nodes); do
9380 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 0; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 32; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 0'
9382 lctl set_param -n osc.*.contention_seconds 0
9385 dd if=/dev/zero of=$DIR/$tfile count=0
9386 $CHECKSTAT -s 0 $DIR/$tfile
9388 restore_lustre_params <$p
9392 run_test 216 "check lockless direct write works and updates file size and kms correctly"
9394 test_217() { # bug 22430
9398 for node in $(nodes_list); do
9399 nid=$(host_nids_address $node $NETTYPE)
9400 if [[ $nid = *-* ]] ; then
9401 echo "lctl ping $nid@$NETTYPE"
9402 lctl ping $nid@$NETTYPE
9404 echo "skipping $node (no hyphen detected)"
9408 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
9411 # do directio so as not to populate the page cache
9412 log "creating a 10 Mb file"
9413 $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9414 log "starting reads"
9415 dd if=$DIR/$tfile of=/dev/null bs=4096 &
9416 log "truncating the file"
9417 $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9419 kill %+ || true # reads might have finished
9420 echo "wait until dd is finished"
9422 log "removing the temporary file"
9423 rm -rf $DIR/$tfile || error "tmp file removal failed"
9425 run_test 218 "parallel read and truncate should not deadlock ======================="
9428 # write one partial page
9429 dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
9430 # set no grant so vvp_io_commit_write will do sync write
9431 $LCTL set_param fail_loc=0x411
9432 # write a full page at the end of file
9433 dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
9435 $LCTL set_param fail_loc=0
9436 dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
9437 $LCTL set_param fail_loc=0x411
9438 dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
9440 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
9442 test_220() { #LU-325
9443 remote_ost_nodsh && skip "remote OST with nodsh" && return
9447 local OST=$(lfs osts | grep ${OSTIDX}": " | \
9448 awk '{print $2}' | sed -e 's/_UUID$//')
9451 local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
9452 local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
9453 osc.$mdtosc_proc1.prealloc_last_id)
9454 local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
9455 osc.$mdtosc_proc1.prealloc_next_id)
9459 do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
9460 #define OBD_FAIL_OST_ENOINO 0x229
9461 do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
9462 do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
9463 do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
9465 $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
9467 MDSOBJS=$((last_id - next_id))
9468 echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
9470 blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
9471 echo "OST still has $count kbytes free"
9473 echo "create $MDSOBJS files @next_id..."
9474 createmany -o $DIR/$tdir/f $MDSOBJS || return 3
9476 local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
9477 osc.$mdtosc_proc1.prealloc_last_id)
9478 local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
9479 osc.$mdtosc_proc1.prealloc_next_id)
9481 echo "after creation, last_id=$last_id2, next_id=$next_id2"
9486 do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
9487 do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
9489 do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
9490 do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
9491 echo "unlink $MDSOBJS files @$next_id..."
9492 unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
9494 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
9497 dd if=`which date` of=$MOUNT/date oflag=sync
9498 chmod +x $MOUNT/date
9500 #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE 0x1401
9501 $LCTL set_param fail_loc=0x80001401
9503 $MOUNT/date > /dev/null
9506 run_test 221 "make sure fault and truncate race to not cause OOM"
9511 $SETSTRIPE -c 1 -i 0 $DIR/$tdir
9512 createmany -o $DIR/$tdir/$tfile 10
9513 cancel_lru_locks mdc
9514 cancel_lru_locks osc
9515 #define OBD_FAIL_LDLM_AGL_DELAY 0x31a
9516 $LCTL set_param fail_loc=0x31a
9517 ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
9518 $LCTL set_param fail_loc=0
9521 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
9526 $SETSTRIPE -c 1 -i 0 $DIR/$tdir
9527 createmany -o $DIR/$tdir/$tfile 10
9528 cancel_lru_locks mdc
9529 cancel_lru_locks osc
9530 #define OBD_FAIL_LDLM_AGL_DELAY 0x31a
9531 $LCTL set_param fail_loc=0x31a
9532 rm -r $DIR/$tdir || "AGL for rmdir failed"
9533 $LCTL set_param fail_loc=0
9535 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
9540 $SETSTRIPE -c 1 -i 0 $DIR/$tdir
9541 createmany -o $DIR/$tdir/$tfile 10
9542 cancel_lru_locks mdc
9543 cancel_lru_locks osc
9544 #define OBD_FAIL_LDLM_AGL_NOLOCK 0x31b
9545 $LCTL set_param fail_loc=0x31b
9546 ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
9547 $LCTL set_param fail_loc=0
9550 run_test 223 "osc reenqueue if without AGL lock granted ======================="
9552 test_224a() { # LU-1039, MRP-303
9553 #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB 0x508
9554 $LCTL set_param fail_loc=0x508
9555 dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
9556 $LCTL set_param fail_loc=0
9559 run_test 224a "Don't panic on bulk IO failure"
9561 test_224b() { # LU-1039, MRP-303
9562 dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
9563 cancel_lru_locks osc
9564 #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2 0x515
9565 $LCTL set_param fail_loc=0x515
9566 dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
9567 $LCTL set_param fail_loc=0
9570 run_test 224b "Don't panic on bulk IO failure"
9572 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
9574 if [ -z ${MDSSURVEY} ]; then
9575 skip_env "mds-survey not found" && return
9577 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
9578 { skip "Need MDS version at least 2.2.51"; return; }
9580 local mds=$(facet_host $SINGLEMDS)
9581 local target=$(do_nodes $mds 'lctl dl' | \
9582 awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
9584 local cmd1="file_count=1000 thrhi=4"
9585 local cmd2="dir_count=2 layer=mdd stripe_count=0"
9586 local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
9587 local cmd="$cmd1 $cmd2 $cmd3"
9589 rm -f ${TMP}/mds_survey*
9591 eval $cmd || error "mds-survey with zero-stripe failed"
9592 cat ${TMP}/mds_survey*
9593 rm -f ${TMP}/mds_survey*
9595 run_test 225a "Metadata survey sanity with zero-stripe"
9598 if [ -z ${MDSSURVEY} ]; then
9599 skip_env "mds-survey not found" && return
9601 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
9602 { skip "Need MDS version at least 2.2.51"; return; }
9604 if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
9605 skip_env "Need to mount OST to test" && return
9608 local mds=$(facet_host $SINGLEMDS)
9609 local target=$(do_nodes $mds 'lctl dl' | \
9610 awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
9612 local cmd1="file_count=1000 thrhi=4"
9613 local cmd2="dir_count=2 layer=mdd stripe_count=1"
9614 local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
9615 local cmd="$cmd1 $cmd2 $cmd3"
9617 rm -f ${TMP}/mds_survey*
9619 eval $cmd || error "mds-survey with stripe_count failed"
9620 cat ${TMP}/mds_survey*
9621 rm -f ${TMP}/mds_survey*
9623 run_test 225b "Metadata survey sanity with stripe_count = 1"
9625 mcreate_path2fid () {
9631 local path=$DIR/$tdir/$name
9636 $MCREATE --mode=$1 --major=$2 --minor=$3 $path || \
9637 error "error: cannot create $desc"
9639 fid=$($LFS path2fid $path)
9641 [ $rc -ne 0 ] && error "error: cannot get fid of a $desc"
9643 fid_path=$($LFS fid2path $DIR $fid)
9645 [ $rc -ne 0 ] && error "error: cannot get path of a $desc by fid"
9647 [ "$path" == "$fid_path" ] || \
9648 error "error: fid2path returned \`$fid_path', expected \`$path'"
9655 mcreate_path2fid 0010666 0 0 fifo "FIFO"
9656 mcreate_path2fid 0020666 1 3 null "character special file (null)"
9657 mcreate_path2fid 0020666 1 255 none "character special file (no device)"
9658 mcreate_path2fid 0040666 0 0 dir "directory"
9659 mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
9660 mcreate_path2fid 0100666 0 0 file "regular file"
9661 mcreate_path2fid 0120666 0 0 link "symbolic link"
9662 mcreate_path2fid 0140666 0 0 sock "socket"
9664 run_test 226 "call path2fid and fid2path on files of all type"
9666 # LU-1299 Executing or running ldd on a truncated executable does not
9667 # cause an out-of-memory condition.
9669 dd if=`which date` of=$MOUNT/date bs=1k count=1
9670 chmod +x $MOUNT/date
9672 $MOUNT/date > /dev/null
9673 ldd $MOUNT/date > /dev/null
9676 run_test 227 "running truncated executable does not cause OOM"
9678 # LU-1512 try to reuse idle OI blocks
9680 [ "$FSTYPE" != "ldiskfs" ] && skip "non-ldiskfs backend" && return
9682 local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9683 local myDIR=$DIR/$tdir
9686 #define OBD_FAIL_SEQ_EXHAUST 0x1002
9687 $LCTL set_param fail_loc=0x80001002
9688 createmany -o $myDIR/t- 10000
9689 $LCTL set_param fail_loc=0
9690 # The guard is current the largest FID holder
9692 local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
9694 local IDX=$(($SEQ % 64))
9696 do_facet $SINGLEMDS sync
9697 # Make sure journal flushed.
9699 local blk1=$(do_facet $SINGLEMDS \
9700 "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9701 grep Blockcount | awk '{print $4}')
9703 # Remove old files, some OI blocks will become idle.
9704 unlinkmany $myDIR/t- 10000
9705 # Create new files, idle OI blocks should be reused.
9706 createmany -o $myDIR/t- 2000
9707 do_facet $SINGLEMDS sync
9708 # Make sure journal flushed.
9710 local blk2=$(do_facet $SINGLEMDS \
9711 "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9712 grep Blockcount | awk '{print $4}')
9714 [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
9716 run_test 228a "try to reuse idle OI blocks"
9719 [ "$FSTYPE" != "ldiskfs" ] && skip "non-ldiskfs backend" && return
9721 local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9722 local myDIR=$DIR/$tdir
9725 #define OBD_FAIL_SEQ_EXHAUST 0x1002
9726 $LCTL set_param fail_loc=0x80001002
9727 createmany -o $myDIR/t- 10000
9728 $LCTL set_param fail_loc=0
9729 # The guard is current the largest FID holder
9731 local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
9733 local IDX=$(($SEQ % 64))
9735 do_facet $SINGLEMDS sync
9736 # Make sure journal flushed.
9738 local blk1=$(do_facet $SINGLEMDS \
9739 "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9740 grep Blockcount | awk '{print $4}')
9742 # Remove old files, some OI blocks will become idle.
9743 unlinkmany $myDIR/t- 10000
9746 stop $SINGLEMDS || error "Fail to stop MDT."
9748 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9750 df $MOUNT || error "Fail to df."
9751 # Create new files, idle OI blocks should be reused.
9752 createmany -o $myDIR/t- 2000
9753 do_facet $SINGLEMDS sync
9754 # Make sure journal flushed.
9756 local blk2=$(do_facet $SINGLEMDS \
9757 "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9758 grep Blockcount | awk '{print $4}')
9760 [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
9762 run_test 228b "idle OI blocks can be reused after MDT restart"
9766 [ "$FSTYPE" != "ldiskfs" ] && skip "non-ldiskfs backend" && return
9768 local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9769 local myDIR=$DIR/$tdir
9772 #define OBD_FAIL_SEQ_EXHAUST 0x1002
9773 $LCTL set_param fail_loc=0x80001002
9774 # 20000 files can guarantee there are index nodes in the OI file
9775 createmany -o $myDIR/t- 20000
9776 $LCTL set_param fail_loc=0
9777 # The guard is current the largest FID holder
9779 local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
9781 local IDX=$(($SEQ % 64))
9783 do_facet $SINGLEMDS sync
9784 # Make sure journal flushed.
9786 local blk1=$(do_facet $SINGLEMDS \
9787 "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9788 grep Blockcount | awk '{print $4}')
9790 # Remove old files, some OI blocks will become idle.
9791 unlinkmany $myDIR/t- 20000
9793 # The OI file should become empty now
9795 # Create new files, idle OI blocks should be reused.
9796 createmany -o $myDIR/t- 2000
9797 do_facet $SINGLEMDS sync
9798 # Make sure journal flushed.
9800 local blk2=$(do_facet $SINGLEMDS \
9801 "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9802 grep Blockcount | awk '{print $4}')
9804 [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
9806 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
9809 # tests that do cleanup/setup should be run at the end
9814 #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG 0x903
9815 $LCTL set_param fail_loc=0x903
9816 # cancel_lru_locks mgc - does not work due to lctl set_param syntax
9817 for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
9820 FAIL_ON_ERROR=true cleanup
9821 FAIL_ON_ERROR=true setup
9823 run_test 900 "umount should not race with any mgc requeue thread"
9825 complete $(basename $0) $SECONDS
9826 check_and_cleanup_lustre
9827 if [ "$I_MOUNTED" != "yes" ]; then
9828 lctl set_param debug="$OLDDEBUG" 2> /dev/null || true