3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
6 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
11 # Check Grants after these tests
12 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c 64d"
17 CREATETEST=${CREATETEST:-createtest}
18 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
19 OPENFILE=${OPENFILE:-openfile}
20 OPENUNLINK=${OPENUNLINK:-openunlink}
21 READS=${READS:-"reads"}
22 MUNLINK=${MUNLINK:-munlink}
23 SOCKETSERVER=${SOCKETSERVER:-socketserver}
24 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
25 MEMHOG=${MEMHOG:-memhog}
26 DIRECTIO=${DIRECTIO:-directio}
27 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
29 CHECK_GRANT=${CHECK_GRANT:-"yes"}
30 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
31 export PARALLEL=${PARALLEL:-"no"}
34 LUSTRE=${LUSTRE:-$(dirname $0)/..}
35 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
36 . $LUSTRE/tests/test-framework.sh
41 ALWAYS_EXCEPT="$SANITY_EXCEPT "
42 # bug number for skipped test: LU-9693 LU-6493 LU-9693
43 ALWAYS_EXCEPT+=" 42a 42b 42c "
44 # bug number: LU-8411 LU-9054
45 ALWAYS_EXCEPT+=" 407 312"
48 # bug number: LU-14181 LU-14181
49 ALWAYS_EXCEPT+=" 64e 64f"
52 selinux_status=$(getenforce)
53 if [ "$selinux_status" != "Disabled" ]; then
58 # skip the grant tests for ARM until they are fixed
59 if [[ $(uname -m) = aarch64 ]]; then
60 # bug number: LU-11596
61 ALWAYS_EXCEPT+=" $GRANT_CHECK_LIST"
62 # bug number: LU-11671 LU-11667
63 ALWAYS_EXCEPT+=" 45 317"
64 # bug number: LU-14067 LU-14067
65 ALWAYS_EXCEPT+=" 400a 400b"
68 # skip nfs tests on kernels >= 4.12.0 until they are fixed
69 if [ $LINUX_VERSION_CODE -ge $(version_code 4.12.0) ]; then
70 # bug number: LU-12661
73 # skip cgroup tests on RHEL8.1 kernels until they are fixed
74 if (( $LINUX_VERSION_CODE >= $(version_code 4.18.0) &&
75 $LINUX_VERSION_CODE < $(version_code 5.4.0) )); then
76 # bug number: LU-13063
81 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 135 136 300o"
83 if [ "$mds1_FSTYPE" = "zfs" ]; then
84 # bug number for skipped test:
87 [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
90 if [ "$ost1_FSTYPE" = "zfs" ]; then
91 # bug number for skipped test: LU-1941 LU-1941 LU-1941 LU-1941
92 ALWAYS_EXCEPT+=" 130a 130b 130c 130d 130e 130f 130g"
95 # Get the SLES distro version
97 # Returns a version string that should only be used in comparing
98 # strings returned by version_code()
101 local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
103 # All SuSE Linux versions have one decimal. version_code expects two
104 local sles_version=$version.0
105 version_code $sles_version
108 # Check if we are running on Ubuntu or SLES so we can make decisions on
110 if [ -r /etc/SuSE-release ]; then
111 sles_version=$(sles_version_code)
112 [ $sles_version -lt $(version_code 11.4.0) ] &&
113 # bug number for skipped test: LU-4341
114 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
115 [ $sles_version -lt $(version_code 12.0.0) ] &&
116 # bug number for skipped test: LU-3703
117 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 234"
118 elif [ -r /etc/os-release ]; then
119 if grep -qi ubuntu /etc/os-release; then
120 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
121 -e 's/^VERSION=//p' \
125 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
126 # bug number for skipped test:
128 ALWAYS_EXCEPT+=" 103a 410"
138 pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
139 cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
148 check_swap_layouts_support()
150 $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
151 skip "Does not support layout lock."
154 check_swap_layout_no_dom()
157 local SUPP=$(lfs getstripe $FOLDER | grep "pattern: mdt" | wc -l)
158 [ $SUPP -eq 0 ] || skip "layout swap does not support DOM files so far"
161 check_and_setup_lustre
165 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
167 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
168 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
169 rm -rf $DIR/[Rdfs][0-9]*
171 # $RUNAS_ID may get set incorrectly somewhere else
172 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
173 error "\$RUNAS_ID set to 0, but \$UID is also 0!"
175 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
177 if [ "${ONLY}" = "MOUNT" ] ; then
178 echo "Lustre is up, please go on"
182 echo "preparing for tests involving mounts"
183 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
185 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
186 echo # add a newline after mke2fs.
190 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
191 lctl set_param debug=-1 2> /dev/null || true
194 $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
196 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
198 run_test 0a "touch; rm ====================="
201 chmod 0755 $DIR || error "chmod 0755 $DIR failed"
202 $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
204 run_test 0b "chmod 0755 $DIR ============================="
207 $LCTL get_param mdc.*.import | grep "state: FULL" ||
208 error "import not FULL"
209 $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
212 run_test 0c "check import proc"
214 test_0d() { # LU-3397
215 [ $MGS_VERSION -lt $(version_code 2.10.57) ] &&
216 skip "proc exports not supported before 2.10.57"
218 local mgs_exp="mgs.MGS.exports"
219 local client_uuid=$($LCTL get_param -n mgc.*.uuid)
221 local exp_client_version
224 local temp_imp=$DIR/$tfile.import
225 local temp_exp=$DIR/$tfile.export
227 # save mgc import file to $temp_imp
228 $LCTL get_param mgc.*.import | tee $temp_imp
229 # Check if client uuid is found in MGS export
230 for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
231 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
235 # save mgs export file to $temp_exp
236 do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
238 # Compare the value of field "connect_flags"
239 imp_val=$(grep "connect_flags" $temp_imp)
240 exp_val=$(grep "connect_flags" $temp_exp)
241 [ "$exp_val" == "$imp_val" ] ||
242 error "export flags '$exp_val' != import flags '$imp_val'"
244 # Compare client versions. Only compare top-3 fields for compatibility
245 exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
246 exp_val=$(version_code $(cut -d. -f1,2,3 <<<$exp_client_version))
247 imp_val=$(version_code $(lustre_build_version client | cut -d. -f1,2,3))
248 [ "$exp_val" == "$imp_val" ] ||
249 error "exp version '$exp_client_version'($exp_val) != " \
250 "'$(lustre_build_version client)'($imp_val)"
252 run_test 0d "check export proc ============================="
255 test_mkdir $DIR/$tdir
256 test_mkdir $DIR/$tdir/d2
257 mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
258 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
261 $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
263 run_test 1 "mkdir; remkdir; rmdir"
266 test_mkdir $DIR/$tdir
267 touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
268 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
270 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
272 run_test 2 "mkdir; touch; rmdir; check file"
275 test_mkdir $DIR/$tdir
276 $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
277 touch $DIR/$tdir/$tfile
278 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
280 $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
282 run_test 3 "mkdir; touch; rmdir; check dir"
284 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
286 test_mkdir -i 1 $DIR/$tdir
288 touch $DIR/$tdir/$tfile ||
289 error "Create file under remote directory failed"
292 error "Expect error removing in-use dir $DIR/$tdir"
294 test -d $DIR/$tdir || error "Remote directory disappeared"
296 rm -rf $DIR/$tdir || error "remove remote dir error"
298 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
301 test_mkdir $DIR/$tdir
302 test_mkdir $DIR/$tdir/d2
303 chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
304 $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
305 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
307 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
310 touch $DIR/$tfile || error "touch $DIR/$tfile failed"
311 chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
312 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
313 error "$tfile does not have perm 0666 or UID $UID"
314 $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
315 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
316 error "$tfile should be 0666 and owned by UID $UID"
318 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
321 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
324 chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
325 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
326 error "$tfile should be owned by UID $RUNAS_ID"
327 $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
328 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
329 error "$tfile should be owned by UID $RUNAS_ID"
331 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
334 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
337 chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
338 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
339 error "$tfile should be owned by GID $UID"
340 $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
341 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
342 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
344 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
347 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
349 test_mkdir $DIR/$tdir
350 chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
351 $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
352 chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
353 test_mkdir $DIR/$tdir/d/subdir
354 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
355 error "$tdir/d/subdir should be GID $RUNAS_GID"
356 if [[ $MDSCOUNT -gt 1 ]]; then
357 # check remote dir sgid inherite
358 $LFS mkdir -i 0 $DIR/$tdir.local ||
359 error "mkdir $tdir.local failed"
360 chmod g+s $DIR/$tdir.local ||
361 error "chmod $tdir.local failed"
362 chgrp $RUNAS_GID $DIR/$tdir.local ||
363 error "chgrp $tdir.local failed"
364 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
365 error "mkdir $tdir.remote failed"
366 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
367 error "$tdir.remote should be owned by $UID.$RUNAS_ID"
368 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
369 error "$tdir.remote should be mode 02755"
372 run_test 6g "verify new dir in sgid dir inherits group"
374 test_6h() { # bug 7331
375 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
377 touch $DIR/$tfile || error "touch failed"
378 chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
379 $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
380 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
381 $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
382 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
384 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
387 test_mkdir $DIR/$tdir
388 $MCREATE $DIR/$tdir/$tfile
389 chmod 0666 $DIR/$tdir/$tfile
390 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
391 error "$tdir/$tfile should be mode 0666"
393 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
396 if [ ! -d $DIR/$tdir ]; then
397 test_mkdir $DIR/$tdir
399 $MCREATE $DIR/$tdir/$tfile
400 echo -n foo > $DIR/$tdir/$tfile
401 [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
402 $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
404 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
407 test_mkdir $DIR/$tdir
408 touch $DIR/$tdir/$tfile
409 chmod 0666 $DIR/$tdir/$tfile
410 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
411 error "$tfile mode not 0666"
413 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
416 test_mkdir $DIR/$tdir
417 test_mkdir $DIR/$tdir/d2
418 test_mkdir $DIR/$tdir/d2/d3
419 $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
421 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
424 test_mkdir $DIR/$tdir
425 test_mkdir $DIR/$tdir/d2
426 touch $DIR/$tdir/d2/$tfile
427 $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
428 error "$tdir/d2/$tfile not a file"
430 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
433 test_mkdir $DIR/$tdir
434 test_mkdir $DIR/$tdir/d2
435 chmod 0666 $DIR/$tdir/d2
436 chmod 0705 $DIR/$tdir/d2
437 $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
438 error "$tdir/d2 mode not 0705"
440 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
443 test_mkdir $DIR/$tdir
444 touch $DIR/$tdir/$tfile
445 chmod 0666 $DIR/$tdir/$tfile
446 chmod 0654 $DIR/$tdir/$tfile
447 $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
448 error "$tdir/d2 mode not 0654"
450 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
453 test_mkdir $DIR/$tdir
454 dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
456 $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
457 error "$tdir/$tfile size not 0 after truncate"
459 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
462 test_mkdir $DIR/$tdir
463 touch $DIR/$tdir/$tfile
465 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
467 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
470 test_mkdir $DIR/$tdir
471 touch $DIR/$tdir/$tfile
472 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
473 $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
474 error "$tdir/${tfile_2} not a file after rename"
475 rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
477 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
480 test_mkdir $DIR/$tdir
481 touch $DIR/$tdir/$tfile
482 rm -rf $DIR/$tdir/$tfile
483 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
485 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
488 test_mkdir $DIR/$tdir
489 touch $DIR/$tdir/$tfile
490 ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
492 $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
493 error "$tdir/l-exist not a symlink"
494 $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
495 error "$tdir/l-exist not referencing a file"
496 rm -f $DIR/$tdir/l-exist
497 $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
499 run_test 17a "symlinks: create, remove (real)"
502 test_mkdir $DIR/$tdir
503 ln -s no-such-file $DIR/$tdir/l-dangle
505 $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
506 error "$tdir/l-dangle not referencing no-such-file"
507 $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
508 error "$tdir/l-dangle not referencing non-existent file"
509 rm -f $DIR/$tdir/l-dangle
510 $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
512 run_test 17b "symlinks: create, remove (dangling)"
514 test_17c() { # bug 3440 - don't save failed open RPC for replay
515 test_mkdir $DIR/$tdir
516 ln -s foo $DIR/$tdir/$tfile
517 cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
519 run_test 17c "symlinks: open dangling (should return error)"
522 test_mkdir $DIR/$tdir
523 ln -s foo $DIR/$tdir/$tfile
524 touch $DIR/$tdir/$tfile || error "creating to new symlink"
526 run_test 17d "symlinks: create dangling"
529 test_mkdir $DIR/$tdir
530 local foo=$DIR/$tdir/$tfile
531 ln -s $foo $foo || error "create symlink failed"
532 ls -l $foo || error "ls -l failed"
533 ls $foo && error "ls not failed" || true
535 run_test 17e "symlinks: create recursive symlink (should return error)"
538 test_mkdir $DIR/$tdir
539 ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
540 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
541 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
542 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
543 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
544 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/$tdir/666
547 run_test 17f "symlinks: long and very long symlink name"
549 # str_repeat(S, N) generate a string that is string S repeated N times
554 while [ $((n -= 1)) -ge 0 ]; do
560 # Long symlinks and LU-2241
562 test_mkdir $DIR/$tdir
563 local TESTS="59 60 61 4094 4095"
565 # Fix for inode size boundary in 2.1.4
566 [ $MDS1_VERSION -lt $(version_code 2.1.4) ] &&
569 # Patch not applied to 2.2 or 2.3 branches
570 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
571 [ $MDS1_VERSION -le $(version_code 2.3.55) ] &&
575 local SYMNAME=$(str_repeat 'x' $i)
576 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
577 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
580 run_test 17g "symlinks: really long symlink name and inode boundaries"
582 test_17h() { #bug 17378
583 [ $PARALLEL == "yes" ] && skip "skip parallel run"
584 remote_mds_nodsh && skip "remote MDS with nodsh"
588 test_mkdir $DIR/$tdir
589 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
590 $LFS setstripe -c -1 $DIR/$tdir
591 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
592 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
593 touch $DIR/$tdir/$tfile || true
595 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
597 test_17i() { #bug 20018
598 [ $PARALLEL == "yes" ] && skip "skip parallel run"
599 remote_mds_nodsh && skip "remote MDS with nodsh"
601 local foo=$DIR/$tdir/$tfile
604 test_mkdir -c1 $DIR/$tdir
605 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
606 ln -s $foo $foo || error "create symlink failed"
607 #define OBD_FAIL_MDS_READLINK_EPROTO 0x143
608 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
609 ls -l $foo && error "error not detected"
612 run_test 17i "don't panic on short symlink (should return error)"
614 test_17k() { #bug 22301
615 [ $PARALLEL == "yes" ] && skip "skip parallel run"
616 [[ -z "$(which rsync 2>/dev/null)" ]] &&
617 skip "no rsync command"
618 rsync --help | grep -q xattr ||
619 skip_env "$(rsync --version | head -n1) does not support xattrs"
620 test_mkdir $DIR/$tdir
621 test_mkdir $DIR/$tdir.new
622 touch $DIR/$tdir/$tfile
623 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
624 rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
625 error "rsync failed with xattrs enabled"
627 run_test 17k "symlinks: rsync with xattrs enabled"
629 test_17l() { # LU-279
630 [[ -z "$(which getfattr 2>/dev/null)" ]] &&
631 skip "no getfattr command"
633 test_mkdir $DIR/$tdir
634 touch $DIR/$tdir/$tfile
635 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
636 for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
637 # -h to not follow symlinks. -m '' to list all the xattrs.
638 # grep to remove first line: '# file: $path'.
639 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
641 lgetxattr_size_check $path $xattr ||
642 error "lgetxattr_size_check $path $xattr failed"
646 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
650 [ $PARALLEL == "yes" ] && skip "skip parallel run"
651 [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
652 remote_mds_nodsh && skip "remote MDS with nodsh"
653 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
654 [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
655 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
657 local short_sym="0123456789"
658 local wdir=$DIR/$tdir
663 # create a long symlink file
664 for ((i = 0; i < 4; ++i)); do
665 long_sym=${long_sym}${long_sym}
668 echo "create 512 short and long symlink files under $wdir"
669 for ((i = 0; i < 256; ++i)); do
670 ln -sf ${long_sym}"a5a5" $wdir/long-$i
671 ln -sf ${short_sym}"a5a5" $wdir/short-$i
677 wait_delete_completed
679 echo "recreate the 512 symlink files with a shorter string"
680 for ((i = 0; i < 512; ++i)); do
681 # rewrite the symlink file with a shorter string
682 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
683 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
686 local mds_index=$(($($LFS getstripe -m $wdir) + 1))
687 local devname=$(mdsdevname $mds_index)
689 echo "stop and checking mds${mds_index}:"
690 # e2fsck should not return error
692 run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
695 start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
696 error "start mds${mds_index} failed"
697 df $MOUNT > /dev/null 2>&1
699 error "e2fsck detected error for short/long symlink: rc=$rc"
702 run_test 17m "run e2fsck against MDT which contains short/long symlink"
704 check_fs_consistency_17n() {
708 # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
709 # so it only check MDT1/MDT2 instead of all of MDTs.
710 for mdt_index in 1 2; do
711 local devname=$(mdsdevname $mdt_index)
712 # e2fsck should not return error
714 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
717 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
718 error "mount mds$mdt_index failed"
719 df $MOUNT > /dev/null 2>&1
725 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
726 [ $PARALLEL == "yes" ] && skip "skip parallel run"
727 [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
728 remote_mds_nodsh && skip "remote MDS with nodsh"
729 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
730 [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
731 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
735 test_mkdir $DIR/$tdir
736 for ((i=0; i<10; i++)); do
737 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
738 error "create remote dir error $i"
739 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
740 error "create files under remote dir failed $i"
743 check_fs_consistency_17n ||
744 error "e2fsck report error after create files under remote dir"
746 for ((i = 0; i < 10; i++)); do
747 rm -rf $DIR/$tdir/remote_dir_${i} ||
748 error "destroy remote dir error $i"
751 check_fs_consistency_17n ||
752 error "e2fsck report error after unlink files under remote dir"
754 [ $MDS1_VERSION -lt $(version_code 2.4.50) ] &&
755 skip "lustre < 2.4.50 does not support migrate mv"
757 for ((i = 0; i < 10; i++)); do
758 mkdir -p $DIR/$tdir/remote_dir_${i}
759 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
760 error "create files under remote dir failed $i"
761 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
762 error "migrate remote dir error $i"
764 check_fs_consistency_17n || error "e2fsck report error after migration"
766 for ((i = 0; i < 10; i++)); do
767 rm -rf $DIR/$tdir/remote_dir_${i} ||
768 error "destroy remote dir error $i"
771 check_fs_consistency_17n || error "e2fsck report error after unlink"
773 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
776 remote_mds_nodsh && skip "remote MDS with nodsh"
777 [ $MDS1_VERSION -lt $(version_code 2.3.64) ] &&
778 skip "Need MDS version at least 2.3.64"
780 local wdir=$DIR/${tdir}o
786 mdt_index=$($LFS getstripe -m $wdir/$tfile)
787 mdt_index=$((mdt_index + 1))
790 #fail mds will wait the failover finish then set
791 #following fail_loc to avoid interfer the recovery process.
794 #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
795 do_facet mds${mdt_index} lctl set_param fail_loc=0x194
796 ls -l $wdir/$tfile && rc=1
797 do_facet mds${mdt_index} lctl set_param fail_loc=0
798 [[ $rc -eq 0 ]] || error "stat file should fail"
800 run_test 17o "stat file with incompat LMA feature"
803 touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
804 ls $DIR || error "Failed to ls $DIR: $?"
806 run_test 18 "touch .../f ; ls ... =============================="
812 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
814 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
817 ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
819 run_test 19b "ls -l .../f19 (should return error) =============="
822 [ $RUNAS_ID -eq $UID ] &&
823 skip_env "RUNAS_ID = UID = $UID -- skipping"
825 $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
827 run_test 19c "$RUNAS touch .../f19 (should return error) =="
830 cat $DIR/f19 && error || true
832 run_test 19d "cat .../f19 (should return error) =============="
841 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
843 run_test 20 "touch .../f ; ls -l ..."
846 test_mkdir $DIR/$tdir
847 [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
848 ln -s dangle $DIR/$tdir/link
849 echo foo >> $DIR/$tdir/link
850 cat $DIR/$tdir/dangle
851 $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
852 $CHECKSTAT -f -t file $DIR/$tdir/link ||
853 error "$tdir/link not linked to a file"
855 run_test 21 "write to dangling link"
858 local wdir=$DIR/$tdir
860 chown $RUNAS_ID:$RUNAS_GID $wdir
861 (cd $wdir || error "cd $wdir failed";
862 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
864 ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
865 $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
866 $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
867 error "checkstat -u failed"
869 run_test 22 "unpack tar archive as non-root user"
873 test_mkdir $DIR/$tdir
874 local file=$DIR/$tdir/$tfile
876 openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
877 openfile -f O_CREAT:O_EXCL $file &&
878 error "$file recreate succeeded" || true
880 run_test 23a "O_CREAT|O_EXCL in subdir"
882 test_23b() { # bug 18988
883 test_mkdir $DIR/$tdir
884 local file=$DIR/$tdir/$tfile
887 echo foo > $file || error "write filed"
888 echo bar >> $file || error "append filed"
889 $CHECKSTAT -s 8 $file || error "wrong size"
892 run_test 23b "O_APPEND check"
894 # LU-9409, size with O_APPEND and tiny writes
896 local file=$DIR/$tfile
899 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
900 $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
904 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
905 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
907 $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
910 #racing tiny & normal writes
911 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
912 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
914 $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
917 #racing tiny & normal writes 2, ugly numbers
918 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
919 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
921 $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
924 run_test 23c "O_APPEND size checks for tiny writes"
926 # LU-11069 file offset is correct after appending writes
928 local file=$DIR/$tfile
931 echo CentaurHauls > $file
932 offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
933 if ((offset != 26)); then
934 error "wrong offset, expected 26, got '$offset'"
937 run_test 23d "file offset is correct after appending writes"
941 echo '-- same directory rename'
942 test_mkdir $DIR/$tdir
943 touch $DIR/$tdir/$tfile.1
944 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
945 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
947 run_test 24a "rename file to non-existent target"
950 test_mkdir $DIR/$tdir
951 touch $DIR/$tdir/$tfile.{1,2}
952 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
953 $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
954 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
956 run_test 24b "rename file to existing target"
959 test_mkdir $DIR/$tdir
960 test_mkdir $DIR/$tdir/d$testnum.1
961 mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
962 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
963 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
965 run_test 24c "rename directory to non-existent target"
968 test_mkdir -c1 $DIR/$tdir
969 test_mkdir -c1 $DIR/$tdir/d$testnum.1
970 test_mkdir -c1 $DIR/$tdir/d$testnum.2
971 mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
972 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
973 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
975 run_test 24d "rename directory to existing target"
978 echo '-- cross directory renames --'
982 mv $DIR/R5a/f $DIR/R5b/g
983 $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
984 $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
986 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
991 touch $DIR/R6a/f $DIR/R6b/g
992 mv $DIR/R6a/f $DIR/R6b/g
993 $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
994 $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
996 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
1001 test_mkdir $DIR/R7a/d
1002 mv $DIR/R7a/d $DIR/R7b/e
1003 $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
1004 $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
1006 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
1009 test_mkdir -c1 $DIR/R8a
1010 test_mkdir -c1 $DIR/R8b
1011 test_mkdir -c1 $DIR/R8a/d
1012 test_mkdir -c1 $DIR/R8b/e
1013 mrename $DIR/R8a/d $DIR/R8b/e
1014 $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1015 $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1017 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1020 echo "-- rename error cases"
1022 test_mkdir $DIR/R9/a
1024 mrename $DIR/R9/f $DIR/R9/a
1025 $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1026 $CHECKSTAT -t dir $DIR/R9/a || error "$DIR/R9/a not dir type"
1027 $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1029 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1033 mrename $DIR/R10/f $DIR/R10/g
1034 $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1035 $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1036 $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1038 run_test 24j "source does not exist ============================"
1041 test_mkdir $DIR/R11a
1042 test_mkdir $DIR/R11a/d
1044 mv $DIR/R11a/f $DIR/R11a/d
1045 $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1046 $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1048 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1050 # bug 2429 - rename foo foo foo creates invalid file
1053 $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1055 run_test 24l "Renaming a file to itself ========================"
1059 $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1060 # on ext3 this does not remove either the source or target files
1061 # though the "expected" operation would be to remove the source
1062 $CHECKSTAT -t file ${f} || error "${f} missing"
1063 $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1065 run_test 24m "Renaming a file to a hard link to itself ========="
1069 # this stats the old file after it was renamed, so it should fail
1071 $CHECKSTAT ${f} || error "${f} missing"
1073 $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1074 $CHECKSTAT -a ${f} || error "${f} exists"
1076 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1079 test_mkdir $DIR/$tdir
1080 rename_many -s random -v -n 10 $DIR/$tdir
1082 run_test 24o "rename of files during htree split"
1085 test_mkdir $DIR/R12a
1086 test_mkdir $DIR/R12b
1087 DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1088 mrename $DIR/R12a $DIR/R12b
1089 $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1090 $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1091 DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1092 [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1094 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1096 cleanup_multiop_pause() {
1098 kill -USR1 $MULTIPID
1102 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1104 test_mkdir $DIR/R13a
1105 test_mkdir $DIR/R13b
1106 local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1107 multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1110 trap cleanup_multiop_pause EXIT
1111 mrename $DIR/R13a $DIR/R13b
1112 $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1113 $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1114 local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1115 [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1116 cleanup_multiop_pause
1117 wait $MULTIPID || error "multiop close failed"
1119 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1121 test_24r() { #bug 3789
1122 test_mkdir $DIR/R14a
1123 test_mkdir $DIR/R14a/b
1124 mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1125 $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1126 $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1128 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1131 test_mkdir $DIR/R15a
1132 test_mkdir $DIR/R15a/b
1133 test_mkdir $DIR/R15a/b/c
1134 mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1135 $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1136 $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1138 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1140 test_mkdir $DIR/R16a
1141 test_mkdir $DIR/R16a/b
1142 test_mkdir $DIR/R16a/b/c
1143 mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1144 $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1145 $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1147 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1149 test_24u() { # bug12192
1150 $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1151 $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1153 run_test 24u "create stripe file"
1155 simple_cleanup_common() {
1158 [ -z "$DIR" ] || [ -z "$tdir" ] && return 0
1160 local start=$SECONDS
1163 wait_delete_completed
1164 echo "cleanup time $((SECONDS - start))"
1168 max_pages_per_rpc() {
1169 local mdtname="$(printf "MDT%04x" ${1:-0})"
1170 $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1174 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1176 local nrfiles=${COUNT:-100000}
1177 local fname="$DIR/$tdir/$tfile"
1179 # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1180 [ "$mds1_FSTYPE" = "zfs" ] && nrfiles=${COUNT:-10000}
1182 test_mkdir "$(dirname $fname)"
1183 # assume MDT0000 has the fewest inodes
1184 local stripes=$($LFS getdirstripe -c $(dirname $fname))
1185 local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1186 [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1188 trap simple_cleanup_common EXIT
1190 createmany -m "$fname" $nrfiles
1192 cancel_lru_locks mdc
1193 lctl set_param mdc.*.stats clear
1195 # was previously test_24D: LU-6101
1196 # readdir() returns correct number of entries after cursor reload
1197 local num_ls=$(ls $DIR/$tdir | wc -l)
1198 local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1199 local num_all=$(ls -a $DIR/$tdir | wc -l)
1200 if [ $num_ls -ne $nrfiles ] || [ $num_uniq -ne $nrfiles ] ||
1201 [ $num_all -ne $((nrfiles + 2)) ]; then
1202 error "Expected $nrfiles files, got $num_ls " \
1203 "($num_uniq unique $num_all .&..)"
1205 # LU-5 large readdir
1206 # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1207 # N bytes for name (len($nrfiles) rounded to 8 bytes) +
1208 # 8 bytes for luda_type (4 bytes rounded to 8 bytes)
1209 # take into account of overhead in lu_dirpage header and end mark in
1210 # each page, plus one in rpc_num calculation.
1211 local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1212 local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1213 local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1214 local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1215 local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1216 local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1217 echo "readpages: $mds_readpage rpc_max: $rpc_max"
1218 (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1219 error "large readdir doesn't take effect: " \
1220 "$mds_readpage should be about $rpc_max"
1222 simple_cleanup_common
1224 run_test 24v "list large directory (test hash collision, b=17560)"
1226 test_24w() { # bug21506
1228 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1229 dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1230 dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1231 SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1232 [[ "$SZ1" -eq "$SZ2" ]] ||
1233 error "Error reading at the end of the file $tfile"
1235 run_test 24w "Reading a file larger than 4Gb"
1238 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1239 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1240 [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1241 skip "Need MDS version at least 2.7.56"
1244 local remote_dir=$DIR/$tdir/remote_dir
1246 test_mkdir $DIR/$tdir
1247 $LFS mkdir -i $MDTIDX $remote_dir ||
1248 error "create remote directory failed"
1250 test_mkdir $DIR/$tdir/src_dir
1251 touch $DIR/$tdir/src_file
1252 test_mkdir $remote_dir/tgt_dir
1253 touch $remote_dir/tgt_file
1255 mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1256 error "rename dir cross MDT failed!"
1258 mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1259 error "rename file cross MDT failed!"
1261 touch $DIR/$tdir/ln_file
1262 ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1263 error "ln file cross MDT failed"
1265 rm -rf $DIR/$tdir || error "Can not delete directories"
1267 run_test 24x "cross MDT rename/link"
1270 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1271 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1273 local remote_dir=$DIR/$tdir/remote_dir
1276 test_mkdir $DIR/$tdir
1277 $LFS mkdir -i $mdtidx $remote_dir ||
1278 error "create remote directory failed"
1280 test_mkdir $remote_dir/src_dir
1281 touch $remote_dir/src_file
1282 test_mkdir $remote_dir/tgt_dir
1283 touch $remote_dir/tgt_file
1285 mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1286 error "rename subdir in the same remote dir failed!"
1288 mrename $remote_dir/src_file $remote_dir/tgt_file ||
1289 error "rename files in the same remote dir failed!"
1291 ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1292 error "link files in the same remote dir failed!"
1294 rm -rf $DIR/$tdir || error "Can not delete directories"
1296 run_test 24y "rename/link on the same dir should succeed"
1299 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1300 [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
1301 skip "Need MDS version at least 2.12.51"
1305 for index in 0 1; do
1306 $LFS mkdir -i $index $DIR/$tdir.$index || error "mkdir failed"
1307 touch $DIR/$tdir.0/$tfile.$index || error "touch failed"
1310 mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1 || error "mv $tfile.0 failed"
1312 index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.0)
1313 [ $index -eq 0 ] || error "$tfile.0 is on MDT$index"
1315 local mdts=$(comma_list $(mdts_nodes))
1317 do_nodes $mdts $LCTL set_param mdt.*.enable_remote_rename=0
1318 stack_trap "do_nodes $mdts $LCTL \
1319 set_param mdt.*.enable_remote_rename=1" EXIT
1321 mv $DIR/$tdir.0/$tfile.1 $DIR/$tdir.1 || error "mv $tfile.1 failed"
1323 index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.1)
1324 [ $index -eq 1 ] || error "$tfile.1 is on MDT$index"
1326 run_test 24z "cross-MDT rename is done as cp"
1328 test_24A() { # LU-3182
1332 test_mkdir $DIR/$tdir
1333 trap simple_cleanup_common EXIT
1334 createmany -m $DIR/$tdir/$tfile $NFILES
1335 local t=$(ls $DIR/$tdir | wc -l)
1336 local u=$(ls $DIR/$tdir | sort -u | wc -l)
1337 local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1338 if [ $t -ne $NFILES ] || [ $u -ne $NFILES ] ||
1339 [ $v -ne $((NFILES + 2)) ] ; then
1340 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1343 simple_cleanup_common || error "Can not delete directories"
1345 run_test 24A "readdir() returns correct number of entries."
1347 test_24B() { # LU-4805
1348 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1352 test_mkdir $DIR/$tdir
1353 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1354 error "create striped dir failed"
1356 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1357 [ $count -eq 2 ] || error "Expected 2, got $count"
1359 touch $DIR/$tdir/striped_dir/a
1361 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1362 [ $count -eq 3 ] || error "Expected 3, got $count"
1364 touch $DIR/$tdir/striped_dir/.f
1366 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1367 [ $count -eq 4 ] || error "Expected 4, got $count"
1369 rm -rf $DIR/$tdir || error "Can not delete directories"
1371 run_test 24B "readdir for striped dir return correct number of entries"
1374 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1380 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1381 error "create striped dir failed"
1383 cd $DIR/$tdir/d0/striped_dir
1385 local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1386 local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1387 local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1389 [ "$d0_ino" = "$parent_ino" ] ||
1390 error ".. wrong, expect $d0_ino, get $parent_ino"
1392 mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1393 error "mv striped dir failed"
1395 parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1397 [ "$d1_ino" = "$parent_ino" ] ||
1398 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1400 run_test 24C "check .. in striped dir"
1403 [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1404 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1407 mkdir $DIR/$tdir/src_dir
1408 $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1409 error "create remote source failed"
1411 touch $DIR/$tdir/src_dir/src_child/a
1413 $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1414 error "create remote target dir failed"
1416 $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1417 error "create remote target child failed"
1419 mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1420 error "rename dir cross MDT failed!"
1424 $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1425 error "src_child still exists after rename"
1427 $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1428 error "missing file(a) after rename"
1430 rm -rf $DIR/$tdir || error "Can not delete directories"
1432 run_test 24E "cross MDT rename/link"
1435 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1438 [ "$SLOW" = "no" ] && repeats=100
1442 echo "$repeats repeats"
1443 for ((i = 0; i < repeats; i++)); do
1444 $LFS mkdir -i0 -c2 $DIR/$tdir/test || error "mkdir fails"
1445 touch $DIR/$tdir/test/a || error "touch fails"
1446 mkdir $DIR/$tdir/test/b || error "mkdir fails"
1447 rm -rf $DIR/$tdir/test || error "rmdir fails"
1452 run_test 24F "hash order vs readdir (LU-11330)"
1455 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1460 $LFS mkdir -i 0 $DIR/$tdir-0 || error "mkdir $tdir-0"
1461 $LFS mkdir -i 1 $DIR/$tdir-1 || error "mkdir $tdir-1"
1462 touch $DIR/$tdir-0/f1 || error "touch f1"
1463 ln -s $DIR/$tdir-0/f1 $DIR/$tdir-0/s1 || error "ln s1"
1464 ino1=$(stat -c%i $DIR/$tdir-0/s1)
1465 mv $DIR/$tdir-0/s1 $DIR/$tdir-1 || error "mv s1"
1466 ino2=$(stat -c%i $DIR/$tdir-1/s1)
1467 [ $ino1 -ne $ino2 ] || error "s1 should be migrated"
1469 run_test 24G "migrate symlink in rename"
1472 echo '== symlink sanity ============================================='
1476 touch $DIR/s25/foo ||
1477 error "File creation in symlinked directory failed"
1479 run_test 25a "create file in symlinked directory ==============="
1482 [ ! -d $DIR/d25 ] && test_25a
1483 $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1485 run_test 25b "lookup file in symlinked directory ==============="
1489 test_mkdir $DIR/d26/d26-2
1490 ln -s d26/d26-2 $DIR/s26
1491 touch $DIR/s26/foo || error "File creation failed"
1493 run_test 26a "multiple component symlink ======================="
1496 test_mkdir -p $DIR/$tdir/d26-2
1497 ln -s $tdir/d26-2/foo $DIR/s26-2
1498 touch $DIR/s26-2 || error "File creation failed"
1500 run_test 26b "multiple component symlink at end of lookup ======"
1503 test_mkdir $DIR/d26.2
1504 touch $DIR/d26.2/foo
1505 ln -s d26.2 $DIR/s26.2-1
1506 ln -s s26.2-1 $DIR/s26.2-2
1507 ln -s s26.2-2 $DIR/s26.2-3
1508 chmod 0666 $DIR/s26.2-3/foo
1510 run_test 26c "chain of symlinks"
1512 # recursive symlinks (bug 439)
1514 ln -s d26-3/foo $DIR/d26-3
1516 run_test 26d "create multiple component recursive symlink"
1519 [ ! -h $DIR/d26-3 ] && test_26d
1522 run_test 26e "unlink multiple component recursive symlink"
1524 # recursive symlinks (bug 7022)
1526 test_mkdir $DIR/$tdir
1527 test_mkdir $DIR/$tdir/$tfile
1528 cd $DIR/$tdir/$tfile || error "cd $DIR/$tdir/$tfile failed"
1529 test_mkdir -p lndir/bar1
1530 test_mkdir $DIR/$tdir/$tfile/$tfile
1531 cd $tfile || error "cd $tfile failed"
1532 ln -s .. dotdot || error "ln dotdot failed"
1533 ln -s dotdot/lndir lndir || error "ln lndir failed"
1534 cd $DIR/$tdir || error "cd $DIR/$tdir failed"
1535 output=`ls $tfile/$tfile/lndir/bar1`
1536 [ "$output" = bar1 ] && error "unexpected output"
1537 rm -r $tfile || error "rm $tfile failed"
1538 $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1540 run_test 26f "rm -r of a directory which has recursive symlink"
1543 test_mkdir $DIR/$tdir
1544 $LFS getstripe $DIR/$tdir
1545 $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1546 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1547 cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1549 run_test 27a "one stripe file"
1552 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1554 test_mkdir $DIR/$tdir
1555 $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1556 $LFS getstripe -c $DIR/$tdir/$tfile
1557 [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1558 error "two-stripe file doesn't have two stripes"
1560 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1562 run_test 27b "create and write to two stripe file"
1564 # 27c family tests specific striping, setstripe -o
1566 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1567 test_mkdir -p $DIR/$tdir
1570 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1571 $LFS getstripe -i $DIR/$tdir/$tfile
1572 [ $($LFS getstripe -i $DIR/$tdir/$tfile ) -eq $osts ] ||
1573 error "stripe not on specified OST"
1575 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1577 run_test 27ca "one stripe on specified OST"
1580 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1581 test_mkdir -p $DIR/$tdir
1583 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1584 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1587 # Strip getstripe output to a space separated list of OSTs
1588 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1589 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1590 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1591 error "stripes not on specified OSTs"
1593 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1595 run_test 27cb "two stripes on specified OSTs"
1598 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1599 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1600 skip "server does not support overstriping"
1602 test_mkdir -p $DIR/$tdir
1604 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1605 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1608 # Strip getstripe output to a space separated list of OSTs
1609 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1610 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1611 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1612 error "stripes not on specified OSTs"
1614 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1616 run_test 27cc "two stripes on the same OST"
1619 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1620 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1621 skip "server does not support overstriping"
1622 test_mkdir -p $DIR/$tdir
1623 local osts="0,1,1,0"
1624 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1625 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1628 # Strip getstripe output to a space separated list of OSTs
1629 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1630 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1631 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1632 error "stripes not on specified OSTs"
1634 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1636 run_test 27cd "four stripes on two OSTs"
1639 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
1640 skip_env "too many osts, skipping"
1641 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1642 skip "server does not support overstriping"
1643 # We do one more stripe than we have OSTs
1644 [ $OSTCOUNT -lt 159 ] || large_xattr_enabled ||
1645 skip_env "ea_inode feature disabled"
1647 test_mkdir -p $DIR/$tdir
1649 for i in $(seq 0 $OSTCOUNT);
1652 if [ $i -ne $OSTCOUNT ]; then
1656 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1657 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1660 # Strip getstripe output to a space separated list of OSTs
1661 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1662 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1663 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1664 error "stripes not on specified OSTs"
1666 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1668 run_test 27ce "more stripes than OSTs with -o"
1671 local osp_proc="osp.$FSNAME-OST0000-osc-MDT000*.active"
1674 test_mkdir -p $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
1675 do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=0"
1676 stack_trap "do_facet $SINGLEMDS $LCTL set_param -n $osp_proc=1" EXIT
1677 wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 1" ||
1678 error "failed to set $osp_proc=0"
1680 $LFS setstripe -o 0 $DIR/$tdir/$tfile &
1683 do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=1"
1684 wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 0" ||
1685 error "failed to set $osp_proc=1"
1688 error "should return error due to $osp_proc=0"
1690 run_test 27cf "'setstripe -o' on inactive OSTs should return error"
1693 test_mkdir $DIR/$tdir
1694 $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1695 error "setstripe failed"
1696 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1697 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1699 run_test 27d "create file with default settings"
1702 # LU-5839 adds check for existed layout before setting it
1703 [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1704 skip "Need MDS version at least 2.7.56"
1706 test_mkdir $DIR/$tdir
1707 $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1708 $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1709 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1711 run_test 27e "setstripe existing file (should return error)"
1714 test_mkdir $DIR/$tdir
1715 $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1716 error "$LFS setstripe $DIR/$tdir/$tfile failed"
1717 $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1718 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1719 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1720 $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1722 run_test 27f "setstripe with bad stripe size (should return error)"
1725 test_mkdir $DIR/$tdir
1726 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1727 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1728 error "$DIR/$tdir/$tfile has object"
1730 run_test 27g "$LFS getstripe with no objects"
1733 test_mkdir $DIR/$tdir
1734 touch $DIR/$tdir/$tfile || error "touch failed"
1735 ln -s bogus $DIR/$tdir/$tfile.2 || error "ln failed"
1736 $LFS getstripe -m $DIR/$tdir/$tfile $DIR/$tdir/$tfile.2
1738 (( rc == 2 )) || error "getstripe did not return ENOENT"
1740 run_test 27ga "$LFS getstripe with missing file (should return error)"
1743 test_mkdir $DIR/$tdir
1744 touch $DIR/$tdir/$tfile || error "touch failed"
1745 [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1746 error "missing objects"
1748 run_test 27i "$LFS getstripe with some objects"
1751 test_mkdir $DIR/$tdir
1752 $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1753 error "setstripe failed" || true
1755 run_test 27j "setstripe with bad stripe offset (should return error)"
1757 test_27k() { # bug 2844
1758 test_mkdir $DIR/$tdir
1759 local file=$DIR/$tdir/$tfile
1760 local ll_max_blksize=$((4 * 1024 * 1024))
1761 $LFS setstripe -S 67108864 $file || error "setstripe failed"
1762 local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1763 [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1764 dd if=/dev/zero of=$file bs=4k count=1
1765 blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1766 [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1768 run_test 27k "limit i_blksize for broken user apps"
1771 mcreate $DIR/$tfile || error "creating file"
1772 $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1773 error "setstripe should have failed" || true
1775 run_test 27l "check setstripe permissions (should return error)"
1778 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1780 [ -n "$RCLIENTS" -o -n "$MOUNT_2" ] &&
1781 skip_env "multiple clients -- skipping"
1783 ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1785 if [[ $ORIGFREE -gt $MAXFREE ]]; then
1786 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1788 trap simple_cleanup_common EXIT
1789 test_mkdir $DIR/$tdir
1790 $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1791 dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1792 error "dd should fill OST0"
1794 while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1796 [ $i -gt 256 ] && break
1799 touch $DIR/$tdir/$tfile.$i
1800 [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1801 awk '{print $1}'| grep -w "0") ] &&
1802 error "OST0 was full but new created file still use it"
1804 touch $DIR/$tdir/$tfile.$i
1805 [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1806 awk '{print $1}'| grep -w "0") ] &&
1807 error "OST0 was full but new created file still use it"
1808 simple_cleanup_common
1810 run_test 27m "create file while OST0 was full"
1812 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1813 # if the OST isn't full anymore.
1815 local ostidx=${1:-""}
1820 local list=$(comma_list $(osts_nodes))
1821 [ "$ostidx" ] && list=$(facet_host ost$((ostidx + 1)))
1823 do_nodes $list lctl set_param fail_loc=0
1824 wait_delete_completed # initiate all OST_DESTROYs from MDS to OST
1825 delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1826 awk '{print $1 * 2;exit;}')
1827 get_prealloc="$LCTL get_param -n osc.*MDT*.prealloc_status |
1829 wait_update_facet $SINGLEMDS "$get_prealloc" "" $delay
1832 __exhaust_precreations() {
1835 local FAILIDX=${3:-$OSTIDX}
1836 local ofacet=ost$((OSTIDX + 1))
1838 test_mkdir -p -c1 $DIR/$tdir
1839 local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1840 local mfacet=mds$((mdtidx + 1))
1841 echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1843 local OST=$(ostname_from_index $OSTIDX)
1846 local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1847 local last_id=$(do_facet $mfacet lctl get_param -n \
1848 osp.$mdtosc_proc1.prealloc_last_id)
1849 local next_id=$(do_facet $mfacet lctl get_param -n \
1850 osp.$mdtosc_proc1.prealloc_next_id)
1852 local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1853 do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1855 test_mkdir -p $DIR/$tdir/${OST}
1856 $LFS setstripe -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1857 #define OBD_FAIL_OST_ENOSPC 0x215
1858 do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1859 echo "Creating to objid $last_id on ost $OST..."
1860 createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1861 do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1862 do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1865 exhaust_precreations() {
1866 __exhaust_precreations $1 $2 $3
1870 exhaust_all_precreations() {
1872 for (( i=0; i < OSTCOUNT; i++ )) ; do
1873 __exhaust_precreations $i $1 -1
1879 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1880 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1881 remote_mds_nodsh && skip "remote MDS with nodsh"
1882 remote_ost_nodsh && skip "remote OST with nodsh"
1885 rm -f $DIR/$tdir/$tfile
1886 exhaust_precreations 0 0x80000215
1887 $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1888 touch $DIR/$tdir/$tfile || error "touch failed"
1889 $LFS getstripe $DIR/$tdir/$tfile
1892 run_test 27n "create file with some full OSTs"
1895 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1896 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1897 remote_mds_nodsh && skip "remote MDS with nodsh"
1898 remote_ost_nodsh && skip "remote OST with nodsh"
1901 rm -f $DIR/$tdir/$tfile
1902 exhaust_all_precreations 0x215
1904 touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1909 run_test 27o "create file with all full OSTs (should error)"
1911 function create_and_checktime() {
1916 for ((i=0; i < $loops; i++)); do
1917 local start=$SECONDS
1918 multiop $fname-$i Oc
1919 ((SECONDS-start < TIMEOUT)) ||
1920 error "creation took " $((SECONDS-$start)) && return 1
1925 local mdts=$(comma_list $(mdts_nodes))
1927 [ $MDS1_VERSION -lt $(version_code 2.13.57) ] &&
1928 skip "Need MDS version at least 2.13.57"
1930 local f0=$DIR/${tfile}-0
1931 local f1=$DIR/${tfile}-1
1933 wait_delete_completed
1935 # refill precreated objects
1936 $LFS setstripe -i0 -c1 $f0
1938 saved=$(do_facet mds1 $LCTL get_param -n lov.*0000*.qos_threshold_rr)
1939 # force QoS allocation policy
1940 do_nodes $mdts $LCTL set_param lov.*.qos_threshold_rr=0%
1941 stack_trap "do_nodes $mdts $LCTL set_param \
1942 lov.*.qos_threshold_rr=$saved" EXIT
1945 # one OST is unavailable, but still have few objects preallocated
1947 stack_trap "start ost1 $(ostdevname 1) $OST_MOUNT_OPTS; \
1948 rm -rf $f1 $DIR/$tdir*" EXIT
1950 for ((i=0; i < 7; i++)); do
1951 mkdir $DIR/$tdir$i || error "can't create dir"
1952 $LFS setstripe -c$((OSTCOUNT-1)) $DIR/$tdir$i ||
1953 error "can't set striping"
1955 for ((i=0; i < 7; i++)); do
1956 create_and_checktime $DIR/$tdir$i/$tfile 100 &
1960 run_test 27oo "don't let few threads to reserve too many objects"
1963 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1964 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1965 remote_mds_nodsh && skip "remote MDS with nodsh"
1966 remote_ost_nodsh && skip "remote OST with nodsh"
1969 rm -f $DIR/$tdir/$tfile
1970 test_mkdir $DIR/$tdir
1972 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1973 $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1974 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1976 exhaust_precreations 0 0x80000215
1977 echo foo >> $DIR/$tdir/$tfile || error "append failed"
1978 $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1979 $LFS getstripe $DIR/$tdir/$tfile
1983 run_test 27p "append to a truncated file with some full OSTs"
1986 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1987 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1988 remote_mds_nodsh && skip "remote MDS with nodsh"
1989 remote_ost_nodsh && skip "remote OST with nodsh"
1992 rm -f $DIR/$tdir/$tfile
1994 test_mkdir $DIR/$tdir
1995 $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1996 $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1997 error "truncate $DIR/$tdir/$tfile failed"
1998 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
2000 exhaust_all_precreations 0x215
2002 echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
2003 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
2007 run_test 27q "append to truncated file with all OSTs full (should error)"
2010 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2011 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2012 remote_mds_nodsh && skip "remote MDS with nodsh"
2013 remote_ost_nodsh && skip "remote OST with nodsh"
2016 rm -f $DIR/$tdir/$tfile
2017 exhaust_precreations 0 0x80000215
2019 $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
2023 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
2025 test_27s() { # bug 10725
2026 test_mkdir $DIR/$tdir
2027 local stripe_size=$((4096 * 1024 * 1024)) # 2^32
2028 local stripe_count=0
2029 [ $OSTCOUNT -eq 1 ] || stripe_count=2
2030 $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
2031 error "stripe width >= 2^32 succeeded" || true
2034 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
2036 test_27t() { # bug 10864
2041 $WLFS getstripe $tfile
2044 run_test 27t "check that utils parse path correctly"
2046 test_27u() { # bug 4900
2047 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2048 remote_mds_nodsh && skip "remote MDS with nodsh"
2051 local list=$(comma_list $(mdts_nodes))
2053 #define OBD_FAIL_MDS_OSC_PRECREATE 0x139
2054 do_nodes $list $LCTL set_param fail_loc=0x139
2055 test_mkdir -p $DIR/$tdir
2056 trap simple_cleanup_common EXIT
2057 createmany -o $DIR/$tdir/t- 1000
2058 do_nodes $list $LCTL set_param fail_loc=0
2060 TLOG=$TMP/$tfile.getstripe
2061 $LFS getstripe $DIR/$tdir > $TLOG
2062 OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
2063 unlinkmany $DIR/$tdir/t- 1000
2065 [[ $OBJS -gt 0 ]] &&
2066 error "$OBJS objects created on OST-0. See $TLOG" ||
2069 run_test 27u "skip object creation on OSC w/o objects"
2071 test_27v() { # bug 4900
2072 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2073 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2074 remote_mds_nodsh && skip "remote MDS with nodsh"
2075 remote_ost_nodsh && skip "remote OST with nodsh"
2077 exhaust_all_precreations 0x215
2080 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe / file
2082 touch $DIR/$tdir/$tfile
2083 #define OBD_FAIL_TGT_DELAY_PRECREATE 0x705
2085 for (( i=1; i < OSTCOUNT; i++ )); do
2086 do_facet ost$i lctl set_param fail_loc=0x705
2088 local START=`date +%s`
2089 createmany -o $DIR/$tdir/$tfile 32
2091 local FINISH=`date +%s`
2092 local TIMEOUT=`lctl get_param -n timeout`
2093 local PROCESS=$((FINISH - START))
2094 [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
2095 error "$FINISH - $START >= $TIMEOUT / 2"
2096 sleep $((TIMEOUT / 2 - PROCESS))
2099 run_test 27v "skip object creation on slow OST"
2101 test_27w() { # bug 10997
2102 test_mkdir $DIR/$tdir
2103 $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
2104 [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
2105 error "stripe size $size != 65536" || true
2106 [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
2107 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
2109 run_test 27w "check $LFS setstripe -S and getstrip -d options"
2112 [[ $OSTCOUNT -lt 2 ]] &&
2113 skip_env "skipping multiple stripe count/offset test"
2115 test_mkdir $DIR/$tdir
2116 for i in $(seq 1 $OSTCOUNT); do
2118 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
2119 error "setstripe -c $i -i $offset failed"
2120 count=$($LFS getstripe -c $DIR/$tdir/f$i)
2121 index=$($LFS getstripe -i $DIR/$tdir/f$i)
2122 [ $count -ne $i ] && error "stripe count $count != $i" || true
2123 [ $index -ne $offset ] &&
2124 error "stripe offset $index != $offset" || true
2127 run_test 27wa "check $LFS setstripe -c -i options"
2130 remote_ost_nodsh && skip "remote OST with nodsh"
2131 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2132 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2134 OFFSET=$(($OSTCOUNT - 1))
2136 local OST=$(ostname_from_index $OSTIDX)
2138 test_mkdir $DIR/$tdir
2139 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe per file
2140 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
2142 createmany -o $DIR/$tdir/$tfile $OSTCOUNT
2143 for i in $(seq 0 $OFFSET); do
2144 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
2145 awk '{print $1}' | grep -w "$OSTIDX") ] &&
2146 error "OST0 was degraded but new created file still use it"
2148 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
2150 run_test 27x "create files while OST0 is degraded"
2153 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2154 remote_mds_nodsh && skip "remote MDS with nodsh"
2155 remote_ost_nodsh && skip "remote OST with nodsh"
2156 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2158 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
2159 local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
2160 osp.$mdtosc.prealloc_last_id)
2161 local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
2162 osp.$mdtosc.prealloc_next_id)
2163 local fcount=$((last_id - next_id))
2164 [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
2165 [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
2167 local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
2168 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
2169 local OST_DEACTIVE_IDX=-1
2174 for OSC in $MDS_OSCS; do
2175 OST=$(osc_to_ost $OSC)
2176 OSTIDX=$(index_from_ostuuid $OST)
2177 if [ $OST_DEACTIVE_IDX == -1 ]; then
2178 OST_DEACTIVE_IDX=$OSTIDX
2180 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
2181 echo $OSC "is Deactivated:"
2182 do_facet $SINGLEMDS lctl --device %$OSC deactivate
2186 OSTIDX=$(index_from_ostuuid $OST)
2187 test_mkdir $DIR/$tdir
2188 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe / file
2190 for OSC in $MDS_OSCS; do
2191 OST=$(osc_to_ost $OSC)
2192 OSTIDX=$(index_from_ostuuid $OST)
2193 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2194 echo $OST "is degraded:"
2195 do_facet ost$((OSTIDX+1)) lctl set_param -n \
2196 obdfilter.$OST.degraded=1
2201 createmany -o $DIR/$tdir/$tfile $fcount
2203 for OSC in $MDS_OSCS; do
2204 OST=$(osc_to_ost $OSC)
2205 OSTIDX=$(index_from_ostuuid $OST)
2206 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2207 echo $OST "is recovered from degraded:"
2208 do_facet ost$((OSTIDX+1)) lctl set_param -n \
2209 obdfilter.$OST.degraded=0
2211 do_facet $SINGLEMDS lctl --device %$OSC activate
2215 # all osp devices get activated, hence -1 stripe count restored
2216 local stripe_count=0
2218 # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
2219 # devices get activated.
2221 $LFS setstripe -c -1 $DIR/$tfile
2222 stripe_count=$($LFS getstripe -c $DIR/$tfile)
2224 [ $stripe_count -ne $OSTCOUNT ] &&
2225 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
2228 run_test 27y "create files while OST0 is degraded and the rest inactive"
2234 lmm_count=$($LFS getstripe -c $1)
2235 lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
2236 lmm_oid=$($LFS getstripe -v $1 | awk '/lmm_object_id/ { print $2 }')
2238 local old_ifs="$IFS"
2240 fid=($($LFS path2fid $1))
2243 log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
2244 log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
2246 # compare lmm_seq and lu_fid->f_seq
2247 [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
2248 # compare lmm_object_id and lu_fid->oid
2249 [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
2251 # check the trusted.fid attribute of the OST objects of the file
2252 local have_obdidx=false
2254 $LFS getstripe $1 | while read obdidx oid hex seq; do
2255 # skip lines up to and including "obdidx"
2256 [ -z "$obdidx" ] && break
2257 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
2258 $have_obdidx || continue
2260 local ost=$((obdidx + 1))
2261 local dev=$(ostdevname $ost)
2264 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
2266 seq=$(echo $seq | sed -e "s/^0x//g")
2267 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
2268 oid_hex=$(echo $oid)
2270 oid_hex=$(echo $hex | sed -e "s/^0x//g")
2272 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
2276 # Don't unmount/remount the OSTs if we don't need to do that.
2277 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2278 # update too, until that use mount/ll_decode_filter_fid/mount.
2279 # Re-enable when debugfs will understand new filter_fid.
2281 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2282 ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2283 $dev 2>/dev/null" | grep "parent=")
2285 if [ -z "$ff" ]; then
2287 mount_fstype ost$ost
2288 ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2289 $(facet_mntpt ost$ost)/$obj_file)
2290 unmount_fstype ost$ost
2291 start ost$ost $dev $OST_MOUNT_OPTS
2295 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2297 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2299 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2300 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2302 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2303 # stripe_size=1048576 component_id=1 component_start=0 \
2304 # component_end=33554432
2305 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2306 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2307 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2309 if grep -q 'stripe=' <<<$ff; then
2310 ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2312 # $LL_DECODE_FILTER_FID does not print "stripe="; look
2313 # into f_ver in this case. See comment on ff_parent.
2314 ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2317 # compare lmm_seq and filter_fid->ff_parent.f_seq
2318 [ $ff_pseq = $lmm_seq ] ||
2319 error "FF parent SEQ $ff_pseq != $lmm_seq"
2320 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2321 [ $ff_poid = $lmm_oid ] ||
2322 error "FF parent OID $ff_poid != $lmm_oid"
2323 (($ff_pstripe == $stripe_nr)) ||
2324 error "FF stripe $ff_pstripe != $stripe_nr"
2326 stripe_nr=$((stripe_nr + 1))
2327 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2329 if grep -q 'stripe_count=' <<<$ff; then
2330 local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2331 -e 's/ .*//' <<<$ff)
2332 [ $lmm_count = $ff_scnt ] ||
2333 error "FF stripe count $lmm_count != $ff_scnt"
2339 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2340 remote_ost_nodsh && skip "remote OST with nodsh"
2342 test_mkdir $DIR/$tdir
2343 $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2344 { error "setstripe -c -1 failed"; return 1; }
2345 # We need to send a write to every object to get parent FID info set.
2346 # This _should_ also work for setattr, but does not currently.
2347 # touch $DIR/$tdir/$tfile-1 ||
2348 dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2349 { error "dd $tfile-1 failed"; return 2; }
2350 $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2351 { error "setstripe -c -1 failed"; return 3; }
2352 dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2353 { error "dd $tfile-2 failed"; return 4; }
2355 # make sure write RPCs have been sent to OSTs
2358 check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2359 check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2361 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2363 test_27A() { # b=19102
2364 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2366 save_layout_restore_at_exit $MOUNT
2367 $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2368 wait_update $HOSTNAME "$LFS getstripe -c $MOUNT | sed 's/ *//g'" "1" 20 ||
2369 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2370 local default_size=$($LFS getstripe -S $MOUNT)
2371 local default_offset=$($LFS getstripe -i $MOUNT)
2372 local dsize=$(do_facet $SINGLEMDS \
2373 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2374 [ $default_size -eq $dsize ] ||
2375 error "stripe size $default_size != $dsize"
2376 [ $default_offset -eq -1 ] ||
2377 error "stripe offset $default_offset != -1"
2379 run_test 27A "check filesystem-wide default LOV EA values"
2381 test_27B() { # LU-2523
2382 test_mkdir $DIR/$tdir
2383 rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2385 # open f1 with O_LOV_DELAY_CREATE
2387 # call setstripe ioctl on open file descriptor for f1
2389 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2393 # open f1 with O_LOV_DELAY_CREATE
2395 # call setstripe ioctl on open file descriptor for f1
2397 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2399 # Allow multiop to fail in imitation of NFS's busted semantics.
2402 run_test 27B "call setstripe on open unlinked file/rename victim"
2404 # 27C family tests full striping and overstriping
2405 test_27Ca() { #LU-2871
2406 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2414 test_mkdir $DIR/$tdir
2416 for i in $(seq 0 $((OSTCOUNT - 1))); do
2417 # set stripe across all OSTs starting from OST$i
2418 $LFS setstripe -i $i -c -1 $tfile$i
2419 # get striping information
2420 ost_idx=($($LFS getstripe $tfile$i |
2421 tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2425 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2426 error "${#ost_idx[@]} != $OSTCOUNT"
2428 for index in $(seq 0 $((OSTCOUNT - 1))); do
2430 for j in $(echo ${ost_idx[@]}); do
2431 if [ $index -eq $j ]; then
2437 error "Can not find $index in ${ost_idx[@]}"
2441 run_test 27Ca "check full striping across all OSTs"
2444 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2445 skip "server does not support overstriping"
2446 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2447 skip_env "too many osts, skipping"
2449 test_mkdir -p $DIR/$tdir
2450 local setcount=$(($OSTCOUNT * 2))
2451 [ $setcount -lt 160 ] || large_xattr_enabled ||
2452 skip_env "ea_inode feature disabled"
2454 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2455 error "setstripe failed"
2457 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2458 [ $count -eq $setcount ] ||
2459 error "stripe count $count, should be $setcount"
2461 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2462 error "overstriped should be set in pattern"
2464 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2467 run_test 27Cb "more stripes than OSTs with -C"
2470 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2471 skip "server does not support overstriping"
2472 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2474 test_mkdir -p $DIR/$tdir
2475 local setcount=$(($OSTCOUNT - 1))
2477 [ $setcount -lt 160 ] || large_xattr_enabled ||
2478 skip_env "ea_inode feature disabled"
2480 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2481 error "setstripe failed"
2483 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2484 [ $count -eq $setcount ] ||
2485 error "stripe count $count, should be $setcount"
2487 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" &&
2488 error "overstriped should not be set in pattern"
2490 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2493 run_test 27Cc "fewer stripes than OSTs does not set overstriping"
2496 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2497 skip "server does not support overstriping"
2498 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2499 large_xattr_enabled || skip_env "ea_inode feature disabled"
2501 test_mkdir -p $DIR/$tdir
2502 local setcount=$LOV_MAX_STRIPE_COUNT
2504 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2505 error "setstripe failed"
2507 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2508 [ $count -eq $setcount ] ||
2509 error "stripe count $count, should be $setcount"
2511 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2512 error "overstriped should be set in pattern"
2514 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2517 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2519 run_test 27Cd "test maximum stripe count"
2522 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2523 skip "server does not support overstriping"
2524 test_mkdir -p $DIR/$tdir
2526 pool_add $TESTNAME || error "Pool creation failed"
2527 pool_add_targets $TESTNAME 0 || error "pool_add_targets failed"
2531 $LFS setstripe -C $setcount -p "$TESTNAME" $DIR/$tdir/$tfile ||
2532 error "setstripe failed"
2534 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2535 [ $count -eq $setcount ] ||
2536 error "stripe count $count, should be $setcount"
2538 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2539 error "overstriped should be set in pattern"
2541 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2544 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2546 run_test 27Ce "test pool with overstriping"
2549 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2550 skip "server does not support overstriping"
2551 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2552 skip_env "too many osts, skipping"
2554 test_mkdir -p $DIR/$tdir
2556 local setcount=$(($OSTCOUNT * 2))
2557 [ $setcount -lt 160 ] || large_xattr_enabled ||
2558 skip_env "ea_inode feature disabled"
2560 $LFS setstripe -C $setcount $DIR/$tdir/ ||
2561 error "setstripe failed"
2563 echo 1 > $DIR/$tdir/$tfile
2565 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2566 [ $count -eq $setcount ] ||
2567 error "stripe count $count, should be $setcount"
2569 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2570 error "overstriped should be set in pattern"
2572 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2575 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2577 run_test 27Cf "test default inheritance with overstriping"
2580 [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2581 [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2582 remote_mds_nodsh && skip "remote MDS with nodsh"
2584 local POOL=${POOL:-testpool}
2586 local last_ost=$(($OSTCOUNT - 1))
2588 local ost_list=$(seq $first_ost $ost_step $last_ost)
2589 local ost_range="$first_ost $last_ost $ost_step"
2591 test_mkdir $DIR/$tdir
2592 pool_add $POOL || error "pool_add failed"
2593 pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2596 [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2598 [ $MDS1_VERSION -lt $(version_code 2.9.55) ] ||
2599 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2600 skip27D+=" -s 30,31"
2601 [[ ! $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ||
2602 $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2603 skip27D+=" -s 32,33"
2604 [[ $MDS_VERSION -lt $(version_code $SEL_VER) ]] &&
2606 llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2607 error "llapi_layout_test failed"
2609 destroy_test_pools || error "destroy test pools failed"
2611 run_test 27D "validate llapi_layout API"
2613 # Verify that default_easize is increased from its initial value after
2614 # accessing a widely striped file.
2616 [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2617 [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2618 skip "client does not have LU-3338 fix"
2620 # 72 bytes is the minimum space required to store striping
2621 # information for a file striped across one OST:
2622 # (sizeof(struct lov_user_md_v3) +
2623 # sizeof(struct lov_user_ost_data_v1))
2625 $LCTL set_param -n llite.*.default_easize $min_easize ||
2626 error "lctl set_param failed"
2627 local easize=$($LCTL get_param -n llite.*.default_easize)
2629 [ $easize -eq $min_easize ] ||
2630 error "failed to set default_easize"
2632 $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2633 error "setstripe failed"
2634 # In order to ensure stat() call actually talks to MDS we need to
2635 # do something drastic to this file to shake off all lock, e.g.
2636 # rename it (kills lookup lock forcing cache cleaning)
2637 mv $DIR/$tfile $DIR/${tfile}-1
2638 ls -l $DIR/${tfile}-1
2641 easize=$($LCTL get_param -n llite.*.default_easize)
2643 [ $easize -gt $min_easize ] ||
2644 error "default_easize not updated"
2646 run_test 27E "check that default extended attribute size properly increases"
2648 test_27F() { # LU-5346/LU-7975
2649 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2650 [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2651 [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2652 skip "Need MDS version at least 2.8.51"
2653 remote_ost_nodsh && skip "remote OST with nodsh"
2655 test_mkdir $DIR/$tdir
2657 $LFS setstripe -c 2 $DIR/$tdir
2659 # stop all OSTs to reproduce situation for LU-7975 ticket
2660 for num in $(seq $OSTCOUNT); do
2664 # open/create f0 with O_LOV_DELAY_CREATE
2665 # truncate f0 to a non-0 size
2667 multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2669 $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2670 # open/write it again to force delayed layout creation
2671 cat /etc/hosts > $DIR/$tdir/f0 &
2675 for num in $(seq $OSTCOUNT); do
2676 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2677 error "ost$num failed to start"
2680 wait $catpid || error "cat failed"
2682 cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2683 [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2684 error "wrong stripecount"
2687 run_test 27F "Client resend delayed layout creation with non-zero size"
2689 test_27G() { #LU-10629
2690 [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2691 skip "Need MDS version at least 2.11.51"
2692 [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2693 remote_mds_nodsh && skip "remote MDS with nodsh"
2694 local POOL=${POOL:-testpool}
2695 local ostrange="0 0 1"
2697 test_mkdir $DIR/$tdir
2698 touch $DIR/$tdir/$tfile.nopool
2699 pool_add $POOL || error "pool_add failed"
2700 pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2701 $LFS setstripe -p $POOL $DIR/$tdir
2703 local pool=$($LFS getstripe -p $DIR/$tdir)
2705 [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2706 touch $DIR/$tdir/$tfile.default
2707 $LFS setstripe -E 1M --pool $POOL -c 1 -E eof -c 1 $DIR/$tdir/$tfile.pfl
2708 $LFS find $DIR/$tdir -type f --pool $POOL
2709 local found=$($LFS find $DIR/$tdir -type f --pool $POOL | wc -l)
2710 [[ "$found" == "2" ]] ||
2711 error "found $found != 2 files in '$DIR/$tdir' in '$POOL'"
2713 $LFS setstripe -d $DIR/$tdir
2715 pool=$($LFS getstripe -p -d $DIR/$tdir)
2717 [[ "$pool" != "$POOL" ]] || error "$DIR/$tdir is still '$pool'"
2719 run_test 27G "Clear OST pool from stripe"
2722 [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2723 skip "Need MDS version newer than 2.11.54"
2724 [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2725 test_mkdir $DIR/$tdir
2726 $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2727 touch $DIR/$tdir/$tfile
2728 $LFS getstripe -c $DIR/$tdir/$tfile
2729 [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2730 error "two-stripe file doesn't have two stripes"
2732 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2733 $LFS getstripe -y $DIR/$tdir/$tfile
2734 (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2735 egrep -c "l_ost_idx: [02]$") == "2" )) ||
2736 error "expected l_ost_idx: [02]$ not matched"
2738 # make sure ost list has been cleared
2739 local stripesize=$($LFS getstripe -S $DIR/$tdir)
2740 $LFS setstripe -S $((stripesize * 4)) -i 1 \
2741 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2743 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2745 run_test 27H "Set specific OSTs stripe"
2748 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2749 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2750 [[ $MDS1_VERSION -gt $(version_code 2.12.52) ]] ||
2751 skip "Need MDS version newer than 2.12.52"
2752 local pool=$TESTNAME
2753 local ostrange="1 1 1"
2755 save_layout_restore_at_exit $MOUNT
2756 $LFS setstripe -c 2 -i 0 $MOUNT
2757 pool_add $pool || error "pool_add failed"
2758 pool_add_targets $pool $ostrange || "pool_add_targets failed"
2759 test_mkdir $DIR/$tdir
2760 $LFS setstripe -p $pool $DIR/$tdir
2761 $MULTIOP $DIR/$tdir/$tfile Oc || error "multiop failed"
2762 $LFS getstripe $DIR/$tdir/$tfile
2764 run_test 27I "check that root dir striping does not break parent dir one"
2767 [[ $MDS1_VERSION -le $(version_code 2.12.51) ]] &&
2768 skip "Need MDS version newer than 2.12.51"
2770 test_mkdir $DIR/$tdir
2771 local uuid1=$(cat /proc/sys/kernel/random/uuid)
2772 local uuid2=$(cat /proc/sys/kernel/random/uuid)
2774 # create foreign file (raw way)
2775 ! $LFS setstripe --flags 0xda08 $DIR/$tdir/$tfile ||
2776 error "creating $tfile w/ hex flags w/o --foreign should fail"
2778 ! $LFS setstripe --foreign --flags foo \
2779 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2780 error "creating $tfile with '--flags foo' should fail"
2782 ! $LFS setstripe --foreign --flags 0xffffffff \
2783 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2784 error "creating $tfile w/ 0xffffffff flags should fail"
2786 create_foreign_file -f $DIR/$tdir/$tfile -x "${uuid1}@${uuid2}" \
2787 -t 1 -F 0xda08 || error "create_foreign_file failed"
2789 # verify foreign file (raw way)
2790 parse_foreign_file -f $DIR/$tdir/$tfile |
2791 grep "lov_foreign_magic: 0x0BD70BD0" ||
2792 error "$DIR/$tdir/$tfile: invalid LOV EA foreign magic"
2793 parse_foreign_file -f $DIR/$tdir/$tfile | grep "lov_xattr_size: 89" ||
2794 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2795 parse_foreign_file -f $DIR/$tdir/$tfile |
2796 grep "lov_foreign_size: 73" ||
2797 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2798 parse_foreign_file -f $DIR/$tdir/$tfile |
2799 grep "lov_foreign_type: 1" ||
2800 error "$DIR/$tdir/$tfile: invalid LOV EA foreign type"
2801 parse_foreign_file -f $DIR/$tdir/$tfile |
2802 grep "lov_foreign_flags: 0x0000DA08" ||
2803 error "$DIR/$tdir/$tfile: invalid LOV EA foreign flags"
2804 local lov=$(parse_foreign_file -f $DIR/$tdir/$tfile |
2805 grep "lov_foreign_value: 0x" |
2806 sed -e 's/lov_foreign_value: 0x//')
2807 local lov2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160)
2808 [[ $lov = ${lov2// /} ]] ||
2809 error "$DIR/$tdir/$tfile: invalid LOV EA foreign value"
2811 # create foreign file (lfs + API)
2812 $LFS setstripe --foreign=none --flags 0xda08 \
2813 -x "${uuid1}@${uuid2}" $DIR/$tdir/${tfile}2 ||
2814 error "$DIR/$tdir/${tfile}2: create failed"
2816 $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2817 grep "lfm_magic:.*0x0BD70BD0" ||
2818 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign magic"
2819 # lfm_length is LOV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2820 $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_length:.*73" ||
2821 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign size"
2822 $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_type:.*none" ||
2823 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign type"
2824 $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2825 grep "lfm_flags:.*0x0000DA08" ||
2826 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign flags"
2827 $LFS getstripe $DIR/$tdir/${tfile}2 |
2828 grep "lfm_value:.*${uuid1}@${uuid2}" ||
2829 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign value"
2831 # modify striping should fail
2832 $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
2833 error "$DIR/$tdir/$tfile: setstripe should fail"
2834 $LFS setstripe -c 2 $DIR/$tdir/${tfile}2 &&
2835 error "$DIR/$tdir/${tfile}2: setstripe should fail"
2838 cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
2839 cat $DIR/$tdir/${tfile}2 &&
2840 error "$DIR/$tdir/${tfile}2: read should fail"
2841 cat /etc/passwd > $DIR/$tdir/$tfile &&
2842 error "$DIR/$tdir/$tfile: write should fail"
2843 cat /etc/passwd > $DIR/$tdir/${tfile}2 &&
2844 error "$DIR/$tdir/${tfile}2: write should fail"
2847 chmod 222 $DIR/$tdir/$tfile ||
2848 error "$DIR/$tdir/$tfile: chmod failed"
2849 chmod 222 $DIR/$tdir/${tfile}2 ||
2850 error "$DIR/$tdir/${tfile}2: chmod failed"
2853 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tfile ||
2854 error "$DIR/$tdir/$tfile: chown failed"
2855 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}2 ||
2856 error "$DIR/$tdir/${tfile}2: chown failed"
2858 # rename should work
2859 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
2860 error "$DIR/$tdir/$tfile: rename of foreign file has failed"
2861 mv $DIR/$tdir/${tfile}2 $DIR/$tdir/${tfile}2.new ||
2862 error "$DIR/$tdir/${tfile}2: rename of foreign file has failed"
2864 #remove foreign file
2865 rm $DIR/$tdir/${tfile}.new ||
2866 error "$DIR/$tdir/${tfile}.new: remove of foreign file has failed"
2867 rm $DIR/$tdir/${tfile}2.new ||
2868 error "$DIR/$tdir/${tfile}2.new: remove of foreign file has failed"
2870 run_test 27J "basic ops on file with foreign LOV"
2873 [[ $MDS1_VERSION -le $(version_code 2.12.49) ]] &&
2874 skip "Need MDS version newer than 2.12.49"
2876 test_mkdir $DIR/$tdir
2877 local uuid1=$(cat /proc/sys/kernel/random/uuid)
2878 local uuid2=$(cat /proc/sys/kernel/random/uuid)
2880 # create foreign dir (raw way)
2881 ! $LFS setdirstripe --flags 0xda08 $DIR/$tdir/$tdir ||
2882 error "creating $tdir w/ hex flags w/o --foreign should fail"
2884 ! $LFS setdirstripe --foreign --flags foo \
2885 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2886 error "creating $tdir with '--flags foo' should fail"
2888 ! $LFS setdirstripe --foreign --flags 0xffffffff \
2889 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2890 error "creating $tdir w/ 0xffffffff flags should fail"
2892 create_foreign_dir -d $DIR/$tdir/$tdir -x "${uuid1}@${uuid2}" -t 1 ||
2893 error "create_foreign_dir FAILED"
2895 # verify foreign dir (raw way)
2896 parse_foreign_dir -d $DIR/$tdir/$tdir |
2897 grep "lmv_foreign_magic:.*0xcd50cd0" ||
2898 error "$DIR/$tdir/$tfile: invalid LMV EA magic"
2899 parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_xattr_size:.*89$" ||
2900 error "$DIR/$tdir/$tdir: invalid LMV EA size"
2901 parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_foreign_type: 1$" ||
2902 error "$DIR/$tdir/$tdir: invalid LMV EA type"
2903 parse_foreign_dir -d $DIR/$tdir/$tdir |
2904 grep "lmv_foreign_flags: 55813$" ||
2905 error "$DIR/$tdir/$tdir: invalid LMV EA flags"
2906 local lmv=$(parse_foreign_dir -d $DIR/$tdir/$tdir |
2907 grep "lmv_foreign_value: 0x" |
2908 sed 's/lmv_foreign_value: 0x//')
2909 local lmv2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160 |
2911 [[ $lmv == $lmv2 ]] || error "$DIR/$tdir/$tdir: invalid LMV EA value"
2913 # create foreign dir (lfs + API)
2914 $LFS mkdir --foreign=none --xattr="${uuid1}@${uuid2}" --flags=0xda05 \
2915 $DIR/$tdir/${tdir}2 ||
2916 error "$DIR/$tdir/${tdir}2: create failed"
2918 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2919 grep "lfm_magic:.*0x0CD50CD0" ||
2920 error "$DIR/$tdir/${tdir}2: invalid LMV EA magic"
2921 # lfm_length is LMV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2922 # - sizeof(lfm_type) - sizeof(lfm_flags)
2923 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_length:.*73" ||
2924 error "$DIR/$tdir/${tdir}2: invalid LMV EA size"
2925 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_type:.*none" ||
2926 error "$DIR/$tdir/${tdir}2: invalid LMV EA type"
2927 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2928 grep "lfm_flags:.*0x0000DA05" ||
2929 error "$DIR/$tdir/${tdir}2: invalid LMV EA flags"
2930 $LFS getdirstripe $DIR/$tdir/${tdir}2 |
2931 grep "lfm_value.*${uuid1}@${uuid2}" ||
2932 error "$DIR/$tdir/${tdir}2: invalid LMV EA value"
2934 # file create in dir should fail
2935 touch $DIR/$tdir/$tdir/$tfile && "$DIR/$tdir: file create should fail"
2936 touch $DIR/$tdir/${tdir}2/$tfile &&
2937 "$DIR/${tdir}2: file create should fail"
2940 chmod 777 $DIR/$tdir/$tdir ||
2941 error "$DIR/$tdir: chmod failed"
2942 chmod 777 $DIR/$tdir/${tdir}2 ||
2943 error "$DIR/${tdir}2: chmod failed"
2946 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tdir ||
2947 error "$DIR/$tdir: chown failed"
2948 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}2 ||
2949 error "$DIR/${tdir}2: chown failed"
2951 # rename should work
2952 mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
2953 error "$DIR/$tdir/$tdir: rename of foreign dir has failed"
2954 mv $DIR/$tdir/${tdir}2 $DIR/$tdir/${tdir}2.new ||
2955 error "$DIR/$tdir/${tdir}2: rename of foreign dir has failed"
2958 rmdir $DIR/$tdir/${tdir}.new ||
2959 error "$DIR/$tdir/${tdir}.new: remove of foreign dir has failed"
2960 rmdir $DIR/$tdir/${tdir}2.new ||
2961 error "$DIR/$tdir/${tdir}2.new: remove of foreign dir has failed"
2963 run_test 27K "basic ops on dir with foreign LMV"
2966 remote_mds_nodsh && skip "remote MDS with nodsh"
2968 local POOL=${POOL:-$TESTNAME}
2970 pool_add $POOL || error "pool_add failed"
2972 lfs pool_list $MOUNT | grep -Fx "${FSNAME}.${POOL}" ||
2973 error "pool_list does not contain ${FSNAME}.${POOL}:" \
2974 "$(lfs pool_list $MOUNT | grep -F "${POOL}")"
2976 run_test 27L "lfs pool_list gives correct pool name"
2979 [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.12.57) ]] &&
2980 skip "Need MDS version >= than 2.12.57"
2981 remote_mds_nodsh && skip "remote MDS with nodsh"
2982 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2984 test_mkdir $DIR/$tdir
2986 # Set default striping on directory
2987 $LFS setstripe -C 4 $DIR/$tdir
2989 echo 1 > $DIR/$tdir/${tfile}.1
2990 local count=$($LFS getstripe -c $DIR/$tdir/${tfile}.1)
2992 [ $count -eq $setcount ] ||
2993 error "(1) stripe count $count, should be $setcount"
2995 # Capture existing append_stripe_count setting for restore
2996 local orig_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
2997 local mdts=$(comma_list $(mdts_nodes))
2998 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=$orig_count" EXIT
3000 local appendcount=$orig_count
3001 echo 1 >> $DIR/$tdir/${tfile}.2_append
3002 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.2_append)
3003 [ $count -eq $appendcount ] ||
3004 error "(2)stripe count $count, should be $appendcount for append"
3006 # Disable O_APPEND striping, verify it works
3007 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3009 # Should now get the default striping, which is 4
3011 echo 1 >> $DIR/$tdir/${tfile}.3_append
3012 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.3_append)
3013 [ $count -eq $setcount ] ||
3014 error "(3) stripe count $count, should be $setcount"
3016 # Try changing the stripe count for append files
3017 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
3019 # Append striping is now 2 (directory default is still 4)
3021 echo 1 >> $DIR/$tdir/${tfile}.4_append
3022 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.4_append)
3023 [ $count -eq $appendcount ] ||
3024 error "(4) stripe count $count, should be $appendcount for append"
3026 # Test append stripe count of -1
3027 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=-1
3028 appendcount=$OSTCOUNT
3029 echo 1 >> $DIR/$tdir/${tfile}.5
3030 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.5)
3031 [ $count -eq $appendcount ] ||
3032 error "(5) stripe count $count, should be $appendcount for append"
3034 # Set append striping back to default of 1
3035 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1
3037 # Try a new default striping, PFL + DOM
3038 $LFS setstripe -L mdt -E 1M -E -1 -c 2 $DIR/$tdir
3040 # Create normal DOM file, DOM returns stripe count == 0
3042 touch $DIR/$tdir/${tfile}.6
3043 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.6)
3044 [ $count -eq $setcount ] ||
3045 error "(6) stripe count $count, should be $setcount"
3049 echo 1 >> $DIR/$tdir/${tfile}.7_append
3050 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.7_append)
3051 [ $count -eq $appendcount ] ||
3052 error "(7) stripe count $count, should be $appendcount for append"
3054 # Clean up DOM layout
3055 $LFS setstripe -d $DIR/$tdir
3057 # Now test that append striping works when layout is from root
3058 $LFS setstripe -c 2 $MOUNT
3059 # Make a special directory for this
3060 mkdir $DIR/${tdir}/${tdir}.2
3061 stack_trap "$LFS setstripe -d $MOUNT" EXIT
3063 # Verify for normal file
3065 echo 1 > $DIR/${tdir}/${tdir}.2/${tfile}.8
3066 count=$($LFS getstripe -c $DIR/$tdir/${tdir}.2/${tfile}.8)
3067 [ $count -eq $setcount ] ||
3068 error "(8) stripe count $count, should be $setcount"
3071 echo 1 >> $DIR/${tdir}/${tdir}.2/${tfile}.9_append
3072 count=$($LFS getstripe -c $DIR/${tdir}/${tdir}.2/${tfile}.9_append)
3073 [ $count -eq $appendcount ] ||
3074 error "(9) stripe count $count, should be $appendcount for append"
3076 # Now test O_APPEND striping with pools
3077 do_nodes $mdts $LCTL set_param mdd.*.append_pool="$TESTNAME"
3078 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'" EXIT
3081 pool_add $TESTNAME || error "pool creation failed"
3082 pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
3084 echo 1 >> $DIR/$tdir/${tfile}.10_append
3086 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.10_append)
3087 [ "$pool" = "$TESTNAME" ] || error "(10) incorrect pool: $pool"
3089 # Check that count is still correct
3091 echo 1 >> $DIR/$tdir/${tfile}.11_append
3092 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.11_append)
3093 [ $count -eq $appendcount ] ||
3094 error "(11) stripe count $count, should be $appendcount for append"
3096 # Disable O_APPEND stripe count, verify pool works separately
3097 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3099 echo 1 >> $DIR/$tdir/${tfile}.12_append
3101 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.12_append)
3102 [ "$pool" = "$TESTNAME" ] || error "(12) incorrect pool: $pool"
3104 # Remove pool setting, verify it's not applied
3105 do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'
3107 echo 1 >> $DIR/$tdir/${tfile}.13_append
3109 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.13_append)
3110 [ "$pool" = "" ] || error "(13) pool found: $pool"
3112 run_test 27M "test O_APPEND striping"
3115 combined_mgs_mds && skip "needs separate MGS/MDT"
3117 pool_add $TESTNAME || error "pool_add failed"
3118 do_facet mgs "$LCTL pool_list $FSNAME" |
3119 grep -Fx "${FSNAME}.${TESTNAME}" ||
3120 error "lctl pool_list on MGS failed"
3122 run_test 27N "lctl pool_list on separate MGS gives correct pool name"
3124 clean_foreign_symlink() {
3126 lctl set_param llite/$FSNAME-*/foreign_symlink_enable=0
3127 for i in $DIR/$tdir/* ; do
3128 $LFS unlink_foreign $i || true
3133 [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.51) ]] &&
3134 skip "Need MDS version newer than 2.12.51"
3136 test_mkdir $DIR/$tdir
3137 local uuid1=$(cat /proc/sys/kernel/random/uuid)
3138 local uuid2=$(cat /proc/sys/kernel/random/uuid)
3140 trap clean_foreign_symlink EXIT
3142 # enable foreign_symlink behaviour
3143 $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3145 # foreign symlink LOV format is a partial path by default
3147 # create foreign file (lfs + API)
3148 $LFS setstripe --foreign=symlink --flags 0xda05 \
3149 -x "${uuid1}/${uuid2}" --mode 0600 $DIR/$tdir/${tfile} ||
3150 error "$DIR/$tdir/${tfile}: create failed"
3152 $LFS getstripe -v $DIR/$tdir/${tfile} |
3153 grep "lfm_magic:.*0x0BD70BD0" ||
3154 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign magic"
3155 $LFS getstripe -v $DIR/$tdir/${tfile} | grep "lfm_type:.*symlink" ||
3156 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign type"
3157 $LFS getstripe -v $DIR/$tdir/${tfile} |
3158 grep "lfm_flags:.*0x0000DA05" ||
3159 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign flags"
3160 $LFS getstripe $DIR/$tdir/${tfile} |
3161 grep "lfm_value:.*${uuid1}/${uuid2}" ||
3162 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign value"
3164 # modify striping should fail
3165 $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
3166 error "$DIR/$tdir/$tfile: setstripe should fail"
3168 # R/W should fail ("/{foreign_symlink_prefix}/${uuid1}/" missing)
3169 cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
3170 cat /etc/passwd > $DIR/$tdir/$tfile &&
3171 error "$DIR/$tdir/$tfile: write should fail"
3173 # rename should succeed
3174 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
3175 error "$DIR/$tdir/$tfile: rename has failed"
3177 #remove foreign_symlink file should fail
3178 rm $DIR/$tdir/${tfile}.new &&
3179 error "$DIR/$tdir/${tfile}.new: remove of foreign_symlink file should fail"
3182 mkdir /tmp/${uuid1} ||
3183 error "/tmp/${uuid1}: mkdir has failed"
3184 echo FOOFOO > /tmp/${uuid1}/${uuid2} ||
3185 error "/tmp/${uuid1}/${uuid2}: echo has failed"
3186 $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3187 $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tfile}.new ||
3188 error "$DIR/$tdir/${tfile}.new: not seen as a symlink"
3189 #read should succeed now
3190 cat $DIR/$tdir/${tfile}.new | grep FOOFOO ||
3191 error "$DIR/$tdir/${tfile}.new: symlink resolution has failed"
3192 #write should succeed now
3193 cat /etc/passwd > $DIR/$tdir/${tfile}.new ||
3194 error "$DIR/$tdir/${tfile}.new: write should succeed"
3195 diff /etc/passwd $DIR/$tdir/${tfile}.new ||
3196 error "$DIR/$tdir/${tfile}.new: diff has failed"
3197 diff /etc/passwd /tmp/${uuid1}/${uuid2} ||
3198 error "/tmp/${uuid1}/${uuid2}: diff has failed"
3200 #check that getstripe still works
3201 $LFS getstripe $DIR/$tdir/${tfile}.new ||
3202 error "$DIR/$tdir/${tfile}.new: getstripe should still work with foreign_symlink enabled"
3204 # chmod should still succeed
3205 chmod 644 $DIR/$tdir/${tfile}.new ||
3206 error "$DIR/$tdir/${tfile}.new: chmod has failed"
3208 # chown should still succeed
3209 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}.new ||
3210 error "$DIR/$tdir/${tfile}.new: chown has failed"
3212 # rename should still succeed
3213 mv $DIR/$tdir/${tfile}.new $DIR/$tdir/${tfile} ||
3214 error "$DIR/$tdir/${tfile}.new: rename has failed"
3216 #remove foreign_symlink file should still fail
3217 rm $DIR/$tdir/${tfile} &&
3218 error "$DIR/$tdir/${tfile}: remove of foreign_symlink file should fail"
3220 #use special ioctl() to unlink foreign_symlink file
3221 $LFS unlink_foreign $DIR/$tdir/${tfile} ||
3222 error "$DIR/$tdir/$tfile: unlink/ioctl failed"
3225 run_test 27O "basic ops on foreign file of symlink type"
3228 [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.49) ]] &&
3229 skip "Need MDS version newer than 2.12.49"
3231 test_mkdir $DIR/$tdir
3232 local uuid1=$(cat /proc/sys/kernel/random/uuid)
3233 local uuid2=$(cat /proc/sys/kernel/random/uuid)
3235 trap clean_foreign_symlink EXIT
3237 # enable foreign_symlink behaviour
3238 $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3240 # foreign symlink LMV format is a partial path by default
3242 # create foreign dir (lfs + API)
3243 $LFS mkdir --foreign=symlink --xattr="${uuid1}/${uuid2}" \
3244 --flags=0xda05 --mode 0750 $DIR/$tdir/${tdir} ||
3245 error "$DIR/$tdir/${tdir}: create failed"
3247 $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3248 grep "lfm_magic:.*0x0CD50CD0" ||
3249 error "$DIR/$tdir/${tdir}: invalid LMV EA magic"
3250 $LFS getdirstripe -v $DIR/$tdir/${tdir} | grep "lfm_type:.*symlink" ||
3251 error "$DIR/$tdir/${tdir}: invalid LMV EA type"
3252 $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3253 grep "lfm_flags:.*0x0000DA05" ||
3254 error "$DIR/$tdir/${tdir}: invalid LMV EA flags"
3255 $LFS getdirstripe $DIR/$tdir/${tdir} |
3256 grep "lfm_value.*${uuid1}/${uuid2}" ||
3257 error "$DIR/$tdir/${tdir}: invalid LMV EA value"
3259 # file create in dir should fail
3260 # ("/{foreign_symlink_prefix}/${uuid1}/${uuid2}/" missing)
3261 touch $DIR/$tdir/$tdir/$tfile && "$DIR/$tdir: file create should fail"
3263 # rename should succeed
3264 mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
3265 error "$DIR/$tdir/$tdir: rename of foreign_symlink dir has failed"
3267 #remove foreign_symlink dir should fail
3268 rmdir $DIR/$tdir/${tdir}.new &&
3269 error "$DIR/$tdir/${tdir}.new: remove of foreign_symlink dir should fail"
3272 mkdir -p /tmp/${uuid1}/${uuid2} ||
3273 error "/tmp/${uuid1}/${uuid2}: mkdir has failed"
3274 echo FOOFOO > /tmp/${uuid1}/${uuid2}/foo ||
3275 error "/tmp/${uuid1}/${uuid2}/foo: echo has failed"
3276 $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3277 $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tdir}.new ||
3278 error "$DIR/$tdir/${tdir}.new: not seen as a symlink"
3279 cat $DIR/$tdir/${tdir}.new/foo | grep FOOFOO ||
3280 error "$DIR/$tdir/${tdir}.new: symlink resolution has failed"
3282 #check that getstripe fails now that foreign_symlink enabled
3283 $LFS getdirstripe $DIR/$tdir/${tdir}.new ||
3284 error "$DIR/$tdir/${tdir}.new: getdirstripe should still work with foreign_symlink enabled"
3286 # file create in dir should work now
3287 cp /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3288 error "$DIR/$tdir/${tdir}.new/$tfile: file create should fail"
3289 diff /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3290 error "$DIR/$tdir/${tdir}.new/$tfile: diff has failed"
3291 diff /etc/passwd /tmp/${uuid1}/${uuid2}/$tfile ||
3292 error "/tmp/${uuid1}/${uuid2}/$tfile: diff has failed"
3294 # chmod should still succeed
3295 chmod 755 $DIR/$tdir/${tdir}.new ||
3296 error "$DIR/$tdir/${tdir}.new: chmod has failed"
3298 # chown should still succeed
3299 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}.new ||
3300 error "$DIR/$tdir/${tdir}.new: chown has failed"
3302 # rename should still succeed
3303 mv $DIR/$tdir/${tdir}.new $DIR/$tdir/${tdir} ||
3304 error "$DIR/$tdir/${tdir}.new: rename of foreign_symlink dir has failed"
3306 #remove foreign_symlink dir should still fail
3307 rmdir $DIR/$tdir/${tdir} &&
3308 error "$DIR/$tdir/${tdir}: remove of foreign_symlink dir should fail"
3310 #use special ioctl() to unlink foreign_symlink file
3311 $LFS unlink_foreign $DIR/$tdir/${tdir} ||
3312 error "$DIR/$tdir/$tdir: unlink/ioctl failed"
3314 #created file should still exist
3315 [[ -f /tmp/${uuid1}/${uuid2}/$tfile ]] ||
3316 error "/tmp/${uuid1}/${uuid2}/$tfile has been removed"
3317 diff /etc/passwd /tmp/${uuid1}/${uuid2}/$tfile ||
3318 error "/tmp/${uuid1}/${uuid2}/$tfile: diff has failed"
3320 run_test 27P "basic ops on foreign dir of foreign_symlink type"
3323 rm -f $TMP/$tfile $TMP/$tfile.loop $TMP/$tfile.none $TMP/$tfile.broken
3325 test_mkdir $DIR/$tdir-1
3326 test_mkdir $DIR/$tdir-2
3328 echo 'It is what it is' > $DIR/$tdir-1/$tfile
3329 lov_getstripe_old $DIR/$tdir-1/$tfile || error "$DIR/$tdir-1/$tfile: rc = $?"
3331 ln -s $DIR/$tdir-1/$tfile $DIR/$tdir-2/$tfile
3332 lov_getstripe_old $DIR/$tdir-2/$tfile || error "$DIR/$tdir-2/$tfile: rc = $?"
3334 ln -s $DIR/$tdir-1/$tfile $TMP/$tfile
3335 lov_getstripe_old $TMP/$tfile || error "$TMP/$tfile: rc = $?"
3337 # Create some bad symlinks and ensure that we don't loop
3338 # forever or something. These should return ELOOP (40) and
3339 # ENOENT (2) but I don't want to test for that because there's
3340 # always some weirdo architecture that needs to ruin
3341 # everything by defining these error numbers differently.
3343 ln -s $TMP/$tfile.loop $TMP/$tfile.loop
3344 lov_getstripe_old $TMP/$tfile.loop && error "$TMP/$tfile.loop: rc = $?"
3346 ln -s $TMP/$tfile.none $TMP/$tfile.broken
3347 lov_getstripe_old $TMP/$tfile.broken && error "$TMP/$tfile.broken: rc = $?"
3351 run_test 27Q "llapi_file_get_stripe() works on symlinks"
3353 # createtest also checks that device nodes are created and
3354 # then visible correctly (#2091)
3355 test_28() { # bug 2091
3357 $CREATETEST $DIR/d28/ct || error "createtest failed"
3359 run_test 28 "create/mknod/mkdir with bad file types ============"
3362 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3364 sync; sleep 1; sync # flush out any dirty pages from previous tests
3371 declare -i LOCKCOUNTORIG=0
3372 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
3373 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
3375 [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
3377 declare -i LOCKUNUSEDCOUNTORIG=0
3378 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3379 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
3386 declare -i LOCKCOUNTCURRENT=0
3387 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
3388 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
3391 declare -i LOCKUNUSEDCOUNTCURRENT=0
3392 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3393 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
3396 if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
3397 $LCTL set_param -n ldlm.dump_namespaces ""
3398 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
3399 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3400 log "dumped log to $TMP/test_29.dk (bug 5793)"
3403 if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
3404 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
3405 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3406 log "dumped log to $TMP/test_29.dk (bug 5793)"
3410 run_test 29 "IT_GETATTR regression ============================"
3412 test_30a() { # was test_30
3413 cp $(which ls) $DIR || cp /bin/ls $DIR
3414 $DIR/ls / || error "Can't execute binary from lustre"
3417 run_test 30a "execute binary from Lustre (execve) =============="
3420 cp `which ls` $DIR || cp /bin/ls $DIR
3422 $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
3425 run_test 30b "execute binary from Lustre as non-root ==========="
3427 test_30c() { # b=22376
3428 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3430 cp $(which ls) $DIR || cp /bin/ls $DIR
3432 cancel_lru_locks mdc
3433 cancel_lru_locks osc
3434 $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
3437 run_test 30c "execute binary from Lustre without read perms ===="
3440 cp $(which dd) $DIR || error "failed to copy dd to $DIR/dd"
3442 for i in {1..10}; do
3443 $DIR/dd bs=1M count=128 if=/dev/zero of=$DIR/$tfile &
3446 $LCTL set_param ldlm.namespaces.*MDT*.lru_size=clear
3447 wait $PID || error "executing dd from Lustre failed"
3453 run_test 30d "execute binary from Lustre while clear locks"
3456 $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
3457 $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
3459 run_test 31a "open-unlink file =================================="
3462 touch $DIR/f31 || error "touch $DIR/f31 failed"
3463 ln $DIR/f31 $DIR/f31b || error "ln failed"
3464 $MULTIOP $DIR/f31b Ouc || error "multiop failed"
3465 $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
3467 run_test 31b "unlink file with multiple links while open ======="
3470 touch $DIR/f31 || error "touch $DIR/f31 failed"
3471 ln $DIR/f31 $DIR/f31c || error "ln failed"
3472 multiop_bg_pause $DIR/f31 O_uc ||
3473 error "multiop_bg_pause for $DIR/f31 failed"
3475 $MULTIOP $DIR/f31c Ouc
3476 kill -USR1 $MULTIPID
3479 run_test 31c "open-unlink file with multiple links ============="
3482 opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
3483 $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
3485 run_test 31d "remove of open directory ========================="
3487 test_31e() { # bug 2904
3488 openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
3490 run_test 31e "remove of open non-empty directory ==============="
3492 test_31f() { # bug 4554
3493 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3496 test_mkdir $DIR/d31f
3497 $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3498 cp /etc/hosts $DIR/d31f
3500 $LFS getstripe $DIR/d31f/hosts
3501 multiop_bg_pause $DIR/d31f D_c || return 1
3504 rm -rv $DIR/d31f || error "first of $DIR/d31f"
3505 test_mkdir $DIR/d31f
3506 $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3507 cp /etc/hosts $DIR/d31f
3509 $LFS getstripe $DIR/d31f/hosts
3510 multiop_bg_pause $DIR/d31f D_c || return 1
3513 kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
3514 wait $MULTIPID || error "first opendir $MULTIPID failed"
3518 kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
3519 wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
3522 run_test 31f "remove of open directory with open-unlink file ==="
3525 echo "-- cross directory link --"
3526 test_mkdir -c1 $DIR/${tdir}ga
3527 test_mkdir -c1 $DIR/${tdir}gb
3528 touch $DIR/${tdir}ga/f
3529 ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
3530 $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
3531 [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
3532 $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
3533 [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
3535 run_test 31g "cross directory link==============="
3538 echo "-- cross directory link --"
3539 test_mkdir -c1 $DIR/${tdir}
3540 test_mkdir -c1 $DIR/${tdir}/dir
3541 touch $DIR/${tdir}/f
3542 ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
3543 $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
3544 [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
3545 $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
3546 [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
3548 run_test 31h "cross directory link under child==============="
3551 echo "-- cross directory link --"
3552 test_mkdir -c1 $DIR/$tdir
3553 test_mkdir -c1 $DIR/$tdir/dir
3554 touch $DIR/$tdir/dir/f
3555 ln $DIR/$tdir/dir/f $DIR/$tdir/g
3556 $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
3557 [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
3558 $CHECKSTAT -t file $DIR/$tdir/g || error "target"
3559 [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
3561 run_test 31i "cross directory link under parent==============="
3564 test_mkdir -c1 -p $DIR/$tdir
3565 test_mkdir -c1 -p $DIR/$tdir/dir1
3566 ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
3567 link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
3568 mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
3569 mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
3572 run_test 31j "link for directory==============="
3575 test_mkdir -c1 -p $DIR/$tdir
3577 touch $DIR/$tdir/exist
3578 mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
3579 mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
3580 mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
3581 mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
3582 mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
3583 mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
3584 mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
3587 run_test 31k "link to file: the same, non-existing, dir==============="
3593 touch $DIR/d31m2/exist
3594 mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
3595 mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
3596 mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
3597 mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
3598 mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
3599 mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
3602 run_test 31m "link to file: the same, non-existing, dir==============="
3605 touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
3606 nlink=$(stat --format=%h $DIR/$tfile)
3607 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3609 local cmd="exec $fd<$DIR/$tfile"
3612 trap "eval $cmd" EXIT
3613 nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3614 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3615 rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
3616 nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3617 [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
3620 run_test 31n "check link count of unlinked file"
3623 local tempfile=$(mktemp $1_XXXXXX)
3624 mlink $tempfile $1 2> /dev/null &&
3625 echo "$BASHPID: link $tempfile to $1 succeeded"
3629 test_31o() { # LU-2901
3630 test_mkdir $DIR/$tdir
3631 for LOOP in $(seq 100); do
3632 rm -f $DIR/$tdir/$tfile*
3633 for THREAD in $(seq 8); do
3634 link_one $DIR/$tdir/$tfile.$LOOP &
3637 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
3638 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
3639 error "$LINKS duplicate links to $tfile.$LOOP" &&
3643 run_test 31o "duplicate hard links with same filename"
3646 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3648 test_mkdir $DIR/$tdir
3649 $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3650 $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
3652 opendirunlink $DIR/$tdir/striped_dir/test1 ||
3653 error "open unlink test1 failed"
3654 opendirunlink $DIR/$tdir/striped_dir/test2 ||
3655 error "open unlink test2 failed"
3657 $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
3658 error "test1 still exists"
3659 $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
3660 error "test2 still exists"
3662 run_test 31p "remove of open striped directory"
3665 [ $MDSCOUNT -lt 3 ] && skip_env "needs >= 3 MDTs"
3667 $LFS mkdir -i 3,1 $DIR/$tdir || error "mkdir failed"
3668 index=$($LFS getdirstripe -i $DIR/$tdir)
3669 [ $index -eq 3 ] || error "first stripe index $index != 3"
3670 index=$($LFS getdirstripe $DIR/$tdir | tail -1 | awk '{print $1}')
3671 [ $index -eq 1 ] || error "second stripe index $index != 1"
3673 # when "-c <stripe_count>" is set, the number of MDTs specified after
3674 # "-i" should equal to the stripe count
3675 $LFS mkdir -i 3,1 -c 3 $DIR/$tdir.2 && error "mkdir should fail" || true
3677 run_test 31q "create striped directory on specific MDTs"
3679 cleanup_test32_mount() {
3682 local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
3683 $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
3684 losetup -d $loopdev || true
3690 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3692 echo "== more mountpoints and symlinks ================="
3693 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3694 trap cleanup_test32_mount EXIT
3695 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3696 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3697 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3698 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
3699 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
3700 cleanup_test32_mount
3702 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
3705 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3707 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3708 trap cleanup_test32_mount EXIT
3709 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3710 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3711 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3712 ls -al $DIR/$tdir/ext2-mountpoint/.. ||
3713 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
3714 cleanup_test32_mount
3716 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
3719 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3721 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3722 trap cleanup_test32_mount EXIT
3723 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3724 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3725 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3726 test_mkdir -p $DIR/$tdir/d2/test_dir
3727 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3728 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
3729 cleanup_test32_mount
3731 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
3734 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3736 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3737 trap cleanup_test32_mount EXIT
3738 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3739 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3740 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3741 test_mkdir -p $DIR/$tdir/d2/test_dir
3742 ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3743 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
3744 cleanup_test32_mount
3746 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
3750 test_mkdir -p $DIR/$tdir/tmp
3751 local tmp_dir=$DIR/$tdir/tmp
3752 ln -s $DIR/$tdir $tmp_dir/symlink11
3753 ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3754 $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
3755 $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
3757 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
3761 test_mkdir -p $DIR/$tdir/tmp
3762 local tmp_dir=$DIR/$tdir/tmp
3763 ln -s $DIR/$tdir $tmp_dir/symlink11
3764 ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3765 ls $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
3766 ls $DIR/$tdir/symlink01 || error "symlink01 bad"
3768 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
3771 local tmp_dir=$DIR/$tdir/tmp
3772 test_mkdir -p $tmp_dir
3773 test_mkdir $DIR/${tdir}2
3774 ln -s $DIR/${tdir}2 $tmp_dir/symlink12
3775 ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
3776 $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
3777 $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
3778 $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
3779 $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
3781 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
3784 rm -fr $DIR/$tdir $DIR/${tdir}2
3785 tmp_dir=$DIR/$tdir/tmp
3786 test_mkdir -p $tmp_dir
3787 test_mkdir $DIR/${tdir}2
3788 ln -s $DIR/${tdir}2 $tmp_dir/symlink12
3789 ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
3790 ls $tmp_dir/symlink12 || error "listing symlink12"
3791 ls $DIR/$tdir/symlink02 || error "listing symlink02"
3793 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
3796 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3798 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3799 trap cleanup_test32_mount EXIT
3800 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3801 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3802 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3803 touch $DIR/$tdir/test_file
3804 $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
3805 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
3806 cleanup_test32_mount
3808 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
3811 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3813 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3814 trap cleanup_test32_mount EXIT
3815 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3816 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3817 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3818 touch $DIR/$tdir/test_file
3819 cat $DIR/$tdir/ext2-mountpoint/../test_file ||
3820 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
3821 cleanup_test32_mount
3823 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
3826 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3829 trap cleanup_test32_mount EXIT
3830 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3831 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3832 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3833 test_mkdir -p $DIR/$tdir/d2
3834 touch $DIR/$tdir/d2/test_file || error "touch failed"
3835 $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
3836 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
3837 cleanup_test32_mount
3839 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
3842 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3845 trap cleanup_test32_mount EXIT
3846 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3847 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3848 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3849 test_mkdir -p $DIR/$tdir/d2
3850 touch $DIR/$tdir/d2/test_file || error "touch failed"
3851 cat $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
3852 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
3853 cleanup_test32_mount
3855 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
3859 test_mkdir -p $DIR/d32m/tmp
3860 TMP_DIR=$DIR/d32m/tmp
3861 ln -s $DIR $TMP_DIR/symlink11
3862 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
3863 $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
3864 error "symlink11 not a link"
3865 $CHECKSTAT -t link $DIR/d32m/symlink01 ||
3866 error "symlink01 not a link"
3868 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
3872 test_mkdir -p $DIR/d32n/tmp
3873 TMP_DIR=$DIR/d32n/tmp
3874 ln -s $DIR $TMP_DIR/symlink11
3875 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
3876 ls -l $DIR/d32n/tmp/symlink11 || error "listing symlink11"
3877 ls -l $DIR/d32n/symlink01 || error "listing symlink01"
3879 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
3883 test_mkdir -p $DIR/d32o/tmp
3884 TMP_DIR=$DIR/d32o/tmp
3885 ln -s $DIR/$tfile $TMP_DIR/symlink12
3886 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
3887 $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
3888 error "symlink12 not a link"
3889 $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
3890 $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
3891 error "$DIR/d32o/tmp/symlink12 not file type"
3892 $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
3893 error "$DIR/d32o/symlink02 not file type"
3895 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"