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 60i 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 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
97 # Get the SLES distro version
99 # Returns a version string that should only be used in comparing
100 # strings returned by version_code()
103 local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
105 # All SuSE Linux versions have one decimal. version_code expects two
106 local sles_version=$version.0
107 version_code $sles_version
110 # Check if we are running on Ubuntu or SLES so we can make decisions on
112 if [ -r /etc/SuSE-release ]; then
113 sles_version=$(sles_version_code)
114 [ $sles_version -lt $(version_code 11.4.0) ] &&
115 # bug number for skipped test: LU-4341
116 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
117 [ $sles_version -lt $(version_code 12.0.0) ] &&
118 # bug number for skipped test: LU-3703
119 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 234"
120 elif [ -r /etc/os-release ]; then
121 if grep -qi ubuntu /etc/os-release; then
122 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
123 -e 's/^VERSION=//p' \
127 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
128 # bug number for skipped test:
130 ALWAYS_EXCEPT+=" 103a 410"
140 pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
141 cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
150 check_swap_layouts_support()
152 $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
153 skip "Does not support layout lock."
156 check_swap_layout_no_dom()
159 local SUPP=$(lfs getstripe $FOLDER | grep "pattern: mdt" | wc -l)
160 [ $SUPP -eq 0 ] || skip "layout swap does not support DOM files so far"
163 check_and_setup_lustre
167 MAXFREE=${MAXFREE:-$((300000 * $OSTCOUNT))}
169 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
170 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
171 rm -rf $DIR/[Rdfs][0-9]*
173 # $RUNAS_ID may get set incorrectly somewhere else
174 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
175 error "\$RUNAS_ID set to 0, but \$UID is also 0!"
177 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
179 if [ "${ONLY}" = "MOUNT" ] ; then
180 echo "Lustre is up, please go on"
184 echo "preparing for tests involving mounts"
185 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
187 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
188 echo # add a newline after mke2fs.
192 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
193 lctl set_param debug=-1 2> /dev/null || true
196 $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
198 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
200 run_test 0a "touch; rm ====================="
203 chmod 0755 $DIR || error "chmod 0755 $DIR failed"
204 $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
206 run_test 0b "chmod 0755 $DIR ============================="
209 $LCTL get_param mdc.*.import | grep "state: FULL" ||
210 error "import not FULL"
211 $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
214 run_test 0c "check import proc"
216 test_0d() { # LU-3397
217 [ $MGS_VERSION -lt $(version_code 2.10.57) ] &&
218 skip "proc exports not supported before 2.10.57"
220 local mgs_exp="mgs.MGS.exports"
221 local client_uuid=$($LCTL get_param -n mgc.*.uuid)
223 local exp_client_version
226 local temp_imp=$DIR/$tfile.import
227 local temp_exp=$DIR/$tfile.export
229 # save mgc import file to $temp_imp
230 $LCTL get_param mgc.*.import | tee $temp_imp
231 # Check if client uuid is found in MGS export
232 for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
233 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
237 # save mgs export file to $temp_exp
238 do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
240 # Compare the value of field "connect_flags"
241 imp_val=$(grep "connect_flags" $temp_imp)
242 exp_val=$(grep "connect_flags" $temp_exp)
243 [ "$exp_val" == "$imp_val" ] ||
244 error "export flags '$exp_val' != import flags '$imp_val'"
246 # Compare client versions. Only compare top-3 fields for compatibility
247 exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
248 exp_val=$(version_code $(cut -d. -f1,2,3 <<<$exp_client_version))
249 imp_val=$(version_code $(lustre_build_version client | cut -d. -f1,2,3))
250 [ "$exp_val" == "$imp_val" ] ||
251 error "exp version '$exp_client_version'($exp_val) != " \
252 "'$(lustre_build_version client)'($imp_val)"
254 run_test 0d "check export proc ============================="
256 test_0e() { # LU-13417
257 (( $MDSCOUNT > 1 )) ||
258 skip "We need at least 2 MDTs for this test"
260 (( $MDS1_VERSION >= $(version_code 2.14.51) )) ||
261 skip "Need server version at least 2.14.51"
263 local default_lmv_count=$($LFS getdirstripe -D -c $MOUNT)
264 local default_lmv_index=$($LFS getdirstripe -D -i $MOUNT)
266 [ $default_lmv_count -eq 1 ] ||
267 error "$MOUNT default stripe count $default_lmv_count"
269 [ $default_lmv_index -eq -1 ] ||
270 error "$MOUNT default stripe index $default_lmv_index"
272 mkdir $MOUNT/$tdir.1 || error "mkdir $MOUNT/$tdir.1 failed"
273 mkdir $MOUNT/$tdir.2 || error "mkdir $MOUNT/$tdir.2 failed"
275 local mdt_index1=$($LFS getdirstripe -i $MOUNT/$tdir.1)
276 local mdt_index2=$($LFS getdirstripe -i $MOUNT/$tdir.2)
278 [ $mdt_index1 -eq $mdt_index2 ] &&
279 error "directories are on the same MDT $mdt_index1=$mdt_index2"
281 rmdir $MOUNT/$tdir.1 $MOUNT/$tdir.2
283 run_test 0e "Enable DNE MDT balancing for mkdir in the ROOT"
286 test_mkdir $DIR/$tdir
287 test_mkdir $DIR/$tdir/d2
288 mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
289 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
292 $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
294 run_test 1 "mkdir; remkdir; rmdir"
297 test_mkdir $DIR/$tdir
298 touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
299 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
301 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
303 run_test 2 "mkdir; touch; rmdir; check file"
306 test_mkdir $DIR/$tdir
307 $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
308 touch $DIR/$tdir/$tfile
309 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
311 $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
313 run_test 3 "mkdir; touch; rmdir; check dir"
315 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
317 test_mkdir -i 1 $DIR/$tdir
319 touch $DIR/$tdir/$tfile ||
320 error "Create file under remote directory failed"
323 error "Expect error removing in-use dir $DIR/$tdir"
325 test -d $DIR/$tdir || error "Remote directory disappeared"
327 rm -rf $DIR/$tdir || error "remove remote dir error"
329 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
332 test_mkdir $DIR/$tdir
333 test_mkdir $DIR/$tdir/d2
334 chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
335 $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
336 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
338 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
341 touch $DIR/$tfile || error "touch $DIR/$tfile failed"
342 chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
343 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
344 error "$tfile does not have perm 0666 or UID $UID"
345 $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
346 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
347 error "$tfile should be 0666 and owned by UID $UID"
349 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
352 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
355 chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
356 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
357 error "$tfile should be owned by UID $RUNAS_ID"
358 $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
359 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
360 error "$tfile should be owned by UID $RUNAS_ID"
362 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
365 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
368 chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
369 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
370 error "$tfile should be owned by GID $UID"
371 $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
372 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
373 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
375 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
378 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
380 test_mkdir $DIR/$tdir
381 chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
382 $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
383 chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
384 test_mkdir $DIR/$tdir/d/subdir
385 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
386 error "$tdir/d/subdir should be GID $RUNAS_GID"
387 if [[ $MDSCOUNT -gt 1 ]]; then
388 # check remote dir sgid inherite
389 $LFS mkdir -i 0 $DIR/$tdir.local ||
390 error "mkdir $tdir.local failed"
391 chmod g+s $DIR/$tdir.local ||
392 error "chmod $tdir.local failed"
393 chgrp $RUNAS_GID $DIR/$tdir.local ||
394 error "chgrp $tdir.local failed"
395 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
396 error "mkdir $tdir.remote failed"
397 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
398 error "$tdir.remote should be owned by $UID.$RUNAS_ID"
399 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
400 error "$tdir.remote should be mode 02755"
403 run_test 6g "verify new dir in sgid dir inherits group"
405 test_6h() { # bug 7331
406 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
408 touch $DIR/$tfile || error "touch failed"
409 chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
410 $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
411 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
412 $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
413 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
415 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
418 test_mkdir $DIR/$tdir
419 $MCREATE $DIR/$tdir/$tfile
420 chmod 0666 $DIR/$tdir/$tfile
421 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
422 error "$tdir/$tfile should be mode 0666"
424 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
427 if [ ! -d $DIR/$tdir ]; then
428 test_mkdir $DIR/$tdir
430 $MCREATE $DIR/$tdir/$tfile
431 echo -n foo > $DIR/$tdir/$tfile
432 [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
433 $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
435 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
438 test_mkdir $DIR/$tdir
439 touch $DIR/$tdir/$tfile
440 chmod 0666 $DIR/$tdir/$tfile
441 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
442 error "$tfile mode not 0666"
444 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
447 test_mkdir $DIR/$tdir
448 test_mkdir $DIR/$tdir/d2
449 test_mkdir $DIR/$tdir/d2/d3
450 $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
452 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
455 test_mkdir $DIR/$tdir
456 test_mkdir $DIR/$tdir/d2
457 touch $DIR/$tdir/d2/$tfile
458 $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
459 error "$tdir/d2/$tfile not a file"
461 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
464 test_mkdir $DIR/$tdir
465 test_mkdir $DIR/$tdir/d2
466 chmod 0666 $DIR/$tdir/d2
467 chmod 0705 $DIR/$tdir/d2
468 $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
469 error "$tdir/d2 mode not 0705"
471 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
474 test_mkdir $DIR/$tdir
475 touch $DIR/$tdir/$tfile
476 chmod 0666 $DIR/$tdir/$tfile
477 chmod 0654 $DIR/$tdir/$tfile
478 $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
479 error "$tdir/d2 mode not 0654"
481 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
484 test_mkdir $DIR/$tdir
485 dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
487 $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
488 error "$tdir/$tfile size not 0 after truncate"
490 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
493 test_mkdir $DIR/$tdir
494 touch $DIR/$tdir/$tfile
496 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
498 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
501 test_mkdir $DIR/$tdir
502 touch $DIR/$tdir/$tfile
503 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
504 $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
505 error "$tdir/${tfile_2} not a file after rename"
506 rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
508 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
511 test_mkdir $DIR/$tdir
512 touch $DIR/$tdir/$tfile
513 rm -rf $DIR/$tdir/$tfile
514 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
516 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
519 test_mkdir $DIR/$tdir
520 touch $DIR/$tdir/$tfile
521 ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
523 $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
524 error "$tdir/l-exist not a symlink"
525 $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
526 error "$tdir/l-exist not referencing a file"
527 rm -f $DIR/$tdir/l-exist
528 $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
530 run_test 17a "symlinks: create, remove (real)"
533 test_mkdir $DIR/$tdir
534 ln -s no-such-file $DIR/$tdir/l-dangle
536 $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
537 error "$tdir/l-dangle not referencing no-such-file"
538 $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
539 error "$tdir/l-dangle not referencing non-existent file"
540 rm -f $DIR/$tdir/l-dangle
541 $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
543 run_test 17b "symlinks: create, remove (dangling)"
545 test_17c() { # bug 3440 - don't save failed open RPC for replay
546 test_mkdir $DIR/$tdir
547 ln -s foo $DIR/$tdir/$tfile
548 cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
550 run_test 17c "symlinks: open dangling (should return error)"
553 test_mkdir $DIR/$tdir
554 ln -s foo $DIR/$tdir/$tfile
555 touch $DIR/$tdir/$tfile || error "creating to new symlink"
557 run_test 17d "symlinks: create dangling"
560 test_mkdir $DIR/$tdir
561 local foo=$DIR/$tdir/$tfile
562 ln -s $foo $foo || error "create symlink failed"
563 ls -l $foo || error "ls -l failed"
564 ls $foo && error "ls not failed" || true
566 run_test 17e "symlinks: create recursive symlink (should return error)"
569 test_mkdir $DIR/$tdir
570 ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
571 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
572 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
573 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
574 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
575 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
578 run_test 17f "symlinks: long and very long symlink name"
580 # str_repeat(S, N) generate a string that is string S repeated N times
585 while [ $((n -= 1)) -ge 0 ]; do
591 # Long symlinks and LU-2241
593 test_mkdir $DIR/$tdir
594 local TESTS="59 60 61 4094 4095"
596 # Fix for inode size boundary in 2.1.4
597 [ $MDS1_VERSION -lt $(version_code 2.1.4) ] &&
600 # Patch not applied to 2.2 or 2.3 branches
601 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
602 [ $MDS1_VERSION -le $(version_code 2.3.55) ] &&
606 local SYMNAME=$(str_repeat 'x' $i)
607 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
608 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
611 run_test 17g "symlinks: really long symlink name and inode boundaries"
613 test_17h() { #bug 17378
614 [ $PARALLEL == "yes" ] && skip "skip parallel run"
615 remote_mds_nodsh && skip "remote MDS with nodsh"
619 test_mkdir $DIR/$tdir
620 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
621 $LFS setstripe -c -1 $DIR/$tdir
622 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
623 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
624 touch $DIR/$tdir/$tfile || true
626 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
628 test_17i() { #bug 20018
629 [ $PARALLEL == "yes" ] && skip "skip parallel run"
630 remote_mds_nodsh && skip "remote MDS with nodsh"
632 local foo=$DIR/$tdir/$tfile
635 test_mkdir -c1 $DIR/$tdir
636 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
637 ln -s $foo $foo || error "create symlink failed"
638 #define OBD_FAIL_MDS_READLINK_EPROTO 0x143
639 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
640 ls -l $foo && error "error not detected"
643 run_test 17i "don't panic on short symlink (should return error)"
645 test_17k() { #bug 22301
646 [ $PARALLEL == "yes" ] && skip "skip parallel run"
647 [[ -z "$(which rsync 2>/dev/null)" ]] &&
648 skip "no rsync command"
649 rsync --help | grep -q xattr ||
650 skip_env "$(rsync --version | head -n1) does not support xattrs"
651 test_mkdir $DIR/$tdir
652 test_mkdir $DIR/$tdir.new
653 touch $DIR/$tdir/$tfile
654 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
655 rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
656 error "rsync failed with xattrs enabled"
658 run_test 17k "symlinks: rsync with xattrs enabled"
660 test_17l() { # LU-279
661 [[ -z "$(which getfattr 2>/dev/null)" ]] &&
662 skip "no getfattr command"
664 test_mkdir $DIR/$tdir
665 touch $DIR/$tdir/$tfile
666 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
667 for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
668 # -h to not follow symlinks. -m '' to list all the xattrs.
669 # grep to remove first line: '# file: $path'.
670 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
672 lgetxattr_size_check $path $xattr ||
673 error "lgetxattr_size_check $path $xattr failed"
677 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
681 [ $PARALLEL == "yes" ] && skip "skip parallel run"
682 [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
683 remote_mds_nodsh && skip "remote MDS with nodsh"
684 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
685 [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
686 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
688 local short_sym="0123456789"
689 local wdir=$DIR/$tdir
694 # create a long symlink file
695 for ((i = 0; i < 4; ++i)); do
696 long_sym=${long_sym}${long_sym}
699 echo "create 512 short and long symlink files under $wdir"
700 for ((i = 0; i < 256; ++i)); do
701 ln -sf ${long_sym}"a5a5" $wdir/long-$i
702 ln -sf ${short_sym}"a5a5" $wdir/short-$i
708 wait_delete_completed
710 echo "recreate the 512 symlink files with a shorter string"
711 for ((i = 0; i < 512; ++i)); do
712 # rewrite the symlink file with a shorter string
713 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
714 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
717 local mds_index=$(($($LFS getstripe -m $wdir) + 1))
718 local devname=$(mdsdevname $mds_index)
720 echo "stop and checking mds${mds_index}:"
721 # e2fsck should not return error
723 run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
726 start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
727 error "start mds${mds_index} failed"
728 df $MOUNT > /dev/null 2>&1
730 error "e2fsck detected error for short/long symlink: rc=$rc"
733 run_test 17m "run e2fsck against MDT which contains short/long symlink"
735 check_fs_consistency_17n() {
739 # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
740 # so it only check MDT1/MDT2 instead of all of MDTs.
741 for mdt_index in 1 2; do
742 local devname=$(mdsdevname $mdt_index)
743 # e2fsck should not return error
745 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
748 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
749 error "mount mds$mdt_index failed"
750 df $MOUNT > /dev/null 2>&1
756 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
757 [ $PARALLEL == "yes" ] && skip "skip parallel run"
758 [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
759 remote_mds_nodsh && skip "remote MDS with nodsh"
760 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
761 [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
762 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
766 test_mkdir $DIR/$tdir
767 for ((i=0; i<10; i++)); do
768 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
769 error "create remote dir error $i"
770 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
771 error "create files under remote dir failed $i"
774 check_fs_consistency_17n ||
775 error "e2fsck report error after create files under remote dir"
777 for ((i = 0; i < 10; i++)); do
778 rm -rf $DIR/$tdir/remote_dir_${i} ||
779 error "destroy remote dir error $i"
782 check_fs_consistency_17n ||
783 error "e2fsck report error after unlink files under remote dir"
785 [ $MDS1_VERSION -lt $(version_code 2.4.50) ] &&
786 skip "lustre < 2.4.50 does not support migrate mv"
788 for ((i = 0; i < 10; i++)); do
789 mkdir -p $DIR/$tdir/remote_dir_${i}
790 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
791 error "create files under remote dir failed $i"
792 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
793 error "migrate remote dir error $i"
795 check_fs_consistency_17n || error "e2fsck report error after migration"
797 for ((i = 0; i < 10; i++)); do
798 rm -rf $DIR/$tdir/remote_dir_${i} ||
799 error "destroy remote dir error $i"
802 check_fs_consistency_17n || error "e2fsck report error after unlink"
804 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
807 remote_mds_nodsh && skip "remote MDS with nodsh"
808 [ $MDS1_VERSION -lt $(version_code 2.3.64) ] &&
809 skip "Need MDS version at least 2.3.64"
811 local wdir=$DIR/${tdir}o
817 mdt_index=$($LFS getstripe -m $wdir/$tfile)
818 mdt_index=$((mdt_index + 1))
821 #fail mds will wait the failover finish then set
822 #following fail_loc to avoid interfer the recovery process.
825 #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
826 do_facet mds${mdt_index} lctl set_param fail_loc=0x194
827 ls -l $wdir/$tfile && rc=1
828 do_facet mds${mdt_index} lctl set_param fail_loc=0
829 [[ $rc -eq 0 ]] || error "stat file should fail"
831 run_test 17o "stat file with incompat LMA feature"
834 touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
835 ls $DIR || error "Failed to ls $DIR: $?"
837 run_test 18 "touch .../f ; ls ... =============================="
843 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
845 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
848 ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
850 run_test 19b "ls -l .../f19 (should return error) =============="
853 [ $RUNAS_ID -eq $UID ] &&
854 skip_env "RUNAS_ID = UID = $UID -- skipping"
856 $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
858 run_test 19c "$RUNAS touch .../f19 (should return error) =="
861 cat $DIR/f19 && error || true
863 run_test 19d "cat .../f19 (should return error) =============="
872 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
874 run_test 20 "touch .../f ; ls -l ..."
877 test_mkdir $DIR/$tdir
878 [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
879 ln -s dangle $DIR/$tdir/link
880 echo foo >> $DIR/$tdir/link
881 cat $DIR/$tdir/dangle
882 $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
883 $CHECKSTAT -f -t file $DIR/$tdir/link ||
884 error "$tdir/link not linked to a file"
886 run_test 21 "write to dangling link"
889 local wdir=$DIR/$tdir
891 chown $RUNAS_ID:$RUNAS_GID $wdir
892 (cd $wdir || error "cd $wdir failed";
893 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
895 ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
896 $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
897 $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
898 error "checkstat -u failed"
900 run_test 22 "unpack tar archive as non-root user"
904 test_mkdir $DIR/$tdir
905 local file=$DIR/$tdir/$tfile
907 openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
908 openfile -f O_CREAT:O_EXCL $file &&
909 error "$file recreate succeeded" || true
911 run_test 23a "O_CREAT|O_EXCL in subdir"
913 test_23b() { # bug 18988
914 test_mkdir $DIR/$tdir
915 local file=$DIR/$tdir/$tfile
918 echo foo > $file || error "write filed"
919 echo bar >> $file || error "append filed"
920 $CHECKSTAT -s 8 $file || error "wrong size"
923 run_test 23b "O_APPEND check"
925 # LU-9409, size with O_APPEND and tiny writes
927 local file=$DIR/$tfile
930 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
931 $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
935 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
936 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
938 $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
941 #racing tiny & normal writes
942 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
943 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
945 $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
948 #racing tiny & normal writes 2, ugly numbers
949 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
950 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
952 $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
955 run_test 23c "O_APPEND size checks for tiny writes"
957 # LU-11069 file offset is correct after appending writes
959 local file=$DIR/$tfile
962 echo CentaurHauls > $file
963 offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
964 if ((offset != 26)); then
965 error "wrong offset, expected 26, got '$offset'"
968 run_test 23d "file offset is correct after appending writes"
972 echo '-- same directory rename'
973 test_mkdir $DIR/$tdir
974 touch $DIR/$tdir/$tfile.1
975 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
976 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
978 run_test 24a "rename file to non-existent target"
981 test_mkdir $DIR/$tdir
982 touch $DIR/$tdir/$tfile.{1,2}
983 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
984 $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
985 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
987 run_test 24b "rename file to existing target"
990 test_mkdir $DIR/$tdir
991 test_mkdir $DIR/$tdir/d$testnum.1
992 mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
993 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
994 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
996 run_test 24c "rename directory to non-existent target"
999 test_mkdir -c1 $DIR/$tdir
1000 test_mkdir -c1 $DIR/$tdir/d$testnum.1
1001 test_mkdir -c1 $DIR/$tdir/d$testnum.2
1002 mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
1003 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
1004 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
1006 run_test 24d "rename directory to existing target"
1009 echo '-- cross directory renames --'
1013 mv $DIR/R5a/f $DIR/R5b/g
1014 $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
1015 $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
1017 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
1022 touch $DIR/R6a/f $DIR/R6b/g
1023 mv $DIR/R6a/f $DIR/R6b/g
1024 $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
1025 $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
1027 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
1032 test_mkdir $DIR/R7a/d
1033 mv $DIR/R7a/d $DIR/R7b/e
1034 $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
1035 $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
1037 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
1040 test_mkdir -c1 $DIR/R8a
1041 test_mkdir -c1 $DIR/R8b
1042 test_mkdir -c1 $DIR/R8a/d
1043 test_mkdir -c1 $DIR/R8b/e
1044 mrename $DIR/R8a/d $DIR/R8b/e
1045 $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1046 $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1048 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1051 echo "-- rename error cases"
1053 test_mkdir $DIR/R9/a
1055 mrename $DIR/R9/f $DIR/R9/a
1056 $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1057 $CHECKSTAT -t dir $DIR/R9/a || error "$DIR/R9/a not dir type"
1058 $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1060 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1064 mrename $DIR/R10/f $DIR/R10/g
1065 $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1066 $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1067 $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1069 run_test 24j "source does not exist ============================"
1072 test_mkdir $DIR/R11a
1073 test_mkdir $DIR/R11a/d
1075 mv $DIR/R11a/f $DIR/R11a/d
1076 $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1077 $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1079 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1081 # bug 2429 - rename foo foo foo creates invalid file
1084 $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1086 run_test 24l "Renaming a file to itself ========================"
1090 $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1091 # on ext3 this does not remove either the source or target files
1092 # though the "expected" operation would be to remove the source
1093 $CHECKSTAT -t file ${f} || error "${f} missing"
1094 $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1096 run_test 24m "Renaming a file to a hard link to itself ========="
1100 # this stats the old file after it was renamed, so it should fail
1102 $CHECKSTAT ${f} || error "${f} missing"
1104 $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1105 $CHECKSTAT -a ${f} || error "${f} exists"
1107 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1110 test_mkdir $DIR/$tdir
1111 rename_many -s random -v -n 10 $DIR/$tdir
1113 run_test 24o "rename of files during htree split"
1116 test_mkdir $DIR/R12a
1117 test_mkdir $DIR/R12b
1118 DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1119 mrename $DIR/R12a $DIR/R12b
1120 $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1121 $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1122 DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1123 [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1125 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1127 cleanup_multiop_pause() {
1129 kill -USR1 $MULTIPID
1133 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1135 test_mkdir $DIR/R13a
1136 test_mkdir $DIR/R13b
1137 local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1138 multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1141 trap cleanup_multiop_pause EXIT
1142 mrename $DIR/R13a $DIR/R13b
1143 $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1144 $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1145 local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1146 [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1147 cleanup_multiop_pause
1148 wait $MULTIPID || error "multiop close failed"
1150 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1152 test_24r() { #bug 3789
1153 test_mkdir $DIR/R14a
1154 test_mkdir $DIR/R14a/b
1155 mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1156 $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1157 $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1159 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1162 test_mkdir $DIR/R15a
1163 test_mkdir $DIR/R15a/b
1164 test_mkdir $DIR/R15a/b/c
1165 mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1166 $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1167 $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1169 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1171 test_mkdir $DIR/R16a
1172 test_mkdir $DIR/R16a/b
1173 test_mkdir $DIR/R16a/b/c
1174 mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1175 $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1176 $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1178 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1180 test_24u() { # bug12192
1181 $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1182 $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1184 run_test 24u "create stripe file"
1186 simple_cleanup_common() {
1189 [ -z "$DIR" ] || [ -z "$tdir" ] && return 0
1191 local start=$SECONDS
1194 wait_delete_completed
1195 echo "cleanup time $((SECONDS - start))"
1199 max_pages_per_rpc() {
1200 local mdtname="$(printf "MDT%04x" ${1:-0})"
1201 $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1205 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1207 local nrfiles=${COUNT:-100000}
1208 local fname="$DIR/$tdir/$tfile"
1210 # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1211 [ "$mds1_FSTYPE" = "zfs" ] && nrfiles=${COUNT:-10000}
1213 test_mkdir "$(dirname $fname)"
1214 # assume MDT0000 has the fewest inodes
1215 local stripes=$($LFS getdirstripe -c $(dirname $fname))
1216 local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1217 [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1219 trap simple_cleanup_common EXIT
1221 createmany -m "$fname" $nrfiles
1223 cancel_lru_locks mdc
1224 lctl set_param mdc.*.stats clear
1226 # was previously test_24D: LU-6101
1227 # readdir() returns correct number of entries after cursor reload
1228 local num_ls=$(ls $DIR/$tdir | wc -l)
1229 local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1230 local num_all=$(ls -a $DIR/$tdir | wc -l)
1231 if [ $num_ls -ne $nrfiles ] || [ $num_uniq -ne $nrfiles ] ||
1232 [ $num_all -ne $((nrfiles + 2)) ]; then
1233 error "Expected $nrfiles files, got $num_ls " \
1234 "($num_uniq unique $num_all .&..)"
1236 # LU-5 large readdir
1237 # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1238 # N bytes for name (len($nrfiles) rounded to 8 bytes) +
1239 # 8 bytes for luda_type (4 bytes rounded to 8 bytes)
1240 # take into account of overhead in lu_dirpage header and end mark in
1241 # each page, plus one in rpc_num calculation.
1242 local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1243 local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1244 local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1245 local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1246 local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1247 local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1248 echo "readpages: $mds_readpage rpc_max: $rpc_max"
1249 (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1250 error "large readdir doesn't take effect: " \
1251 "$mds_readpage should be about $rpc_max"
1253 simple_cleanup_common
1255 run_test 24v "list large directory (test hash collision, b=17560)"
1257 test_24w() { # bug21506
1259 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1260 dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1261 dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1262 SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1263 [[ "$SZ1" -eq "$SZ2" ]] ||
1264 error "Error reading at the end of the file $tfile"
1266 run_test 24w "Reading a file larger than 4Gb"
1269 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1270 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1271 [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1272 skip "Need MDS version at least 2.7.56"
1275 local remote_dir=$DIR/$tdir/remote_dir
1277 test_mkdir $DIR/$tdir
1278 $LFS mkdir -i $MDTIDX $remote_dir ||
1279 error "create remote directory failed"
1281 test_mkdir $DIR/$tdir/src_dir
1282 touch $DIR/$tdir/src_file
1283 test_mkdir $remote_dir/tgt_dir
1284 touch $remote_dir/tgt_file
1286 mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1287 error "rename dir cross MDT failed!"
1289 mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1290 error "rename file cross MDT failed!"
1292 touch $DIR/$tdir/ln_file
1293 ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1294 error "ln file cross MDT failed"
1296 rm -rf $DIR/$tdir || error "Can not delete directories"
1298 run_test 24x "cross MDT rename/link"
1301 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1302 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1304 local remote_dir=$DIR/$tdir/remote_dir
1307 test_mkdir $DIR/$tdir
1308 $LFS mkdir -i $mdtidx $remote_dir ||
1309 error "create remote directory failed"
1311 test_mkdir $remote_dir/src_dir
1312 touch $remote_dir/src_file
1313 test_mkdir $remote_dir/tgt_dir
1314 touch $remote_dir/tgt_file
1316 mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1317 error "rename subdir in the same remote dir failed!"
1319 mrename $remote_dir/src_file $remote_dir/tgt_file ||
1320 error "rename files in the same remote dir failed!"
1322 ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1323 error "link files in the same remote dir failed!"
1325 rm -rf $DIR/$tdir || error "Can not delete directories"
1327 run_test 24y "rename/link on the same dir should succeed"
1330 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1331 [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
1332 skip "Need MDS version at least 2.12.51"
1336 for index in 0 1; do
1337 $LFS mkdir -i $index $DIR/$tdir.$index || error "mkdir failed"
1338 touch $DIR/$tdir.0/$tfile.$index || error "touch failed"
1341 mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1 || error "mv $tfile.0 failed"
1343 index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.0)
1344 [ $index -eq 0 ] || error "$tfile.0 is on MDT$index"
1346 local mdts=$(comma_list $(mdts_nodes))
1348 do_nodes $mdts $LCTL set_param mdt.*.enable_remote_rename=0
1349 stack_trap "do_nodes $mdts $LCTL \
1350 set_param mdt.*.enable_remote_rename=1" EXIT
1352 mv $DIR/$tdir.0/$tfile.1 $DIR/$tdir.1 || error "mv $tfile.1 failed"
1354 index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.1)
1355 [ $index -eq 1 ] || error "$tfile.1 is on MDT$index"
1357 run_test 24z "cross-MDT rename is done as cp"
1359 test_24A() { # LU-3182
1363 test_mkdir $DIR/$tdir
1364 trap simple_cleanup_common EXIT
1365 createmany -m $DIR/$tdir/$tfile $NFILES
1366 local t=$(ls $DIR/$tdir | wc -l)
1367 local u=$(ls $DIR/$tdir | sort -u | wc -l)
1368 local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1369 if [ $t -ne $NFILES ] || [ $u -ne $NFILES ] ||
1370 [ $v -ne $((NFILES + 2)) ] ; then
1371 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1374 simple_cleanup_common || error "Can not delete directories"
1376 run_test 24A "readdir() returns correct number of entries."
1378 test_24B() { # LU-4805
1379 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1383 test_mkdir $DIR/$tdir
1384 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1385 error "create striped dir failed"
1387 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1388 [ $count -eq 2 ] || error "Expected 2, got $count"
1390 touch $DIR/$tdir/striped_dir/a
1392 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1393 [ $count -eq 3 ] || error "Expected 3, got $count"
1395 touch $DIR/$tdir/striped_dir/.f
1397 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1398 [ $count -eq 4 ] || error "Expected 4, got $count"
1400 rm -rf $DIR/$tdir || error "Can not delete directories"
1402 run_test 24B "readdir for striped dir return correct number of entries"
1405 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1411 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1412 error "create striped dir failed"
1414 cd $DIR/$tdir/d0/striped_dir
1416 local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1417 local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1418 local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1420 [ "$d0_ino" = "$parent_ino" ] ||
1421 error ".. wrong, expect $d0_ino, get $parent_ino"
1423 mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1424 error "mv striped dir failed"
1426 parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1428 [ "$d1_ino" = "$parent_ino" ] ||
1429 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1431 run_test 24C "check .. in striped dir"
1434 [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1435 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1438 mkdir $DIR/$tdir/src_dir
1439 $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1440 error "create remote source failed"
1442 touch $DIR/$tdir/src_dir/src_child/a
1444 $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1445 error "create remote target dir failed"
1447 $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1448 error "create remote target child failed"
1450 mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1451 error "rename dir cross MDT failed!"
1455 $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1456 error "src_child still exists after rename"
1458 $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1459 error "missing file(a) after rename"
1461 rm -rf $DIR/$tdir || error "Can not delete directories"
1463 run_test 24E "cross MDT rename/link"
1466 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1469 [ "$SLOW" = "no" ] && repeats=100
1473 echo "$repeats repeats"
1474 for ((i = 0; i < repeats; i++)); do
1475 $LFS mkdir -i0 -c2 $DIR/$tdir/test || error "mkdir fails"
1476 touch $DIR/$tdir/test/a || error "touch fails"
1477 mkdir $DIR/$tdir/test/b || error "mkdir fails"
1478 rm -rf $DIR/$tdir/test || error "rmdir fails"
1483 run_test 24F "hash order vs readdir (LU-11330)"
1486 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1491 $LFS mkdir -i 0 $DIR/$tdir-0 || error "mkdir $tdir-0"
1492 $LFS mkdir -i 1 $DIR/$tdir-1 || error "mkdir $tdir-1"
1493 touch $DIR/$tdir-0/f1 || error "touch f1"
1494 ln -s $DIR/$tdir-0/f1 $DIR/$tdir-0/s1 || error "ln s1"
1495 ino1=$(stat -c%i $DIR/$tdir-0/s1)
1496 mv $DIR/$tdir-0/s1 $DIR/$tdir-1 || error "mv s1"
1497 ino2=$(stat -c%i $DIR/$tdir-1/s1)
1498 [ $ino1 -ne $ino2 ] || error "s1 should be migrated"
1500 run_test 24G "migrate symlink in rename"
1503 echo '== symlink sanity ============================================='
1507 touch $DIR/s25/foo ||
1508 error "File creation in symlinked directory failed"
1510 run_test 25a "create file in symlinked directory ==============="
1513 [ ! -d $DIR/d25 ] && test_25a
1514 $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1516 run_test 25b "lookup file in symlinked directory ==============="
1520 test_mkdir $DIR/d26/d26-2
1521 ln -s d26/d26-2 $DIR/s26
1522 touch $DIR/s26/foo || error "File creation failed"
1524 run_test 26a "multiple component symlink ======================="
1527 test_mkdir -p $DIR/$tdir/d26-2
1528 ln -s $tdir/d26-2/foo $DIR/s26-2
1529 touch $DIR/s26-2 || error "File creation failed"
1531 run_test 26b "multiple component symlink at end of lookup ======"
1534 test_mkdir $DIR/d26.2
1535 touch $DIR/d26.2/foo
1536 ln -s d26.2 $DIR/s26.2-1
1537 ln -s s26.2-1 $DIR/s26.2-2
1538 ln -s s26.2-2 $DIR/s26.2-3
1539 chmod 0666 $DIR/s26.2-3/foo
1541 run_test 26c "chain of symlinks"
1543 # recursive symlinks (bug 439)
1545 ln -s d26-3/foo $DIR/d26-3
1547 run_test 26d "create multiple component recursive symlink"
1550 [ ! -h $DIR/d26-3 ] && test_26d
1553 run_test 26e "unlink multiple component recursive symlink"
1555 # recursive symlinks (bug 7022)
1557 test_mkdir $DIR/$tdir
1558 test_mkdir $DIR/$tdir/$tfile
1559 cd $DIR/$tdir/$tfile || error "cd $DIR/$tdir/$tfile failed"
1560 test_mkdir -p lndir/bar1
1561 test_mkdir $DIR/$tdir/$tfile/$tfile
1562 cd $tfile || error "cd $tfile failed"
1563 ln -s .. dotdot || error "ln dotdot failed"
1564 ln -s dotdot/lndir lndir || error "ln lndir failed"
1565 cd $DIR/$tdir || error "cd $DIR/$tdir failed"
1566 output=`ls $tfile/$tfile/lndir/bar1`
1567 [ "$output" = bar1 ] && error "unexpected output"
1568 rm -r $tfile || error "rm $tfile failed"
1569 $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1571 run_test 26f "rm -r of a directory which has recursive symlink"
1574 test_mkdir $DIR/$tdir
1575 $LFS getstripe $DIR/$tdir
1576 $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1577 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1578 cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1580 run_test 27a "one stripe file"
1583 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1585 test_mkdir $DIR/$tdir
1586 $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1587 $LFS getstripe -c $DIR/$tdir/$tfile
1588 [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1589 error "two-stripe file doesn't have two stripes"
1591 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1593 run_test 27b "create and write to two stripe file"
1595 # 27c family tests specific striping, setstripe -o
1597 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1598 test_mkdir -p $DIR/$tdir
1601 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1602 $LFS getstripe -i $DIR/$tdir/$tfile
1603 [ $($LFS getstripe -i $DIR/$tdir/$tfile ) -eq $osts ] ||
1604 error "stripe not on specified OST"
1606 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1608 run_test 27ca "one stripe on specified OST"
1611 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1612 test_mkdir -p $DIR/$tdir
1614 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1615 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1618 # Strip getstripe output to a space separated list of OSTs
1619 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1620 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1621 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1622 error "stripes not on specified OSTs"
1624 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1626 run_test 27cb "two stripes on specified OSTs"
1629 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1630 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1631 skip "server does not support overstriping"
1633 test_mkdir -p $DIR/$tdir
1635 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1636 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1639 # Strip getstripe output to a space separated list of OSTs
1640 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1641 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1642 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1643 error "stripes not on specified OSTs"
1645 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1647 run_test 27cc "two stripes on the same OST"
1650 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1651 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1652 skip "server does not support overstriping"
1653 test_mkdir -p $DIR/$tdir
1654 local osts="0,1,1,0"
1655 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1656 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1659 # Strip getstripe output to a space separated list of OSTs
1660 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1661 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1662 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1663 error "stripes not on specified OSTs"
1665 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1667 run_test 27cd "four stripes on two OSTs"
1670 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
1671 skip_env "too many osts, skipping"
1672 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1673 skip "server does not support overstriping"
1674 # We do one more stripe than we have OSTs
1675 [ $OSTCOUNT -lt 159 ] || large_xattr_enabled ||
1676 skip_env "ea_inode feature disabled"
1678 test_mkdir -p $DIR/$tdir
1680 for i in $(seq 0 $OSTCOUNT);
1683 if [ $i -ne $OSTCOUNT ]; then
1687 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1688 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1691 # Strip getstripe output to a space separated list of OSTs
1692 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1693 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1694 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1695 error "stripes not on specified OSTs"
1697 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1699 run_test 27ce "more stripes than OSTs with -o"
1702 local osp_proc="osp.$FSNAME-OST0000-osc-MDT000*.active"
1705 test_mkdir -p $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
1706 do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=0"
1707 stack_trap "do_facet $SINGLEMDS $LCTL set_param -n $osp_proc=1" EXIT
1708 wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 1" ||
1709 error "failed to set $osp_proc=0"
1711 $LFS setstripe -o 0 $DIR/$tdir/$tfile &
1714 do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=1"
1715 wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 0" ||
1716 error "failed to set $osp_proc=1"
1719 error "should return error due to $osp_proc=0"
1721 run_test 27cf "'setstripe -o' on inactive OSTs should return error"
1724 test_mkdir $DIR/$tdir
1725 $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1726 error "setstripe failed"
1727 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1728 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1730 run_test 27d "create file with default settings"
1733 # LU-5839 adds check for existed layout before setting it
1734 [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1735 skip "Need MDS version at least 2.7.56"
1737 test_mkdir $DIR/$tdir
1738 $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1739 $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1740 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1742 run_test 27e "setstripe existing file (should return error)"
1745 test_mkdir $DIR/$tdir
1746 $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1747 error "$LFS setstripe $DIR/$tdir/$tfile failed"
1748 $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1749 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1750 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1751 $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1753 run_test 27f "setstripe with bad stripe size (should return error)"
1756 test_mkdir $DIR/$tdir
1757 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1758 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1759 error "$DIR/$tdir/$tfile has object"
1761 run_test 27g "$LFS getstripe with no objects"
1764 test_mkdir $DIR/$tdir
1765 touch $DIR/$tdir/$tfile || error "touch failed"
1766 ln -s bogus $DIR/$tdir/$tfile.2 || error "ln failed"
1767 $LFS getstripe -m $DIR/$tdir/$tfile $DIR/$tdir/$tfile.2
1769 (( rc == 2 )) || error "getstripe did not return ENOENT"
1771 run_test 27ga "$LFS getstripe with missing file (should return error)"
1774 test_mkdir $DIR/$tdir
1775 touch $DIR/$tdir/$tfile || error "touch failed"
1776 [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1777 error "missing objects"
1779 run_test 27i "$LFS getstripe with some objects"
1782 test_mkdir $DIR/$tdir
1783 $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1784 error "setstripe failed" || true
1786 run_test 27j "setstripe with bad stripe offset (should return error)"
1788 test_27k() { # bug 2844
1789 test_mkdir $DIR/$tdir
1790 local file=$DIR/$tdir/$tfile
1791 local ll_max_blksize=$((4 * 1024 * 1024))
1792 $LFS setstripe -S 67108864 $file || error "setstripe failed"
1793 local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1794 [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1795 dd if=/dev/zero of=$file bs=4k count=1
1796 blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1797 [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1799 run_test 27k "limit i_blksize for broken user apps"
1802 mcreate $DIR/$tfile || error "creating file"
1803 $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1804 error "setstripe should have failed" || true
1806 run_test 27l "check setstripe permissions (should return error)"
1809 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1811 [ -n "$RCLIENTS" -o -n "$MOUNT_2" ] &&
1812 skip_env "multiple clients -- skipping"
1814 ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1816 if [[ $ORIGFREE -gt $MAXFREE ]]; then
1817 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1819 trap simple_cleanup_common EXIT
1820 test_mkdir $DIR/$tdir
1821 $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1822 dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1823 error "dd should fill OST0"
1825 while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1827 [ $i -gt 256 ] && break
1830 touch $DIR/$tdir/$tfile.$i
1831 [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1832 awk '{print $1}'| grep -w "0") ] &&
1833 error "OST0 was full but new created file still use it"
1835 touch $DIR/$tdir/$tfile.$i
1836 [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1837 awk '{print $1}'| grep -w "0") ] &&
1838 error "OST0 was full but new created file still use it"
1839 simple_cleanup_common
1841 run_test 27m "create file while OST0 was full"
1843 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1844 # if the OST isn't full anymore.
1846 local ostidx=${1:-""}
1851 local list=$(comma_list $(osts_nodes))
1852 [ "$ostidx" ] && list=$(facet_host ost$((ostidx + 1)))
1854 do_nodes $list lctl set_param fail_loc=0
1855 wait_delete_completed # initiate all OST_DESTROYs from MDS to OST
1856 delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1857 awk '{print $1 * 2;exit;}')
1858 get_prealloc="$LCTL get_param -n osc.*MDT*.prealloc_status |
1860 wait_update_facet $SINGLEMDS "$get_prealloc" "" $delay
1863 __exhaust_precreations() {
1866 local FAILIDX=${3:-$OSTIDX}
1867 local ofacet=ost$((OSTIDX + 1))
1869 mkdir_on_mdt0 $DIR/$tdir
1870 local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1871 local mfacet=mds$((mdtidx + 1))
1872 echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1874 local OST=$(ostname_from_index $OSTIDX)
1877 local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1878 local last_id=$(do_facet $mfacet lctl get_param -n \
1879 osp.$mdtosc_proc1.prealloc_last_id)
1880 local next_id=$(do_facet $mfacet lctl get_param -n \
1881 osp.$mdtosc_proc1.prealloc_next_id)
1883 local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1884 do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1886 test_mkdir -p $DIR/$tdir/${OST}
1887 $LFS setstripe -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1888 #define OBD_FAIL_OST_ENOSPC 0x215
1889 do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1890 echo "Creating to objid $last_id on ost $OST..."
1891 createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1892 do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1893 do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1896 exhaust_precreations() {
1897 __exhaust_precreations $1 $2 $3
1901 exhaust_all_precreations() {
1903 for (( i=0; i < OSTCOUNT; i++ )) ; do
1904 __exhaust_precreations $i $1 -1
1910 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1911 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1912 remote_mds_nodsh && skip "remote MDS with nodsh"
1913 remote_ost_nodsh && skip "remote OST with nodsh"
1916 rm -f $DIR/$tdir/$tfile
1917 exhaust_precreations 0 0x80000215
1918 $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1919 touch $DIR/$tdir/$tfile || error "touch failed"
1920 $LFS getstripe $DIR/$tdir/$tfile
1923 run_test 27n "create file with some full OSTs"
1926 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1927 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1928 remote_mds_nodsh && skip "remote MDS with nodsh"
1929 remote_ost_nodsh && skip "remote OST with nodsh"
1932 rm -f $DIR/$tdir/$tfile
1933 exhaust_all_precreations 0x215
1935 touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1940 run_test 27o "create file with all full OSTs (should error)"
1942 function create_and_checktime() {
1947 for ((i=0; i < $loops; i++)); do
1948 local start=$SECONDS
1949 multiop $fname-$i Oc
1950 ((SECONDS-start < TIMEOUT)) ||
1951 error "creation took " $((SECONDS-$start)) && return 1
1956 local mdts=$(comma_list $(mdts_nodes))
1958 [ $MDS1_VERSION -lt $(version_code 2.13.57) ] &&
1959 skip "Need MDS version at least 2.13.57"
1961 local f0=$DIR/${tfile}-0
1962 local f1=$DIR/${tfile}-1
1964 wait_delete_completed
1966 # refill precreated objects
1967 $LFS setstripe -i0 -c1 $f0
1969 saved=$(do_facet mds1 $LCTL get_param -n lov.*0000*.qos_threshold_rr)
1970 # force QoS allocation policy
1971 do_nodes $mdts $LCTL set_param lov.*.qos_threshold_rr=0%
1972 stack_trap "do_nodes $mdts $LCTL set_param \
1973 lov.*.qos_threshold_rr=$saved" EXIT
1976 # one OST is unavailable, but still have few objects preallocated
1978 stack_trap "start ost1 $(ostdevname 1) $OST_MOUNT_OPTS; \
1979 rm -rf $f1 $DIR/$tdir*" EXIT
1981 for ((i=0; i < 7; i++)); do
1982 mkdir $DIR/$tdir$i || error "can't create dir"
1983 $LFS setstripe -c$((OSTCOUNT-1)) $DIR/$tdir$i ||
1984 error "can't set striping"
1986 for ((i=0; i < 7; i++)); do
1987 create_and_checktime $DIR/$tdir$i/$tfile 100 &
1991 run_test 27oo "don't let few threads to reserve too many objects"
1994 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1995 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1996 remote_mds_nodsh && skip "remote MDS with nodsh"
1997 remote_ost_nodsh && skip "remote OST with nodsh"
2000 rm -f $DIR/$tdir/$tfile
2001 test_mkdir $DIR/$tdir
2003 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
2004 $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
2005 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
2007 exhaust_precreations 0 0x80000215
2008 echo foo >> $DIR/$tdir/$tfile || error "append failed"
2009 $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
2010 $LFS getstripe $DIR/$tdir/$tfile
2014 run_test 27p "append to a truncated file with some full OSTs"
2017 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2018 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2019 remote_mds_nodsh && skip "remote MDS with nodsh"
2020 remote_ost_nodsh && skip "remote OST with nodsh"
2023 rm -f $DIR/$tdir/$tfile
2025 mkdir_on_mdt0 $DIR/$tdir
2026 $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
2027 $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
2028 error "truncate $DIR/$tdir/$tfile failed"
2029 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
2031 exhaust_all_precreations 0x215
2033 echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
2034 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
2038 run_test 27q "append to truncated file with all OSTs full (should error)"
2041 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2042 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2043 remote_mds_nodsh && skip "remote MDS with nodsh"
2044 remote_ost_nodsh && skip "remote OST with nodsh"
2047 rm -f $DIR/$tdir/$tfile
2048 exhaust_precreations 0 0x80000215
2050 $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
2054 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
2056 test_27s() { # bug 10725
2057 test_mkdir $DIR/$tdir
2058 local stripe_size=$((4096 * 1024 * 1024)) # 2^32
2059 local stripe_count=0
2060 [ $OSTCOUNT -eq 1 ] || stripe_count=2
2061 $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
2062 error "stripe width >= 2^32 succeeded" || true
2065 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
2067 test_27t() { # bug 10864
2072 $WLFS getstripe $tfile
2075 run_test 27t "check that utils parse path correctly"
2077 test_27u() { # bug 4900
2078 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2079 remote_mds_nodsh && skip "remote MDS with nodsh"
2082 local list=$(comma_list $(mdts_nodes))
2084 #define OBD_FAIL_MDS_OSC_PRECREATE 0x139
2085 do_nodes $list $LCTL set_param fail_loc=0x139
2086 test_mkdir -p $DIR/$tdir
2087 trap simple_cleanup_common EXIT
2088 createmany -o $DIR/$tdir/t- 1000
2089 do_nodes $list $LCTL set_param fail_loc=0
2091 TLOG=$TMP/$tfile.getstripe
2092 $LFS getstripe $DIR/$tdir > $TLOG
2093 OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
2094 unlinkmany $DIR/$tdir/t- 1000
2096 [[ $OBJS -gt 0 ]] &&
2097 error "$OBJS objects created on OST-0. See $TLOG" ||
2100 run_test 27u "skip object creation on OSC w/o objects"
2102 test_27v() { # bug 4900
2103 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2104 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2105 remote_mds_nodsh && skip "remote MDS with nodsh"
2106 remote_ost_nodsh && skip "remote OST with nodsh"
2108 exhaust_all_precreations 0x215
2111 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe / file
2113 touch $DIR/$tdir/$tfile
2114 #define OBD_FAIL_TGT_DELAY_PRECREATE 0x705
2116 for (( i=1; i < OSTCOUNT; i++ )); do
2117 do_facet ost$i lctl set_param fail_loc=0x705
2119 local START=`date +%s`
2120 createmany -o $DIR/$tdir/$tfile 32
2122 local FINISH=`date +%s`
2123 local TIMEOUT=`lctl get_param -n timeout`
2124 local PROCESS=$((FINISH - START))
2125 [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
2126 error "$FINISH - $START >= $TIMEOUT / 2"
2127 sleep $((TIMEOUT / 2 - PROCESS))
2130 run_test 27v "skip object creation on slow OST"
2132 test_27w() { # bug 10997
2133 test_mkdir $DIR/$tdir
2134 $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
2135 [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
2136 error "stripe size $size != 65536" || true
2137 [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
2138 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
2140 run_test 27w "check $LFS setstripe -S and getstrip -d options"
2143 [[ $OSTCOUNT -lt 2 ]] &&
2144 skip_env "skipping multiple stripe count/offset test"
2146 test_mkdir $DIR/$tdir
2147 for i in $(seq 1 $OSTCOUNT); do
2149 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
2150 error "setstripe -c $i -i $offset failed"
2151 count=$($LFS getstripe -c $DIR/$tdir/f$i)
2152 index=$($LFS getstripe -i $DIR/$tdir/f$i)
2153 [ $count -ne $i ] && error "stripe count $count != $i" || true
2154 [ $index -ne $offset ] &&
2155 error "stripe offset $index != $offset" || true
2158 run_test 27wa "check $LFS setstripe -c -i options"
2161 remote_ost_nodsh && skip "remote OST with nodsh"
2162 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2163 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2165 OFFSET=$(($OSTCOUNT - 1))
2167 local OST=$(ostname_from_index $OSTIDX)
2169 test_mkdir $DIR/$tdir
2170 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe per file
2171 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
2173 createmany -o $DIR/$tdir/$tfile $OSTCOUNT
2174 for i in $(seq 0 $OFFSET); do
2175 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
2176 awk '{print $1}' | grep -w "$OSTIDX") ] &&
2177 error "OST0 was degraded but new created file still use it"
2179 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
2181 run_test 27x "create files while OST0 is degraded"
2184 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2185 remote_mds_nodsh && skip "remote MDS with nodsh"
2186 remote_ost_nodsh && skip "remote OST with nodsh"
2187 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2189 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
2190 local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
2191 osp.$mdtosc.prealloc_last_id)
2192 local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
2193 osp.$mdtosc.prealloc_next_id)
2194 local fcount=$((last_id - next_id))
2195 [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
2196 [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
2198 local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
2199 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
2200 local OST_DEACTIVE_IDX=-1
2205 for OSC in $MDS_OSCS; do
2206 OST=$(osc_to_ost $OSC)
2207 OSTIDX=$(index_from_ostuuid $OST)
2208 if [ $OST_DEACTIVE_IDX == -1 ]; then
2209 OST_DEACTIVE_IDX=$OSTIDX
2211 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
2212 echo $OSC "is Deactivated:"
2213 do_facet $SINGLEMDS lctl --device %$OSC deactivate
2217 OSTIDX=$(index_from_ostuuid $OST)
2218 test_mkdir $DIR/$tdir
2219 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe / file
2221 for OSC in $MDS_OSCS; do
2222 OST=$(osc_to_ost $OSC)
2223 OSTIDX=$(index_from_ostuuid $OST)
2224 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2225 echo $OST "is degraded:"
2226 do_facet ost$((OSTIDX+1)) lctl set_param -n \
2227 obdfilter.$OST.degraded=1
2232 createmany -o $DIR/$tdir/$tfile $fcount
2234 for OSC in $MDS_OSCS; do
2235 OST=$(osc_to_ost $OSC)
2236 OSTIDX=$(index_from_ostuuid $OST)
2237 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2238 echo $OST "is recovered from degraded:"
2239 do_facet ost$((OSTIDX+1)) lctl set_param -n \
2240 obdfilter.$OST.degraded=0
2242 do_facet $SINGLEMDS lctl --device %$OSC activate
2246 # all osp devices get activated, hence -1 stripe count restored
2247 local stripe_count=0
2249 # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
2250 # devices get activated.
2252 $LFS setstripe -c -1 $DIR/$tfile
2253 stripe_count=$($LFS getstripe -c $DIR/$tfile)
2255 [ $stripe_count -ne $OSTCOUNT ] &&
2256 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
2259 run_test 27y "create files while OST0 is degraded and the rest inactive"
2265 lmm_count=$($LFS getstripe -c $1)
2266 lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
2267 lmm_oid=$($LFS getstripe -v $1 | awk '/lmm_object_id/ { print $2 }')
2269 local old_ifs="$IFS"
2271 fid=($($LFS path2fid $1))
2274 log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
2275 log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
2277 # compare lmm_seq and lu_fid->f_seq
2278 [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
2279 # compare lmm_object_id and lu_fid->oid
2280 [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
2282 # check the trusted.fid attribute of the OST objects of the file
2283 local have_obdidx=false
2285 $LFS getstripe $1 | while read obdidx oid hex seq; do
2286 # skip lines up to and including "obdidx"
2287 [ -z "$obdidx" ] && break
2288 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
2289 $have_obdidx || continue
2291 local ost=$((obdidx + 1))
2292 local dev=$(ostdevname $ost)
2295 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
2297 seq=$(echo $seq | sed -e "s/^0x//g")
2298 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
2299 oid_hex=$(echo $oid)
2301 oid_hex=$(echo $hex | sed -e "s/^0x//g")
2303 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
2307 # Don't unmount/remount the OSTs if we don't need to do that.
2308 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2309 # update too, until that use mount/ll_decode_filter_fid/mount.
2310 # Re-enable when debugfs will understand new filter_fid.
2312 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2313 ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2314 $dev 2>/dev/null" | grep "parent=")
2316 if [ -z "$ff" ]; then
2318 mount_fstype ost$ost
2319 ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2320 $(facet_mntpt ost$ost)/$obj_file)
2321 unmount_fstype ost$ost
2322 start ost$ost $dev $OST_MOUNT_OPTS
2326 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2328 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2330 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2331 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2333 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2334 # stripe_size=1048576 component_id=1 component_start=0 \
2335 # component_end=33554432
2336 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2337 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2338 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2340 if grep -q 'stripe=' <<<$ff; then
2341 ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2343 # $LL_DECODE_FILTER_FID does not print "stripe="; look
2344 # into f_ver in this case. See comment on ff_parent.
2345 ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2348 # compare lmm_seq and filter_fid->ff_parent.f_seq
2349 [ $ff_pseq = $lmm_seq ] ||
2350 error "FF parent SEQ $ff_pseq != $lmm_seq"
2351 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2352 [ $ff_poid = $lmm_oid ] ||
2353 error "FF parent OID $ff_poid != $lmm_oid"
2354 (($ff_pstripe == $stripe_nr)) ||
2355 error "FF stripe $ff_pstripe != $stripe_nr"
2357 stripe_nr=$((stripe_nr + 1))
2358 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2360 if grep -q 'stripe_count=' <<<$ff; then
2361 local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2362 -e 's/ .*//' <<<$ff)
2363 [ $lmm_count = $ff_scnt ] ||
2364 error "FF stripe count $lmm_count != $ff_scnt"
2370 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2371 remote_ost_nodsh && skip "remote OST with nodsh"
2373 test_mkdir $DIR/$tdir
2374 $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2375 { error "setstripe -c -1 failed"; return 1; }
2376 # We need to send a write to every object to get parent FID info set.
2377 # This _should_ also work for setattr, but does not currently.
2378 # touch $DIR/$tdir/$tfile-1 ||
2379 dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2380 { error "dd $tfile-1 failed"; return 2; }
2381 $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2382 { error "setstripe -c -1 failed"; return 3; }
2383 dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2384 { error "dd $tfile-2 failed"; return 4; }
2386 # make sure write RPCs have been sent to OSTs
2389 check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2390 check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2392 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2394 test_27A() { # b=19102
2395 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2397 save_layout_restore_at_exit $MOUNT
2398 $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2399 wait_update $HOSTNAME "$LFS getstripe -c $MOUNT | sed 's/ *//g'" "1" 20 ||
2400 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2401 local default_size=$($LFS getstripe -S $MOUNT)
2402 local default_offset=$($LFS getstripe -i $MOUNT)
2403 local dsize=$(do_facet $SINGLEMDS \
2404 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2405 [ $default_size -eq $dsize ] ||
2406 error "stripe size $default_size != $dsize"
2407 [ $default_offset -eq -1 ] ||
2408 error "stripe offset $default_offset != -1"
2410 run_test 27A "check filesystem-wide default LOV EA values"
2412 test_27B() { # LU-2523
2413 test_mkdir $DIR/$tdir
2414 rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2416 # open f1 with O_LOV_DELAY_CREATE
2418 # call setstripe ioctl on open file descriptor for f1
2420 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2424 # open f1 with O_LOV_DELAY_CREATE
2426 # call setstripe ioctl on open file descriptor for f1
2428 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2430 # Allow multiop to fail in imitation of NFS's busted semantics.
2433 run_test 27B "call setstripe on open unlinked file/rename victim"
2435 # 27C family tests full striping and overstriping
2436 test_27Ca() { #LU-2871
2437 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2445 test_mkdir $DIR/$tdir
2447 for i in $(seq 0 $((OSTCOUNT - 1))); do
2448 # set stripe across all OSTs starting from OST$i
2449 $LFS setstripe -i $i -c -1 $tfile$i
2450 # get striping information
2451 ost_idx=($($LFS getstripe $tfile$i |
2452 tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2456 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2457 error "${#ost_idx[@]} != $OSTCOUNT"
2459 for index in $(seq 0 $((OSTCOUNT - 1))); do
2461 for j in $(echo ${ost_idx[@]}); do
2462 if [ $index -eq $j ]; then
2468 error "Can not find $index in ${ost_idx[@]}"
2472 run_test 27Ca "check full striping across all OSTs"
2475 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2476 skip "server does not support overstriping"
2477 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2478 skip_env "too many osts, skipping"
2480 test_mkdir -p $DIR/$tdir
2481 local setcount=$(($OSTCOUNT * 2))
2482 [ $setcount -lt 160 ] || large_xattr_enabled ||
2483 skip_env "ea_inode feature disabled"
2485 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2486 error "setstripe failed"
2488 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2489 [ $count -eq $setcount ] ||
2490 error "stripe count $count, should be $setcount"
2492 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2493 error "overstriped should be set in pattern"
2495 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2498 run_test 27Cb "more stripes than OSTs with -C"
2501 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2502 skip "server does not support overstriping"
2503 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2505 test_mkdir -p $DIR/$tdir
2506 local setcount=$(($OSTCOUNT - 1))
2508 [ $setcount -lt 160 ] || large_xattr_enabled ||
2509 skip_env "ea_inode feature disabled"
2511 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2512 error "setstripe failed"
2514 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2515 [ $count -eq $setcount ] ||
2516 error "stripe count $count, should be $setcount"
2518 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" &&
2519 error "overstriped should not be set in pattern"
2521 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2524 run_test 27Cc "fewer stripes than OSTs does not set overstriping"
2527 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2528 skip "server does not support overstriping"
2529 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2530 large_xattr_enabled || skip_env "ea_inode feature disabled"
2532 test_mkdir -p $DIR/$tdir
2533 local setcount=$LOV_MAX_STRIPE_COUNT
2535 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2536 error "setstripe failed"
2538 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2539 [ $count -eq $setcount ] ||
2540 error "stripe count $count, should be $setcount"
2542 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2543 error "overstriped should be set in pattern"
2545 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2548 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2550 run_test 27Cd "test maximum stripe count"
2553 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2554 skip "server does not support overstriping"
2555 test_mkdir -p $DIR/$tdir
2557 pool_add $TESTNAME || error "Pool creation failed"
2558 pool_add_targets $TESTNAME 0 || error "pool_add_targets failed"
2562 $LFS setstripe -C $setcount -p "$TESTNAME" $DIR/$tdir/$tfile ||
2563 error "setstripe failed"
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 27Ce "test pool with overstriping"
2580 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2581 skip "server does not support overstriping"
2582 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2583 skip_env "too many osts, skipping"
2585 test_mkdir -p $DIR/$tdir
2587 local setcount=$(($OSTCOUNT * 2))
2588 [ $setcount -lt 160 ] || large_xattr_enabled ||
2589 skip_env "ea_inode feature disabled"
2591 $LFS setstripe -C $setcount $DIR/$tdir/ ||
2592 error "setstripe failed"
2594 echo 1 > $DIR/$tdir/$tfile
2596 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2597 [ $count -eq $setcount ] ||
2598 error "stripe count $count, should be $setcount"
2600 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2601 error "overstriped should be set in pattern"
2603 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2606 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2608 run_test 27Cf "test default inheritance with overstriping"
2611 [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2612 [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2613 remote_mds_nodsh && skip "remote MDS with nodsh"
2615 local POOL=${POOL:-testpool}
2617 local last_ost=$(($OSTCOUNT - 1))
2619 local ost_list=$(seq $first_ost $ost_step $last_ost)
2620 local ost_range="$first_ost $last_ost $ost_step"
2622 test_mkdir $DIR/$tdir
2623 pool_add $POOL || error "pool_add failed"
2624 pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2627 [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2629 [ $MDS1_VERSION -lt $(version_code 2.9.55) ] ||
2630 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2631 skip27D+=" -s 30,31"
2632 [[ ! $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ||
2633 $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2634 skip27D+=" -s 32,33"
2635 [[ $MDS_VERSION -lt $(version_code $SEL_VER) ]] &&
2637 llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2638 error "llapi_layout_test failed"
2640 destroy_test_pools || error "destroy test pools failed"
2642 run_test 27D "validate llapi_layout API"
2644 # Verify that default_easize is increased from its initial value after
2645 # accessing a widely striped file.
2647 [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2648 [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2649 skip "client does not have LU-3338 fix"
2651 # 72 bytes is the minimum space required to store striping
2652 # information for a file striped across one OST:
2653 # (sizeof(struct lov_user_md_v3) +
2654 # sizeof(struct lov_user_ost_data_v1))
2656 $LCTL set_param -n llite.*.default_easize $min_easize ||
2657 error "lctl set_param failed"
2658 local easize=$($LCTL get_param -n llite.*.default_easize)
2660 [ $easize -eq $min_easize ] ||
2661 error "failed to set default_easize"
2663 $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2664 error "setstripe failed"
2665 # In order to ensure stat() call actually talks to MDS we need to
2666 # do something drastic to this file to shake off all lock, e.g.
2667 # rename it (kills lookup lock forcing cache cleaning)
2668 mv $DIR/$tfile $DIR/${tfile}-1
2669 ls -l $DIR/${tfile}-1
2672 easize=$($LCTL get_param -n llite.*.default_easize)
2674 [ $easize -gt $min_easize ] ||
2675 error "default_easize not updated"
2677 run_test 27E "check that default extended attribute size properly increases"
2679 test_27F() { # LU-5346/LU-7975
2680 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2681 [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2682 [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2683 skip "Need MDS version at least 2.8.51"
2684 remote_ost_nodsh && skip "remote OST with nodsh"
2686 test_mkdir $DIR/$tdir
2688 $LFS setstripe -c 2 $DIR/$tdir
2690 # stop all OSTs to reproduce situation for LU-7975 ticket
2691 for num in $(seq $OSTCOUNT); do
2695 # open/create f0 with O_LOV_DELAY_CREATE
2696 # truncate f0 to a non-0 size
2698 multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2700 $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2701 # open/write it again to force delayed layout creation
2702 cat /etc/hosts > $DIR/$tdir/f0 &
2706 for num in $(seq $OSTCOUNT); do
2707 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2708 error "ost$num failed to start"
2711 wait $catpid || error "cat failed"
2713 cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2714 [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2715 error "wrong stripecount"
2718 run_test 27F "Client resend delayed layout creation with non-zero size"
2720 test_27G() { #LU-10629
2721 [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2722 skip "Need MDS version at least 2.11.51"
2723 [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2724 remote_mds_nodsh && skip "remote MDS with nodsh"
2725 local POOL=${POOL:-testpool}
2726 local ostrange="0 0 1"
2728 test_mkdir $DIR/$tdir
2729 touch $DIR/$tdir/$tfile.nopool
2730 pool_add $POOL || error "pool_add failed"
2731 pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2732 $LFS setstripe -p $POOL $DIR/$tdir
2734 local pool=$($LFS getstripe -p $DIR/$tdir)
2736 [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2737 touch $DIR/$tdir/$tfile.default
2738 $LFS setstripe -E 1M --pool $POOL -c 1 -E eof -c 1 $DIR/$tdir/$tfile.pfl
2739 $LFS find $DIR/$tdir -type f --pool $POOL
2740 local found=$($LFS find $DIR/$tdir -type f --pool $POOL | wc -l)
2741 [[ "$found" == "2" ]] ||
2742 error "found $found != 2 files in '$DIR/$tdir' in '$POOL'"
2744 $LFS setstripe -d $DIR/$tdir
2746 pool=$($LFS getstripe -p -d $DIR/$tdir)
2748 [[ "$pool" != "$POOL" ]] || error "$DIR/$tdir is still '$pool'"
2750 run_test 27G "Clear OST pool from stripe"
2753 [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2754 skip "Need MDS version newer than 2.11.54"
2755 [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2756 test_mkdir $DIR/$tdir
2757 $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2758 touch $DIR/$tdir/$tfile
2759 $LFS getstripe -c $DIR/$tdir/$tfile
2760 [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2761 error "two-stripe file doesn't have two stripes"
2763 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2764 $LFS getstripe -y $DIR/$tdir/$tfile
2765 (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2766 egrep -c "l_ost_idx: [02]$") == "2" )) ||
2767 error "expected l_ost_idx: [02]$ not matched"
2769 # make sure ost list has been cleared
2770 local stripesize=$($LFS getstripe -S $DIR/$tdir)
2771 $LFS setstripe -S $((stripesize * 4)) -i 1 \
2772 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2774 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2776 run_test 27H "Set specific OSTs stripe"
2779 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2780 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2781 [[ $MDS1_VERSION -gt $(version_code 2.12.52) ]] ||
2782 skip "Need MDS version newer than 2.12.52"
2783 local pool=$TESTNAME
2784 local ostrange="1 1 1"
2786 save_layout_restore_at_exit $MOUNT
2787 $LFS setstripe -c 2 -i 0 $MOUNT
2788 pool_add $pool || error "pool_add failed"
2789 pool_add_targets $pool $ostrange ||
2790 error "pool_add_targets failed"
2791 test_mkdir $DIR/$tdir
2792 $LFS setstripe -p $pool $DIR/$tdir
2793 $MULTIOP $DIR/$tdir/$tfile Oc || error "multiop failed"
2794 $LFS getstripe $DIR/$tdir/$tfile
2796 run_test 27I "check that root dir striping does not break parent dir one"
2799 [[ $MDS1_VERSION -le $(version_code 2.12.51) ]] &&
2800 skip "Need MDS version newer than 2.12.51"
2802 test_mkdir $DIR/$tdir
2803 local uuid1=$(cat /proc/sys/kernel/random/uuid)
2804 local uuid2=$(cat /proc/sys/kernel/random/uuid)
2806 # create foreign file (raw way)
2807 ! $LFS setstripe --flags 0xda08 $DIR/$tdir/$tfile ||
2808 error "creating $tfile w/ hex flags w/o --foreign should fail"
2810 ! $LFS setstripe --foreign --flags foo \
2811 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2812 error "creating $tfile with '--flags foo' should fail"
2814 ! $LFS setstripe --foreign --flags 0xffffffff \
2815 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2816 error "creating $tfile w/ 0xffffffff flags should fail"
2818 create_foreign_file -f $DIR/$tdir/$tfile -x "${uuid1}@${uuid2}" \
2819 -t 1 -F 0xda08 || error "create_foreign_file failed"
2821 # verify foreign file (raw way)
2822 parse_foreign_file -f $DIR/$tdir/$tfile |
2823 grep "lov_foreign_magic: 0x0BD70BD0" ||
2824 error "$DIR/$tdir/$tfile: invalid LOV EA foreign magic"
2825 parse_foreign_file -f $DIR/$tdir/$tfile | grep "lov_xattr_size: 89" ||
2826 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2827 parse_foreign_file -f $DIR/$tdir/$tfile |
2828 grep "lov_foreign_size: 73" ||
2829 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2830 parse_foreign_file -f $DIR/$tdir/$tfile |
2831 grep "lov_foreign_type: 1" ||
2832 error "$DIR/$tdir/$tfile: invalid LOV EA foreign type"
2833 parse_foreign_file -f $DIR/$tdir/$tfile |
2834 grep "lov_foreign_flags: 0x0000DA08" ||
2835 error "$DIR/$tdir/$tfile: invalid LOV EA foreign flags"
2836 local lov=$(parse_foreign_file -f $DIR/$tdir/$tfile |
2837 grep "lov_foreign_value: 0x" |
2838 sed -e 's/lov_foreign_value: 0x//')
2839 local lov2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160)
2840 [[ $lov = ${lov2// /} ]] ||
2841 error "$DIR/$tdir/$tfile: invalid LOV EA foreign value"
2843 # create foreign file (lfs + API)
2844 $LFS setstripe --foreign=none --flags 0xda08 \
2845 -x "${uuid1}@${uuid2}" $DIR/$tdir/${tfile}2 ||
2846 error "$DIR/$tdir/${tfile}2: create failed"
2848 $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2849 grep "lfm_magic:.*0x0BD70BD0" ||
2850 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign magic"
2851 # lfm_length is LOV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2852 $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_length:.*73" ||
2853 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign size"
2854 $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_type:.*none" ||
2855 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign type"
2856 $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2857 grep "lfm_flags:.*0x0000DA08" ||
2858 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign flags"
2859 $LFS getstripe $DIR/$tdir/${tfile}2 |
2860 grep "lfm_value:.*${uuid1}@${uuid2}" ||
2861 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign value"
2863 # modify striping should fail
2864 $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
2865 error "$DIR/$tdir/$tfile: setstripe should fail"
2866 $LFS setstripe -c 2 $DIR/$tdir/${tfile}2 &&
2867 error "$DIR/$tdir/${tfile}2: setstripe should fail"
2870 cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
2871 cat $DIR/$tdir/${tfile}2 &&
2872 error "$DIR/$tdir/${tfile}2: read should fail"
2873 cat /etc/passwd > $DIR/$tdir/$tfile &&
2874 error "$DIR/$tdir/$tfile: write should fail"
2875 cat /etc/passwd > $DIR/$tdir/${tfile}2 &&
2876 error "$DIR/$tdir/${tfile}2: write should fail"
2879 chmod 222 $DIR/$tdir/$tfile ||
2880 error "$DIR/$tdir/$tfile: chmod failed"
2881 chmod 222 $DIR/$tdir/${tfile}2 ||
2882 error "$DIR/$tdir/${tfile}2: chmod failed"
2885 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tfile ||
2886 error "$DIR/$tdir/$tfile: chown failed"
2887 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}2 ||
2888 error "$DIR/$tdir/${tfile}2: chown failed"
2890 # rename should work
2891 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
2892 error "$DIR/$tdir/$tfile: rename of foreign file has failed"
2893 mv $DIR/$tdir/${tfile}2 $DIR/$tdir/${tfile}2.new ||
2894 error "$DIR/$tdir/${tfile}2: rename of foreign file has failed"
2896 #remove foreign file
2897 rm $DIR/$tdir/${tfile}.new ||
2898 error "$DIR/$tdir/${tfile}.new: remove of foreign file has failed"
2899 rm $DIR/$tdir/${tfile}2.new ||
2900 error "$DIR/$tdir/${tfile}2.new: remove of foreign file has failed"
2902 run_test 27J "basic ops on file with foreign LOV"
2905 [[ $MDS1_VERSION -le $(version_code 2.12.49) ]] &&
2906 skip "Need MDS version newer than 2.12.49"
2908 test_mkdir $DIR/$tdir
2909 local uuid1=$(cat /proc/sys/kernel/random/uuid)
2910 local uuid2=$(cat /proc/sys/kernel/random/uuid)
2912 # create foreign dir (raw way)
2913 ! $LFS setdirstripe --flags 0xda08 $DIR/$tdir/$tdir ||
2914 error "creating $tdir w/ hex flags w/o --foreign should fail"
2916 ! $LFS setdirstripe --foreign --flags foo \
2917 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2918 error "creating $tdir with '--flags foo' should fail"
2920 ! $LFS setdirstripe --foreign --flags 0xffffffff \
2921 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2922 error "creating $tdir w/ 0xffffffff flags should fail"
2924 create_foreign_dir -d $DIR/$tdir/$tdir -x "${uuid1}@${uuid2}" -t 1 ||
2925 error "create_foreign_dir FAILED"
2927 # verify foreign dir (raw way)
2928 parse_foreign_dir -d $DIR/$tdir/$tdir |
2929 grep "lmv_foreign_magic:.*0xcd50cd0" ||
2930 error "$DIR/$tdir/$tfile: invalid LMV EA magic"
2931 parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_xattr_size:.*89$" ||
2932 error "$DIR/$tdir/$tdir: invalid LMV EA size"
2933 parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_foreign_type: 1$" ||
2934 error "$DIR/$tdir/$tdir: invalid LMV EA type"
2935 parse_foreign_dir -d $DIR/$tdir/$tdir |
2936 grep "lmv_foreign_flags: 55813$" ||
2937 error "$DIR/$tdir/$tdir: invalid LMV EA flags"
2938 local lmv=$(parse_foreign_dir -d $DIR/$tdir/$tdir |
2939 grep "lmv_foreign_value: 0x" |
2940 sed 's/lmv_foreign_value: 0x//')
2941 local lmv2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160 |
2943 [[ $lmv == $lmv2 ]] || error "$DIR/$tdir/$tdir: invalid LMV EA value"
2945 # create foreign dir (lfs + API)
2946 $LFS mkdir --foreign=none --xattr="${uuid1}@${uuid2}" --flags=0xda05 \
2947 $DIR/$tdir/${tdir}2 ||
2948 error "$DIR/$tdir/${tdir}2: create failed"
2950 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2951 grep "lfm_magic:.*0x0CD50CD0" ||
2952 error "$DIR/$tdir/${tdir}2: invalid LMV EA magic"
2953 # lfm_length is LMV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2954 # - sizeof(lfm_type) - sizeof(lfm_flags)
2955 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_length:.*73" ||
2956 error "$DIR/$tdir/${tdir}2: invalid LMV EA size"
2957 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_type:.*none" ||
2958 error "$DIR/$tdir/${tdir}2: invalid LMV EA type"
2959 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2960 grep "lfm_flags:.*0x0000DA05" ||
2961 error "$DIR/$tdir/${tdir}2: invalid LMV EA flags"
2962 $LFS getdirstripe $DIR/$tdir/${tdir}2 |
2963 grep "lfm_value.*${uuid1}@${uuid2}" ||
2964 error "$DIR/$tdir/${tdir}2: invalid LMV EA value"
2966 # file create in dir should fail
2967 touch $DIR/$tdir/$tdir/$tfile && "$DIR/$tdir: file create should fail"
2968 touch $DIR/$tdir/${tdir}2/$tfile &&
2969 "$DIR/${tdir}2: file create should fail"
2972 chmod 777 $DIR/$tdir/$tdir ||
2973 error "$DIR/$tdir: chmod failed"
2974 chmod 777 $DIR/$tdir/${tdir}2 ||
2975 error "$DIR/${tdir}2: chmod failed"
2978 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tdir ||
2979 error "$DIR/$tdir: chown failed"
2980 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}2 ||
2981 error "$DIR/${tdir}2: chown failed"
2983 # rename should work
2984 mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
2985 error "$DIR/$tdir/$tdir: rename of foreign dir has failed"
2986 mv $DIR/$tdir/${tdir}2 $DIR/$tdir/${tdir}2.new ||
2987 error "$DIR/$tdir/${tdir}2: rename of foreign dir has failed"
2990 rmdir $DIR/$tdir/${tdir}.new ||
2991 error "$DIR/$tdir/${tdir}.new: remove of foreign dir has failed"
2992 rmdir $DIR/$tdir/${tdir}2.new ||
2993 error "$DIR/$tdir/${tdir}2.new: remove of foreign dir has failed"
2995 run_test 27K "basic ops on dir with foreign LMV"
2998 remote_mds_nodsh && skip "remote MDS with nodsh"
3000 local POOL=${POOL:-$TESTNAME}
3002 pool_add $POOL || error "pool_add failed"
3004 lfs pool_list $MOUNT | grep -Fx "${FSNAME}.${POOL}" ||
3005 error "pool_list does not contain ${FSNAME}.${POOL}:" \
3006 "$(lfs pool_list $MOUNT | grep -F "${POOL}")"
3008 run_test 27L "lfs pool_list gives correct pool name"
3011 [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.12.57) ]] &&
3012 skip "Need MDS version >= than 2.12.57"
3013 remote_mds_nodsh && skip "remote MDS with nodsh"
3014 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
3016 test_mkdir $DIR/$tdir
3018 # Set default striping on directory
3022 # if we run against a 2.12 server which lacks overstring support
3023 # then the connect_flag will not report overstriping, even if client
3025 if [[ $($LCTL get_param mdc.*.connect_flags) =~ overstriping ]]; then
3026 stripe_opt="-C $setcount"
3027 elif (( $OSTCOUNT >= $setcount )); then
3028 stripe_opt="-c $setcount"
3030 skip "server does not support overstriping"
3032 $LFS setstripe $stripe_opt $DIR/$tdir
3034 echo 1 > $DIR/$tdir/${tfile}.1
3035 local count=$($LFS getstripe -c $DIR/$tdir/${tfile}.1)
3036 [ $count -eq $setcount ] ||
3037 error "(1) stripe count $count, should be $setcount"
3039 # Capture existing append_stripe_count setting for restore
3040 local orig_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
3041 local mdts=$(comma_list $(mdts_nodes))
3042 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=$orig_count" EXIT
3044 local appendcount=$orig_count
3045 echo 1 >> $DIR/$tdir/${tfile}.2_append
3046 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.2_append)
3047 [ $count -eq $appendcount ] ||
3048 error "(2)stripe count $count, should be $appendcount for append"
3050 # Disable O_APPEND striping, verify it works
3051 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3053 # Should now get the default striping, which is 4
3055 echo 1 >> $DIR/$tdir/${tfile}.3_append
3056 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.3_append)
3057 [ $count -eq $setcount ] ||
3058 error "(3) stripe count $count, should be $setcount"
3060 # Try changing the stripe count for append files
3061 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
3063 # Append striping is now 2 (directory default is still 4)
3065 echo 1 >> $DIR/$tdir/${tfile}.4_append
3066 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.4_append)
3067 [ $count -eq $appendcount ] ||
3068 error "(4) stripe count $count, should be $appendcount for append"
3070 # Test append stripe count of -1
3071 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=-1
3072 appendcount=$OSTCOUNT
3073 echo 1 >> $DIR/$tdir/${tfile}.5
3074 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.5)
3075 [ $count -eq $appendcount ] ||
3076 error "(5) stripe count $count, should be $appendcount for append"
3078 # Set append striping back to default of 1
3079 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1
3081 # Try a new default striping, PFL + DOM
3082 $LFS setstripe -L mdt -E 1M -E -1 -c 2 $DIR/$tdir
3084 # Create normal DOM file, DOM returns stripe count == 0
3086 touch $DIR/$tdir/${tfile}.6
3087 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.6)
3088 [ $count -eq $setcount ] ||
3089 error "(6) stripe count $count, should be $setcount"
3093 echo 1 >> $DIR/$tdir/${tfile}.7_append
3094 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.7_append)
3095 [ $count -eq $appendcount ] ||
3096 error "(7) stripe count $count, should be $appendcount for append"
3098 # Clean up DOM layout
3099 $LFS setstripe -d $DIR/$tdir
3101 save_layout_restore_at_exit $MOUNT
3102 # Now test that append striping works when layout is from root
3103 $LFS setstripe -c 2 $MOUNT
3104 # Make a special directory for this
3105 mkdir $DIR/${tdir}/${tdir}.2
3107 # Verify for normal file
3109 echo 1 > $DIR/${tdir}/${tdir}.2/${tfile}.8
3110 count=$($LFS getstripe -c $DIR/$tdir/${tdir}.2/${tfile}.8)
3111 [ $count -eq $setcount ] ||
3112 error "(8) stripe count $count, should be $setcount"
3115 echo 1 >> $DIR/${tdir}/${tdir}.2/${tfile}.9_append
3116 count=$($LFS getstripe -c $DIR/${tdir}/${tdir}.2/${tfile}.9_append)
3117 [ $count -eq $appendcount ] ||
3118 error "(9) stripe count $count, should be $appendcount for append"
3120 # Now test O_APPEND striping with pools
3121 do_nodes $mdts $LCTL set_param mdd.*.append_pool="$TESTNAME"
3122 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'" EXIT
3125 pool_add $TESTNAME || error "pool creation failed"
3126 pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
3128 echo 1 >> $DIR/$tdir/${tfile}.10_append
3130 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.10_append)
3131 [ "$pool" = "$TESTNAME" ] || error "(10) incorrect pool: $pool"
3133 # Check that count is still correct
3135 echo 1 >> $DIR/$tdir/${tfile}.11_append
3136 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.11_append)
3137 [ $count -eq $appendcount ] ||
3138 error "(11) stripe count $count, should be $appendcount for append"
3140 # Disable O_APPEND stripe count, verify pool works separately
3141 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3143 echo 1 >> $DIR/$tdir/${tfile}.12_append
3145 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.12_append)
3146 [ "$pool" = "$TESTNAME" ] || error "(12) incorrect pool: $pool"
3148 # Remove pool setting, verify it's not applied
3149 do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'
3151 echo 1 >> $DIR/$tdir/${tfile}.13_append
3153 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.13_append)
3154 [ "$pool" = "" ] || error "(13) pool found: $pool"
3156 run_test 27M "test O_APPEND striping"
3159 combined_mgs_mds && skip "needs separate MGS/MDT"
3161 pool_add $TESTNAME || error "pool_add failed"
3162 do_facet mgs "$LCTL pool_list $FSNAME" |
3163 grep -Fx "${FSNAME}.${TESTNAME}" ||
3164 error "lctl pool_list on MGS failed"
3166 run_test 27N "lctl pool_list on separate MGS gives correct pool name"
3168 clean_foreign_symlink() {
3170 lctl set_param llite/$FSNAME-*/foreign_symlink_enable=0
3171 for i in $DIR/$tdir/* ; do
3172 $LFS unlink_foreign $i || true
3177 [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.51) ]] &&
3178 skip "Need MDS version newer than 2.12.51"
3180 test_mkdir $DIR/$tdir
3181 local uuid1=$(cat /proc/sys/kernel/random/uuid)
3182 local uuid2=$(cat /proc/sys/kernel/random/uuid)
3184 trap clean_foreign_symlink EXIT
3186 # enable foreign_symlink behaviour
3187 $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3189 # foreign symlink LOV format is a partial path by default
3191 # create foreign file (lfs + API)
3192 $LFS setstripe --foreign=symlink --flags 0xda05 \
3193 -x "${uuid1}/${uuid2}" --mode 0600 $DIR/$tdir/${tfile} ||
3194 error "$DIR/$tdir/${tfile}: create failed"
3196 $LFS getstripe -v $DIR/$tdir/${tfile} |
3197 grep "lfm_magic:.*0x0BD70BD0" ||
3198 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign magic"
3199 $LFS getstripe -v $DIR/$tdir/${tfile} | grep "lfm_type:.*symlink" ||
3200 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign type"
3201 $LFS getstripe -v $DIR/$tdir/${tfile} |
3202 grep "lfm_flags:.*0x0000DA05" ||
3203 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign flags"
3204 $LFS getstripe $DIR/$tdir/${tfile} |
3205 grep "lfm_value:.*${uuid1}/${uuid2}" ||
3206 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign value"
3208 # modify striping should fail
3209 $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
3210 error "$DIR/$tdir/$tfile: setstripe should fail"
3212 # R/W should fail ("/{foreign_symlink_prefix}/${uuid1}/" missing)
3213 cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
3214 cat /etc/passwd > $DIR/$tdir/$tfile &&
3215 error "$DIR/$tdir/$tfile: write should fail"
3217 # rename should succeed
3218 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
3219 error "$DIR/$tdir/$tfile: rename has failed"
3221 #remove foreign_symlink file should fail
3222 rm $DIR/$tdir/${tfile}.new &&
3223 error "$DIR/$tdir/${tfile}.new: remove of foreign_symlink file should fail"
3226 mkdir /tmp/${uuid1} ||
3227 error "/tmp/${uuid1}: mkdir has failed"
3228 echo FOOFOO > /tmp/${uuid1}/${uuid2} ||
3229 error "/tmp/${uuid1}/${uuid2}: echo has failed"
3230 $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3231 $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tfile}.new ||
3232 error "$DIR/$tdir/${tfile}.new: not seen as a symlink"
3233 #read should succeed now
3234 cat $DIR/$tdir/${tfile}.new | grep FOOFOO ||
3235 error "$DIR/$tdir/${tfile}.new: symlink resolution has failed"
3236 #write should succeed now
3237 cat /etc/passwd > $DIR/$tdir/${tfile}.new ||
3238 error "$DIR/$tdir/${tfile}.new: write should succeed"
3239 diff /etc/passwd $DIR/$tdir/${tfile}.new ||
3240 error "$DIR/$tdir/${tfile}.new: diff has failed"
3241 diff /etc/passwd /tmp/${uuid1}/${uuid2} ||
3242 error "/tmp/${uuid1}/${uuid2}: diff has failed"
3244 #check that getstripe still works
3245 $LFS getstripe $DIR/$tdir/${tfile}.new ||
3246 error "$DIR/$tdir/${tfile}.new: getstripe should still work with foreign_symlink enabled"
3248 # chmod should still succeed
3249 chmod 644 $DIR/$tdir/${tfile}.new ||
3250 error "$DIR/$tdir/${tfile}.new: chmod has failed"
3252 # chown should still succeed
3253 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}.new ||
3254 error "$DIR/$tdir/${tfile}.new: chown has failed"
3256 # rename should still succeed
3257 mv $DIR/$tdir/${tfile}.new $DIR/$tdir/${tfile} ||
3258 error "$DIR/$tdir/${tfile}.new: rename has failed"
3260 #remove foreign_symlink file should still fail
3261 rm $DIR/$tdir/${tfile} &&
3262 error "$DIR/$tdir/${tfile}: remove of foreign_symlink file should fail"
3264 #use special ioctl() to unlink foreign_symlink file
3265 $LFS unlink_foreign $DIR/$tdir/${tfile} ||
3266 error "$DIR/$tdir/$tfile: unlink/ioctl failed"
3269 run_test 27O "basic ops on foreign file of symlink type"
3272 [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.49) ]] &&
3273 skip "Need MDS version newer than 2.12.49"
3275 test_mkdir $DIR/$tdir
3276 local uuid1=$(cat /proc/sys/kernel/random/uuid)
3277 local uuid2=$(cat /proc/sys/kernel/random/uuid)
3279 trap clean_foreign_symlink EXIT
3281 # enable foreign_symlink behaviour
3282 $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3284 # foreign symlink LMV format is a partial path by default
3286 # create foreign dir (lfs + API)
3287 $LFS mkdir --foreign=symlink --xattr="${uuid1}/${uuid2}" \
3288 --flags=0xda05 --mode 0750 $DIR/$tdir/${tdir} ||
3289 error "$DIR/$tdir/${tdir}: create failed"
3291 $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3292 grep "lfm_magic:.*0x0CD50CD0" ||
3293 error "$DIR/$tdir/${tdir}: invalid LMV EA magic"
3294 $LFS getdirstripe -v $DIR/$tdir/${tdir} | grep "lfm_type:.*symlink" ||
3295 error "$DIR/$tdir/${tdir}: invalid LMV EA type"
3296 $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3297 grep "lfm_flags:.*0x0000DA05" ||
3298 error "$DIR/$tdir/${tdir}: invalid LMV EA flags"
3299 $LFS getdirstripe $DIR/$tdir/${tdir} |
3300 grep "lfm_value.*${uuid1}/${uuid2}" ||
3301 error "$DIR/$tdir/${tdir}: invalid LMV EA value"
3303 # file create in dir should fail
3304 # ("/{foreign_symlink_prefix}/${uuid1}/${uuid2}/" missing)
3305 touch $DIR/$tdir/$tdir/$tfile && "$DIR/$tdir: file create should fail"
3307 # rename should succeed
3308 mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
3309 error "$DIR/$tdir/$tdir: rename of foreign_symlink dir has failed"
3311 #remove foreign_symlink dir should fail
3312 rmdir $DIR/$tdir/${tdir}.new &&
3313 error "$DIR/$tdir/${tdir}.new: remove of foreign_symlink dir should fail"
3316 mkdir -p /tmp/${uuid1}/${uuid2} ||
3317 error "/tmp/${uuid1}/${uuid2}: mkdir has failed"
3318 echo FOOFOO > /tmp/${uuid1}/${uuid2}/foo ||
3319 error "/tmp/${uuid1}/${uuid2}/foo: echo has failed"
3320 $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3321 $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tdir}.new ||
3322 error "$DIR/$tdir/${tdir}.new: not seen as a symlink"
3323 cat $DIR/$tdir/${tdir}.new/foo | grep FOOFOO ||
3324 error "$DIR/$tdir/${tdir}.new: symlink resolution has failed"
3326 #check that getstripe fails now that foreign_symlink enabled
3327 $LFS getdirstripe $DIR/$tdir/${tdir}.new ||
3328 error "$DIR/$tdir/${tdir}.new: getdirstripe should still work with foreign_symlink enabled"
3330 # file create in dir should work now
3331 cp /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3332 error "$DIR/$tdir/${tdir}.new/$tfile: file create should fail"
3333 diff /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3334 error "$DIR/$tdir/${tdir}.new/$tfile: diff has failed"
3335 diff /etc/passwd /tmp/${uuid1}/${uuid2}/$tfile ||
3336 error "/tmp/${uuid1}/${uuid2}/$tfile: diff has failed"
3338 # chmod should still succeed
3339 chmod 755 $DIR/$tdir/${tdir}.new ||
3340 error "$DIR/$tdir/${tdir}.new: chmod has failed"