2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT=" 42a 42b 42c 42d 45 51d 68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT=" 76 $ALWAYS_EXCEPT"
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
48 export NAME=${NAME:-local}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b"
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test: LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h 40 48a 180 184c"
71 pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72 cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
81 check_kernel_version() {
83 GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
85 patchless|patchless_client) return 0;;
86 *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
88 log "test needs at least kernel version $WANT_VER, running $GOT_VER"
92 check_swap_layouts_support()
94 $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95 { skip "Does not support layout lock."; return 0; }
99 if [ "$ONLY" == "cleanup" ]; then
104 check_and_setup_lustre
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110 awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
129 if [ "${ONLY}" = "MOUNT" ] ; then
130 echo "Lustre is up, please go on"
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
142 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
143 lctl set_param debug=-1 2> /dev/null || true
146 $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
148 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
150 run_test 0a "touch; rm ====================="
153 chmod 0755 $DIR || error "chmod 0755 $DIR failed"
154 $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
156 run_test 0b "chmod 0755 $DIR ============================="
159 $LCTL get_param mdc.*.import | grep "state: FULL" ||
160 error "import not FULL"
161 $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
164 run_test 0c "check import proc ============================="
167 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
168 test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
169 test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
170 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
173 $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
175 run_test 1 "mkdir; remkdir; rmdir =============================="
178 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
179 touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
180 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
182 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
184 run_test 2 "mkdir; touch; rmdir; check file ===================="
187 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
188 $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
189 touch $DIR/$tdir/$tfile
190 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
192 $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
194 run_test 3 "mkdir; touch; rmdir; check dir ====================="
197 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
198 test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
199 chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
200 $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
201 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
203 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
206 touch $DIR/$tfile || error "touch $DIR/$tfile failed"
207 chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
208 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
209 error "$tfile does not have perm 0666 or UID $UID"
210 $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
211 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
212 error "$tfile should be 0666 and owned by UID $UID"
214 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
217 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
219 chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
220 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
221 error "$tfile should be owned by UID $RUNAS_ID"
222 $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
223 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
224 error "$tfile should be owned by UID $RUNAS_ID"
226 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
229 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
231 chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
232 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
233 error "$tfile should be owned by GID $UID"
234 $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
235 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
236 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
238 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
241 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
242 test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
243 chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
244 $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
245 chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
246 test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
247 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
248 error "$tdir/d/subdir should be GID $RUNAS_GID"
250 run_test 6g "Is new dir in sgid dir inheriting group?"
252 test_6h() { # bug 7331
253 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
254 touch $DIR/$tfile || error "touch failed"
255 chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
256 $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
257 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
258 $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
259 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
261 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
264 test_mkdir $DIR/$tdir
265 $MCREATE $DIR/$tdir/$tfile
266 chmod 0666 $DIR/$tdir/$tfile
267 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
268 error "$tdir/$tfile should be mode 0666"
270 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
273 if [ ! -d $DIR/$tdir ]; then
276 $MCREATE $DIR/$tdir/$tfile
277 echo -n foo > $DIR/$tdir/$tfile
278 [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
279 $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
281 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
284 test_mkdir $DIR/$tdir
285 touch $DIR/$tdir/$tfile
286 chmod 0666 $DIR/$tdir/$tfile
287 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
288 error "$tfile mode not 0666"
290 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
293 test_mkdir $DIR/$tdir
294 test_mkdir $DIR/$tdir/d2
295 test_mkdir $DIR/$tdir/d2/d3
296 $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
298 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
301 test_mkdir $DIR/$tdir
302 test_mkdir $DIR/$tdir/d2
303 touch $DIR/$tdir/d2/$tfile
304 $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
305 error "$tdir/d2/$tfile not a file"
307 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
310 test_mkdir $DIR/$tdir
311 test_mkdir $DIR/$tdir/d2
312 chmod 0666 $DIR/$tdir/d2
313 chmod 0705 $DIR/$tdir/d2
314 $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
315 error "$tdir/d2 mode not 0705"
317 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
320 test_mkdir $DIR/$tdir
321 touch $DIR/$tdir/$tfile
322 chmod 0666 $DIR/$tdir/$tfile
323 chmod 0654 $DIR/$tdir/$tfile
324 $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
325 error "$tdir/d2 mode not 0654"
327 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
330 test_mkdir $DIR/$tdir
331 dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
333 $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
334 error "$tdir/$tfile size not 0 after truncate"
336 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
339 test_mkdir $DIR/$tdir
340 touch $DIR/$tdir/$tfile
342 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
344 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
347 test_mkdir $DIR/$tdir
348 touch $DIR/$tdir/$tfile
349 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
350 $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
351 error "$tdir/${tfile_2} not a file after rename"
353 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
356 test_mkdir $DIR/$tdir
357 touch $DIR/$tdir/$tfile
358 rm -rf $DIR/$tdir/$tfile
359 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
361 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
364 test_mkdir -p $DIR/$tdir
365 touch $DIR/$tdir/$tfile
366 ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
368 $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
369 error "$tdir/l-exist not a symlink"
370 $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
371 error "$tdir/l-exist not referencing a file"
372 rm -f $DIR/$tdir/l-exist
373 $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
375 run_test 17a "symlinks: create, remove (real) =================="
378 test_mkdir -p $DIR/$tdir
379 ln -s no-such-file $DIR/$tdir/l-dangle
381 $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
382 error "$tdir/l-dangle not referencing no-such-file"
383 $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
384 error "$tdir/l-dangle not referencing non-existent file"
385 rm -f $DIR/$tdir/l-dangle
386 $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
388 run_test 17b "symlinks: create, remove (dangling) =============="
390 test_17c() { # bug 3440 - don't save failed open RPC for replay
391 test_mkdir -p $DIR/$tdir
392 ln -s foo $DIR/$tdir/$tfile
393 cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
395 run_test 17c "symlinks: open dangling (should return error) ===="
398 test_mkdir -p $DIR/$tdir
399 ln -s foo $DIR/$tdir/$tfile
400 touch $DIR/$tdir/$tfile || error "creating to new symlink"
402 run_test 17d "symlinks: create dangling ========================"
405 test_mkdir -p $DIR/$tdir
406 local foo=$DIR/$tdir/$tfile
407 ln -s $foo $foo || error "create symlink failed"
408 ls -l $foo || error "ls -l failed"
409 ls $foo && error "ls not failed" || true
411 run_test 17e "symlinks: create recursive symlink (should return error) ===="
414 test_mkdir -p $DIR/d17f
415 ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
416 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
417 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
418 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
419 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
420 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
423 run_test 17f "symlinks: long and very long symlink name ========================"
425 # str_repeat(S, N) generate a string that is string S repeated N times
430 while [ $((n -= 1)) -ge 0 ]; do
436 # Long symlinks and LU-2241
438 test_mkdir -p $DIR/$tdir
439 local TESTS="59 60 61 4094 4095"
441 # Fix for inode size boundary in 2.1.4
442 [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
445 # Patch not applied to 2.2 or 2.3 branches
446 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
447 [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
451 local SYMNAME=$(str_repeat 'x' $i)
452 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
453 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
456 run_test 17g "symlinks: really long symlink name and inode boundaries"
458 test_17h() { #bug 17378
459 remote_mds_nodsh && skip "remote MDS with nodsh" && return
460 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
462 test_mkdir -p $DIR/$tdir
463 if [ $MDSCOUNT -gt 1 ]; then
464 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
468 $SETSTRIPE -c -1 $DIR/$tdir
469 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
470 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
471 touch $DIR/$tdir/$tfile || true
473 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
475 test_17i() { #bug 20018
476 remote_mds_nodsh && skip "remote MDS with nodsh" && return
477 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
478 test_mkdir -p $DIR/$tdir
479 local foo=$DIR/$tdir/$tfile
481 if [ $MDSCOUNT -gt 1 ]; then
482 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
486 ln -s $foo $foo || error "create symlink failed"
487 #define OBD_FAIL_MDS_READLINK_EPROTO 0x143
488 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
489 ls -l $foo && error "error not detected"
492 run_test 17i "don't panic on short symlink"
494 test_17k() { #bug 22301
495 rsync --help | grep -q xattr ||
496 skip_env "$(rsync --version| head -1) does not support xattrs"
497 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
498 test_mkdir -p $DIR/$tdir
499 test_mkdir -p $DIR/$tdir.new
500 touch $DIR/$tdir/$tfile
501 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
502 rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
503 error "rsync failed with xattrs enabled"
505 run_test 17k "symlinks: rsync with xattrs enabled ========================="
507 test_17l() { # LU-279
509 touch $DIR/$tdir/$tfile
510 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
511 for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
512 # -h to not follow symlinks. -m '' to list all the xattrs.
513 # grep to remove first line: '# file: $path'.
514 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
516 lgetxattr_size_check $path $xattr ||
517 error "lgetxattr_size_check $path $xattr failed"
521 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
525 local short_sym="0123456789"
526 local WDIR=$DIR/${tdir}m
533 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
534 [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
535 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
537 [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
538 skip "only for ldiskfs MDT" && return 0
540 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
544 # create a long symlink file
545 for ((i = 0; i < 4; ++i)); do
546 long_sym=${long_sym}${long_sym}
549 echo "create 512 short and long symlink files under $WDIR"
550 for ((i = 0; i < 256; ++i)); do
551 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
552 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
558 wait_delete_completed
560 echo "recreate the 512 symlink files with a shorter string"
561 for ((i = 0; i < 512; ++i)); do
562 # rewrite the symlink file with a shorter string
563 ln -sf ${long_sym} $WDIR/long-$i
564 ln -sf ${short_sym} $WDIR/short-$i
567 mds_index=$($LFS getstripe -M $WDIR)
568 mds_index=$((mds_index+1))
569 devname=$(mdsdevname $mds_index)
570 cmd="$E2FSCK -fnvd $devname"
572 echo "stop and checking mds${mds_index}: $cmd"
573 # e2fsck should not return error
574 stop mds${mds_index} -f
575 do_facet mds${mds_index} $cmd || rc=$?
577 start mds${mds_index} $devname $MDS_MOUNT_OPTS
578 df $MOUNT > /dev/null 2>&1
579 [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
580 "short/long symlink MDT: rc=$rc"
583 run_test 17m "run e2fsck against MDT which contains short/long symlink"
585 check_fs_consistency_17n() {
591 for mdt_index in $(seq 1 $MDSCOUNT); do
592 devname=$(mdsdevname $mdt_index)
593 cmd="$E2FSCK -fnvd $devname"
595 echo "stop and checking mds${mdt_index}: $cmd"
596 # e2fsck should not return error
598 do_facet mds${mdt_index} $cmd || rc=$?
600 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
601 df $MOUNT > /dev/null 2>&1
602 [ $rc -ne 0 ] && break
610 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
611 [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
612 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
614 [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
615 skip "only for ldiskfs MDT" && return 0
617 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
619 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
622 for ((i=0; i<10; i++)); do
623 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
624 error "create remote dir error $i"
625 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
626 error "create files under remote dir failed $i"
629 check_fs_consistency_17n || error "e2fsck report error"
631 for ((i=0;i<10;i++)); do
632 rm -rf $DIR/$tdir/remote_dir_${i} ||
633 error "destroy remote dir error $i"
636 check_fs_consistency_17n || error "e2fsck report error"
638 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
641 [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ]] &&
642 skip "Need MDS version at least 2.3.64" && return
644 local WDIR=$DIR/${tdir}o
650 mdt_index=$($LFS getstripe -M $WDIR)
651 mdt_index=$((mdt_index+1))
652 mdtdevname=$(mdsdevname $mdt_index)
656 start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
658 #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
659 do_facet mds${mdt_index} lctl set_param fail_loc=0x194
660 ls -l $WDIR/$tfile && rc=1
661 do_facet mds${mdt_index} lctl set_param fail_loc=0
662 [[ $rc -ne 0 ]] && error "stat file should fail"
665 run_test 17o "stat file with incompat LMA feature"
668 touch $DIR/f || error "Failed to touch $DIR/f: $?"
669 ls $DIR || error "Failed to ls $DIR: $?"
671 run_test 18 "touch .../f ; ls ... =============================="
677 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
679 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
682 ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
684 run_test 19b "ls -l .../f19 (should return error) =============="
687 [ $RUNAS_ID -eq $UID ] &&
688 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
689 $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
691 run_test 19c "$RUNAS touch .../f19 (should return error) =="
694 cat $DIR/f19 && error || true
696 run_test 19d "cat .../f19 (should return error) =============="
708 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
710 run_test 20 "touch .../f ; ls -l ... ==========================="
713 test_mkdir -p $DIR/$tdir
714 [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
715 ln -s dangle $DIR/$tdir/link
716 echo foo >> $DIR/$tdir/link
717 cat $DIR/$tdir/dangle
718 $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
719 $CHECKSTAT -f -t file $DIR/$tdir/link ||
720 error "$tdir/link not linked to a file"
722 run_test 21 "write to dangling link ============================"
726 test_mkdir -p $DIR/$tdir
727 chown $RUNAS_ID:$RUNAS_GID $WDIR
728 (cd $WDIR || error "cd $WDIR failed";
729 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
731 ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
732 $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
733 $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
735 run_test 22 "unpack tar archive as non-root user ==============="
739 test_mkdir -p $DIR/$tdir
740 local file=$DIR/$tdir/$tfile
742 openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
743 openfile -f O_CREAT:O_EXCL $file &&
744 error "$file recreate succeeded" || true
746 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
748 test_23b() { # bug 18988
749 test_mkdir -p $DIR/$tdir
750 local file=$DIR/$tdir/$tfile
753 echo foo > $file || error "write filed"
754 echo bar >> $file || error "append filed"
755 $CHECKSTAT -s 8 $file || error "wrong size"
758 run_test 23b "O_APPEND check =========================="
762 echo '-- same directory rename'
763 test_mkdir $DIR/$tdir
764 touch $DIR/$tdir/$tfile.1
765 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
766 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
768 run_test 24a "rename file to non-existent target"
771 test_mkdir $DIR/$tdir
772 touch $DIR/$tdir/$tfile.{1,2}
773 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
774 $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
775 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
777 run_test 24b "rename file to existing target"
780 test_mkdir $DIR/$tdir
781 test_mkdir $DIR/$tdir/d$testnum.1
782 mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
783 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
784 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
786 run_test 24c "rename directory to non-existent target"
789 test_mkdir $DIR/$tdir
790 test_mkdir $DIR/$tdir/d$testnum.1
791 test_mkdir $DIR/$tdir/d$ttestnum.2
792 mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
793 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
794 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
796 run_test 24d "rename directory to existing target"
799 echo '-- cross directory renames --'
803 mv $DIR/R5a/f $DIR/R5b/g
804 $CHECKSTAT -a $DIR/R5a/f || error
805 $CHECKSTAT -t file $DIR/R5b/g || error
807 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
812 touch $DIR/R6a/f $DIR/R6b/g
813 mv $DIR/R6a/f $DIR/R6b/g
814 $CHECKSTAT -a $DIR/R6a/f || error
815 $CHECKSTAT -t file $DIR/R6b/g || error
817 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
822 test_mkdir $DIR/R7a/d
823 mv $DIR/R7a/d $DIR/R7b/e
824 $CHECKSTAT -a $DIR/R7a/d || error
825 $CHECKSTAT -t dir $DIR/R7b/e || error
827 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
832 test_mkdir $DIR/R8a/d
833 test_mkdir $DIR/R8b/e
834 mrename $DIR/R8a/d $DIR/R8b/e
835 $CHECKSTAT -a $DIR/R8a/d || error
836 $CHECKSTAT -t dir $DIR/R8b/e || error
838 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
841 echo "-- rename error cases"
845 mrename $DIR/R9/f $DIR/R9/a
846 $CHECKSTAT -t file $DIR/R9/f || error
847 $CHECKSTAT -t dir $DIR/R9/a || error
848 $CHECKSTAT -a $DIR/R9/a/f || error
850 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
854 mrename $DIR/R10/f $DIR/R10/g
855 $CHECKSTAT -t dir $DIR/R10 || error
856 $CHECKSTAT -a $DIR/R10/f || error
857 $CHECKSTAT -a $DIR/R10/g || error
859 run_test 24j "source does not exist ============================"
863 test_mkdir $DIR/R11a/d
865 mv $DIR/R11a/f $DIR/R11a/d
866 $CHECKSTAT -a $DIR/R11a/f || error
867 $CHECKSTAT -t file $DIR/R11a/d/f || error
869 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
871 # bug 2429 - rename foo foo foo creates invalid file
874 $MULTIOP $f OcNs || error
876 run_test 24l "Renaming a file to itself ========================"
880 $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
881 # on ext3 this does not remove either the source or target files
882 # though the "expected" operation would be to remove the source
883 $CHECKSTAT -t file ${f} || error "${f} missing"
884 $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
886 run_test 24m "Renaming a file to a hard link to itself ========="
890 # this stats the old file after it was renamed, so it should fail
894 $CHECKSTAT ${f}.rename
897 run_test 24n "Statting the old file after renaming (Posix rename 2)"
900 check_kernel_version 37 || return 0
901 test_mkdir -p $DIR/d24o
902 rename_many -s random -v -n 10 $DIR/d24o
904 run_test 24o "rename of files during htree split ==============="
909 DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
910 mrename $DIR/R12a $DIR/R12b
911 $CHECKSTAT -a $DIR/R12a || error
912 $CHECKSTAT -t dir $DIR/R12b || error
913 DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
914 [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
916 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
918 cleanup_multiop_pause() {
924 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
927 local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
928 multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
931 trap cleanup_multiop_pause EXIT
932 mrename $DIR/R13a $DIR/R13b
933 $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
934 $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
935 local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
936 [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
937 cleanup_multiop_pause
938 wait $MULTIPID || error "multiop close failed"
940 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
942 test_24r() { #bug 3789
944 test_mkdir $DIR/R14a/b
945 mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
946 $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
947 $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
949 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
953 test_mkdir $DIR/R15a/b
954 test_mkdir $DIR/R15a/b/c
955 mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
956 $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
957 $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
959 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
962 test_mkdir $DIR/R16a/b
963 test_mkdir $DIR/R16a/b/c
964 mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
965 $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
966 $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
968 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
970 test_24u() { # bug12192
972 $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
973 $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
975 run_test 24u "create stripe file"
981 simple_cleanup_common() {
984 wait_delete_completed
987 max_pages_per_rpc() {
988 $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
993 local FREE_INODES=$(lfs_df -i | grep "summary" | awk '{print $4}')
994 [ $FREE_INODES -lt $NRFILES ] && \
995 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
998 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
999 trap simple_cleanup_common EXIT
1002 createmany -m $DIR/$tdir/$tfile $NRFILES
1004 cancel_lru_locks mdc
1005 lctl set_param mdc.*.stats clear
1007 ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1009 # LU-5 large readdir
1010 # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1011 # 8 bytes for name(filename is mostly 5 in this test) +
1012 # 8 bytes for luda_type
1013 # take into account of overhead in lu_dirpage header and end mark in
1014 # each page, plus one in RPC_NUM calculation.
1016 RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1017 RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1018 mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1019 awk '/^mds_readpage/ {print $2}')
1020 [ $mds_readpage -gt $RPC_NUM ] && \
1021 error "large readdir doesn't take effect"
1023 simple_cleanup_common
1025 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1027 test_24w() { # bug21506
1029 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1030 dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1031 dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1032 SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1033 [ "$SZ1" = "$SZ2" ] || \
1034 error "Error reading at the end of the file $tfile"
1036 run_test 24w "Reading a file larger than 4Gb"
1039 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1040 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1042 local remote_dir=$DIR/$tdir/remote_dir
1045 $LFS mkdir -i $MDTIDX $remote_dir ||
1046 error "create remote directory failed"
1048 mkdir -p $DIR/$tdir/src_dir
1049 touch $DIR/$tdir/src_file
1050 mkdir -p $remote_dir/tgt_dir
1051 touch $remote_dir/tgt_file
1053 mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1054 error "rename dir cross MDT works!"
1056 mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1057 error "rename file cross MDT works!"
1059 ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1060 error "ln file cross MDT should not work!"
1062 rm -rf $DIR/$tdir || error "Can not delete directories"
1064 run_test 24x "cross rename/link should be failed"
1067 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1068 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1070 local remote_dir=$DIR/$tdir/remote_dir
1073 $LFS mkdir -i $MDTIDX $remote_dir ||
1074 error "create remote directory failed"
1076 mkdir -p $remote_dir/src_dir
1077 touch $remote_dir/src_file
1078 mkdir -p $remote_dir/tgt_dir
1079 touch $remote_dir/tgt_file
1081 mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1082 error "rename subdir in the same remote dir failed!"
1084 mrename $remote_dir/src_file $remote_dir/tgt_file ||
1085 error "rename files in the same remote dir failed!"
1087 ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1088 error "link files in the same remote dir failed!"
1090 rm -rf $DIR/$tdir || error "Can not delete directories"
1092 run_test 24y "rename/link on the same dir should succeed"
1095 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1096 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1098 local remote_src=$DIR/$tdir/remote_dir
1099 local remote_tgt=$DIR/$tdir/remote_tgt
1102 $LFS mkdir -i $MDTIDX $remote_src ||
1103 error "create remote directory failed"
1105 $LFS mkdir -i $MDTIDX $remote_tgt ||
1106 error "create remote directory failed"
1108 mrename $remote_src $remote_tgt &&
1109 error "rename remote dirs should not work!"
1111 # If target dir does not exists, it should succeed
1113 mrename $remote_src $remote_tgt ||
1114 error "rename remote dirs(tgt dir does not exists) failed!"
1116 rm -rf $DIR/$tdir || error "Can not delete directories"
1118 run_test 24z "rename one remote dir to another remote dir should fail"
1120 test_24A() { # LU-3182
1124 createmany -m $DIR/$tdir/$tfile $NFILES
1125 local t=`ls $DIR/$tdir | wc -l`
1126 local u=`ls $DIR/$tdir | sort -u | wc -l`
1127 if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1128 error "Expected $NFILES files, got $t ($u unique)"
1131 rm -rf $DIR/$tdir || error "Can not delete directories"
1133 run_test 24A "readdir() returns correct number of entries."
1136 echo '== symlink sanity ============================================='
1140 touch $DIR/s25/foo || error
1142 run_test 25a "create file in symlinked directory ==============="
1145 [ ! -d $DIR/d25 ] && test_25a
1146 $CHECKSTAT -t file $DIR/s25/foo || error
1148 run_test 25b "lookup file in symlinked directory ==============="
1152 test_mkdir $DIR/d26/d26-2
1153 ln -s d26/d26-2 $DIR/s26
1154 touch $DIR/s26/foo || error
1156 run_test 26a "multiple component symlink ======================="
1159 test_mkdir -p $DIR/d26b/d26-2
1160 ln -s d26b/d26-2/foo $DIR/s26-2
1161 touch $DIR/s26-2 || error
1163 run_test 26b "multiple component symlink at end of lookup ======"
1166 test_mkdir $DIR/d26.2
1167 touch $DIR/d26.2/foo
1168 ln -s d26.2 $DIR/s26.2-1
1169 ln -s s26.2-1 $DIR/s26.2-2
1170 ln -s s26.2-2 $DIR/s26.2-3
1171 chmod 0666 $DIR/s26.2-3/foo
1173 run_test 26c "chain of symlinks ================================"
1175 # recursive symlinks (bug 439)
1177 ln -s d26-3/foo $DIR/d26-3
1179 run_test 26d "create multiple component recursive symlink ======"
1182 [ ! -h $DIR/d26-3 ] && test_26d
1185 run_test 26e "unlink multiple component recursive symlink ======"
1187 # recursive symlinks (bug 7022)
1189 test_mkdir -p $DIR/$tdir
1190 test_mkdir $DIR/$tdir/$tfile || error "mkdir $DIR/$tdir/$tfile failed"
1191 cd $DIR/$tdir/$tfile || error "cd $DIR/$tdir/$tfile failed"
1192 test_mkdir -p lndir/bar1 || error "mkdir lndir/bar1 failed"
1193 test_mkdir $DIR/$tdir/$tfile/$tfile || error "mkdir $tfile failed"
1194 cd $tfile || error "cd $tfile failed"
1195 ln -s .. dotdot || error "ln dotdot failed"
1196 ln -s dotdot/lndir lndir || error "ln lndir failed"
1197 cd $DIR/$tdir || error "cd $DIR/$tdir failed"
1198 output=`ls $tfile/$tfile/lndir/bar1`
1199 [ "$output" = bar1 ] && error "unexpected output"
1200 rm -r $tfile || error "rm $tfile failed"
1201 $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1203 run_test 26f "rm -r of a directory which has recursive symlink ="
1206 echo '== stripe sanity =============================================='
1207 test_mkdir -p $DIR/d27 || error "mkdir failed"
1209 $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1210 $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1212 log "== test_27a: write to one stripe file ========================="
1213 cp /etc/hosts $DIR/d27/f0 || error
1215 run_test 27a "one stripe file =================================="
1218 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1219 test_mkdir -p $DIR/d27
1220 $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1221 $GETSTRIPE -c $DIR/d27/f01
1222 [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1223 error "two-stripe file doesn't have two stripes"
1225 dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1227 run_test 27b "create and write to two stripe file"
1230 test_mkdir -p $DIR/d27
1231 $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1232 $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1233 dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1235 run_test 27d "create file with default settings ================"
1238 test_mkdir -p $DIR/d27
1239 $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1240 $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1241 $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1243 run_test 27e "setstripe existing file (should return error) ======"
1246 test_mkdir -p $DIR/d27
1247 $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1248 dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1249 $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1251 run_test 27f "setstripe with bad stripe size (should return error)"
1254 test_mkdir -p $DIR/d27
1255 $MCREATE $DIR/d27/fnone || error "mcreate failed"
1256 $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1257 error "$DIR/d27/fnone has object"
1259 run_test 27g "$GETSTRIPE with no objects"
1262 touch $DIR/d27/fsome || error "touch failed"
1263 [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1265 run_test 27i "$GETSTRIPE with some objects"
1268 test_mkdir -p $DIR/d27
1269 $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1271 run_test 27j "setstripe with bad stripe offset (should return error)"
1273 test_27k() { # bug 2844
1274 test_mkdir -p $DIR/d27
1276 LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1277 [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1278 $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1279 BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1280 [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1281 dd if=/dev/zero of=$FILE bs=4k count=1
1282 BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1283 [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1285 run_test 27k "limit i_blksize for broken user apps ============="
1288 test_mkdir -p $DIR/d27
1289 mcreate $DIR/f27l || error "creating file"
1290 $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1291 error "setstripe should have failed" || true
1293 run_test 27l "check setstripe permissions (should return error)"
1296 [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1298 if [ $ORIGFREE -gt $MAXFREE ]; then
1299 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1302 trap simple_cleanup_common EXIT
1303 test_mkdir -p $DIR/$tdir
1304 $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1305 dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1306 error "dd should fill OST0"
1308 while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1310 [ $i -gt 256 ] && break
1313 touch $DIR/$tdir/f27m_$i
1314 [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1315 error "OST0 was full but new created file still use it"
1317 touch $DIR/$tdir/f27m_$i
1318 [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1319 error "OST0 was full but new created file still use it"
1320 simple_cleanup_common
1322 run_test 27m "create file while OST0 was full =================="
1325 local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1329 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1330 # if the OST isn't full anymore.
1332 local OSTIDX=${1:-""}
1334 local list=$(comma_list $(osts_nodes))
1335 [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1337 do_nodes $list lctl set_param fail_loc=0
1338 sync # initiate all OST_DESTROYs from MDS to OST
1342 exhaust_precreations() {
1345 local FAILIDX=${3:-$OSTIDX}
1347 test_mkdir -p $DIR/$tdir
1348 local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1349 echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1351 local OST=$(ostname_from_index $OSTIDX)
1352 local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1353 sed -e 's/_UUID$//;s/^.*-//')
1356 local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1357 local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1358 osc.$mdtosc_proc1.prealloc_last_id)
1359 local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1360 osc.$mdtosc_proc1.prealloc_next_id)
1362 local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1363 do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1365 test_mkdir -p $DIR/$tdir/${OST}
1366 $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1367 #define OBD_FAIL_OST_ENOSPC 0x215
1368 do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1369 do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1370 echo "Creating to objid $last_id on ost $OST..."
1371 createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1372 do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1373 do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1377 exhaust_all_precreations() {
1379 for (( i=0; i < OSTCOUNT; i++ )) ; do
1380 exhaust_precreations $i $1 -1
1385 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1386 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1387 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1388 remote_ost_nodsh && skip "remote OST with nodsh" && return
1391 rm -f $DIR/$tdir/$tfile
1392 exhaust_precreations 0 0x80000215
1393 $SETSTRIPE -c -1 $DIR/$tdir
1394 touch $DIR/$tdir/$tfile || error
1395 $GETSTRIPE $DIR/$tdir/$tfile
1398 run_test 27n "create file with some full OSTs =================="
1401 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1402 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1403 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1404 remote_ost_nodsh && skip "remote OST with nodsh" && return
1407 rm -f $DIR/$tdir/$tfile
1408 exhaust_all_precreations 0x215
1410 touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1415 run_test 27o "create file with all full OSTs (should error) ===="
1418 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1419 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1420 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1421 remote_ost_nodsh && skip "remote OST with nodsh" && return
1424 rm -f $DIR/$tdir/$tfile
1425 test_mkdir -p $DIR/$tdir
1427 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1428 $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1429 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1431 exhaust_precreations 0 0x80000215
1432 echo foo >> $DIR/$tdir/$tfile || error "append failed"
1433 $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1434 $GETSTRIPE $DIR/$tdir/$tfile
1438 run_test 27p "append to a truncated file with some full OSTs ==="
1441 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1442 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1443 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1444 remote_ost_nodsh && skip "remote OST with nodsh" && return
1447 rm -f $DIR/$tdir/$tfile
1449 test_mkdir -p $DIR/$tdir
1450 $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1451 $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1452 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1454 exhaust_all_precreations 0x215
1456 echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1457 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1461 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1464 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1465 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1466 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1467 remote_ost_nodsh && skip "remote OST with nodsh" && return
1470 rm -f $DIR/$tdir/$tfile
1471 exhaust_precreations 0 0x80000215
1473 $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1477 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1479 test_27s() { # bug 10725
1480 test_mkdir -p $DIR/$tdir
1481 local stripe_size=$((4096 * 1024 * 1024)) # 2^32
1482 local stripe_count=0
1483 [ $OSTCOUNT -eq 1 ] || stripe_count=2
1484 $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1485 error "stripe width >= 2^32 succeeded" || true
1488 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1490 test_27t() { # bug 10864
1495 $WLFS getstripe $tfile
1498 run_test 27t "check that utils parse path correctly"
1500 test_27u() { # bug 4900
1501 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1502 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1504 local list=$(comma_list $(mdts_nodes))
1506 #define OBD_FAIL_MDS_OSC_PRECREATE 0x139
1507 do_nodes $list $LCTL set_param fail_loc=0x139
1508 test_mkdir -p $DIR/$tdir
1510 createmany -o $DIR/$tdir/t- 1000
1511 do_nodes $list $LCTL set_param fail_loc=0
1513 TLOG=$DIR/$tfile.getstripe
1514 $GETSTRIPE $DIR/$tdir > $TLOG
1515 OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1516 unlinkmany $DIR/$tdir/t- 1000
1517 [ $OBJS -gt 0 ] && \
1518 error "$OBJS objects created on OST-0. See $TLOG" || pass
1520 run_test 27u "skip object creation on OSC w/o objects =========="
1522 test_27v() { # bug 4900
1523 [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1524 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1525 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1526 remote_ost_nodsh && skip "remote OST with nodsh" && return
1528 exhaust_all_precreations 0x215
1531 test_mkdir -p $DIR/$tdir
1532 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe / file
1534 touch $DIR/$tdir/$tfile
1535 #define OBD_FAIL_TGT_DELAY_PRECREATE 0x705
1537 for (( i=1; i < OSTCOUNT; i++ )); do
1538 do_facet ost$i lctl set_param fail_loc=0x705
1540 local START=`date +%s`
1541 createmany -o $DIR/$tdir/$tfile 32
1543 local FINISH=`date +%s`
1544 local TIMEOUT=`lctl get_param -n timeout`
1545 local PROCESS=$((FINISH - START))
1546 [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1547 error "$FINISH - $START >= $TIMEOUT / 2"
1548 sleep $((TIMEOUT / 2 - PROCESS))
1551 run_test 27v "skip object creation on slow OST ================="
1553 test_27w() { # bug 10997
1554 test_mkdir -p $DIR/$tdir || error "mkdir failed"
1555 $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1556 [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1557 error "stripe size $size != 65536" || true
1558 [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1559 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1561 run_test 27w "check $SETSTRIPE -S option"
1564 [ "$OSTCOUNT" -lt "2" ] &&
1565 skip_env "skipping multiple stripe count/offset test" && return
1567 test_mkdir -p $DIR/$tdir || error "mkdir failed"
1568 for i in $(seq 1 $OSTCOUNT); do
1570 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1571 error "setstripe -c $i -i $offset failed"
1572 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1573 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1574 [ $count -ne $i ] && error "stripe count $count != $i" || true
1575 [ $index -ne $offset ] &&
1576 error "stripe offset $index != $offset" || true
1579 run_test 27wa "check $SETSTRIPE -c -i options"
1582 remote_ost_nodsh && skip "remote OST with nodsh" && return
1583 [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1584 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1585 OFFSET=$(($OSTCOUNT - 1))
1587 local OST=$(ostname_from_index $OSTIDX)
1589 test_mkdir -p $DIR/$tdir
1590 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe per file
1591 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1593 createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1594 for i in `seq 0 $OFFSET`; do
1595 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1596 error "OST0 was degraded but new created file still use it"
1598 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1600 run_test 27x "create files while OST0 is degraded"
1603 [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1604 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1605 remote_ost_nodsh && skip "remote OST with nodsh" && return
1606 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1608 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1609 local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1610 osc.$mdtosc.prealloc_last_id)
1611 local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1612 osc.$mdtosc.prealloc_next_id)
1613 local fcount=$((last_id - next_id))
1614 [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1615 [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1617 local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1618 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1619 local OST_DEACTIVE_IDX=-1
1624 for OSC in $MDS_OSCS; do
1625 OST=$(osc_to_ost $OSC)
1626 OSTIDX=$(index_from_ostuuid $OST)
1627 if [ $OST_DEACTIVE_IDX == -1 ]; then
1628 OST_DEACTIVE_IDX=$OSTIDX
1630 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1631 echo $OSC "is Deactivated:"
1632 do_facet $SINGLEMDS lctl --device %$OSC deactivate
1636 OSTIDX=$(index_from_ostuuid $OST)
1638 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe / file
1640 for OSC in $MDS_OSCS; do
1641 OST=$(osc_to_ost $OSC)
1642 OSTIDX=$(index_from_ostuuid $OST)
1643 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1644 echo $OST "is degraded:"
1645 do_facet ost$((OSTIDX+1)) lctl set_param -n \
1646 obdfilter.$OST.degraded=1
1651 createmany -o $DIR/$tdir/$tfile $fcount
1653 for OSC in $MDS_OSCS; do
1654 OST=$(osc_to_ost $OSC)
1655 OSTIDX=$(index_from_ostuuid $OST)
1656 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1657 echo $OST "is recovered from degraded:"
1658 do_facet ost$((OSTIDX+1)) lctl set_param -n \
1659 obdfilter.$OST.degraded=0
1661 do_facet $SINGLEMDS lctl --device %$OSC activate
1665 # all osp devices get activated, hence -1 stripe count restored
1668 # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1669 # devices get activated.
1671 $SETSTRIPE -c -1 $DIR/$tfile
1672 stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1674 [ $stripecnt -ne $OSTCOUNT ] &&
1675 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1678 run_test 27y "create files while OST0 is degraded and the rest inactive"
1684 lmm_count=$($GETSTRIPE -c $1)
1685 lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1686 lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1688 local old_ifs="$IFS"
1690 fid=($($LFS path2fid $1))
1693 log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1694 log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1696 # compare lmm_seq and lu_fid->f_seq
1697 [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1698 # compare lmm_object_id and lu_fid->oid
1699 [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1701 # check the trusted.fid attribute of the OST objects of the file
1702 local have_obdidx=false
1704 $GETSTRIPE $1 | while read obdidx oid hex seq; do
1705 # skip lines up to and including "obdidx"
1706 [ -z "$obdidx" ] && break
1707 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1708 $have_obdidx || continue
1710 local ost=$((obdidx + 1))
1711 local dev=$(ostdevname $ost)
1714 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1715 echo "Currently only works with ldiskfs-based OSTs"
1719 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1721 #don't unmount/remount the OSTs if we don't need to do that
1722 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1723 # update too, until that use mount/ll_decode_filter_fid/mount
1724 local dir=$(facet_mntpt ost$ost)
1725 local opts=${OST_MOUNT_OPTS}
1727 if ! do_facet ost$ost test -b ${dev}; then
1728 opts=$(csa_add "$opts" -o loop)
1732 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1733 { error "mounting $dev as $FSTYPE failed"; return 3; }
1735 seq=$(echo $seq | sed -e "s/^0x//g")
1736 if [ $seq == 0 ]; then
1737 oid_hex=$(echo $oid)
1739 oid_hex=$(echo $hex | sed -e "s/^0x//g")
1741 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1742 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1743 do_facet ost$ost umount -d $dir
1744 start ost$ost $dev $OST_MOUNT_OPTS
1746 # re-enable when debugfs will understand new filter_fid
1747 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1748 # $dev 2>/dev/null" | grep "parent=")
1750 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1752 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1754 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1755 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1756 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1757 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1758 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1759 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1761 # compare lmm_seq and filter_fid->ff_parent.f_seq
1762 [ $ff_pseq = $lmm_seq ] ||
1763 error "FF parent SEQ $ff_pseq != $lmm_seq"
1764 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1765 [ $ff_poid = $lmm_oid ] ||
1766 error "FF parent OID $ff_poid != $lmm_oid"
1767 [ $ff_pstripe = $stripe_nr ] ||
1768 error "FF stripe $ff_pstripe != $stripe_nr"
1770 stripe_nr=$((stripe_nr + 1))
1775 remote_ost_nodsh && skip "remote OST with nodsh" && return
1776 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1777 test_mkdir -p $DIR/$tdir
1779 $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1780 { error "setstripe -c -1 failed"; return 1; }
1781 # We need to send a write to every object to get parent FID info set.
1782 # This _should_ also work for setattr, but does not currently.
1783 # touch $DIR/$tdir/$tfile-1 ||
1784 dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1785 { error "dd $tfile-1 failed"; return 2; }
1786 $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1787 { error "setstripe -c -1 failed"; return 3; }
1788 dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1789 { error "dd $tfile-2 failed"; return 4; }
1791 # make sure write RPCs have been sent to OSTs
1794 check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1795 check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1797 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1799 test_27A() { # b=19102
1800 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1801 local restore_size=$($GETSTRIPE -S $MOUNT)
1802 local restore_count=$($GETSTRIPE -c $MOUNT)
1803 local restore_offset=$($GETSTRIPE -i $MOUNT)
1804 $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1805 local default_size=$($GETSTRIPE -S $MOUNT)
1806 local default_count=$($GETSTRIPE -c $MOUNT)
1807 local default_offset=$($GETSTRIPE -i $MOUNT)
1808 local dsize=$((1024 * 1024))
1809 [ $default_size -eq $dsize ] ||
1810 error "stripe size $default_size != $dsize"
1811 [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1812 [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1813 $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1815 run_test 27A "check filesystem-wide default LOV EA values"
1817 test_27B() { # LU-2523
1818 test_mkdir -p $DIR/$tdir
1819 rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1821 # open f1 with O_LOV_DELAY_CREATE
1823 # call setstripe ioctl on open file descriptor for f1
1825 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1829 # open f1 with O_LOV_DELAY_CREATE
1831 # call setstripe ioctl on open file descriptor for f1
1833 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1835 # Allow multiop to fail in imitation of NFS's busted semantics.
1838 run_test 27B "call setstripe on open unlinked file/rename victim"
1840 test_27C() { #LU-2871
1841 [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1849 test_mkdir -p $DIR/$tdir
1851 for i in $(seq 0 $((OSTCOUNT - 1))); do
1852 # set stripe across all OSTs starting from OST$i
1853 $SETSTRIPE -i $i -c -1 $tfile$i
1854 # get striping information
1855 ost_idx=($($GETSTRIPE $tfile$i |
1856 tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1860 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1861 error "${#ost_idx[@]} != $OSTCOUNT"
1863 for index in $(seq 0 $((OSTCOUNT - 1))); do
1865 for j in $(echo ${ost_idx[@]}); do
1866 if [ $index -eq $j ]; then
1872 error "Can not find $index in ${ost_idx[@]}"
1876 run_test 27C "check full striping across all OSTs"
1878 # createtest also checks that device nodes are created and
1879 # then visible correctly (#2091)
1880 test_28() { # bug 2091
1882 $CREATETEST $DIR/d28/ct || error
1884 run_test 28 "create/mknod/mkdir with bad file types ============"
1887 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1888 cancel_lru_locks mdc
1894 declare -i LOCKCOUNTORIG=0
1895 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1896 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1898 [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1900 declare -i LOCKUNUSEDCOUNTORIG=0
1901 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1902 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1909 declare -i LOCKCOUNTCURRENT=0
1910 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1911 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1914 declare -i LOCKUNUSEDCOUNTCURRENT=0
1915 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1916 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1919 if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1920 lctl set_param -n ldlm.dump_namespaces ""
1921 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1922 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1923 log "dumped log to $TMP/test_29.dk (bug 5793)"
1926 if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1927 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1928 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1929 log "dumped log to $TMP/test_29.dk (bug 5793)"
1933 run_test 29 "IT_GETATTR regression ============================"
1935 test_30a() { # was test_30
1936 cp `which ls` $DIR || cp /bin/ls $DIR
1940 run_test 30a "execute binary from Lustre (execve) =============="
1943 cp `which ls` $DIR || cp /bin/ls $DIR
1945 $RUNAS $DIR/ls / || error
1948 run_test 30b "execute binary from Lustre as non-root ==========="
1950 test_30c() { # b=22376
1951 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1952 cp `which ls` $DIR || cp /bin/ls $DIR
1954 cancel_lru_locks mdc
1955 cancel_lru_locks osc
1956 $RUNAS $DIR/ls / || error
1959 run_test 30c "execute binary from Lustre without read perms ===="
1962 $OPENUNLINK $DIR/f31 $DIR/f31 || error
1963 $CHECKSTAT -a $DIR/f31 || error
1965 run_test 31a "open-unlink file =================================="
1968 touch $DIR/f31 || error
1969 ln $DIR/f31 $DIR/f31b || error
1970 $MULTIOP $DIR/f31b Ouc || error
1971 $CHECKSTAT -t file $DIR/f31 || error
1973 run_test 31b "unlink file with multiple links while open ======="
1976 touch $DIR/f31 || error
1977 ln $DIR/f31 $DIR/f31c || error
1978 multiop_bg_pause $DIR/f31 O_uc || return 1
1980 $MULTIOP $DIR/f31c Ouc
1981 kill -USR1 $MULTIPID
1984 run_test 31c "open-unlink file with multiple links ============="
1987 opendirunlink $DIR/d31d $DIR/d31d || error
1988 $CHECKSTAT -a $DIR/d31d || error
1990 run_test 31d "remove of open directory ========================="
1992 test_31e() { # bug 2904
1993 check_kernel_version 34 || return 0
1994 openfilleddirunlink $DIR/d31e || error
1996 run_test 31e "remove of open non-empty directory ==============="
1998 test_31f() { # bug 4554
1999 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2001 test_mkdir $DIR/d31f
2002 $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2003 cp /etc/hosts $DIR/d31f
2005 $GETSTRIPE $DIR/d31f/hosts
2006 multiop_bg_pause $DIR/d31f D_c || return 1
2009 rm -rv $DIR/d31f || error "first of $DIR/d31f"
2010 test_mkdir $DIR/d31f
2011 $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2012 cp /etc/hosts $DIR/d31f
2014 $GETSTRIPE $DIR/d31f/hosts
2015 multiop_bg_pause $DIR/d31f D_c || return 1
2018 kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2019 wait $MULTIPID || error "first opendir $MULTIPID failed"
2023 kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2024 wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2027 run_test 31f "remove of open directory with open-unlink file ==="
2030 echo "-- cross directory link --"
2031 test_mkdir $DIR/d31ga
2032 test_mkdir $DIR/d31gb
2034 ln $DIR/d31ga/f $DIR/d31gb/g
2035 $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2036 [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2037 $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2038 [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2040 run_test 31g "cross directory link==============="
2043 echo "-- cross directory link --"
2044 test_mkdir $DIR/d31h
2045 test_mkdir $DIR/d31h/dir
2047 ln $DIR/d31h/f $DIR/d31h/dir/g
2048 $CHECKSTAT -t file $DIR/d31h/f || error "source"
2049 [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2050 $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2051 [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2053 run_test 31h "cross directory link under child==============="
2056 echo "-- cross directory link --"
2057 test_mkdir $DIR/d31i
2058 test_mkdir $DIR/d31i/dir
2059 touch $DIR/d31i/dir/f
2060 ln $DIR/d31i/dir/f $DIR/d31i/g
2061 $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2062 [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2063 $CHECKSTAT -t file $DIR/d31i/g || error "target"
2064 [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2066 run_test 31i "cross directory link under parent==============="
2070 test_mkdir $DIR/d31j
2071 test_mkdir $DIR/d31j/dir1
2072 ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2073 link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2074 mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2075 mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2078 run_test 31j "link for directory==============="
2082 test_mkdir $DIR/d31k
2084 touch $DIR/d31k/exist
2085 mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2086 mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2087 mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2088 mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2089 mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2090 mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2091 mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2094 run_test 31k "link to file: the same, non-existing, dir==============="
2097 test_mkdir $DIR/d31m
2099 test_mkdir $DIR/d31m2
2100 touch $DIR/d31m2/exist
2101 mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2102 mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2103 mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2104 mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2105 mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2106 mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2109 run_test 31m "link to file: the same, non-existing, dir==============="
2112 [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2113 touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2114 nlink=$(stat --format=%h $DIR/$tfile)
2115 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2116 exec 173<$DIR/$tfile
2117 trap "exec 173<&-" EXIT
2118 nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2119 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2120 rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2121 nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2122 [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2125 run_test 31n "check link count of unlinked file"
2128 local TEMPNAME=$(mktemp $1_XXXXXX)
2129 mlink $TEMPNAME $1 2> /dev/null &&
2130 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2134 test_31o() { # LU-2901
2136 for LOOP in $(seq 100); do
2137 rm -f $DIR/$tdir/$tfile*
2138 for THREAD in $(seq 8); do
2139 link_one $DIR/$tdir/$tfile.$LOOP &
2142 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2143 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2144 error "$LINKS duplicate links to $tfile.$LOOP" &&
2148 run_test 31o "duplicate hard links with same filename"
2150 cleanup_test32_mount() {
2152 $UMOUNT $DIR/$tdir/ext2-mountpoint
2156 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2157 echo "== more mountpoints and symlinks ================="
2158 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2159 trap cleanup_test32_mount EXIT
2160 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2161 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2162 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2163 cleanup_test32_mount
2165 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2168 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2169 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2170 trap cleanup_test32_mount EXIT
2171 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2172 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2173 ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2174 cleanup_test32_mount
2176 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2179 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2180 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2181 trap cleanup_test32_mount EXIT
2182 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2183 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2184 test_mkdir -p $DIR/$tdir/d2/test_dir
2185 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2186 cleanup_test32_mount
2188 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2191 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2192 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2193 trap cleanup_test32_mount EXIT
2194 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2195 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2196 test_mkdir -p $DIR/$tdir/d2/test_dir
2197 ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2198 cleanup_test32_mount
2200 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2203 [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2204 test_mkdir -p $DIR/d32e/tmp
2205 TMP_DIR=$DIR/d32e/tmp
2206 ln -s $DIR/d32e $TMP_DIR/symlink11
2207 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2208 $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2209 $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2211 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2214 [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2215 test_mkdir -p $DIR/d32f/tmp
2216 TMP_DIR=$DIR/d32f/tmp
2217 ln -s $DIR/d32f $TMP_DIR/symlink11
2218 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2219 ls $DIR/d32f/tmp/symlink11 || error
2220 ls $DIR/d32f/symlink01 || error
2222 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2225 TMP_DIR=$DIR/$tdir/tmp
2226 test_mkdir -p $DIR/$tdir/tmp
2227 test_mkdir $DIR/${tdir}2
2228 ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2229 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2230 $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2231 $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2232 $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2233 $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2235 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2238 rm -fr $DIR/$tdir $DIR/${tdir}2
2239 TMP_DIR=$DIR/$tdir/tmp
2240 test_mkdir -p $DIR/$tdir/tmp
2241 test_mkdir $DIR/${tdir}2
2242 ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2243 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2244 ls $TMP_DIR/symlink12 || error
2245 ls $DIR/$tdir/symlink02 || error
2247 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2250 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2251 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2252 trap cleanup_test32_mount EXIT
2253 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2254 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2255 touch $DIR/$tdir/test_file
2256 $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2257 cleanup_test32_mount
2259 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2262 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2263 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2264 trap cleanup_test32_mount EXIT
2265 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2266 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2267 touch $DIR/$tdir/test_file
2268 cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2269 cleanup_test32_mount
2271 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2274 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2276 trap cleanup_test32_mount EXIT
2277 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2278 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2279 test_mkdir -p $DIR/$tdir/d2
2280 touch $DIR/$tdir/d2/test_file || error
2281 $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2282 cleanup_test32_mount
2284 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2287 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2289 trap cleanup_test32_mount EXIT
2290 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2291 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2292 test_mkdir -p $DIR/$tdir/d2
2293 touch $DIR/$tdir/d2/test_file
2294 cat $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2295 cleanup_test32_mount
2297 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2301 test_mkdir -p $DIR/d32m/tmp
2302 TMP_DIR=$DIR/d32m/tmp
2303 ln -s $DIR $TMP_DIR/symlink11
2304 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2305 $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2306 $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2308 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2312 test_mkdir -p $DIR/d32n/tmp
2313 TMP_DIR=$DIR/d32n/tmp
2314 ln -s $DIR $TMP_DIR/symlink11
2315 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2316 ls -l $DIR/d32n/tmp/symlink11 || error
2317 ls -l $DIR/d32n/symlink01 || error
2319 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2322 rm -fr $DIR/d32o $DIR/$tfile
2324 test_mkdir -p $DIR/d32o/tmp
2325 TMP_DIR=$DIR/d32o/tmp
2326 ln -s $DIR/$tfile $TMP_DIR/symlink12
2327 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2328 $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2329 $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2330 $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2331 $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2333 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2343 test_mkdir -p $DIR/d32p/tmp
2345 TMP_DIR=$DIR/d32p/tmp
2347 ln -s $DIR/$tfile $TMP_DIR/symlink12
2349 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2351 cat $DIR/d32p/tmp/symlink12 || error
2353 cat $DIR/d32p/symlink02 || error
2356 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2358 cleanup_testdir_mount() {
2364 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2365 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2366 trap cleanup_testdir_mount EXIT
2367 test_mkdir -p $DIR/$tdir
2368 touch $DIR/$tdir/under_the_mount
2369 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2370 ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2371 cleanup_testdir_mount
2373 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2376 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2377 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2378 trap cleanup_testdir_mount EXIT
2379 test_mkdir -p $DIR/$tdir
2380 touch $DIR/$tdir/under_the_mount
2381 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2382 ls $DIR/$tdir | grep -q under_the_mount && error || true
2383 cleanup_testdir_mount
2385 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2390 chmod 444 $DIR/$tfile
2391 chown $RUNAS_ID $DIR/$tfile
2393 $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2396 run_test 33aa "write file with mode 444 (should return error) ===="
2400 test_mkdir -p $DIR/d33
2401 chown $RUNAS_ID $DIR/d33
2402 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2403 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2404 error "open RDWR" || true
2406 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2410 test_mkdir -p $DIR/d33
2411 chown $RUNAS_ID $DIR/d33
2412 $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2414 run_test 33b "test open file with malformed flags (No panic and return error)"
2417 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2423 remote_ost_nodsh && skip "remote OST with nodsh" && return
2426 test_mkdir -p $DIR/d33
2427 # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2430 for ostnum in $(seq $OSTCOUNT); do
2431 # test-framework's OST numbering is one-based, while Lustre's
2433 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2434 # Parsing llobdstat's output sucks; we could grep the /proc
2435 # path, but that's likely to not be as portable as using the
2436 # llobdstat utility. So we parse lctl output instead.
2437 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2438 obdfilter/$ostname/stats |
2439 awk '/^write_bytes/ {print $7}' )
2440 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2441 if (( ${write_bytes:-0} > 0 ))
2448 $all_zeros || return 0
2451 echo foo > $DIR/d33/bar
2455 # Total up write_bytes after writing. We'd better find non-zeros.
2456 for ostnum in $(seq $OSTCOUNT); do
2457 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2458 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2459 obdfilter/$ostname/stats |
2460 awk '/^write_bytes/ {print $7}' )
2461 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2462 if (( ${write_bytes:-0} > 0 ))
2471 for ostnum in $(seq $OSTCOUNT); do
2472 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2473 echo "Check that write_bytes is present in obdfilter/*/stats:"
2474 do_facet ost$ostnum lctl get_param -n \
2475 obdfilter/$ostname/stats
2477 error "OST not keeping write_bytes stats (b22312)"
2480 run_test 33c "test llobdstat and write_bytes"
2483 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2484 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2486 local remote_dir=$DIR/$tdir/remote_dir
2489 $LFS mkdir -i $MDTIDX $remote_dir ||
2490 error "create remote directory failed"
2492 touch $remote_dir/$tfile
2493 chmod 444 $remote_dir/$tfile
2494 chown $RUNAS_ID $remote_dir/$tfile
2496 $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2498 chown $RUNAS_ID $remote_dir
2499 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2500 error "create" || true
2501 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2502 error "open RDWR" || true
2503 $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2504 error "create" || true
2506 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2508 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2511 $MCREATE $DIR/f34 || error
2512 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2513 $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2514 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2515 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2517 run_test 34a "truncate file that has not been opened ==========="
2520 [ ! -f $DIR/f34 ] && test_34a
2521 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2522 $OPENFILE -f O_RDONLY $DIR/f34
2523 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2524 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2526 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2529 [ ! -f $DIR/f34 ] && test_34a
2530 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2531 $OPENFILE -f O_RDWR $DIR/f34
2532 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2533 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2535 run_test 34c "O_RDWR opening file-with-size works =============="
2538 [ ! -f $DIR/f34 ] && test_34a
2539 dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2540 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2543 run_test 34d "write to sparse file ============================="
2547 $MCREATE $DIR/f34e || error
2548 $TRUNCATE $DIR/f34e 1000 || error
2549 $CHECKSTAT -s 1000 $DIR/f34e || error
2550 $OPENFILE -f O_RDWR $DIR/f34e
2551 $CHECKSTAT -s 1000 $DIR/f34e || error
2553 run_test 34e "create objects, some with size and some without =="
2555 test_34f() { # bug 6242, 6243
2556 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2559 $MCREATE $DIR/f34f || error
2560 $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2561 dd if=$DIR/f34f of=$TMP/f34f
2562 $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2563 dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2564 cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2565 cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2566 rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2568 run_test 34f "read from a file with no objects until EOF ======="
2571 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2572 dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2573 $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2574 $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2575 cancel_lru_locks osc
2576 $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2577 error "wrong size after lock cancel"
2579 $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2580 $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2581 error "expanding truncate failed"
2582 cancel_lru_locks osc
2583 $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2584 error "wrong expanded size after lock cancel"
2586 run_test 34g "truncate long file ==============================="
2589 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2593 dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2594 sync # Flush the cache so that multiop below does not block on cache
2595 # flush when getting the group lock
2596 $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2599 # Since just timed wait is not good enough, let's do a sync write
2600 # that way we are sure enough time for a roundtrip + processing
2601 # passed + 2 seconds of extra margin.
2602 dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2606 if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2607 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2611 local nsz=`stat -c %s $DIR/$tfile`
2612 [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2614 run_test 34h "ftruncate file under grouplock should not block"
2617 cp /bin/sh $DIR/f35a
2619 chown $RUNAS_ID $DIR/f35a
2620 $RUNAS $DIR/f35a && error || true
2623 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2627 utime $DIR/f36 || error
2629 run_test 36a "MDS utime check (mknod, utime) ==================="
2633 utime $DIR/f36 || error
2635 run_test 36b "OST utime check (open, utime) ===================="
2640 chown $RUNAS_ID $DIR/d36
2641 $RUNAS utime $DIR/d36/f36 || error
2643 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2646 [ ! -d $DIR/d36 ] && test_36c
2647 echo "" > $DIR/d36/f36
2648 $RUNAS utime $DIR/d36/f36 || error
2650 run_test 36d "non-root OST utime check (open, utime) ==========="
2653 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2654 test_mkdir -p $DIR/$tdir
2655 touch $DIR/$tdir/$tfile
2656 $RUNAS utime $DIR/$tdir/$tfile && \
2657 error "utime worked, expected failure" || true
2659 run_test 36e "utime on non-owned file (should return error) ===="
2663 local LANG_SAVE=$LANG
2664 local LC_LANG_SAVE=$LC_LANG
2665 export LANG=C LC_LANG=C # for date language
2667 DATESTR="Dec 20 2000"
2668 test_mkdir -p $DIR/$tdir
2669 lctl set_param fail_loc=$fl
2671 cp /etc/hosts $DIR/$tdir/$tfile
2672 sync & # write RPC generated with "current" inode timestamp, but delayed
2674 touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2675 LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2676 cancel_lru_locks osc
2677 LS_AFTER="`ls -l $DIR/$tdir/$tfile`" # timestamp from OST object
2679 [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2680 echo "BEFORE: $LS_BEFORE" && \
2681 echo "AFTER : $LS_AFTER" && \
2682 echo "WANT : $DATESTR" && \
2683 error "$DIR/$tdir/$tfile timestamps changed" || true
2685 export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2689 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2690 #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2691 subr_36fh "0x80000214"
2693 run_test 36f "utime on file racing with OST BRW write =========="
2696 remote_ost_nodsh && skip "remote OST with nodsh" && return
2697 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2702 test_mkdir -p $DIR/$tdir
2703 fmd_max_age=$(do_facet ost1 \
2704 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2707 fmd_before=$(do_facet ost1 \
2708 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2709 touch $DIR/$tdir/$tfile
2710 sleep $((fmd_max_age + 12))
2711 fmd_after=$(do_facet ost1 \
2712 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2714 echo "fmd_before: $fmd_before"
2715 echo "fmd_after: $fmd_after"
2716 [ "$fmd_after" -gt "$fmd_before" ] && \
2717 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2718 error "fmd didn't expire after ping" || true
2720 run_test 36g "filter mod data cache expiry ====================="
2723 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2724 #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2725 subr_36fh "0x80000227"
2727 run_test 36h "utime on file racing with OST BRW write =========="
2729 # test_37 - duplicate with tests 32q 32r
2732 local file=$DIR/$tfile
2734 openfile -f O_DIRECTORY $file
2737 [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2738 [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2740 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2744 touch $DIR/${tfile}2
2745 # ls -l $DIR/$tfile $DIR/${tfile}2
2746 # ls -lu $DIR/$tfile $DIR/${tfile}2
2747 # ls -lc $DIR/$tfile $DIR/${tfile}2
2749 $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2750 if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2752 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2754 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2756 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2757 error "O_TRUNC didn't change timestamps"
2760 run_test 39 "mtime changed on create ==========================="
2763 test_mkdir -p $DIR/$tdir
2764 cp -p /etc/passwd $DIR/$tdir/fopen
2765 cp -p /etc/passwd $DIR/$tdir/flink
2766 cp -p /etc/passwd $DIR/$tdir/funlink
2767 cp -p /etc/passwd $DIR/$tdir/frename
2768 ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2771 echo "aaaaaa" >> $DIR/$tdir/fopen
2772 echo "aaaaaa" >> $DIR/$tdir/flink
2773 echo "aaaaaa" >> $DIR/$tdir/funlink
2774 echo "aaaaaa" >> $DIR/$tdir/frename
2776 local open_new=`stat -c %Y $DIR/$tdir/fopen`
2777 local link_new=`stat -c %Y $DIR/$tdir/flink`
2778 local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2779 local rename_new=`stat -c %Y $DIR/$tdir/frename`
2781 cat $DIR/$tdir/fopen > /dev/null
2782 ln $DIR/$tdir/flink $DIR/$tdir/flink2
2783 rm -f $DIR/$tdir/funlink2
2784 mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2786 for (( i=0; i < 2; i++ )) ; do
2787 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2788 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2789 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2790 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2792 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2793 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2794 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2795 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2797 cancel_lru_locks osc
2798 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2801 run_test 39b "mtime change on open, link, unlink, rename ======"
2803 # this should be set to past
2804 TEST_39_MTIME=`date -d "1 year ago" +%s`
2810 local mtime0=`stat -c %Y $DIR1/$tfile`
2812 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2813 local mtime1=`stat -c %Y $DIR1/$tfile`
2814 [ "$mtime1" = $TEST_39_MTIME ] || \
2815 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2818 echo hello >> $DIR1/$tfile
2820 local mtime2=`stat -c %Y $DIR1/$tfile`
2821 [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2822 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2824 mv $DIR1/$tfile $DIR1/$tfile-1
2826 for (( i=0; i < 2; i++ )) ; do
2827 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2828 [ "$mtime2" = "$mtime3" ] || \
2829 error "mtime ($mtime2) changed (to $mtime3) on rename"
2831 cancel_lru_locks osc
2832 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2835 run_test 39c "mtime change on rename ==========================="
2839 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2842 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2844 for (( i=0; i < 2; i++ )) ; do
2845 local mtime=`stat -c %Y $DIR1/$tfile`
2846 [ $mtime = $TEST_39_MTIME ] || \
2847 error "mtime($mtime) is not set to $TEST_39_MTIME"
2849 cancel_lru_locks osc
2850 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2853 run_test 39d "create, utime, stat =============================="
2857 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2859 local mtime1=`stat -c %Y $DIR1/$tfile`
2861 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2863 for (( i=0; i < 2; i++ )) ; do
2864 local mtime2=`stat -c %Y $DIR1/$tfile`
2865 [ $mtime2 = $TEST_39_MTIME ] || \
2866 error "mtime($mtime2) is not set to $TEST_39_MTIME"
2868 cancel_lru_locks osc
2869 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2872 run_test 39e "create, stat, utime, stat ========================"
2876 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2878 mtime1=`stat -c %Y $DIR1/$tfile`
2881 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2883 for (( i=0; i < 2; i++ )) ; do
2884 local mtime2=`stat -c %Y $DIR1/$tfile`
2885 [ $mtime2 = $TEST_39_MTIME ] || \
2886 error "mtime($mtime2) is not set to $TEST_39_MTIME"
2888 cancel_lru_locks osc
2889 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2892 run_test 39f "create, stat, sleep, utime, stat ================="
2896 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2897 echo hello >> $DIR1/$tfile
2898 local mtime1=`stat -c %Y $DIR1/$tfile`
2901 chmod o+r $DIR1/$tfile
2903 for (( i=0; i < 2; i++ )) ; do
2904 local mtime2=`stat -c %Y $DIR1/$tfile`
2905 [ "$mtime1" = "$mtime2" ] || \
2906 error "lost mtime: $mtime2, should be $mtime1"
2908 cancel_lru_locks osc
2909 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2912 run_test 39g "write, chmod, stat ==============================="
2916 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2921 echo hello >> $DIR1/$tfile
2922 local mtime1=`stat -c %Y $DIR1/$tfile`
2924 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2926 if [ "$d1" != "$d2" ]; then
2927 echo "write and touch not within one second"
2929 for (( i=0; i < 2; i++ )) ; do
2930 local mtime2=`stat -c %Y $DIR1/$tfile`
2931 [ "$mtime2" = $TEST_39_MTIME ] || \
2932 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2934 cancel_lru_locks osc
2935 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2939 run_test 39h "write, utime within one second, stat ============="
2942 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2946 echo hello >> $DIR1/$tfile
2947 local mtime1=`stat -c %Y $DIR1/$tfile`
2949 mv $DIR1/$tfile $DIR1/$tfile-1
2951 for (( i=0; i < 2; i++ )) ; do
2952 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2954 [ "$mtime1" = "$mtime2" ] || \
2955 error "lost mtime: $mtime2, should be $mtime1"
2957 cancel_lru_locks osc
2958 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2961 run_test 39i "write, rename, stat =============================="
2964 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2965 start_full_debug_logging
2969 #define OBD_FAIL_OSC_DELAY_SETTIME 0x412
2970 lctl set_param fail_loc=0x80000412
2971 multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2972 error "multiop failed"
2974 local mtime1=`stat -c %Y $DIR1/$tfile`
2976 mv $DIR1/$tfile $DIR1/$tfile-1
2978 kill -USR1 $multipid
2979 wait $multipid || error "multiop close failed"
2981 for (( i=0; i < 2; i++ )) ; do
2982 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2983 [ "$mtime1" = "$mtime2" ] ||
2984 error "mtime is lost on close: $mtime2, " \
2987 cancel_lru_locks osc
2988 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2990 lctl set_param fail_loc=0
2991 stop_full_debug_logging
2993 run_test 39j "write, rename, close, stat ======================="
2996 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3000 multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3002 local mtime1=`stat -c %Y $DIR1/$tfile`
3004 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3006 kill -USR1 $multipid
3007 wait $multipid || error "multiop close failed"
3009 for (( i=0; i < 2; i++ )) ; do
3010 local mtime2=`stat -c %Y $DIR1/$tfile`
3012 [ "$mtime2" = $TEST_39_MTIME ] || \
3013 error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3015 cancel_lru_locks osc
3016 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3019 run_test 39k "write, utime, close, stat ========================"
3021 # this should be set to future
3022 TEST_39_ATIME=`date -d "1 year" +%s`
3025 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3026 remote_mds_nodsh && skip "remote MDS with nodsh" && return
3027 local atime_diff=$(do_facet $SINGLEMDS \
3028 lctl get_param -n mdd.*MDT0000*.atime_diff)
3032 # test setting directory atime to future
3033 touch -a -d @$TEST_39_ATIME $DIR/$tdir
3034 local atime=$(stat -c %X $DIR/$tdir)
3035 [ "$atime" = $TEST_39_ATIME ] || \
3036 error "atime is not set to future: $atime, $TEST_39_ATIME"
3038 # test setting directory atime from future to now
3039 local d1=$(date +%s)
3041 local d2=$(date +%s)
3043 cancel_lru_locks mdc
3044 atime=$(stat -c %X $DIR/$tdir)
3045 [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3046 error "atime is not updated from future: $atime, $d1<atime<$d2"
3048 do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3051 # test setting directory atime when now > dir atime + atime_diff
3055 cancel_lru_locks mdc
3056 atime=$(stat -c %X $DIR/$tdir)
3057 [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3058 error "atime is not updated : $atime, should be $d2"
3060 do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3063 # test not setting directory atime when now < dir atime + atime_diff
3065 cancel_lru_locks mdc
3066 atime=$(stat -c %X $DIR/$tdir)
3067 [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3068 error "atime is updated to $atime, should remain $d1<atime<$d2"
3070 do_facet $SINGLEMDS \
3071 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3073 run_test 39l "directory atime update ==========================="
3076 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3079 local far_past_mtime=$(date -d "May 29 1953" +%s)
3080 local far_past_atime=$(date -d "Dec 17 1903" +%s)
3082 touch -m -d @$far_past_mtime $DIR1/$tfile
3083 touch -a -d @$far_past_atime $DIR1/$tfile
3085 for (( i=0; i < 2; i++ )) ; do
3086 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3087 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3088 error "atime or mtime set incorrectly"
3090 cancel_lru_locks osc
3091 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3094 run_test 39m "test atime and mtime before 1970"
3097 dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3098 $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3099 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3100 $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3101 error "$tfile is not 4096 bytes in size"
3103 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3107 small_write $DIR/f41 18
3109 run_test 41 "test small file write + fstat ====================="
3111 count_ost_writes() {
3112 lctl get_param -n osc.*.stats |
3113 awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3120 BG_DIRTY_RATIO_SAVE=10
3121 MAX_BG_DIRTY_RATIO=25
3125 # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3126 # dirty_ratio, dirty_background_ratio
3127 if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3128 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3129 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3130 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3132 # if file not here, we are a 2.4 kernel
3133 kill -CONT `pidof kupdated`
3138 # setup the trap first, so someone cannot exit the test at the
3139 # exact wrong time and mess up a machine
3140 trap start_writeback EXIT
3141 # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3142 if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3143 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3144 sysctl -w vm.dirty_writeback_centisecs=0
3145 sysctl -w vm.dirty_writeback_centisecs=0
3146 # save and increase /proc/sys/vm/dirty_ratio
3147 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3148 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3149 # save and increase /proc/sys/vm/dirty_background_ratio
3150 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3151 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3153 # if file not here, we are a 2.4 kernel
3154 kill -STOP `pidof kupdated`
3158 # ensure that all stripes have some grant before we test client-side cache
3160 for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3161 dd if=/dev/zero of=$i bs=4k count=1
3166 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3167 # file truncation, and file removal.
3169 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3171 cancel_lru_locks osc
3173 sync; sleep 1; sync # just to be safe
3174 BEFOREWRITES=`count_ost_writes`
3175 lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3176 dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3177 AFTERWRITES=`count_ost_writes`
3178 [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3179 error "$BEFOREWRITES < $AFTERWRITES"
3182 run_test 42a "ensure that we don't flush on close =============="
3185 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3187 cancel_lru_locks osc
3190 dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3191 BEFOREWRITES=`count_ost_writes`
3192 $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3193 AFTERWRITES=`count_ost_writes`
3194 if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3195 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3197 BEFOREWRITES=`count_ost_writes`
3198 sync || error "sync: $?"
3199 AFTERWRITES=`count_ost_writes`
3200 if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3201 error "$BEFOREWRITES < $AFTERWRITES on sync"
3203 dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3207 run_test 42b "test destroy of file with cached dirty data ======"
3209 # if these tests just want to test the effect of truncation,
3210 # they have to be very careful. consider:
3211 # - the first open gets a {0,EOF}PR lock
3212 # - the first write conflicts and gets a {0, count-1}PW
3213 # - the rest of the writes are under {count,EOF}PW
3214 # - the open for truncate tries to match a {0,EOF}PR
3215 # for the filesize and cancels the PWs.
3216 # any number of fixes (don't get {0,EOF} on open, match
3217 # composite locks, do smarter file size management) fix
3218 # this, but for now we want these tests to verify that
3219 # the cancellation with truncate intent works, so we
3220 # start the file with a full-file pw lock to match against
3221 # until the truncate.
3226 cancel_lru_locks osc
3228 # prime the file with 0,EOF PW to match
3232 # now the real test..
3233 dd if=/dev/zero of=$file bs=1024 count=100
3234 BEFOREWRITES=`count_ost_writes`
3235 $TRUNCATE $file $offset
3236 cancel_lru_locks osc
3237 AFTERWRITES=`count_ost_writes`
3242 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3244 [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3245 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3248 run_test 42c "test partial truncate of file with cached dirty data"
3251 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3253 [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3254 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3257 run_test 42d "test complete truncate of file with cached dirty data"
3259 test_42e() { # bug22074
3260 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3261 local TDIR=$DIR/${tdir}e
3262 local pagesz=$(page_size)
3263 local pages=16 # hardcoded 16 pages, don't change it.
3264 local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3265 local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3269 test_mkdir -p $DIR/${tdir}e
3270 $SETSTRIPE -c 1 $TDIR
3271 createmany -o $TDIR/f $files
3273 max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3275 # we assume that with $OSTCOUNT files, at least one of them will
3276 # be allocated on OST0.
3277 warmup_files=$((OSTCOUNT * max_dirty_mb))
3278 createmany -o $TDIR/w $warmup_files
3280 # write a large amount of data into one file and sync, to get good
3281 # avail_grant number from OST.
3282 for ((i=0; i<$warmup_files; i++)); do
3283 idx=$($GETSTRIPE -i $TDIR/w$i)
3284 [ $idx -ne 0 ] && continue
3285 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3288 [ $i -gt $warmup_files ] && error "OST0 is still cold"
3290 $LCTL get_param $proc_osc0/cur_dirty_bytes
3291 $LCTL get_param $proc_osc0/cur_grant_bytes
3293 # create as much dirty pages as we can while not to trigger the actual
3294 # RPCs directly. but depends on the env, VFS may trigger flush during this
3295 # period, hopefully we are good.
3296 for ((i=0; i<$warmup_files; i++)); do
3297 idx=$($GETSTRIPE -i $TDIR/w$i)
3298 [ $idx -ne 0 ] && continue
3299 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3301 $LCTL get_param $proc_osc0/cur_dirty_bytes
3302 $LCTL get_param $proc_osc0/cur_grant_bytes
3304 # perform the real test
3305 $LCTL set_param $proc_osc0/rpc_stats 0
3306 for ((;i<$files; i++)); do
3307 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3308 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3311 $LCTL get_param $proc_osc0/rpc_stats
3314 local have_ppr=false
3315 $LCTL get_param $proc_osc0/rpc_stats |
3316 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3317 # skip lines until we are at the RPC histogram data
3318 [ "$PPR" == "pages" ] && have_ppr=true && continue
3319 $have_ppr || continue
3321 # we only want the percent stat for < 16 pages
3322 [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3324 percent=$((percent + WPCT))
3325 if [ $percent -gt 15 ]; then
3326 error "less than 16-pages write RPCs" \
3333 run_test 42e "verify sub-RPC writes are not done synchronously"
3336 test_mkdir -p $DIR/$tdir
3337 cp -p /bin/ls $DIR/$tdir/$tfile
3338 $MULTIOP $DIR/$tdir/$tfile Ow_c &
3340 # give multiop a chance to open
3343 $DIR/$tdir/$tfile && error || true
3346 run_test 43 "execution of file opened for write should return -ETXTBSY"
3349 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3350 test_mkdir -p $DIR/$tdir
3351 cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3352 cp -p multiop $DIR/$tdir/multiop
3353 MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3356 $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3357 kill -USR1 $MULTIOP_PID || return 2
3358 wait $MULTIOP_PID || return 3
3359 rm $TMP/$tfile.junk $DIR/$tdir/multiop
3361 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3364 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3365 test_mkdir -p $DIR/$tdir
3366 cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3367 cp -p multiop $DIR/$tdir/multiop
3368 MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3371 $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3372 kill -USR1 $MULTIOP_PID || return 2
3373 wait $MULTIOP_PID || return 3
3374 rm $TMP/$tfile.junk $DIR/$tdir/multiop
3376 run_test 43b "truncate of file being executed should return -ETXTBSY"
3379 local testdir="$DIR/$tdir"
3380 test_mkdir -p $DIR/$tdir
3382 ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3383 ( cd $testdir && md5sum -c)
3385 run_test 43c "md5sum of copy into lustre========================"
3388 [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3389 dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3390 dd if=$DIR/f1 bs=4k count=1 > /dev/null
3392 run_test 44 "zero length read from a sparse stripe ============="
3395 local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3397 [ -z "$nstripe" ] && skip "can't get stripe info" && return
3398 [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3399 local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3401 if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3402 nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3405 OFFSETS="0 $((stride/2)) $((stride-1))"
3406 for offset in $OFFSETS ; do
3407 for i in `seq 0 $((nstripe-1))`; do
3408 local GLOBALOFFSETS=""
3409 local size=$((((i + 2 * $nstripe )*$stride + $offset))) # Bytes
3410 local myfn=$DIR/d44a-$size
3411 echo "--------writing $myfn at $size"
3412 ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3413 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3414 ll_sparseness_verify $myfn $GLOBALOFFSETS \
3415 || error "ll_sparseness_verify $GLOBALOFFSETS"
3417 for j in `seq 0 $((nstripe-1))`; do
3418 size=$((((j + $nstripe )*$stride + $offset))) # Bytes
3419 ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3420 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3422 ll_sparseness_verify $myfn $GLOBALOFFSETS \
3423 || error "ll_sparseness_verify $GLOBALOFFSETS"
3428 run_test 44a "test sparse pwrite ==============================="
3432 for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3438 before=`dirty_osc_total`
3439 echo executing "\"$*\""
3441 after=`dirty_osc_total`
3442 echo before $before, after $after
3445 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3447 # Obtain grants from OST if it supports it
3448 echo blah > ${f}_grant
3451 do_dirty_record "echo blah > $f"
3452 [ $before -eq $after ] && error "write wasn't cached"
3453 do_dirty_record "> $f"
3454 [ $before -gt $after ] || error "truncate didn't lower dirty count"
3455 do_dirty_record "echo blah > $f"
3456 [ $before -eq $after ] && error "write wasn't cached"
3457 do_dirty_record "sync"
3458 [ $before -gt $after ] || error "writeback didn't lower dirty count"
3459 do_dirty_record "echo blah > $f"
3460 [ $before -eq $after ] && error "write wasn't cached"
3461 do_dirty_record "cancel_lru_locks osc"
3462 [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3465 run_test 45 "osc io page accounting ============================"
3467 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object. this
3468 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3469 # objects offset and an assert hit when an rpc was built with 1023's mapped
3470 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3472 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3476 dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3478 dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3479 dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3483 run_test 46 "dirtying a previously written page ================"
3485 # test_47 is removed "Device nodes check" is moved to test_28
3487 test_48a() { # bug 2399
3488 check_kernel_version 34 || return 0
3489 test_mkdir -p $DIR/$tdir
3491 mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3492 test_mkdir $DIR/$tdir || error "recreate directory failed"
3493 touch foo || error "'touch foo' failed after recreating cwd"
3494 test_mkdir $DIR/$tdir/bar ||
3495 error "'mkdir foo' failed after recreating cwd"
3496 if check_kernel_version 44; then
3497 touch .foo || error "'touch .foo' failed after recreating cwd"
3498 test_mkdir $DIR/$tdir/.bar ||
3499 error "'mkdir .foo' failed after recreating cwd"
3501 ls . > /dev/null || error "'ls .' failed after recreating cwd"
3502 ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3503 cd . || error "'cd .' failed after recreating cwd"
3504 test_mkdir . && error "'mkdir .' worked after recreating cwd"
3505 rmdir . && error "'rmdir .' worked after recreating cwd"
3506 ln -s . baz || error "'ln -s .' failed after recreating cwd"
3507 cd .. || error "'cd ..' failed after recreating cwd"
3509 run_test 48a "Access renamed working dir (should return errors)="
3511 test_48b() { # bug 2399
3512 check_kernel_version 34 || return 0
3514 test_mkdir -p $DIR/$tdir
3516 rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3517 touch foo && error "'touch foo' worked after removing cwd"
3518 test_mkdir $DIR/$tdir/foo &&
3519 error "'mkdir foo' worked after removing cwd"
3520 if check_kernel_version 44; then
3521 touch .foo && error "'touch .foo' worked after removing cwd"
3522 test_mkdir $DIR/$tdir/.foo &&
3523 error "'mkdir .foo' worked after removing cwd"
3525 ls . > /dev/null && error "'ls .' worked after removing cwd"
3526 ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3527 is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3528 test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3529 rmdir . && error "'rmdir .' worked after removing cwd"
3530 ln -s . foo && error "'ln -s .' worked after removing cwd"
3531 cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3517
3533 run_test 48b "Access removed working dir (should return errors)="
3535 test_48c() { # bug 2350
3536 check_kernel_version 36 || return 0
3537 #lctl set_param debug=-1
3540 test_mkdir -p $DIR/$tdir/dir
3542 $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3543 $TRACE touch foo && error "touch foo worked after removing cwd"
3544 $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3545 if check_kernel_version 44; then
3546 touch .foo && error "touch .foo worked after removing cwd"
3547 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3549 $TRACE ls . && error "'ls .' worked after removing cwd"
3550 $TRACE ls .. || error "'ls ..' failed after removing cwd"
3551 is_patchless || ( $TRACE cd . &&
3552 error "'cd .' worked after removing cwd" )
3553 $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3554 $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3555 $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3556 $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3558 run_test 48c "Access removed working subdir (should return errors)"
3560 test_48d() { # bug 2350
3561 check_kernel_version 36 || return 0
3562 #lctl set_param debug=-1
3565 test_mkdir -p $DIR/$tdir/dir
3567 $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3568 $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3569 $TRACE touch foo && error "'touch foo' worked after removing parent"
3570 $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3571 if check_kernel_version 44; then
3572 touch .foo && error "'touch .foo' worked after removing parent"
3574 error "mkdir .foo worked after removing parent"
3576 $TRACE ls . && error "'ls .' worked after removing parent"
3577 $TRACE ls .. && error "'ls ..' worked after removing parent"
3578 is_patchless || ( $TRACE cd . &&
3579 error "'cd .' worked after recreate parent" )
3580 $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3581 $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3582 $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3583 is_patchless || ( $TRACE cd .. &&
3584 error "'cd ..' worked after removing parent" || true )
3586 run_test 48d "Access removed parent subdir (should return errors)"
3588 test_48e() { # bug 4134
3589 check_kernel_version 41 || return 0
3590 #lctl set_param debug=-1
3593 test_mkdir -p $DIR/$tdir/dir
3595 $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3596 $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3597 $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3598 $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3599 # On a buggy kernel addition of "touch foo" after cd .. will
3600 # produce kernel oops in lookup_hash_it
3601 touch ../foo && error "'cd ..' worked after recreate parent"
3603 $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3605 run_test 48e "Access to recreated parent subdir (should return errors)"
3607 test_49() { # LU-1030
3608 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3609 # get ost1 size - lustre-OST0000
3610 ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3611 # write 800M at maximum
3612 [ $ost1_size -gt 819200 ] && ost1_size=819200
3614 lfs setstripe -c 1 -i 0 $DIR/$tfile
3615 dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3618 # change max_pages_per_rpc while writing the file
3619 local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3620 local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3621 # loop until dd process exits
3622 while ps ax -opid | grep -wq $dd_pid; do
3623 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3624 sleep $((RANDOM % 5 + 1))
3626 # restore original max_pages_per_rpc
3627 $LCTL set_param $osc1_mppc=$orig_mppc
3628 rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3630 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3634 test_mkdir $DIR/$tdir
3636 ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3638 run_test 50 "special situations: /proc symlinks ==============="
3640 test_51a() { # was test_51
3641 # bug 1516 - create an empty entry right after ".." then split dir
3642 test_mkdir -p $DIR/$tdir
3643 touch $DIR/$tdir/foo
3644 $MCREATE $DIR/$tdir/bar
3646 createmany -m $DIR/$tdir/longfile 201
3648 while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3649 $MCREATE $DIR/$tdir/longfile$FNUM
3654 ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3656 run_test 51a "special situations: split htree with empty entry =="
3658 export NUMTEST=70000
3660 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3661 local BASE=$DIR/$tdir
3663 # cleanup the directory
3668 local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3669 local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3670 [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3673 [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3674 echo "reduced count to $NUMTEST due to inodes"
3676 # need to check free space for the directories as well
3677 local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3678 numfree=$((blkfree / 4))
3679 [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3680 echo "reduced count to $NUMTEST due to blocks"
3682 createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3683 echo "failed" > $BASE/fnum
3685 run_test 51b "exceed 64k subdirectory nlink limit"
3687 test_51ba() { # LU-993
3688 local BASE=$DIR/$tdir
3689 # unlink all but 100 subdirectories, then check it still works
3691 [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3693 [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3694 local DELETE=$((NUMTEST - LEFT))
3696 # continue on to run this test even if 51b didn't finish,
3697 # just to delete the many subdirectories created.
3698 [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3700 # for ldiskfs the nlink count should be 1, but this is OSD specific
3701 # and so this is listed for informational purposes only
3702 echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3703 unlinkmany -d $BASE/d $DELETE
3706 if [ $RC -ne 0 ]; then
3707 if [ "$NUMPREV" == "failed" ]; then
3708 skip "previous setup failed"
3711 error "unlink of first $DELETE subdirs failed"
3716 echo "nlink between: $(stat -c %h $BASE)"
3717 # trim the first line of ls output
3718 local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3719 [ $FOUND -ne $LEFT ] &&
3720 error "can't find subdirs: found only $FOUND/$LEFT"
3722 unlinkmany -d $BASE/d $DELETE $LEFT ||
3723 error "unlink of second $LEFT subdirs failed"
3724 # regardless of whether the backing filesystem tracks nlink accurately
3725 # or not, the nlink count shouldn't be more than "." and ".." here
3726 local AFTER=$(stat -c %h $BASE)
3727 [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3728 echo "nlink after: $AFTER"
3730 run_test 51ba "verify nlink for many subdirectory cleanup"
3733 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3734 [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3735 test_mkdir -p $DIR/$tdir
3736 createmany -o $DIR/$tdir/t- 1000
3737 $GETSTRIPE $DIR/$tdir > $TMP/files
3738 for N in `seq 0 $((OSTCOUNT - 1))`; do
3739 OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3740 OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3741 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3743 unlinkmany $DIR/$tdir/t- 1000
3746 for N in `seq 1 $((OSTCOUNT - 1))`; do
3747 [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3748 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3749 [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3750 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3752 [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3753 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3754 [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3755 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3759 run_test 51d "check object distribution ===================="
3762 [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3763 test_mkdir -p $DIR/$tdir
3764 touch $DIR/$tdir/foo
3765 chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3766 echo bar >> $DIR/$tdir/foo || error "append bar failed"
3767 cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3768 rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3769 link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3771 echo foo >> $DIR/$tdir/foo || error "append foo failed"
3772 mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3773 lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3775 chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3776 cp -r $DIR/$tdir /tmp/
3777 rm -fr $DIR/$tdir || error "cleanup rm failed"
3779 run_test 52a "append-only flag test (should return errors) ====="
3782 [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3783 test_mkdir -p $DIR/$tdir
3784 touch $DIR/$tdir/foo
3785 chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3786 cat test > $DIR/$tdir/foo && error "cat test worked"
3787 cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3788 rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3789 link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3791 echo foo >> $DIR/$tdir/foo && error "echo worked"
3792 mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3793 [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3794 [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3795 lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3797 chattr -i $DIR/$tdir/foo || error "chattr failed"
3799 rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3801 run_test 52b "immutable flag test (should return errors) ======="
3804 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3805 remote_mds_nodsh && skip "remote MDS with nodsh" && return
3806 remote_ost_nodsh && skip "remote OST with nodsh" && return
3821 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3822 for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3823 param=$(echo ${value[0]} | cut -d "=" -f1)
3824 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3825 param_seq=$(echo ${param} |
3826 sed -e s/prealloc_last_id/prealloc_last_seq/g)
3827 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3828 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3830 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3831 node=$(facet_active_host ost$((ostnum+1)))
3832 param="obdfilter.$ostname.last_id"
3833 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3834 echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3835 ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3837 ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3838 if [ $ost_last_seq = $mds_last_seq ]; then
3839 if [ $ost_last_id != $mds_last ]; then
3840 error "$ost_last != $mds_last_id"
3848 [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3851 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3854 $SOCKETSERVER $DIR/socket ||
3855 error "$SOCKETSERVER $DIR/socket failed: $?"
3856 $SOCKETCLIENT $DIR/socket ||
3857 error "$SOCKETCLIENT $DIR/socket failed: $?"
3858 $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3860 run_test 54a "unix domain socket test =========================="
3866 dd if=/dev/zero of=$f bs=$(page_size) count=1
3868 run_test 54b "char device works in lustre ======================"
3871 [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3872 [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3873 [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3875 for i in $(seq 3 7); do
3876 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3884 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3887 loopdev="$DIR/loop54c"
3890 [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3891 mknod $loopdev b 7 $LOOPNUM
3892 echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3893 dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3894 losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3895 mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3897 mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3898 dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3900 dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3905 run_test 54c "block device works in lustre ====================="
3911 [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
3913 run_test 54d "fifo device works in lustre ======================"
3916 check_kernel_version 46 || return 0
3919 cp -aL /dev/console $f
3920 echo $string > $f || error "echo $string to $f failed"