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:-""}
33 LUSTRE=${LUSTRE:-$(dirname $0)/..}
34 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
35 . $LUSTRE/tests/test-framework.sh
40 ALWAYS_EXCEPT="$SANITY_EXCEPT "
41 always_except LU-9693 42a 42c
42 always_except LU-6493 42b
43 always_except LU-14541 277
44 always_except LU-9054 312
45 always_except LU-8411 407
48 always_except LU-14181 64e 64f
51 # skip the grant tests for ARM until they are fixed
52 if [[ $(uname -m) = aarch64 ]]; then
53 always_except LU-11671 45
56 # skip nfs tests on kernels >= 4.12.0 until they are fixed
57 if [ $LINUX_VERSION_CODE -ge $(version_code 4.12.0) ]; then
58 always_except LU-12661 817
60 # skip cgroup tests on RHEL8.1 kernels until they are fixed
61 if (( $LINUX_VERSION_CODE >= $(version_code 4.18.0) &&
62 $LINUX_VERSION_CODE < $(version_code 5.4.0) )); then
63 always_except LU-13063 411
66 #skip ACL tests on RHEL8 and SLES15 until tests changed to use other users
67 if (( $(egrep -cw "^bin|^daemon" /etc/passwd) < 2 )); then
68 always_except LU-15259 103a 125 154a
72 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 60i 64b 68 71 115 135 136 230d 300o"
74 if [ "$mds1_FSTYPE" = "zfs" ]; then
76 [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
79 if [ "$ost1_FSTYPE" = "zfs" ]; then
80 always_except LU-1941 130a 130b 130c 130d 130e 130f 130g
83 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
85 # Get the SLES distro version
87 # Returns a version string that should only be used in comparing
88 # strings returned by version_code()
91 local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
93 # All SuSE Linux versions have one decimal. version_code expects two
94 local sles_version=$version.0
95 version_code $sles_version
98 # Check if we are running on Ubuntu or SLES so we can make decisions on
100 if [ -r /etc/SuSE-release ]; then
101 sles_version=$(sles_version_code)
102 [ $sles_version -lt $(version_code 11.4.0) ] &&
103 always_except LU-4341 170
105 [ $sles_version -lt $(version_code 12.0.0) ] &&
106 always_except LU-3703 234
107 elif [ -r /etc/os-release ]; then
108 if grep -qi ubuntu /etc/os-release; then
109 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
110 -e 's/^VERSION=//p' \
114 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
115 always_except LU-10334 103a
116 always_except LU-10366 410
126 pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
127 cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
136 check_swap_layouts_support()
138 $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
139 skip "Does not support layout lock."
142 check_swap_layout_no_dom()
145 local SUPP=$(lfs getstripe $FOLDER | grep "pattern: mdt" | wc -l)
146 [ $SUPP -eq 0 ] || skip "layout swap does not support DOM files so far"
149 check_and_setup_lustre
153 MAXFREE=${MAXFREE:-$((300000 * $OSTCOUNT))}
155 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
156 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
157 rm -rf $DIR/[Rdfs][0-9]*
159 # $RUNAS_ID may get set incorrectly somewhere else
160 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
161 error "\$RUNAS_ID set to 0, but \$UID is also 0!"
163 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
165 if [ "${ONLY}" = "MOUNT" ] ; then
166 echo "Lustre is up, please go on"
170 echo "preparing for tests involving mounts"
171 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
173 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
174 echo # add a newline after mke2fs.
178 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
179 lctl set_param debug=-1 2> /dev/null || true
182 $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
184 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
186 run_test 0a "touch; rm ====================="
189 chmod 0755 $DIR || error "chmod 0755 $DIR failed"
190 $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
192 run_test 0b "chmod 0755 $DIR ============================="
195 $LCTL get_param mdc.*.import | grep "state: FULL" ||
196 error "import not FULL"
197 $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
200 run_test 0c "check import proc"
202 test_0d() { # LU-3397
203 [ $MGS_VERSION -lt $(version_code 2.10.57) ] &&
204 skip "proc exports not supported before 2.10.57"
206 local mgs_exp="mgs.MGS.exports"
207 local client_uuid=$($LCTL get_param -n mgc.*.uuid)
209 local exp_client_version
212 local temp_imp=$DIR/$tfile.import
213 local temp_exp=$DIR/$tfile.export
215 # save mgc import file to $temp_imp
216 $LCTL get_param mgc.*.import | tee $temp_imp
217 # Check if client uuid is found in MGS export
218 for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
219 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
223 # save mgs export file to $temp_exp
224 do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
226 # Compare the value of field "connect_flags"
227 imp_val=$(grep "connect_flags" $temp_imp)
228 exp_val=$(grep "connect_flags" $temp_exp)
229 [ "$exp_val" == "$imp_val" ] ||
230 error "export flags '$exp_val' != import flags '$imp_val'"
232 # Compare client versions. Only compare top-3 fields for compatibility
233 exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
234 exp_val=$(version_code $(cut -d. -f1,2,3 <<<$exp_client_version))
235 imp_val=$(version_code $(lustre_build_version client | cut -d. -f1,2,3))
236 [ "$exp_val" == "$imp_val" ] ||
237 error "exp version '$exp_client_version'($exp_val) != " \
238 "'$(lustre_build_version client)'($imp_val)"
240 run_test 0d "check export proc ============================="
242 test_0e() { # LU-13417
243 (( $MDSCOUNT > 1 )) ||
244 skip "We need at least 2 MDTs for this test"
246 (( $MDS1_VERSION >= $(version_code 2.14.51) )) ||
247 skip "Need server version at least 2.14.51"
249 local default_lmv_count=$($LFS getdirstripe -D -c $MOUNT)
250 local default_lmv_index=$($LFS getdirstripe -D -i $MOUNT)
252 [ $default_lmv_count -eq 1 ] ||
253 error "$MOUNT default stripe count $default_lmv_count"
255 [ $default_lmv_index -eq -1 ] ||
256 error "$MOUNT default stripe index $default_lmv_index"
258 mkdir $MOUNT/$tdir.1 || error "mkdir $MOUNT/$tdir.1 failed"
259 mkdir $MOUNT/$tdir.2 || error "mkdir $MOUNT/$tdir.2 failed"
261 local mdt_index1=$($LFS getdirstripe -i $MOUNT/$tdir.1)
262 local mdt_index2=$($LFS getdirstripe -i $MOUNT/$tdir.2)
264 [ $mdt_index1 -eq $mdt_index2 ] &&
265 error "directories are on the same MDT $mdt_index1=$mdt_index2"
267 rmdir $MOUNT/$tdir.1 $MOUNT/$tdir.2
269 run_test 0e "Enable DNE MDT balancing for mkdir in the ROOT"
272 test_mkdir $DIR/$tdir
273 test_mkdir $DIR/$tdir/d2
274 mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
275 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
278 $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
280 run_test 1 "mkdir; remkdir; rmdir"
283 test_mkdir $DIR/$tdir
284 touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
285 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
287 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
289 run_test 2 "mkdir; touch; rmdir; check file"
292 test_mkdir $DIR/$tdir
293 $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
294 touch $DIR/$tdir/$tfile
295 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
297 $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
299 run_test 3 "mkdir; touch; rmdir; check dir"
301 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
303 test_mkdir -i 1 $DIR/$tdir
305 touch $DIR/$tdir/$tfile ||
306 error "Create file under remote directory failed"
309 error "Expect error removing in-use dir $DIR/$tdir"
311 test -d $DIR/$tdir || error "Remote directory disappeared"
313 rm -rf $DIR/$tdir || error "remove remote dir error"
315 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
318 test_mkdir $DIR/$tdir
319 test_mkdir $DIR/$tdir/d2
320 chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
321 $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
322 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
324 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
327 touch $DIR/$tfile || error "touch $DIR/$tfile failed"
328 chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
329 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
330 error "$tfile does not have perm 0666 or UID $UID"
331 $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
332 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
333 error "$tfile should be 0666 and owned by UID $UID"
335 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
338 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
341 chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
342 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
343 error "$tfile should be owned by UID $RUNAS_ID"
344 $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
345 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
346 error "$tfile should be owned by UID $RUNAS_ID"
348 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
351 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
354 chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
355 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
356 error "$tfile should be owned by GID $UID"
357 $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
358 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
359 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
361 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
364 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
366 test_mkdir $DIR/$tdir
367 chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
368 $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
369 chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
370 test_mkdir $DIR/$tdir/d/subdir
371 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
372 error "$tdir/d/subdir should be GID $RUNAS_GID"
373 if [[ $MDSCOUNT -gt 1 ]]; then
374 # check remote dir sgid inherite
375 $LFS mkdir -i 0 $DIR/$tdir.local ||
376 error "mkdir $tdir.local failed"
377 chmod g+s $DIR/$tdir.local ||
378 error "chmod $tdir.local failed"
379 chgrp $RUNAS_GID $DIR/$tdir.local ||
380 error "chgrp $tdir.local failed"
381 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
382 error "mkdir $tdir.remote failed"
383 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
384 error "$tdir.remote should be owned by $UID.$RUNAS_ID"
385 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
386 error "$tdir.remote should be mode 02755"
389 run_test 6g "verify new dir in sgid dir inherits group"
391 test_6h() { # bug 7331
392 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
394 touch $DIR/$tfile || error "touch failed"
395 chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
396 $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
397 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
398 $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
399 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
401 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
404 test_mkdir $DIR/$tdir
405 $MCREATE $DIR/$tdir/$tfile
406 chmod 0666 $DIR/$tdir/$tfile
407 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
408 error "$tdir/$tfile should be mode 0666"
410 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
413 if [ ! -d $DIR/$tdir ]; then
414 test_mkdir $DIR/$tdir
416 $MCREATE $DIR/$tdir/$tfile
417 echo -n foo > $DIR/$tdir/$tfile
418 [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
419 $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
421 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
424 test_mkdir $DIR/$tdir
425 touch $DIR/$tdir/$tfile
426 chmod 0666 $DIR/$tdir/$tfile
427 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
428 error "$tfile mode not 0666"
430 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
433 test_mkdir $DIR/$tdir
434 test_mkdir $DIR/$tdir/d2
435 test_mkdir $DIR/$tdir/d2/d3
436 $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
438 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
441 test_mkdir $DIR/$tdir
442 test_mkdir $DIR/$tdir/d2
443 touch $DIR/$tdir/d2/$tfile
444 $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
445 error "$tdir/d2/$tfile not a file"
447 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
450 test_mkdir $DIR/$tdir
451 test_mkdir $DIR/$tdir/d2
452 chmod 0666 $DIR/$tdir/d2
453 chmod 0705 $DIR/$tdir/d2
454 $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
455 error "$tdir/d2 mode not 0705"
457 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
460 test_mkdir $DIR/$tdir
461 touch $DIR/$tdir/$tfile
462 chmod 0666 $DIR/$tdir/$tfile
463 chmod 0654 $DIR/$tdir/$tfile
464 $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
465 error "$tdir/d2 mode not 0654"
467 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
470 test_mkdir $DIR/$tdir
471 dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
473 $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
474 error "$tdir/$tfile size not 0 after truncate"
476 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
479 test_mkdir $DIR/$tdir
480 touch $DIR/$tdir/$tfile
482 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
484 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
487 test_mkdir $DIR/$tdir
488 touch $DIR/$tdir/$tfile
489 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
490 $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
491 error "$tdir/${tfile_2} not a file after rename"
492 rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
494 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
497 test_mkdir $DIR/$tdir
498 touch $DIR/$tdir/$tfile
499 rm -rf $DIR/$tdir/$tfile
500 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
502 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
505 test_mkdir $DIR/$tdir
506 touch $DIR/$tdir/$tfile
507 ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
509 $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
510 error "$tdir/l-exist not a symlink"
511 $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
512 error "$tdir/l-exist not referencing a file"
513 rm -f $DIR/$tdir/l-exist
514 $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
516 run_test 17a "symlinks: create, remove (real)"
519 test_mkdir $DIR/$tdir
520 ln -s no-such-file $DIR/$tdir/l-dangle
522 $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
523 error "$tdir/l-dangle not referencing no-such-file"
524 $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
525 error "$tdir/l-dangle not referencing non-existent file"
526 rm -f $DIR/$tdir/l-dangle
527 $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
529 run_test 17b "symlinks: create, remove (dangling)"
531 test_17c() { # bug 3440 - don't save failed open RPC for replay
532 test_mkdir $DIR/$tdir
533 ln -s foo $DIR/$tdir/$tfile
534 cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
536 run_test 17c "symlinks: open dangling (should return error)"
539 test_mkdir $DIR/$tdir
540 ln -s foo $DIR/$tdir/$tfile
541 touch $DIR/$tdir/$tfile || error "creating to new symlink"
543 run_test 17d "symlinks: create dangling"
546 test_mkdir $DIR/$tdir
547 local foo=$DIR/$tdir/$tfile
548 ln -s $foo $foo || error "create symlink failed"
549 ls -l $foo || error "ls -l failed"
550 ls $foo && error "ls not failed" || true
552 run_test 17e "symlinks: create recursive symlink (should return error)"
555 test_mkdir $DIR/$tdir
556 ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
557 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
558 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
559 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
560 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
561 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
564 run_test 17f "symlinks: long and very long symlink name"
566 # str_repeat(S, N) generate a string that is string S repeated N times
571 while [ $((n -= 1)) -ge 0 ]; do
577 # Long symlinks and LU-2241
579 test_mkdir $DIR/$tdir
580 local TESTS="59 60 61 4094 4095"
582 # Fix for inode size boundary in 2.1.4
583 [ $MDS1_VERSION -lt $(version_code 2.1.4) ] &&
586 # Patch not applied to 2.2 or 2.3 branches
587 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
588 [ $MDS1_VERSION -le $(version_code 2.3.55) ] &&
592 local SYMNAME=$(str_repeat 'x' $i)
593 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
594 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
597 run_test 17g "symlinks: really long symlink name and inode boundaries"
599 test_17h() { #bug 17378
600 [ $PARALLEL == "yes" ] && skip "skip parallel run"
601 remote_mds_nodsh && skip "remote MDS with nodsh"
605 test_mkdir $DIR/$tdir
606 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
607 $LFS setstripe -c -1 $DIR/$tdir
608 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
609 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
610 touch $DIR/$tdir/$tfile || true
612 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
614 test_17i() { #bug 20018
615 [ $PARALLEL == "yes" ] && skip "skip parallel run"
616 remote_mds_nodsh && skip "remote MDS with nodsh"
618 local foo=$DIR/$tdir/$tfile
621 test_mkdir -c1 $DIR/$tdir
622 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
623 ln -s $foo $foo || error "create symlink failed"
624 #define OBD_FAIL_MDS_READLINK_EPROTO 0x143
625 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
626 ls -l $foo && error "error not detected"
629 run_test 17i "don't panic on short symlink (should return error)"
631 test_17k() { #bug 22301
632 [ $PARALLEL == "yes" ] && skip "skip parallel run"
633 [[ -z "$(which rsync 2>/dev/null)" ]] &&
634 skip "no rsync command"
635 rsync --help | grep -q xattr ||
636 skip_env "$(rsync --version | head -n1) does not support xattrs"
637 test_mkdir $DIR/$tdir
638 test_mkdir $DIR/$tdir.new
639 touch $DIR/$tdir/$tfile
640 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
641 rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
642 error "rsync failed with xattrs enabled"
644 run_test 17k "symlinks: rsync with xattrs enabled"
646 test_17l() { # LU-279
647 [[ -z "$(which getfattr 2>/dev/null)" ]] &&
648 skip "no getfattr command"
650 test_mkdir $DIR/$tdir
651 touch $DIR/$tdir/$tfile
652 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
653 for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
654 # -h to not follow symlinks. -m '' to list all the xattrs.
655 # grep to remove first line: '# file: $path'.
656 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
658 lgetxattr_size_check $path $xattr ||
659 error "lgetxattr_size_check $path $xattr failed"
663 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
667 [ $PARALLEL == "yes" ] && skip "skip parallel run"
668 [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
669 remote_mds_nodsh && skip "remote MDS with nodsh"
670 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
671 [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
672 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
674 local short_sym="0123456789"
675 local wdir=$DIR/$tdir
680 # create a long symlink file
681 for ((i = 0; i < 4; ++i)); do
682 long_sym=${long_sym}${long_sym}
685 echo "create 512 short and long symlink files under $wdir"
686 for ((i = 0; i < 256; ++i)); do
687 ln -sf ${long_sym}"a5a5" $wdir/long-$i
688 ln -sf ${short_sym}"a5a5" $wdir/short-$i
694 wait_delete_completed
696 echo "recreate the 512 symlink files with a shorter string"
697 for ((i = 0; i < 512; ++i)); do
698 # rewrite the symlink file with a shorter string
699 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
700 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
703 local mds_index=$(($($LFS getstripe -m $wdir) + 1))
705 echo "stop and checking mds${mds_index}:"
706 # e2fsck should not return error
708 local devname=$(mdsdevname $mds_index)
709 run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
712 start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
713 error "start mds${mds_index} failed"
714 df $MOUNT > /dev/null 2>&1
716 error "e2fsck detected error for short/long symlink: rc=$rc"
719 run_test 17m "run e2fsck against MDT which contains short/long symlink"
721 check_fs_consistency_17n() {
725 # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
726 # so it only check MDT1/MDT2 instead of all of MDTs.
727 for mdt_index in 1 2; do
728 # e2fsck should not return error
730 local devname=$(mdsdevname $mdt_index)
731 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
734 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
735 error "mount mds$mdt_index failed"
736 df $MOUNT > /dev/null 2>&1
742 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
743 [ $PARALLEL == "yes" ] && skip "skip parallel run"
744 [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
745 remote_mds_nodsh && skip "remote MDS with nodsh"
746 [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
747 [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
748 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
752 test_mkdir $DIR/$tdir
753 for ((i=0; i<10; i++)); do
754 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
755 error "create remote dir error $i"
756 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
757 error "create files under remote dir failed $i"
760 check_fs_consistency_17n ||
761 error "e2fsck report error after create files under remote dir"
763 for ((i = 0; i < 10; i++)); do
764 rm -rf $DIR/$tdir/remote_dir_${i} ||
765 error "destroy remote dir error $i"
768 check_fs_consistency_17n ||
769 error "e2fsck report error after unlink files under remote dir"
771 [ $MDS1_VERSION -lt $(version_code 2.4.50) ] &&
772 skip "lustre < 2.4.50 does not support migrate mv"
774 for ((i = 0; i < 10; i++)); do
775 mkdir -p $DIR/$tdir/remote_dir_${i}
776 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
777 error "create files under remote dir failed $i"
778 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
779 error "migrate remote dir error $i"
781 check_fs_consistency_17n || error "e2fsck report error after migration"
783 for ((i = 0; i < 10; i++)); do
784 rm -rf $DIR/$tdir/remote_dir_${i} ||
785 error "destroy remote dir error $i"
788 check_fs_consistency_17n || error "e2fsck report error after unlink"
790 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
793 remote_mds_nodsh && skip "remote MDS with nodsh"
794 [ $MDS1_VERSION -lt $(version_code 2.3.64) ] &&
795 skip "Need MDS version at least 2.3.64"
797 local wdir=$DIR/${tdir}o
803 mdt_index=$($LFS getstripe -m $wdir/$tfile)
804 mdt_index=$((mdt_index + 1))
807 #fail mds will wait the failover finish then set
808 #following fail_loc to avoid interfer the recovery process.
811 #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
812 do_facet mds${mdt_index} lctl set_param fail_loc=0x194
813 ls -l $wdir/$tfile && rc=1
814 do_facet mds${mdt_index} lctl set_param fail_loc=0
815 [[ $rc -eq 0 ]] || error "stat file should fail"
817 run_test 17o "stat file with incompat LMA feature"
820 touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
821 ls $DIR || error "Failed to ls $DIR: $?"
823 run_test 18 "touch .../f ; ls ... =============================="
829 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
831 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
834 ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
836 run_test 19b "ls -l .../f19 (should return error) =============="
839 [ $RUNAS_ID -eq $UID ] &&
840 skip_env "RUNAS_ID = UID = $UID -- skipping"
842 $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
844 run_test 19c "$RUNAS touch .../f19 (should return error) =="
847 cat $DIR/f19 && error || true
849 run_test 19d "cat .../f19 (should return error) =============="
858 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
860 run_test 20 "touch .../f ; ls -l ..."
863 test_mkdir $DIR/$tdir
864 [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
865 ln -s dangle $DIR/$tdir/link
866 echo foo >> $DIR/$tdir/link
867 cat $DIR/$tdir/dangle
868 $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
869 $CHECKSTAT -f -t file $DIR/$tdir/link ||
870 error "$tdir/link not linked to a file"
872 run_test 21 "write to dangling link"
875 local wdir=$DIR/$tdir
877 chown $RUNAS_ID:$RUNAS_GID $wdir
878 (cd $wdir || error "cd $wdir failed";
879 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
881 ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
882 $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
883 $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
884 error "checkstat -u failed"
886 run_test 22 "unpack tar archive as non-root user"
890 test_mkdir $DIR/$tdir
891 local file=$DIR/$tdir/$tfile
893 openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
894 openfile -f O_CREAT:O_EXCL $file &&
895 error "$file recreate succeeded" || true
897 run_test 23a "O_CREAT|O_EXCL in subdir"
899 test_23b() { # bug 18988
900 test_mkdir $DIR/$tdir
901 local file=$DIR/$tdir/$tfile
904 echo foo > $file || error "write filed"
905 echo bar >> $file || error "append filed"
906 $CHECKSTAT -s 8 $file || error "wrong size"
909 run_test 23b "O_APPEND check"
911 # LU-9409, size with O_APPEND and tiny writes
913 local file=$DIR/$tfile
916 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
917 $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
921 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
922 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
924 $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
927 #racing tiny & normal writes
928 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
929 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
931 $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
934 #racing tiny & normal writes 2, ugly numbers
935 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
936 dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
938 $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
941 run_test 23c "O_APPEND size checks for tiny writes"
943 # LU-11069 file offset is correct after appending writes
945 local file=$DIR/$tfile
948 echo CentaurHauls > $file
949 offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
950 if ((offset != 26)); then
951 error "wrong offset, expected 26, got '$offset'"
954 run_test 23d "file offset is correct after appending writes"
958 echo '-- same directory rename'
959 test_mkdir $DIR/$tdir
960 touch $DIR/$tdir/$tfile.1
961 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
962 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
964 run_test 24a "rename file to non-existent target"
967 test_mkdir $DIR/$tdir
968 touch $DIR/$tdir/$tfile.{1,2}
969 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
970 $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
971 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
973 run_test 24b "rename file to existing target"
976 test_mkdir $DIR/$tdir
977 test_mkdir $DIR/$tdir/d$testnum.1
978 mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
979 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
980 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
982 run_test 24c "rename directory to non-existent target"
985 test_mkdir -c1 $DIR/$tdir
986 test_mkdir -c1 $DIR/$tdir/d$testnum.1
987 test_mkdir -c1 $DIR/$tdir/d$testnum.2
988 mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
989 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
990 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
992 run_test 24d "rename directory to existing target"
995 echo '-- cross directory renames --'
999 mv $DIR/R5a/f $DIR/R5b/g
1000 $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
1001 $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
1003 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
1008 touch $DIR/R6a/f $DIR/R6b/g
1009 mv $DIR/R6a/f $DIR/R6b/g
1010 $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
1011 $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
1013 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
1018 test_mkdir $DIR/R7a/d
1019 mv $DIR/R7a/d $DIR/R7b/e
1020 $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
1021 $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
1023 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
1026 test_mkdir -c1 $DIR/R8a
1027 test_mkdir -c1 $DIR/R8b
1028 test_mkdir -c1 $DIR/R8a/d
1029 test_mkdir -c1 $DIR/R8b/e
1030 mrename $DIR/R8a/d $DIR/R8b/e
1031 $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1032 $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1034 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1037 echo "-- rename error cases"
1039 test_mkdir $DIR/R9/a
1041 mrename $DIR/R9/f $DIR/R9/a
1042 $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1043 $CHECKSTAT -t dir $DIR/R9/a || error "$DIR/R9/a not dir type"
1044 $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1046 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1050 mrename $DIR/R10/f $DIR/R10/g
1051 $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1052 $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1053 $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1055 run_test 24j "source does not exist ============================"
1058 test_mkdir $DIR/R11a
1059 test_mkdir $DIR/R11a/d
1061 mv $DIR/R11a/f $DIR/R11a/d
1062 $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1063 $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1065 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1067 # bug 2429 - rename foo foo foo creates invalid file
1070 $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1072 run_test 24l "Renaming a file to itself ========================"
1076 $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1077 # on ext3 this does not remove either the source or target files
1078 # though the "expected" operation would be to remove the source
1079 $CHECKSTAT -t file ${f} || error "${f} missing"
1080 $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1082 run_test 24m "Renaming a file to a hard link to itself ========="
1086 # this stats the old file after it was renamed, so it should fail
1088 $CHECKSTAT ${f} || error "${f} missing"
1090 $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1091 $CHECKSTAT -a ${f} || error "${f} exists"
1093 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1096 test_mkdir $DIR/$tdir
1097 rename_many -s random -v -n 10 $DIR/$tdir
1099 run_test 24o "rename of files during htree split"
1102 test_mkdir $DIR/R12a
1103 test_mkdir $DIR/R12b
1104 DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1105 mrename $DIR/R12a $DIR/R12b
1106 $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1107 $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1108 DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1109 [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1111 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1113 cleanup_multiop_pause() {
1115 kill -USR1 $MULTIPID
1119 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1121 test_mkdir $DIR/R13a
1122 test_mkdir $DIR/R13b
1123 local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1124 multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1127 trap cleanup_multiop_pause EXIT
1128 mrename $DIR/R13a $DIR/R13b
1129 $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1130 $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1131 local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1132 [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1133 cleanup_multiop_pause
1134 wait $MULTIPID || error "multiop close failed"
1136 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1138 test_24r() { #bug 3789
1139 test_mkdir $DIR/R14a
1140 test_mkdir $DIR/R14a/b
1141 mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1142 $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1143 $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1145 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1148 test_mkdir $DIR/R15a
1149 test_mkdir $DIR/R15a/b
1150 test_mkdir $DIR/R15a/b/c
1151 mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1152 $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1153 $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1155 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1157 test_mkdir $DIR/R16a
1158 test_mkdir $DIR/R16a/b
1159 test_mkdir $DIR/R16a/b/c
1160 mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1161 $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1162 $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1164 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1166 test_24u() { # bug12192
1167 $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1168 $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1170 run_test 24u "create stripe file"
1172 simple_cleanup_common() {
1176 [[ -z "$DIR" || -z "$tdir" || ! -d "$DIR/$tdir" ]] && return 0
1178 local start=$SECONDS
1180 [[ -n "$createmany" ]] && unlinkmany $DIR/$tdir/$tfile $createmany
1181 rm -rf $DIR/$tdir || error "cleanup $DIR/$tdir failed"
1183 wait_delete_completed
1184 echo "cleanup time $((SECONDS - start))"
1188 max_pages_per_rpc() {
1189 local mdtname="$(printf "MDT%04x" ${1:-0})"
1190 $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1194 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1196 local nrfiles=${COUNT:-100000}
1197 local fname="$DIR/$tdir/$tfile"
1199 # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1200 [ "$mds1_FSTYPE" = "zfs" ] && nrfiles=${COUNT:-10000}
1202 test_mkdir "$(dirname $fname)"
1203 # assume MDT0000 has the fewest inodes
1204 local stripes=$($LFS getdirstripe -c $(dirname $fname))
1205 local free_inodes=$(($(mdt_free_inodes 0) * ${stripes/#0/1}))
1206 [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1208 stack_trap "simple_cleanup_common $nrfiles"
1210 createmany -m "$fname" $nrfiles
1212 cancel_lru_locks mdc
1213 lctl set_param mdc.*.stats clear
1215 # was previously test_24D: LU-6101
1216 # readdir() returns correct number of entries after cursor reload
1217 local num_ls=$(ls $DIR/$tdir | wc -l)
1218 local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1219 local num_all=$(ls -a $DIR/$tdir | wc -l)
1220 if [ $num_ls -ne $nrfiles ] || [ $num_uniq -ne $nrfiles ] ||
1221 [ $num_all -ne $((nrfiles + 2)) ]; then
1222 error "Expected $nrfiles files, got $num_ls " \
1223 "($num_uniq unique $num_all .&..)"
1225 # LU-5 large readdir
1226 # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1227 # N bytes for name (len($nrfiles) rounded to 8 bytes) +
1228 # 8 bytes for luda_type (4 bytes rounded to 8 bytes)
1229 # take into account of overhead in lu_dirpage header and end mark in
1230 # each page, plus one in rpc_num calculation.
1231 local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1232 local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1233 local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1234 local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1235 local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1236 local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1237 echo "readpages: $mds_readpage rpc_max: $rpc_max-2/+1"
1238 (( $mds_readpage >= $rpc_max - 2 && $mds_readpage <= $rpc_max + 1)) ||
1239 error "large readdir doesn't take effect: " \
1240 "$mds_readpage should be about $rpc_max"
1242 run_test 24v "list large directory (test hash collision, b=17560)"
1244 test_24w() { # bug21506
1246 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1247 dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1248 dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1249 SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1250 [[ "$SZ1" -eq "$SZ2" ]] ||
1251 error "Error reading at the end of the file $tfile"
1253 run_test 24w "Reading a file larger than 4Gb"
1256 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1257 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1258 [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1259 skip "Need MDS version at least 2.7.56"
1262 local remote_dir=$DIR/$tdir/remote_dir
1264 test_mkdir $DIR/$tdir
1265 $LFS mkdir -i $MDTIDX $remote_dir ||
1266 error "create remote directory failed"
1268 test_mkdir $DIR/$tdir/src_dir
1269 touch $DIR/$tdir/src_file
1270 test_mkdir $remote_dir/tgt_dir
1271 touch $remote_dir/tgt_file
1273 mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1274 error "rename dir cross MDT failed!"
1276 mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1277 error "rename file cross MDT failed!"
1279 touch $DIR/$tdir/ln_file
1280 ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1281 error "ln file cross MDT failed"
1283 rm -rf $DIR/$tdir || error "Can not delete directories"
1285 run_test 24x "cross MDT rename/link"
1288 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1289 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1291 local remote_dir=$DIR/$tdir/remote_dir
1294 test_mkdir $DIR/$tdir
1295 $LFS mkdir -i $mdtidx $remote_dir ||
1296 error "create remote directory failed"
1298 test_mkdir $remote_dir/src_dir
1299 touch $remote_dir/src_file
1300 test_mkdir $remote_dir/tgt_dir
1301 touch $remote_dir/tgt_file
1303 mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1304 error "rename subdir in the same remote dir failed!"
1306 mrename $remote_dir/src_file $remote_dir/tgt_file ||
1307 error "rename files in the same remote dir failed!"
1309 ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1310 error "link files in the same remote dir failed!"
1312 rm -rf $DIR/$tdir || error "Can not delete directories"
1314 run_test 24y "rename/link on the same dir should succeed"
1317 [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1318 [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
1319 skip "Need MDS version at least 2.12.51"
1323 for index in 0 1; do
1324 $LFS mkdir -i $index $DIR/$tdir.$index || error "mkdir failed"
1325 touch $DIR/$tdir.0/$tfile.$index || error "touch failed"
1328 mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1 || error "mv $tfile.0 failed"
1330 index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.0)
1331 [ $index -eq 0 ] || error "$tfile.0 is on MDT$index"
1333 local mdts=$(comma_list $(mdts_nodes))
1335 do_nodes $mdts $LCTL set_param mdt.*.enable_remote_rename=0
1336 stack_trap "do_nodes $mdts $LCTL \
1337 set_param mdt.*.enable_remote_rename=1" EXIT
1339 mv $DIR/$tdir.0/$tfile.1 $DIR/$tdir.1 || error "mv $tfile.1 failed"
1341 index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.1)
1342 [ $index -eq 1 ] || error "$tfile.1 is on MDT$index"
1344 run_test 24z "cross-MDT rename is done as cp"
1346 test_24A() { # LU-3182
1349 test_mkdir $DIR/$tdir
1350 stack_trap "simple_cleanup_common $NFILES"
1351 createmany -m $DIR/$tdir/$tfile $NFILES
1352 local t=$(ls $DIR/$tdir | wc -l)
1353 local u=$(ls $DIR/$tdir | sort -u | wc -l)
1354 local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1356 (( $t == $NFILES && $u == $NFILES && $v == NFILES + 2 )) ||
1357 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1359 run_test 24A "readdir() returns correct number of entries."
1361 test_24B() { # LU-4805
1362 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1366 test_mkdir $DIR/$tdir
1367 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1368 error "create striped dir failed"
1370 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1371 [ $count -eq 2 ] || error "Expected 2, got $count"
1373 touch $DIR/$tdir/striped_dir/a
1375 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1376 [ $count -eq 3 ] || error "Expected 3, got $count"
1378 touch $DIR/$tdir/striped_dir/.f
1380 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1381 [ $count -eq 4 ] || error "Expected 4, got $count"
1383 rm -rf $DIR/$tdir || error "Can not delete directories"
1385 run_test 24B "readdir for striped dir return correct number of entries"
1388 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1394 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1395 error "create striped dir failed"
1397 cd $DIR/$tdir/d0/striped_dir
1399 local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1400 local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1401 local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1403 [ "$d0_ino" = "$parent_ino" ] ||
1404 error ".. wrong, expect $d0_ino, get $parent_ino"
1406 mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1407 error "mv striped dir failed"
1409 parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1411 [ "$d1_ino" = "$parent_ino" ] ||
1412 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1414 run_test 24C "check .. in striped dir"
1417 [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1418 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1421 mkdir $DIR/$tdir/src_dir
1422 $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1423 error "create remote source failed"
1425 touch $DIR/$tdir/src_dir/src_child/a
1427 $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1428 error "create remote target dir failed"
1430 $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1431 error "create remote target child failed"
1433 mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1434 error "rename dir cross MDT failed!"
1438 $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1439 error "src_child still exists after rename"
1441 $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1442 error "missing file(a) after rename"
1444 rm -rf $DIR/$tdir || error "Can not delete directories"
1446 run_test 24E "cross MDT rename/link"
1449 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1452 [ "$SLOW" = "no" ] && repeats=100
1456 echo "$repeats repeats"
1457 for ((i = 0; i < repeats; i++)); do
1458 $LFS mkdir -i0 -c2 $DIR/$tdir/test || error "mkdir fails"
1459 touch $DIR/$tdir/test/a || error "touch fails"
1460 mkdir $DIR/$tdir/test/b || error "mkdir fails"
1461 rm -rf $DIR/$tdir/test || error "rmdir fails"
1466 run_test 24F "hash order vs readdir (LU-11330)"
1469 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1474 $LFS mkdir -i 0 $DIR/$tdir-0 || error "mkdir $tdir-0"
1475 $LFS mkdir -i 1 $DIR/$tdir-1 || error "mkdir $tdir-1"
1476 touch $DIR/$tdir-0/f1 || error "touch f1"
1477 ln -s $DIR/$tdir-0/f1 $DIR/$tdir-0/s1 || error "ln s1"
1478 ino1=$(stat -c%i $DIR/$tdir-0/s1)
1479 mv $DIR/$tdir-0/s1 $DIR/$tdir-1 || error "mv s1"
1480 ino2=$(stat -c%i $DIR/$tdir-1/s1)
1481 [ $ino1 -ne $ino2 ] || error "s1 should be migrated"
1483 run_test 24G "migrate symlink in rename"
1486 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1487 [[ $(hostname) != $(facet_active_host mds2) ]] ||
1488 skip "MDT1 should be on another node"
1490 test_mkdir -i 1 -c 1 $DIR/$tdir
1491 #define OBD_FAIL_FLD_QUERY_REQ 0x1103
1492 do_facet mds2 $LCTL set_param fail_loc=0x80001103
1493 touch $DIR/$tdir/$tfile || error "touch failed"
1495 run_test 24H "repeat FLD_QUERY rpc"
1498 echo '== symlink sanity ============================================='
1502 touch $DIR/s25/foo ||
1503 error "File creation in symlinked directory failed"
1505 run_test 25a "create file in symlinked directory ==============="
1508 [ ! -d $DIR/d25 ] && test_25a
1509 $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1511 run_test 25b "lookup file in symlinked directory ==============="
1515 test_mkdir $DIR/d26/d26-2
1516 ln -s d26/d26-2 $DIR/s26
1517 touch $DIR/s26/foo || error "File creation failed"
1519 run_test 26a "multiple component symlink ======================="
1522 test_mkdir -p $DIR/$tdir/d26-2
1523 ln -s $tdir/d26-2/foo $DIR/s26-2
1524 touch $DIR/s26-2 || error "File creation failed"
1526 run_test 26b "multiple component symlink at end of lookup ======"
1529 test_mkdir $DIR/d26.2
1530 touch $DIR/d26.2/foo
1531 ln -s d26.2 $DIR/s26.2-1
1532 ln -s s26.2-1 $DIR/s26.2-2
1533 ln -s s26.2-2 $DIR/s26.2-3
1534 chmod 0666 $DIR/s26.2-3/foo
1536 run_test 26c "chain of symlinks"
1538 # recursive symlinks (bug 439)
1540 ln -s d26-3/foo $DIR/d26-3
1542 run_test 26d "create multiple component recursive symlink"
1545 [ ! -h $DIR/d26-3 ] && test_26d
1548 run_test 26e "unlink multiple component recursive symlink"
1550 # recursive symlinks (bug 7022)
1552 test_mkdir $DIR/$tdir
1553 test_mkdir $DIR/$tdir/$tfile
1554 cd $DIR/$tdir/$tfile || error "cd $DIR/$tdir/$tfile failed"
1555 test_mkdir -p lndir/bar1
1556 test_mkdir $DIR/$tdir/$tfile/$tfile
1557 cd $tfile || error "cd $tfile failed"
1558 ln -s .. dotdot || error "ln dotdot failed"
1559 ln -s dotdot/lndir lndir || error "ln lndir failed"
1560 cd $DIR/$tdir || error "cd $DIR/$tdir failed"
1561 output=`ls $tfile/$tfile/lndir/bar1`
1562 [ "$output" = bar1 ] && error "unexpected output"
1563 rm -r $tfile || error "rm $tfile failed"
1564 $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1566 run_test 26f "rm -r of a directory which has recursive symlink"
1569 test_mkdir $DIR/$tdir
1570 $LFS getstripe $DIR/$tdir
1571 $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1572 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1573 cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1575 run_test 27a "one stripe file"
1578 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1580 test_mkdir $DIR/$tdir
1581 $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1582 $LFS getstripe -c $DIR/$tdir/$tfile
1583 [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1584 error "two-stripe file doesn't have two stripes"
1586 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1588 run_test 27b "create and write to two stripe file"
1590 # 27c family tests specific striping, setstripe -o
1592 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1593 test_mkdir -p $DIR/$tdir
1596 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1597 $LFS getstripe -i $DIR/$tdir/$tfile
1598 [ $($LFS getstripe -i $DIR/$tdir/$tfile ) -eq $osts ] ||
1599 error "stripe not on specified OST"
1601 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1603 run_test 27ca "one stripe on specified OST"
1606 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1607 test_mkdir -p $DIR/$tdir
1609 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1610 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1613 # Strip getstripe output to a space separated list of OSTs
1614 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1615 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1616 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1617 error "stripes not on specified OSTs"
1619 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1621 run_test 27cb "two stripes on specified OSTs"
1624 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1625 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1626 skip "server does not support overstriping"
1628 test_mkdir -p $DIR/$tdir
1630 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1631 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1634 # Strip getstripe output to a space separated list of OSTs
1635 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1636 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1637 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1638 error "stripes not on specified OSTs"
1640 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1642 run_test 27cc "two stripes on the same OST"
1645 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test"
1646 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1647 skip "server does not support overstriping"
1648 test_mkdir -p $DIR/$tdir
1649 local osts="0,1,1,0"
1650 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1651 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1654 # Strip getstripe output to a space separated list of OSTs
1655 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1656 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1657 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1658 error "stripes not on specified OSTs"
1660 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1662 run_test 27cd "four stripes on two OSTs"
1665 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
1666 skip_env "too many osts, skipping"
1667 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
1668 skip "server does not support overstriping"
1669 # We do one more stripe than we have OSTs
1670 [ $OSTCOUNT -lt 159 ] || large_xattr_enabled ||
1671 skip_env "ea_inode feature disabled"
1673 test_mkdir -p $DIR/$tdir
1675 for i in $(seq 0 $OSTCOUNT);
1678 if [ $i -ne $OSTCOUNT ]; then
1682 $LFS setstripe -o $osts $DIR/$tdir/$tfile || error "setstripe failed"
1683 local getstripe=$($LFS getstripe $DIR/$tdir/$tfile)
1686 # Strip getstripe output to a space separated list of OSTs
1687 local getstripe_osts=$(echo "$getstripe" | sed -e '1,/obdidx/d' |\
1688 awk '{print $1}' | tr '\n' ' ' | sed -e 's/[[:space:]]*$//')
1689 [ "$getstripe_osts" = "${osts//,/ }" ] ||
1690 error "stripes not on specified OSTs"
1692 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 || error "dd failed"
1694 run_test 27ce "more stripes than OSTs with -o"
1697 local osp_proc="osp.$FSNAME-OST0000-osc-MDT000*.active"
1700 test_mkdir -p $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
1701 do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=0"
1702 stack_trap "do_facet $SINGLEMDS $LCTL set_param -n $osp_proc=1" EXIT
1703 wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 1" ||
1704 error "failed to set $osp_proc=0"
1706 $LFS setstripe -o 0 $DIR/$tdir/$tfile &
1709 do_facet $SINGLEMDS "$LCTL set_param -n $osp_proc=1"
1710 wait_update_facet $SINGLEMDS "$LCTL get_param -n $osp_proc | grep 0" ||
1711 error "failed to set $osp_proc=1"
1714 error "should return error due to $osp_proc=0"
1716 run_test 27cf "'setstripe -o' on inactive OSTs should return error"
1719 test_mkdir $DIR/$tdir
1720 $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1721 error "setstripe failed"
1722 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1723 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1725 run_test 27d "create file with default settings"
1728 # LU-5839 adds check for existed layout before setting it
1729 [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1730 skip "Need MDS version at least 2.7.56"
1732 test_mkdir $DIR/$tdir
1733 $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1734 $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1735 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1737 run_test 27e "setstripe existing file (should return error)"
1740 test_mkdir $DIR/$tdir
1741 $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1742 error "$LFS setstripe $DIR/$tdir/$tfile failed"
1743 $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1744 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1745 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1746 $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1748 run_test 27f "setstripe with bad stripe size (should return error)"
1751 test_mkdir $DIR/$tdir
1752 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1753 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1754 error "$DIR/$tdir/$tfile has object"
1756 run_test 27g "$LFS getstripe with no objects"
1759 test_mkdir $DIR/$tdir
1760 touch $DIR/$tdir/$tfile || error "touch failed"
1761 ln -s bogus $DIR/$tdir/$tfile.2 || error "ln failed"
1762 $LFS getstripe -m $DIR/$tdir/$tfile $DIR/$tdir/$tfile.2
1764 (( rc == 2 )) || error "getstripe did not return ENOENT"
1766 run_test 27ga "$LFS getstripe with missing file (should return error)"
1769 test_mkdir $DIR/$tdir
1770 touch $DIR/$tdir/$tfile || error "touch failed"
1771 [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1772 error "missing objects"
1774 run_test 27i "$LFS getstripe with some objects"
1777 test_mkdir $DIR/$tdir
1778 $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1779 error "setstripe failed" || true
1781 run_test 27j "setstripe with bad stripe offset (should return error)"
1783 test_27k() { # bug 2844
1784 test_mkdir $DIR/$tdir
1785 local file=$DIR/$tdir/$tfile
1786 local ll_max_blksize=$((4 * 1024 * 1024))
1787 $LFS setstripe -S 67108864 $file || error "setstripe failed"
1788 local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1789 [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1790 dd if=/dev/zero of=$file bs=4k count=1
1791 blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1792 [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1794 run_test 27k "limit i_blksize for broken user apps"
1797 mcreate $DIR/$tfile || error "creating file"
1798 $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1799 error "setstripe should have failed" || true
1801 run_test 27l "check setstripe permissions (should return error)"
1804 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1806 [ -n "$RCLIENTS" -o -n "$MOUNT_2" ] &&
1807 skip_env "multiple clients -- skipping"
1809 ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1811 if [[ $ORIGFREE -gt $MAXFREE ]]; then
1812 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1814 stack_trap simple_cleanup_common
1815 test_mkdir $DIR/$tdir
1816 $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1817 dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1818 error "dd should fill OST0"
1820 while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1822 [ $i -gt 256 ] && break
1825 touch $DIR/$tdir/$tfile.$i
1826 [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1827 awk '{print $1}'| grep -w "0") ] &&
1828 error "OST0 was full but new created file still use it"
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" || true
1835 run_test 27m "create file while OST0 was full"
1837 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1838 # if the OST isn't full anymore.
1840 local ostidx=${1:-""}
1845 local list=$(comma_list $(osts_nodes))
1846 [ "$ostidx" ] && list=$(facet_host ost$((ostidx + 1)))
1848 do_nodes $list lctl set_param fail_loc=0
1849 wait_delete_completed # initiate all OST_DESTROYs from MDS to OST
1850 delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1851 awk '{print $1 * 2;exit;}')
1852 get_prealloc="$LCTL get_param -n osc.*MDT*.prealloc_status |
1854 wait_update_facet $SINGLEMDS "$get_prealloc" "" $delay
1858 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1859 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1860 remote_mds_nodsh && skip "remote MDS with nodsh"
1861 remote_ost_nodsh && skip "remote OST with nodsh"
1864 rm -f $DIR/$tdir/$tfile
1865 exhaust_precreations 0 0x80000215
1866 $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1867 touch $DIR/$tdir/$tfile || error "touch failed"
1868 $LFS getstripe $DIR/$tdir/$tfile
1871 run_test 27n "create file with some full OSTs"
1874 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1875 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1876 remote_mds_nodsh && skip "remote MDS with nodsh"
1877 remote_ost_nodsh && skip "remote OST with nodsh"
1880 rm -f $DIR/$tdir/$tfile
1881 exhaust_all_precreations 0x215
1883 touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1888 run_test 27o "create file with all full OSTs (should error)"
1890 function create_and_checktime() {
1895 for ((i=0; i < $loops; i++)); do
1896 local start=$SECONDS
1897 multiop $fname-$i Oc
1898 ((SECONDS-start < TIMEOUT)) ||
1899 error "creation took " $((SECONDS-$start)) && return 1
1904 local mdts=$(comma_list $(mdts_nodes))
1906 [ $MDS1_VERSION -lt $(version_code 2.13.57) ] &&
1907 skip "Need MDS version at least 2.13.57"
1909 local f0=$DIR/${tfile}-0
1910 local f1=$DIR/${tfile}-1
1912 wait_delete_completed
1914 # refill precreated objects
1915 $LFS setstripe -i0 -c1 $f0
1917 saved=$(do_facet mds1 $LCTL get_param -n lov.*0000*.qos_threshold_rr)
1918 # force QoS allocation policy
1919 do_nodes $mdts $LCTL set_param lov.*.qos_threshold_rr=0%
1920 stack_trap "do_nodes $mdts $LCTL set_param \
1921 lov.*.qos_threshold_rr=$saved" EXIT
1924 # one OST is unavailable, but still have few objects preallocated
1926 stack_trap "start ost1 $(ostdevname 1) $OST_MOUNT_OPTS; \
1927 rm -rf $f1 $DIR/$tdir*" EXIT
1929 for ((i=0; i < 7; i++)); do
1930 mkdir $DIR/$tdir$i || error "can't create dir"
1931 $LFS setstripe -c$((OSTCOUNT-1)) $DIR/$tdir$i ||
1932 error "can't set striping"
1934 for ((i=0; i < 7; i++)); do
1935 create_and_checktime $DIR/$tdir$i/$tfile 100 &
1939 run_test 27oo "don't let few threads to reserve too many objects"
1942 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1943 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1944 remote_mds_nodsh && skip "remote MDS with nodsh"
1945 remote_ost_nodsh && skip "remote OST with nodsh"
1948 rm -f $DIR/$tdir/$tfile
1949 test_mkdir $DIR/$tdir
1951 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1952 $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1953 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1955 exhaust_precreations 0 0x80000215
1956 echo foo >> $DIR/$tdir/$tfile || error "append failed"
1957 $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1958 $LFS getstripe $DIR/$tdir/$tfile
1962 run_test 27p "append to a truncated file with some full OSTs"
1965 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1966 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1967 remote_mds_nodsh && skip "remote MDS with nodsh"
1968 remote_ost_nodsh && skip "remote OST with nodsh"
1971 rm -f $DIR/$tdir/$tfile
1973 mkdir_on_mdt0 $DIR/$tdir
1974 $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1975 $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1976 error "truncate $DIR/$tdir/$tfile failed"
1977 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1979 exhaust_all_precreations 0x215
1981 echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1982 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1986 run_test 27q "append to truncated file with all OSTs full (should error)"
1989 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1990 [ $PARALLEL == "yes" ] && skip "skip parallel run"
1991 remote_mds_nodsh && skip "remote MDS with nodsh"
1992 remote_ost_nodsh && skip "remote OST with nodsh"
1995 rm -f $DIR/$tdir/$tfile
1996 exhaust_precreations 0 0x80000215
1998 $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
2002 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
2004 test_27s() { # bug 10725
2005 test_mkdir $DIR/$tdir
2006 local stripe_size=$((4096 * 1024 * 1024)) # 2^32
2007 local stripe_count=0
2008 [ $OSTCOUNT -eq 1 ] || stripe_count=2
2009 $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
2010 error "stripe width >= 2^32 succeeded" || true
2013 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
2015 test_27t() { # bug 10864
2020 $WLFS getstripe $tfile
2023 run_test 27t "check that utils parse path correctly"
2025 test_27u() { # bug 4900
2026 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2027 remote_mds_nodsh && skip "remote MDS with nodsh"
2030 local list=$(comma_list $(mdts_nodes))
2032 #define OBD_FAIL_MDS_OSC_PRECREATE 0x139
2033 do_nodes $list $LCTL set_param fail_loc=0x139
2034 test_mkdir -p $DIR/$tdir
2035 stack_trap "simple_cleanup_common 1000"
2036 createmany -o $DIR/$tdir/$tfile 1000
2037 do_nodes $list $LCTL set_param fail_loc=0
2039 TLOG=$TMP/$tfile.getstripe
2040 $LFS getstripe $DIR/$tdir > $TLOG
2041 OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
2042 [[ $OBJS -gt 0 ]] &&
2043 error "$OBJS objects created on OST-0. See $TLOG" ||
2046 run_test 27u "skip object creation on OSC w/o objects"
2048 test_27v() { # bug 4900
2049 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2050 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2051 remote_mds_nodsh && skip "remote MDS with nodsh"
2052 remote_ost_nodsh && skip "remote OST with nodsh"
2054 exhaust_all_precreations 0x215
2057 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe / file
2059 touch $DIR/$tdir/$tfile
2060 #define OBD_FAIL_TGT_DELAY_PRECREATE 0x705
2062 for (( i=1; i < OSTCOUNT; i++ )); do
2063 do_facet ost$i lctl set_param fail_loc=0x705
2065 local START=`date +%s`
2066 createmany -o $DIR/$tdir/$tfile 32
2068 local FINISH=`date +%s`
2069 local TIMEOUT=`lctl get_param -n timeout`
2070 local PROCESS=$((FINISH - START))
2071 [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
2072 error "$FINISH - $START >= $TIMEOUT / 2"
2073 sleep $((TIMEOUT / 2 - PROCESS))
2076 run_test 27v "skip object creation on slow OST"
2078 test_27w() { # bug 10997
2079 test_mkdir $DIR/$tdir
2080 $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
2081 [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
2082 error "stripe size $size != 65536" || true
2083 [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
2084 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
2086 run_test 27w "check $LFS setstripe -S and getstrip -d options"
2089 [[ $OSTCOUNT -lt 2 ]] &&
2090 skip_env "skipping multiple stripe count/offset test"
2092 test_mkdir $DIR/$tdir
2093 for i in $(seq 1 $OSTCOUNT); do
2095 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
2096 error "setstripe -c $i -i $offset failed"
2097 count=$($LFS getstripe -c $DIR/$tdir/f$i)
2098 index=$($LFS getstripe -i $DIR/$tdir/f$i)
2099 [ $count -ne $i ] && error "stripe count $count != $i" || true
2100 [ $index -ne $offset ] &&
2101 error "stripe offset $index != $offset" || true
2104 run_test 27wa "check $LFS setstripe -c -i options"
2107 remote_ost_nodsh && skip "remote OST with nodsh"
2108 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2109 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2111 OFFSET=$(($OSTCOUNT - 1))
2113 local OST=$(ostname_from_index $OSTIDX)
2115 test_mkdir $DIR/$tdir
2116 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe per file
2117 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
2119 createmany -o $DIR/$tdir/$tfile $OSTCOUNT
2120 for i in $(seq 0 $OFFSET); do
2121 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
2122 awk '{print $1}' | grep -w "$OSTIDX") ] &&
2123 error "OST0 was degraded but new created file still use it"
2125 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
2127 run_test 27x "create files while OST0 is degraded"
2130 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2131 remote_mds_nodsh && skip "remote MDS with nodsh"
2132 remote_ost_nodsh && skip "remote OST with nodsh"
2133 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2135 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
2136 local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
2137 osp.$mdtosc.prealloc_last_id)
2138 local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
2139 osp.$mdtosc.prealloc_next_id)
2140 local fcount=$((last_id - next_id))
2141 [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
2142 [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
2144 local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
2145 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
2146 local OST_DEACTIVE_IDX=-1
2151 for OSC in $MDS_OSCS; do
2152 OST=$(osc_to_ost $OSC)
2153 OSTIDX=$(index_from_ostuuid $OST)
2154 if [ $OST_DEACTIVE_IDX == -1 ]; then
2155 OST_DEACTIVE_IDX=$OSTIDX
2157 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
2158 echo $OSC "is Deactivated:"
2159 do_facet $SINGLEMDS lctl --device %$OSC deactivate
2163 OSTIDX=$(index_from_ostuuid $OST)
2164 test_mkdir $DIR/$tdir
2165 $LFS setstripe -c 1 $DIR/$tdir # 1 stripe / file
2167 for OSC in $MDS_OSCS; do
2168 OST=$(osc_to_ost $OSC)
2169 OSTIDX=$(index_from_ostuuid $OST)
2170 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2171 echo $OST "is degraded:"
2172 do_facet ost$((OSTIDX+1)) lctl set_param -n \
2173 obdfilter.$OST.degraded=1
2178 createmany -o $DIR/$tdir/$tfile $fcount
2180 for OSC in $MDS_OSCS; do
2181 OST=$(osc_to_ost $OSC)
2182 OSTIDX=$(index_from_ostuuid $OST)
2183 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
2184 echo $OST "is recovered from degraded:"
2185 do_facet ost$((OSTIDX+1)) lctl set_param -n \
2186 obdfilter.$OST.degraded=0
2188 do_facet $SINGLEMDS lctl --device %$OSC activate
2192 # all osp devices get activated, hence -1 stripe count restored
2193 local stripe_count=0
2195 # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
2196 # devices get activated.
2198 $LFS setstripe -c -1 $DIR/$tfile
2199 stripe_count=$($LFS getstripe -c $DIR/$tfile)
2201 [ $stripe_count -ne $OSTCOUNT ] &&
2202 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
2205 run_test 27y "create files while OST0 is degraded and the rest inactive"
2211 lmm_count=$($LFS getstripe -c $1)
2212 lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
2213 lmm_oid=$($LFS getstripe -v $1 | awk '/lmm_object_id/ { print $2 }')
2215 local old_ifs="$IFS"
2217 fid=($($LFS path2fid $1))
2220 log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
2221 log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
2223 # compare lmm_seq and lu_fid->f_seq
2224 [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
2225 # compare lmm_object_id and lu_fid->oid
2226 [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
2228 # check the trusted.fid attribute of the OST objects of the file
2229 local have_obdidx=false
2231 $LFS getstripe $1 | while read obdidx oid hex seq; do
2232 # skip lines up to and including "obdidx"
2233 [ -z "$obdidx" ] && break
2234 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
2235 $have_obdidx || continue
2237 local ost=$((obdidx + 1))
2238 local dev=$(ostdevname $ost)
2241 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
2243 seq=$(echo $seq | sed -e "s/^0x//g")
2244 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
2245 oid_hex=$(echo $oid)
2247 oid_hex=$(echo $hex | sed -e "s/^0x//g")
2249 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
2253 # Don't unmount/remount the OSTs if we don't need to do that.
2254 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2255 # update too, until that use mount/ll_decode_filter_fid/mount.
2256 # Re-enable when debugfs will understand new filter_fid.
2258 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2259 ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2260 $dev 2>/dev/null" | grep "parent=")
2262 if [ -z "$ff" ]; then
2264 mount_fstype ost$ost
2265 ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2266 $(facet_mntpt ost$ost)/$obj_file)
2267 unmount_fstype ost$ost
2268 start ost$ost $dev $OST_MOUNT_OPTS
2272 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2274 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2276 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2277 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2279 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2280 # stripe_size=1048576 component_id=1 component_start=0 \
2281 # component_end=33554432
2282 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2283 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2284 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2286 if grep -q 'stripe=' <<<$ff; then
2287 ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2289 # $LL_DECODE_FILTER_FID does not print "stripe="; look
2290 # into f_ver in this case. See comment on ff_parent.
2291 ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2294 # compare lmm_seq and filter_fid->ff_parent.f_seq
2295 [ $ff_pseq = $lmm_seq ] ||
2296 error "FF parent SEQ $ff_pseq != $lmm_seq"
2297 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2298 [ $ff_poid = $lmm_oid ] ||
2299 error "FF parent OID $ff_poid != $lmm_oid"
2300 (($ff_pstripe == $stripe_nr)) ||
2301 error "FF stripe $ff_pstripe != $stripe_nr"
2303 stripe_nr=$((stripe_nr + 1))
2304 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2306 if grep -q 'stripe_count=' <<<$ff; then
2307 local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2308 -e 's/ .*//' <<<$ff)
2309 [ $lmm_count = $ff_scnt ] ||
2310 error "FF stripe count $lmm_count != $ff_scnt"
2316 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2317 remote_ost_nodsh && skip "remote OST with nodsh"
2319 test_mkdir $DIR/$tdir
2320 $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2321 { error "setstripe -c -1 failed"; return 1; }
2322 # We need to send a write to every object to get parent FID info set.
2323 # This _should_ also work for setattr, but does not currently.
2324 # touch $DIR/$tdir/$tfile-1 ||
2325 dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2326 { error "dd $tfile-1 failed"; return 2; }
2327 $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2328 { error "setstripe -c -1 failed"; return 3; }
2329 dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2330 { error "dd $tfile-2 failed"; return 4; }
2332 # make sure write RPCs have been sent to OSTs
2335 check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2336 check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2338 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2340 test_27A() { # b=19102
2341 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2343 save_layout_restore_at_exit $MOUNT
2344 $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2345 wait_update $HOSTNAME "$LFS getstripe -c $MOUNT | sed 's/ *//g'" "1" 20 ||
2346 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2347 local default_size=$($LFS getstripe -S $MOUNT)
2348 local default_offset=$($LFS getstripe -i $MOUNT)
2349 local dsize=$(do_facet $SINGLEMDS \
2350 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2351 [ $default_size -eq $dsize ] ||
2352 error "stripe size $default_size != $dsize"
2353 [ $default_offset -eq -1 ] ||
2354 error "stripe offset $default_offset != -1"
2356 run_test 27A "check filesystem-wide default LOV EA values"
2358 test_27B() { # LU-2523
2359 test_mkdir $DIR/$tdir
2360 rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2362 # open f1 with O_LOV_DELAY_CREATE
2364 # call setstripe ioctl on open file descriptor for f1
2366 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2370 # open f1 with O_LOV_DELAY_CREATE
2372 # call setstripe ioctl on open file descriptor for f1
2374 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2376 # Allow multiop to fail in imitation of NFS's busted semantics.
2379 run_test 27B "call setstripe on open unlinked file/rename victim"
2381 # 27C family tests full striping and overstriping
2382 test_27Ca() { #LU-2871
2383 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2391 test_mkdir $DIR/$tdir
2393 for i in $(seq 0 $((OSTCOUNT - 1))); do
2394 # set stripe across all OSTs starting from OST$i
2395 $LFS setstripe -i $i -c -1 $tfile$i
2396 # get striping information
2397 ost_idx=($($LFS getstripe $tfile$i |
2398 tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2399 echo "OST Index: ${ost_idx[*]}"
2402 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2403 error "${#ost_idx[@]} != $OSTCOUNT"
2405 for index in $(seq 0 $((OSTCOUNT - 1))); do
2407 for j in "${ost_idx[@]}"; do
2408 if [ $index -eq $j ]; then
2414 error "Can not find $index in ${ost_idx[*]}"
2418 run_test 27Ca "check full striping across all OSTs"
2421 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2422 skip "server does not support overstriping"
2423 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2424 skip_env "too many osts, skipping"
2426 test_mkdir -p $DIR/$tdir
2427 local setcount=$(($OSTCOUNT * 2))
2428 [ $setcount -lt 160 ] || large_xattr_enabled ||
2429 skip_env "ea_inode feature disabled"
2431 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2432 error "setstripe failed"
2434 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2435 [ $count -eq $setcount ] ||
2436 error "stripe count $count, should be $setcount"
2438 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2439 error "overstriped should be set in pattern"
2441 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2444 run_test 27Cb "more stripes than OSTs with -C"
2447 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2448 skip "server does not support overstriping"
2449 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2451 test_mkdir -p $DIR/$tdir
2452 local setcount=$(($OSTCOUNT - 1))
2454 [ $setcount -lt 160 ] || large_xattr_enabled ||
2455 skip_env "ea_inode feature disabled"
2457 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2458 error "setstripe failed"
2460 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2461 [ $count -eq $setcount ] ||
2462 error "stripe count $count, should be $setcount"
2464 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" &&
2465 error "overstriped should not be set in pattern"
2467 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2470 run_test 27Cc "fewer stripes than OSTs does not set overstriping"
2473 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2474 skip "server does not support overstriping"
2475 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2476 large_xattr_enabled || skip_env "ea_inode feature disabled"
2478 test_mkdir -p $DIR/$tdir
2479 local setcount=$LOV_MAX_STRIPE_COUNT
2481 $LFS setstripe -C $setcount $DIR/$tdir/$tfile ||
2482 error "setstripe failed"
2484 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2485 [ $count -eq $setcount ] ||
2486 error "stripe count $count, should be $setcount"
2488 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2489 error "overstriped should be set in pattern"
2491 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2494 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2496 run_test 27Cd "test maximum stripe count"
2499 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2500 skip "server does not support overstriping"
2501 test_mkdir -p $DIR/$tdir
2503 pool_add $TESTNAME || error "Pool creation failed"
2504 pool_add_targets $TESTNAME 0 || error "pool_add_targets failed"
2508 $LFS setstripe -C $setcount -p "$TESTNAME" $DIR/$tdir/$tfile ||
2509 error "setstripe failed"
2511 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2512 [ $count -eq $setcount ] ||
2513 error "stripe count $count, should be $setcount"
2515 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2516 error "overstriped should be set in pattern"
2518 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2521 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2523 run_test 27Ce "test pool with overstriping"
2526 [[ $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ]] ||
2527 skip "server does not support overstriping"
2528 [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2529 skip_env "too many osts, skipping"
2531 test_mkdir -p $DIR/$tdir
2533 local setcount=$(($OSTCOUNT * 2))
2534 [ $setcount -lt 160 ] || large_xattr_enabled ||
2535 skip_env "ea_inode feature disabled"
2537 $LFS setstripe -C $setcount $DIR/$tdir/ ||
2538 error "setstripe failed"
2540 echo 1 > $DIR/$tdir/$tfile
2542 local count=$($LFS getstripe -c $DIR/$tdir/$tfile)
2543 [ $count -eq $setcount ] ||
2544 error "stripe count $count, should be $setcount"
2546 $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "overstriped" ||
2547 error "overstriped should be set in pattern"
2549 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=4 conv=notrunc ||
2552 rm -f $DIR/$tdir/$tfile || error "Delete $tfile failed"
2554 run_test 27Cf "test default inheritance with overstriping"
2557 [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2558 [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2559 remote_mds_nodsh && skip "remote MDS with nodsh"
2561 local POOL=${POOL:-testpool}
2563 local last_ost=$(($OSTCOUNT - 1))
2565 local ost_list=$(seq $first_ost $ost_step $last_ost)
2566 local ost_range="$first_ost $last_ost $ost_step"
2568 test_mkdir $DIR/$tdir
2569 pool_add $POOL || error "pool_add failed"
2570 pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2573 [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2575 [ $MDS1_VERSION -lt $(version_code 2.9.55) ] ||
2576 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2577 skip27D+=" -s 30,31"
2578 [[ ! $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ||
2579 $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
2580 skip27D+=" -s 32,33"
2581 [[ $MDS_VERSION -lt $(version_code $SEL_VER) ]] &&
2583 llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2584 error "llapi_layout_test failed"
2586 destroy_test_pools || error "destroy test pools failed"
2588 run_test 27D "validate llapi_layout API"
2590 # Verify that default_easize is increased from its initial value after
2591 # accessing a widely striped file.
2593 [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2594 [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2595 skip "client does not have LU-3338 fix"
2597 # 72 bytes is the minimum space required to store striping
2598 # information for a file striped across one OST:
2599 # (sizeof(struct lov_user_md_v3) +
2600 # sizeof(struct lov_user_ost_data_v1))
2602 $LCTL set_param -n llite.*.default_easize $min_easize ||
2603 error "lctl set_param failed"
2604 local easize=$($LCTL get_param -n llite.*.default_easize)
2606 [ $easize -eq $min_easize ] ||
2607 error "failed to set default_easize"
2609 $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2610 error "setstripe failed"
2611 # In order to ensure stat() call actually talks to MDS we need to
2612 # do something drastic to this file to shake off all lock, e.g.
2613 # rename it (kills lookup lock forcing cache cleaning)
2614 mv $DIR/$tfile $DIR/${tfile}-1
2615 ls -l $DIR/${tfile}-1
2618 easize=$($LCTL get_param -n llite.*.default_easize)
2620 [ $easize -gt $min_easize ] ||
2621 error "default_easize not updated"
2623 run_test 27E "check that default extended attribute size properly increases"
2625 test_27F() { # LU-5346/LU-7975
2626 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2627 [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2628 [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2629 skip "Need MDS version at least 2.8.51"
2630 remote_ost_nodsh && skip "remote OST with nodsh"
2632 test_mkdir $DIR/$tdir
2634 $LFS setstripe -c 2 $DIR/$tdir
2636 # stop all OSTs to reproduce situation for LU-7975 ticket
2637 for num in $(seq $OSTCOUNT); do
2641 # open/create f0 with O_LOV_DELAY_CREATE
2642 # truncate f0 to a non-0 size
2644 multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2646 $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2647 # open/write it again to force delayed layout creation
2648 cat /etc/hosts > $DIR/$tdir/f0 &
2652 for num in $(seq $OSTCOUNT); do
2653 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2654 error "ost$num failed to start"
2657 wait $catpid || error "cat failed"
2659 cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2660 [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2661 error "wrong stripecount"
2664 run_test 27F "Client resend delayed layout creation with non-zero size"
2666 test_27G() { #LU-10629
2667 [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2668 skip "Need MDS version at least 2.11.51"
2669 [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2670 remote_mds_nodsh && skip "remote MDS with nodsh"
2671 local POOL=${POOL:-testpool}
2672 local ostrange="0 0 1"
2674 test_mkdir $DIR/$tdir
2675 touch $DIR/$tdir/$tfile.nopool
2676 pool_add $POOL || error "pool_add failed"
2677 pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2678 $LFS setstripe -p $POOL $DIR/$tdir
2680 local pool=$($LFS getstripe -p $DIR/$tdir)
2682 [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2683 touch $DIR/$tdir/$tfile.default
2684 $LFS setstripe -E 1M --pool $POOL -c 1 -E eof -c 1 $DIR/$tdir/$tfile.pfl
2685 $LFS find $DIR/$tdir -type f --pool $POOL
2686 local found=$($LFS find $DIR/$tdir -type f --pool $POOL | wc -l)
2687 [[ "$found" == "2" ]] ||
2688 error "found $found != 2 files in '$DIR/$tdir' in '$POOL'"
2690 $LFS setstripe -d $DIR/$tdir
2692 pool=$($LFS getstripe -p -d $DIR/$tdir)
2694 [[ "$pool" != "$POOL" ]] || error "$DIR/$tdir is still '$pool'"
2696 run_test 27G "Clear OST pool from stripe"
2699 [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2700 skip "Need MDS version newer than 2.11.54"
2701 [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2702 test_mkdir $DIR/$tdir
2703 $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2704 touch $DIR/$tdir/$tfile
2705 $LFS getstripe -c $DIR/$tdir/$tfile
2706 [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2707 error "two-stripe file doesn't have two stripes"
2709 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2710 $LFS getstripe -y $DIR/$tdir/$tfile
2711 (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2712 egrep -c "l_ost_idx: [02]$") == "2" )) ||
2713 error "expected l_ost_idx: [02]$ not matched"
2715 # make sure ost list has been cleared
2716 local stripesize=$($LFS getstripe -S $DIR/$tdir)
2717 $LFS setstripe -S $((stripesize * 4)) -i 1 \
2718 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2720 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2722 run_test 27H "Set specific OSTs stripe"
2725 [ $PARALLEL == "yes" ] && skip "skip parallel run"
2726 [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2727 [[ $MDS1_VERSION -gt $(version_code 2.12.52) ]] ||
2728 skip "Need MDS version newer than 2.12.52"
2729 local pool=$TESTNAME
2730 local ostrange="1 1 1"
2732 save_layout_restore_at_exit $MOUNT
2733 $LFS setstripe -c 2 -i 0 $MOUNT
2734 pool_add $pool || error "pool_add failed"
2735 pool_add_targets $pool $ostrange ||
2736 error "pool_add_targets failed"
2737 test_mkdir $DIR/$tdir
2738 $LFS setstripe -p $pool $DIR/$tdir
2739 $MULTIOP $DIR/$tdir/$tfile Oc || error "multiop failed"
2740 $LFS getstripe $DIR/$tdir/$tfile
2742 run_test 27I "check that root dir striping does not break parent dir one"
2745 [[ $MDS1_VERSION -le $(version_code 2.12.51) ]] &&
2746 skip "Need MDS version newer than 2.12.51"
2748 test_mkdir $DIR/$tdir
2749 local uuid1=$(cat /proc/sys/kernel/random/uuid)
2750 local uuid2=$(cat /proc/sys/kernel/random/uuid)
2752 # create foreign file (raw way)
2753 ! $LFS setstripe --flags 0xda08 $DIR/$tdir/$tfile ||
2754 error "creating $tfile w/ hex flags w/o --foreign should fail"
2756 ! $LFS setstripe --foreign --flags foo \
2757 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2758 error "creating $tfile with '--flags foo' should fail"
2760 ! $LFS setstripe --foreign --flags 0xffffffff \
2761 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tfile ||
2762 error "creating $tfile w/ 0xffffffff flags should fail"
2764 create_foreign_file -f $DIR/$tdir/$tfile -x "${uuid1}@${uuid2}" \
2765 -t 1 -F 0xda08 || error "create_foreign_file failed"
2767 # verify foreign file (raw way)
2768 parse_foreign_file -f $DIR/$tdir/$tfile |
2769 grep "lov_foreign_magic: 0x0BD70BD0" ||
2770 error "$DIR/$tdir/$tfile: invalid LOV EA foreign magic"
2771 parse_foreign_file -f $DIR/$tdir/$tfile | grep "lov_xattr_size: 89" ||
2772 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2773 parse_foreign_file -f $DIR/$tdir/$tfile |
2774 grep "lov_foreign_size: 73" ||
2775 error "$DIR/$tdir/$tfile: invalid LOV EA foreign size"
2776 parse_foreign_file -f $DIR/$tdir/$tfile |
2777 grep "lov_foreign_type: 1" ||
2778 error "$DIR/$tdir/$tfile: invalid LOV EA foreign type"
2779 parse_foreign_file -f $DIR/$tdir/$tfile |
2780 grep "lov_foreign_flags: 0x0000DA08" ||
2781 error "$DIR/$tdir/$tfile: invalid LOV EA foreign flags"
2782 local lov=$(parse_foreign_file -f $DIR/$tdir/$tfile |
2783 grep "lov_foreign_value: 0x" |
2784 sed -e 's/lov_foreign_value: 0x//')
2785 local lov2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160)
2786 [[ $lov = ${lov2// /} ]] ||
2787 error "$DIR/$tdir/$tfile: invalid LOV EA foreign value"
2789 # create foreign file (lfs + API)
2790 $LFS setstripe --foreign=none --flags 0xda08 \
2791 -x "${uuid1}@${uuid2}" $DIR/$tdir/${tfile}2 ||
2792 error "$DIR/$tdir/${tfile}2: create failed"
2794 $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2795 grep "lfm_magic:.*0x0BD70BD0" ||
2796 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign magic"
2797 # lfm_length is LOV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2798 $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_length:.*73" ||
2799 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign size"
2800 $LFS getstripe -v $DIR/$tdir/${tfile}2 | grep "lfm_type:.*none" ||
2801 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign type"
2802 $LFS getstripe -v $DIR/$tdir/${tfile}2 |
2803 grep "lfm_flags:.*0x0000DA08" ||
2804 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign flags"
2805 $LFS getstripe $DIR/$tdir/${tfile}2 |
2806 grep "lfm_value:.*${uuid1}@${uuid2}" ||
2807 error "$DIR/$tdir/${tfile}2: invalid LOV EA foreign value"
2809 # modify striping should fail
2810 $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
2811 error "$DIR/$tdir/$tfile: setstripe should fail"
2812 $LFS setstripe -c 2 $DIR/$tdir/${tfile}2 &&
2813 error "$DIR/$tdir/${tfile}2: setstripe should fail"
2816 cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
2817 cat $DIR/$tdir/${tfile}2 &&
2818 error "$DIR/$tdir/${tfile}2: read should fail"
2819 cat /etc/passwd > $DIR/$tdir/$tfile &&
2820 error "$DIR/$tdir/$tfile: write should fail"
2821 cat /etc/passwd > $DIR/$tdir/${tfile}2 &&
2822 error "$DIR/$tdir/${tfile}2: write should fail"
2825 chmod 222 $DIR/$tdir/$tfile ||
2826 error "$DIR/$tdir/$tfile: chmod failed"
2827 chmod 222 $DIR/$tdir/${tfile}2 ||
2828 error "$DIR/$tdir/${tfile}2: chmod failed"
2831 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tfile ||
2832 error "$DIR/$tdir/$tfile: chown failed"
2833 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}2 ||
2834 error "$DIR/$tdir/${tfile}2: chown failed"
2836 # rename should work
2837 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
2838 error "$DIR/$tdir/$tfile: rename of foreign file has failed"
2839 mv $DIR/$tdir/${tfile}2 $DIR/$tdir/${tfile}2.new ||
2840 error "$DIR/$tdir/${tfile}2: rename of foreign file has failed"
2842 #remove foreign file
2843 rm $DIR/$tdir/${tfile}.new ||
2844 error "$DIR/$tdir/${tfile}.new: remove of foreign file has failed"
2845 rm $DIR/$tdir/${tfile}2.new ||
2846 error "$DIR/$tdir/${tfile}2.new: remove of foreign file has failed"
2848 run_test 27J "basic ops on file with foreign LOV"
2851 [[ $MDS1_VERSION -le $(version_code 2.12.49) ]] &&
2852 skip "Need MDS version newer than 2.12.49"
2854 test_mkdir $DIR/$tdir
2855 local uuid1=$(cat /proc/sys/kernel/random/uuid)
2856 local uuid2=$(cat /proc/sys/kernel/random/uuid)
2858 # create foreign dir (raw way)
2859 ! $LFS setdirstripe --flags 0xda08 $DIR/$tdir/$tdir ||
2860 error "creating $tdir w/ hex flags w/o --foreign should fail"
2862 ! $LFS setdirstripe --foreign --flags foo \
2863 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2864 error "creating $tdir with '--flags foo' should fail"
2866 ! $LFS setdirstripe --foreign --flags 0xffffffff \
2867 --xattr ${uuid1}@${uuid2} $DIR/$tdir/$tdir ||
2868 error "creating $tdir w/ 0xffffffff flags should fail"
2870 create_foreign_dir -d $DIR/$tdir/$tdir -x "${uuid1}@${uuid2}" -t 1 ||
2871 error "create_foreign_dir FAILED"
2873 # verify foreign dir (raw way)
2874 parse_foreign_dir -d $DIR/$tdir/$tdir |
2875 grep "lmv_foreign_magic:.*0xcd50cd0" ||
2876 error "$DIR/$tdir/$tfile: invalid LMV EA magic"
2877 parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_xattr_size:.*89$" ||
2878 error "$DIR/$tdir/$tdir: invalid LMV EA size"
2879 parse_foreign_dir -d $DIR/$tdir/$tdir | grep "lmv_foreign_type: 1$" ||
2880 error "$DIR/$tdir/$tdir: invalid LMV EA type"
2881 parse_foreign_dir -d $DIR/$tdir/$tdir |
2882 grep "lmv_foreign_flags: 55813$" ||
2883 error "$DIR/$tdir/$tdir: invalid LMV EA flags"
2884 local lmv=$(parse_foreign_dir -d $DIR/$tdir/$tdir |
2885 grep "lmv_foreign_value: 0x" |
2886 sed 's/lmv_foreign_value: 0x//')
2887 local lmv2=$(echo -n "${uuid1}@${uuid2}" | od -A n -t x1 -w160 |
2889 [[ $lmv == $lmv2 ]] || error "$DIR/$tdir/$tdir: invalid LMV EA value"
2891 # create foreign dir (lfs + API)
2892 $LFS mkdir --foreign=none --xattr="${uuid1}@${uuid2}" --flags=0xda05 \
2893 $DIR/$tdir/${tdir}2 ||
2894 error "$DIR/$tdir/${tdir}2: create failed"
2896 $LFS getdirstripe -v $DIR/$tdir/${tdir}2
2898 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2899 grep "lfm_magic:.*0x0CD50CD0" ||
2900 error "$DIR/$tdir/${tdir}2: invalid LMV EA magic"
2901 # lfm_length is LMV EA size - sizeof(lfm_magic) - sizeof(lfm_length)
2902 # - sizeof(lfm_type) - sizeof(lfm_flags)
2903 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_length:.*73" ||
2904 error "$DIR/$tdir/${tdir}2: invalid LMV EA size"
2905 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 | grep "lfm_type:.*none" ||
2906 error "$DIR/$tdir/${tdir}2: invalid LMV EA type"
2907 $LFS getdirstripe -v $DIR/$tdir/${tdir}2 |
2908 grep "lfm_flags:.*0x0000DA05" ||
2909 error "$DIR/$tdir/${tdir}2: invalid LMV EA flags"
2910 $LFS getdirstripe $DIR/$tdir/${tdir}2 |
2911 grep "lfm_value.*${uuid1}@${uuid2}" ||
2912 error "$DIR/$tdir/${tdir}2: invalid LMV EA value"
2914 # file create in dir should fail
2915 touch $DIR/$tdir/$tdir/$tfile && error "$DIR/$tdir: file create should fail"
2916 touch $DIR/$tdir/${tdir}2/$tfile &&
2917 error "$DIR/${tdir}2: file create should fail"
2920 chmod 777 $DIR/$tdir/$tdir ||
2921 error "$DIR/$tdir: chmod failed"
2922 chmod 777 $DIR/$tdir/${tdir}2 ||
2923 error "$DIR/${tdir}2: chmod failed"
2926 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/$tdir ||
2927 error "$DIR/$tdir: chown failed"
2928 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}2 ||
2929 error "$DIR/${tdir}2: chown failed"
2931 # rename should work
2932 mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
2933 error "$DIR/$tdir/$tdir: rename of foreign dir has failed"
2934 mv $DIR/$tdir/${tdir}2 $DIR/$tdir/${tdir}2.new ||
2935 error "$DIR/$tdir/${tdir}2: rename of foreign dir has failed"
2938 rmdir $DIR/$tdir/${tdir}.new ||
2939 error "$DIR/$tdir/${tdir}.new: remove of foreign dir has failed"
2940 rmdir $DIR/$tdir/${tdir}2.new ||
2941 error "$DIR/$tdir/${tdir}2.new: remove of foreign dir has failed"
2943 run_test 27K "basic ops on dir with foreign LMV"
2946 remote_mds_nodsh && skip "remote MDS with nodsh"
2948 local POOL=${POOL:-$TESTNAME}
2950 pool_add $POOL || error "pool_add failed"
2952 lfs pool_list $MOUNT | grep -Fx "${FSNAME}.${POOL}" ||
2953 error "pool_list does not contain ${FSNAME}.${POOL}:" \
2954 "$(lfs pool_list $MOUNT | grep -F "${POOL}")"
2956 run_test 27L "lfs pool_list gives correct pool name"
2959 [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.12.57) ]] &&
2960 skip "Need MDS version >= than 2.12.57"
2961 remote_mds_nodsh && skip "remote MDS with nodsh"
2962 [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2964 # Set default striping on directory
2967 local mdts=$(comma_list $(mdts_nodes))
2969 # if we run against a 2.12 server which lacks overstring support
2970 # then the connect_flag will not report overstriping, even if client
2972 if [[ $($LCTL get_param mdc.*.connect_flags) =~ overstriping ]]; then
2973 stripe_opt="-C $setcount"
2974 elif (( $OSTCOUNT >= $setcount )); then
2975 stripe_opt="-c $setcount"
2977 skip "server does not support overstriping"
2980 test_mkdir $DIR/$tdir
2982 # Validate existing append_* params and ensure restore
2983 local pool=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_pool)
2984 [[ "$pool" == "" ]] || error "expected append_pool == '', got '$pool'"
2985 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool=none"
2987 local orig_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
2988 ((orig_count == 1)) || error "expected append_stripe_count == 1, got $orig_count"
2989 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1"
2991 $LFS setstripe $stripe_opt $DIR/$tdir
2993 echo 1 > $DIR/$tdir/${tfile}.1
2994 local count=$($LFS getstripe -c $DIR/$tdir/${tfile}.1)
2995 [ $count -eq $setcount ] ||
2996 error "(1) stripe count $count, should be $setcount"
2998 local appendcount=$orig_count
2999 echo 1 >> $DIR/$tdir/${tfile}.2_append
3000 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.2_append)
3001 [ $count -eq $appendcount ] ||
3002 error "(2)stripe count $count, should be $appendcount for append"
3004 # Disable O_APPEND striping, verify it works
3005 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3007 # Should now get the default striping, which is 4
3009 echo 1 >> $DIR/$tdir/${tfile}.3_append
3010 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.3_append)
3011 [ $count -eq $setcount ] ||
3012 error "(3) stripe count $count, should be $setcount"
3014 # Try changing the stripe count for append files
3015 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
3017 # Append striping is now 2 (directory default is still 4)
3019 echo 1 >> $DIR/$tdir/${tfile}.4_append
3020 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.4_append)
3021 [ $count -eq $appendcount ] ||
3022 error "(4) stripe count $count, should be $appendcount for append"
3024 # Test append stripe count of -1
3025 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=-1
3026 appendcount=$OSTCOUNT
3027 echo 1 >> $DIR/$tdir/${tfile}.5
3028 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.5)
3029 [ $count -eq $appendcount ] ||
3030 error "(5) stripe count $count, should be $appendcount for append"
3032 # Set append striping back to default of 1
3033 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1
3035 # Try a new default striping, PFL + DOM
3036 $LFS setstripe -L mdt -E 1M -E -1 -c 2 $DIR/$tdir
3038 # Create normal DOM file, DOM returns stripe count == 0
3040 touch $DIR/$tdir/${tfile}.6
3041 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.6)
3042 [ $count -eq $setcount ] ||
3043 error "(6) stripe count $count, should be $setcount"
3047 echo 1 >> $DIR/$tdir/${tfile}.7_append
3048 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.7_append)
3049 [ $count -eq $appendcount ] ||
3050 error "(7) stripe count $count, should be $appendcount for append"
3052 # Clean up DOM layout
3053 $LFS setstripe -d $DIR/$tdir
3055 save_layout_restore_at_exit $MOUNT
3056 # Now test that append striping works when layout is from root
3057 $LFS setstripe -c 2 $MOUNT
3058 # Make a special directory for this
3059 mkdir $DIR/${tdir}/${tdir}.2
3061 # Verify for normal file
3063 echo 1 > $DIR/${tdir}/${tdir}.2/${tfile}.8
3064 count=$($LFS getstripe -c $DIR/$tdir/${tdir}.2/${tfile}.8)
3065 [ $count -eq $setcount ] ||
3066 error "(8) stripe count $count, should be $setcount"
3069 echo 1 >> $DIR/${tdir}/${tdir}.2/${tfile}.9_append
3070 count=$($LFS getstripe -c $DIR/${tdir}/${tdir}.2/${tfile}.9_append)
3071 [ $count -eq $appendcount ] ||
3072 error "(9) stripe count $count, should be $appendcount for append"
3074 # Now test O_APPEND striping with pools
3075 pool_add $TESTNAME || error "pool creation failed"
3076 pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
3077 do_nodes $mdts $LCTL set_param mdd.*.append_pool="$TESTNAME"
3079 echo 1 >> $DIR/$tdir/${tfile}.10_append
3081 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.10_append)
3082 [ "$pool" = "$TESTNAME" ] || error "(10) incorrect pool: $pool"
3084 # Check that count is still correct
3086 echo 1 >> $DIR/$tdir/${tfile}.11_append
3087 count=$($LFS getstripe -c $DIR/$tdir/${tfile}.11_append)
3088 [ $count -eq $appendcount ] ||
3089 error "(11) stripe count $count, should be $appendcount for append"
3091 # Disable O_APPEND stripe count, verify pool works separately
3092 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
3094 echo 1 >> $DIR/$tdir/${tfile}.12_append
3096 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.12_append)
3097 [ "$pool" = "$TESTNAME" ] || error "(12) incorrect pool: $pool"
3099 # Remove pool setting, verify it's not applied
3100 do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'
3102 echo 1 >> $DIR/$tdir/${tfile}.13_append
3104 pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.13_append)
3105 [ "$pool" = "" ] || error "(13) pool found: $pool"
3107 run_test 27M "test O_APPEND striping"
3110 combined_mgs_mds && skip "needs separate MGS/MDT"
3112 pool_add $TESTNAME || error "pool_add failed"
3113 do_facet mgs "$LCTL pool_list $FSNAME" |
3114 grep -Fx "${FSNAME}.${TESTNAME}" ||
3115 error "lctl pool_list on MGS failed"
3117 run_test 27N "lctl pool_list on separate MGS gives correct pool name"
3119 clean_foreign_symlink() {
3121 lctl set_param llite/$FSNAME-*/foreign_symlink_enable=0
3122 for i in $DIR/$tdir/* ; do
3123 $LFS unlink_foreign $i || true
3128 [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.51) ]] &&
3129 skip "Need MDS version newer than 2.12.51"
3131 test_mkdir $DIR/$tdir
3132 local uuid1=$(cat /proc/sys/kernel/random/uuid)
3133 local uuid2=$(cat /proc/sys/kernel/random/uuid)
3135 trap clean_foreign_symlink EXIT
3137 # enable foreign_symlink behaviour
3138 $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3140 # foreign symlink LOV format is a partial path by default
3142 # create foreign file (lfs + API)
3143 $LFS setstripe --foreign=symlink --flags 0xda05 \
3144 -x "${uuid1}/${uuid2}" --mode 0600 $DIR/$tdir/${tfile} ||
3145 error "$DIR/$tdir/${tfile}: create failed"
3147 $LFS getstripe -v $DIR/$tdir/${tfile} |
3148 grep "lfm_magic:.*0x0BD70BD0" ||
3149 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign magic"
3150 $LFS getstripe -v $DIR/$tdir/${tfile} | grep "lfm_type:.*symlink" ||
3151 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign type"
3152 $LFS getstripe -v $DIR/$tdir/${tfile} |
3153 grep "lfm_flags:.*0x0000DA05" ||
3154 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign flags"
3155 $LFS getstripe $DIR/$tdir/${tfile} |
3156 grep "lfm_value:.*${uuid1}/${uuid2}" ||
3157 error "$DIR/$tdir/${tfile}: invalid LOV EA foreign value"
3159 # modify striping should fail
3160 $LFS setstripe -c 2 $DIR/$tdir/$tfile &&
3161 error "$DIR/$tdir/$tfile: setstripe should fail"
3163 # R/W should fail ("/{foreign_symlink_prefix}/${uuid1}/" missing)
3164 cat $DIR/$tdir/$tfile && error "$DIR/$tdir/$tfile: read should fail"
3165 cat /etc/passwd > $DIR/$tdir/$tfile &&
3166 error "$DIR/$tdir/$tfile: write should fail"
3168 # rename should succeed
3169 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}.new ||
3170 error "$DIR/$tdir/$tfile: rename has failed"
3172 #remove foreign_symlink file should fail
3173 rm $DIR/$tdir/${tfile}.new &&
3174 error "$DIR/$tdir/${tfile}.new: remove of foreign_symlink file should fail"
3177 mkdir /tmp/${uuid1} ||
3178 error "/tmp/${uuid1}: mkdir has failed"
3179 echo FOOFOO > /tmp/${uuid1}/${uuid2} ||
3180 error "/tmp/${uuid1}/${uuid2}: echo has failed"
3181 $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3182 $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tfile}.new ||
3183 error "$DIR/$tdir/${tfile}.new: not seen as a symlink"
3184 #read should succeed now
3185 cat $DIR/$tdir/${tfile}.new | grep FOOFOO ||
3186 error "$DIR/$tdir/${tfile}.new: symlink resolution has failed"
3187 #write should succeed now
3188 cat /etc/passwd > $DIR/$tdir/${tfile}.new ||
3189 error "$DIR/$tdir/${tfile}.new: write should succeed"
3190 diff /etc/passwd $DIR/$tdir/${tfile}.new ||
3191 error "$DIR/$tdir/${tfile}.new: diff has failed"
3192 diff /etc/passwd /tmp/${uuid1}/${uuid2} ||
3193 error "/tmp/${uuid1}/${uuid2}: diff has failed"
3195 #check that getstripe still works
3196 $LFS getstripe $DIR/$tdir/${tfile}.new ||
3197 error "$DIR/$tdir/${tfile}.new: getstripe should still work with foreign_symlink enabled"
3199 # chmod should still succeed
3200 chmod 644 $DIR/$tdir/${tfile}.new ||
3201 error "$DIR/$tdir/${tfile}.new: chmod has failed"
3203 # chown should still succeed
3204 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tfile}.new ||
3205 error "$DIR/$tdir/${tfile}.new: chown has failed"
3207 # rename should still succeed
3208 mv $DIR/$tdir/${tfile}.new $DIR/$tdir/${tfile} ||
3209 error "$DIR/$tdir/${tfile}.new: rename has failed"
3211 #remove foreign_symlink file should still fail
3212 rm $DIR/$tdir/${tfile} &&
3213 error "$DIR/$tdir/${tfile}: remove of foreign_symlink file should fail"
3215 #use special ioctl() to unlink foreign_symlink file
3216 $LFS unlink_foreign $DIR/$tdir/${tfile} ||
3217 error "$DIR/$tdir/$tfile: unlink/ioctl failed"
3220 run_test 27O "basic ops on foreign file of symlink type"
3223 [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.12.49) ]] &&
3224 skip "Need MDS version newer than 2.12.49"
3226 test_mkdir $DIR/$tdir
3227 local uuid1=$(cat /proc/sys/kernel/random/uuid)
3228 local uuid2=$(cat /proc/sys/kernel/random/uuid)
3230 trap clean_foreign_symlink EXIT
3232 # enable foreign_symlink behaviour
3233 $LCTL set_param llite/$FSNAME-*/foreign_symlink_enable=1
3235 # foreign symlink LMV format is a partial path by default
3237 # create foreign dir (lfs + API)
3238 $LFS mkdir --foreign=symlink --xattr="${uuid1}/${uuid2}" \
3239 --flags=0xda05 --mode 0750 $DIR/$tdir/${tdir} ||
3240 error "$DIR/$tdir/${tdir}: create failed"
3242 $LFS getdirstripe -v $DIR/$tdir/${tdir}
3244 $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3245 grep "lfm_magic:.*0x0CD50CD0" ||
3246 error "$DIR/$tdir/${tdir}: invalid LMV EA magic"
3247 $LFS getdirstripe -v $DIR/$tdir/${tdir} | grep "lfm_type:.*symlink" ||
3248 error "$DIR/$tdir/${tdir}: invalid LMV EA type"
3249 $LFS getdirstripe -v $DIR/$tdir/${tdir} |
3250 grep "lfm_flags:.*0x0000DA05" ||
3251 error "$DIR/$tdir/${tdir}: invalid LMV EA flags"
3252 $LFS getdirstripe $DIR/$tdir/${tdir} |
3253 grep "lfm_value.*${uuid1}/${uuid2}" ||
3254 error "$DIR/$tdir/${tdir}: invalid LMV EA value"
3256 # file create in dir should fail
3257 # ("/{foreign_symlink_prefix}/${uuid1}/${uuid2}/" missing)
3258 touch $DIR/$tdir/$tdir/$tfile && error "$DIR/$tdir: file create should fail"
3260 # rename should succeed
3261 mv $DIR/$tdir/$tdir $DIR/$tdir/${tdir}.new ||
3262 error "$DIR/$tdir/$tdir: rename of foreign_symlink dir has failed"
3264 #remove foreign_symlink dir should fail
3265 rmdir $DIR/$tdir/${tdir}.new &&
3266 error "$DIR/$tdir/${tdir}.new: remove of foreign_symlink dir should fail"
3269 mkdir -p /tmp/${uuid1}/${uuid2} ||
3270 error "/tmp/${uuid1}/${uuid2}: mkdir has failed"
3271 echo FOOFOO > /tmp/${uuid1}/${uuid2}/foo ||
3272 error "/tmp/${uuid1}/${uuid2}/foo: echo has failed"
3273 $LCTL set_param llite/$FSNAME-*/foreign_symlink_prefix=/tmp/
3274 $CHECKSTAT -t link -l /tmp/${uuid1}/${uuid2} $DIR/$tdir/${tdir}.new ||
3275 error "$DIR/$tdir/${tdir}.new: not seen as a symlink"
3276 cat $DIR/$tdir/${tdir}.new/foo | grep FOOFOO ||
3277 error "$DIR/$tdir/${tdir}.new: symlink resolution has failed"
3279 #check that getstripe fails now that foreign_symlink enabled
3280 $LFS getdirstripe $DIR/$tdir/${tdir}.new ||
3281 error "$DIR/$tdir/${tdir}.new: getdirstripe should still work with foreign_symlink enabled"
3283 # file create in dir should work now
3284 cp /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3285 error "$DIR/$tdir/${tdir}.new/$tfile: file create should fail"
3286 diff /etc/passwd $DIR/$tdir/${tdir}.new/$tfile ||
3287 error "$DIR/$tdir/${tdir}.new/$tfile: diff has failed"
3288 diff /etc/passwd /tmp/${uuid1}/${uuid2}/$tfile ||
3289 error "/tmp/${uuid1}/${uuid2}/$tfile: diff has failed"
3291 # chmod should still succeed
3292 chmod 755 $DIR/$tdir/${tdir}.new ||
3293 error "$DIR/$tdir/${tdir}.new: chmod has failed"
3295 # chown should still succeed
3296 chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/${tdir}.new ||
3297 error "$DIR/$tdir/${tdir}.new: chown has failed"
3299 # rename should still succeed
3300 mv $DIR/$tdir/${tdir}.new $DIR/$tdir/${tdir} ||
3301 error "$DIR/$tdir/${tdir}.new: rename of foreign_symlink dir has failed"
3303 #remove foreign_symlink dir should still fail
3304 rmdir $DIR/$tdir/${tdir} &&
3305 error "$DIR/$tdir/${tdir}: remove of foreign_symlink dir should fail"
3307 #use special ioctl() to unlink foreign_symlink file
3308 $LFS unlink_foreign $DIR/$tdir/${tdir} ||
3309 error "$DIR/$tdir/$tdir: unlink/ioctl failed"
3311 #created file should still exist
3312 [[ -f /tmp/${uuid1}/${uuid2}/$tfile ]] ||
3313 error "/tmp/${uuid1}/${uuid2}/$tfile has been removed"
3314 diff /etc/passwd /tmp/${uuid1}/${uuid2}/$tfile ||
3315 error "/tmp/${uuid1}/${uuid2}/$tfile: diff has failed"
3317 run_test 27P "basic ops on foreign dir of foreign_symlink type"
3320 rm -f $TMP/$tfile $TMP/$tfile.loop $TMP/$tfile.none $TMP/$tfile.broken
3321 stack_trap "rm -f $TMP/$tfile*"
3323 test_mkdir $DIR/$tdir-1
3324 test_mkdir $DIR/$tdir-2
3326 echo 'It is what it is' > $DIR/$tdir-1/$tfile
3327 lov_getstripe_old $DIR/$tdir-1/$tfile || error "$DIR/$tdir-1/$tfile: rc = $?"
3329 ln -s $DIR/$tdir-1/$tfile $DIR/$tdir-2/$tfile
3330 lov_getstripe_old $DIR/$tdir-2/$tfile || error "$DIR/$tdir-2/$tfile: rc = $?"
3332 ln -s $DIR/$tdir-1/$tfile $TMP/$tfile
3333 lov_getstripe_old $TMP/$tfile || error "$TMP/$tfile: rc = $?"
3335 # Create some bad symlinks and ensure that we don't loop
3336 # forever or something. These should return ELOOP (40) and
3337 # ENOENT (2) but I don't want to test for that because there's
3338 # always some weirdo architecture that needs to ruin
3339 # everything by defining these error numbers differently.
3341 ln -s $TMP/$tfile.loop $TMP/$tfile.loop
3342 lov_getstripe_old $TMP/$tfile.loop && error "$TMP/$tfile.loop: rc = $?"
3344 ln -s $TMP/$tfile.none $TMP/$tfile.broken
3345 lov_getstripe_old $TMP/$tfile.broken && error "$TMP/$tfile.broken: rc = $?"
3349 run_test 27Q "llapi_file_get_stripe() works on symlinks"
3352 (( $MDS1_VERSION >= $(version_code 2.14.55) )) ||
3353 skip "need MDS 2.14.55 or later"
3354 (( $OSTCOUNT >= 2 )) || skip_env "needs at least 2 OSTs"
3356 local testdir="$DIR/$tdir"
3357 test_mkdir -p $testdir
3358 stack_trap "rm -rf $testdir"
3359 $LFS setstripe -c -1 $testdir || error "setstripe failed"
3361 local f1="$testdir/f1"
3362 touch $f1 || error "failed to touch $f1"
3363 local count=$($LFS getstripe -c $f1)
3364 (( $count == $OSTCOUNT )) || error "wrong stripe count"
3366 do_facet $SINGLEMDS $LCTL set_param lod.*.max_stripecount=-1
3367 (( $? == 34 )) || error "setting max_stripecount to -1 should fail and return ERANGE"
3369 local maxcount=$(($OSTCOUNT - 1))
3370 local mdts=$(comma_list $(mdts_nodes))
3371 do_nodes $mdts $LCTL set_param lod.*.max_stripecount=$maxcount
3372 stack_trap "do_nodes $mdts $LCTL set_param lod.*.max_stripecount=0"
3374 local f2="$testdir/f2"
3375 touch $f2 || error "failed to touch $f2"
3376 local count=$($LFS getstripe -c $f2)
3377 (( $count == $maxcount )) || error "wrong stripe count"
3379 run_test 27R "test max_stripecount limitation when stripe count is set to -1"
3382 [ $(facet_host client) == $(facet_host ost1) ] &&
3383 skip "need ost1 and client on different nodes"
3385 #define OBD_FAIL_OSC_NO_GRANT 0x411
3386 $LCTL set_param fail_loc=0x20000411 fail_val=1
3387 #define OBD_FAIL_OST_ENOSPC 0x215
3388 do_facet ost1 "$LCTL set_param fail_loc=0x80000215"
3389 $LFS setstripe -i 0 -c 1 $DIR/$tfile
3390 $MULTIOP $DIR/$tfile oO_WRONLY:P$((4 * 1024 * 1024 + 10 * 4096))c ||
3391 error "multiop failed"
3393 run_test 27T "no eio on close on partial write due to enosp"
3396 local dir=$DIR/$tdir
3397 local file=$dir/$tfile
3398 local append_pool=${TESTNAME}-append
3399 local normal_pool=${TESTNAME}-normal
3403 local mdts=$(comma_list $(mdts_nodes))
3406 # (( $MDS1_VERSION >= $(version_code 2.15.42) )) ||
3407 # skip "Need MDS version at least 2.15.42"
3409 # Validate existing append_* params and ensure restore
3410 pool=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_pool)
3411 [[ "$pool" == "" ]] || error "expected append_pool == '', got '$pool'"
3412 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool=none"
3414 stripe_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
3415 ((stripe_count == 1)) || error "expected append_stripe_count != 0, got $stripe_count"
3416 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=$stripe_count"
3418 pool_add $append_pool || error "pool creation failed"
3419 pool_add_targets $append_pool 0 1 || error "Pool add targets failed"
3421 pool_add $normal_pool || error "pool creation failed"
3422 pool_add_targets $normal_pool 0 1 || error "Pool add targets failed"
3425 $LFS setstripe -E 1M -c 1 -p $normal_pool -E 2M -c 2 -p $normal_pool -E eof -c -1 $dir
3428 $LFS getstripe $file.1
3430 pool=$($LFS getstripe -p $file.1)
3431 [[ "$pool" == "$normal_pool" ]] || error "got pool '$pool', expected '$normal_pool'"
3433 stripe_count2=$($LFS getstripe -c $file.1)
3434 ((stripe_count2 == stripe_count)) ||
3435 error "got stripe_count '$stripe_count2', expected '$stripe_count'"
3437 do_nodes $mdts $LCTL set_param mdd.*.append_pool=$append_pool
3440 $LFS getstripe $file.2
3442 pool=$($LFS getstripe -p $file.2)
3443 [[ "$pool" == "$append_pool" ]] || error "got pool '$pool', expected '$append_pool'"
3445 do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
3448 $LFS getstripe $file.3
3450 stripe_count2=$($LFS getstripe -c $file.3)
3451 ((stripe_count2 == 2)) || error "got stripe_count '$stripe_count2', expected 2"
3453 run_test 27U "append pool and stripe count work with composite default layout"
3455 # createtest also checks that device nodes are created and
3456 # then visible correctly (#2091)
3457 test_28() { # bug 2091
3459 $CREATETEST $DIR/d28/ct || error "createtest failed"
3461 run_test 28 "create/mknod/mkdir with bad file types ============"
3464 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3466 [ $MDS1_VERSION -ge $(version_code 2.14.51) ] && {
3468 stack_trap "restore_opencache"
3471 sync; sleep 1; sync # flush out any dirty pages from previous tests
3478 declare -i LOCKCOUNTORIG=0
3479 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
3480 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
3482 [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
3484 declare -i LOCKUNUSEDCOUNTORIG=0
3485 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3486 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
3493 declare -i LOCKCOUNTCURRENT=0
3494 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
3495 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
3498 declare -i LOCKUNUSEDCOUNTCURRENT=0
3499 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
3500 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
3503 if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
3504 $LCTL set_param -n ldlm.dump_namespaces ""
3505 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
3506 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3507 log "dumped log to $TMP/test_29.dk (bug 5793)"
3510 if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
3511 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
3512 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
3513 log "dumped log to $TMP/test_29.dk (bug 5793)"
3517 run_test 29 "IT_GETATTR regression ============================"
3519 test_30a() { # was test_30
3520 cp $(which ls) $DIR || cp /bin/ls $DIR
3521 $DIR/ls / || error "Can't execute binary from lustre"
3524 run_test 30a "execute binary from Lustre (execve) =============="
3527 cp `which ls` $DIR || cp /bin/ls $DIR
3529 $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
3532 run_test 30b "execute binary from Lustre as non-root ==========="
3534 test_30c() { # b=22376
3535 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3537 cp $(which ls) $DIR || cp /bin/ls $DIR
3539 cancel_lru_locks mdc
3540 cancel_lru_locks osc
3541 $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
3544 run_test 30c "execute binary from Lustre without read perms ===="
3547 cp $(which dd) $DIR || error "failed to copy dd to $DIR/dd"
3549 for i in {1..10}; do
3550 $DIR/dd bs=1M count=128 if=/dev/zero of=$DIR/$tfile &
3553 $LCTL set_param ldlm.namespaces.*MDT*.lru_size=clear
3554 wait $PID || error "executing dd from Lustre failed"
3560 run_test 30d "execute binary from Lustre while clear locks"
3563 $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
3564 $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
3566 run_test 31a "open-unlink file =================================="
3569 touch $DIR/f31 || error "touch $DIR/f31 failed"
3570 ln $DIR/f31 $DIR/f31b || error "ln failed"
3571 $MULTIOP $DIR/f31b Ouc || error "multiop failed"
3572 $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
3574 run_test 31b "unlink file with multiple links while open ======="
3577 touch $DIR/f31 || error "touch $DIR/f31 failed"
3578 ln $DIR/f31 $DIR/f31c || error "ln failed"
3579 multiop_bg_pause $DIR/f31 O_uc ||
3580 error "multiop_bg_pause for $DIR/f31 failed"
3582 $MULTIOP $DIR/f31c Ouc
3583 kill -USR1 $MULTIPID
3586 run_test 31c "open-unlink file with multiple links ============="
3589 opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
3590 $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
3592 run_test 31d "remove of open directory ========================="
3594 test_31e() { # bug 2904
3595 openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
3597 run_test 31e "remove of open non-empty directory ==============="
3599 test_31f() { # bug 4554
3600 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3603 test_mkdir $DIR/d31f
3604 $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3605 cp /etc/hosts $DIR/d31f
3607 $LFS getstripe $DIR/d31f/hosts
3608 multiop_bg_pause $DIR/d31f D_c || return 1
3611 rm -rv $DIR/d31f || error "first of $DIR/d31f"
3612 test_mkdir $DIR/d31f
3613 $LFS setstripe -S 1048576 -c 1 $DIR/d31f
3614 cp /etc/hosts $DIR/d31f
3616 $LFS getstripe $DIR/d31f/hosts
3617 multiop_bg_pause $DIR/d31f D_c || return 1
3620 kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
3621 wait $MULTIPID || error "first opendir $MULTIPID failed"
3625 kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
3626 wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
3629 run_test 31f "remove of open directory with open-unlink file ==="
3632 echo "-- cross directory link --"
3633 test_mkdir -c1 $DIR/${tdir}ga
3634 test_mkdir -c1 $DIR/${tdir}gb
3635 touch $DIR/${tdir}ga/f
3636 ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
3637 $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
3638 [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
3639 $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
3640 [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
3642 run_test 31g "cross directory link==============="
3645 echo "-- cross directory link --"
3646 test_mkdir -c1 $DIR/${tdir}
3647 test_mkdir -c1 $DIR/${tdir}/dir
3648 touch $DIR/${tdir}/f
3649 ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
3650 $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
3651 [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
3652 $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
3653 [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
3655 run_test 31h "cross directory link under child==============="
3658 echo "-- cross directory link --"
3659 test_mkdir -c1 $DIR/$tdir
3660 test_mkdir -c1 $DIR/$tdir/dir
3661 touch $DIR/$tdir/dir/f
3662 ln $DIR/$tdir/dir/f $DIR/$tdir/g
3663 $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
3664 [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
3665 $CHECKSTAT -t file $DIR/$tdir/g || error "target"
3666 [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
3668 run_test 31i "cross directory link under parent==============="
3671 test_mkdir -c1 -p $DIR/$tdir
3672 test_mkdir -c1 -p $DIR/$tdir/dir1
3673 ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
3674 link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
3675 mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
3676 mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
3679 run_test 31j "link for directory==============="
3682 test_mkdir -c1 -p $DIR/$tdir
3684 touch $DIR/$tdir/exist
3685 mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
3686 mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
3687 mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
3688 mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
3689 mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
3690 mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
3691 mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
3694 run_test 31k "link to file: the same, non-existing, dir==============="
3700 touch $DIR/d31m2/exist
3701 mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
3702 mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
3703 mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
3704 mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
3705 mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
3706 mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
3709 run_test 31m "link to file: the same, non-existing, dir==============="
3712 touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
3713 nlink=$(stat --format=%h $DIR/$tfile)
3714 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3716 local cmd="exec $fd<$DIR/$tfile"
3719 trap "eval $cmd" EXIT
3720 nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3721 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
3722 rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
3723 nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
3724 [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
3727 run_test 31n "check link count of unlinked file"
3730 local tempfile=$(mktemp $1_XXXXXX)
3731 mlink $tempfile $1 2> /dev/null &&
3732 echo "$BASHPID: link $tempfile to $1 succeeded"
3736 test_31o() { # LU-2901
3737 test_mkdir $DIR/$tdir
3738 for LOOP in $(seq 100); do
3739 rm -f $DIR/$tdir/$tfile*
3740 for THREAD in $(seq 8); do
3741 link_one $DIR/$tdir/$tfile.$LOOP &
3744 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
3745 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
3746 error "$LINKS duplicate links to $tfile.$LOOP" &&
3750 run_test 31o "duplicate hard links with same filename"
3753 [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3755 test_mkdir $DIR/$tdir
3756 $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3757 $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
3759 opendirunlink $DIR/$tdir/striped_dir/test1 ||
3760 error "open unlink test1 failed"
3761 opendirunlink $DIR/$tdir/striped_dir/test2 ||
3762 error "open unlink test2 failed"
3764 $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
3765 error "test1 still exists"
3766 $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
3767 error "test2 still exists"
3769 run_test 31p "remove of open striped directory"
3772 [ $MDSCOUNT -lt 3 ] && skip_env "needs >= 3 MDTs"
3774 $LFS mkdir -i 3,1 $DIR/$tdir || error "mkdir failed"
3775 index=$($LFS getdirstripe -i $DIR/$tdir)
3776 [ $index -eq 3 ] || error "first stripe index $index != 3"
3777 index=$($LFS getdirstripe $DIR/$tdir | tail -1 | awk '{print $1}')
3778 [ $index -eq 1 ] || error "second stripe index $index != 1"
3780 # when "-c <stripe_count>" is set, the number of MDTs specified after
3781 # "-i" should equal to the stripe count
3782 $LFS mkdir -i 3,1 -c 3 $DIR/$tdir.2 && error "mkdir should fail" || true
3784 run_test 31q "create striped directory on specific MDTs"
3788 touch $DIR/$tfile.target
3789 touch $DIR/$tfile.source
3791 #OBD_FAIL_LLITE_OPEN_DELAY 0x1419
3792 $LCTL set_param fail_loc=0x1419 fail_val=3
3793 cat $DIR/$tfile.target &
3796 # Guarantee open is waiting before we get here
3798 mv $DIR/$tfile.source $DIR/$tfile.target
3802 if [[ $RC -ne 0 ]]; then
3803 error "open with cat failed, rc=$RC"
3806 run_test 31r "open-rename(replace) race"
3808 cleanup_test32_mount() {
3811 local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
3812 $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
3813 losetup -d $loopdev || true
3819 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3821 echo "== more mountpoints and symlinks ================="
3822 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3823 trap cleanup_test32_mount EXIT
3824 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3825 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3826 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3827 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
3828 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
3829 cleanup_test32_mount
3831 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
3834 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3836 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3837 trap cleanup_test32_mount EXIT
3838 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3839 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3840 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3841 ls -al $DIR/$tdir/ext2-mountpoint/.. ||
3842 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
3843 cleanup_test32_mount
3845 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
3848 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3850 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3851 trap cleanup_test32_mount EXIT
3852 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3853 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3854 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3855 test_mkdir -p $DIR/$tdir/d2/test_dir
3856 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3857 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
3858 cleanup_test32_mount
3860 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
3863 [ $PARALLEL == "yes" ] && skip "skip parallel run"
3865 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3866 trap cleanup_test32_mount EXIT
3867 test_mkdir -p $DIR/$tdir/ext2-mountpoint
3868 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3869 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3870 test_mkdir -p $DIR/$tdir/d2/test_dir
3871 ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
3872 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
3873 cleanup_test32_mount
3875 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
3879 test_mkdir -p $DIR/$tdir/tmp
3880 local tmp_dir=$DIR/$tdir/tmp
3881 ln -s $DIR/$tdir $tmp_dir/symlink11
3882 ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3883 $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
3884 $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
3886 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
3890 test_mkdir -p $DIR/$tdir/tmp
3891 local tmp_dir=$DIR/$tdir/tmp
3892 ln -s $DIR/$tdir $tmp_dir/symlink11
3893 ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
3894 ls $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
3895 ls $DIR/$tdir/symlink01 || error "symlink01 bad"
3897 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
3900 local tmp_dir=$DIR/$tdir/tmp
3901 test_mkdir -p $tmp_dir
3902 test_mkdir $DIR/${tdir}2