2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 5188
12 ALWAYS_EXCEPT=" 42a 42b 42c 42d 45 68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036 LU-8411
17 ALWAYS_EXCEPT=" 76 407 $ALWAYS_EXCEPT"
21 if [ -r /etc/SuSE-release ]
23 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
24 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
26 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
33 if is_sles11; then # LU-4341
34 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
37 SRCDIR=$(cd $(dirname $0); echo $PWD)
38 export PATH=$PATH:/sbin
43 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
44 CREATETEST=${CREATETEST:-createtest}
46 LFIND=${LFIND:-"$LFS find"}
47 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
49 OPENFILE=${OPENFILE:-openfile}
50 OPENUNLINK=${OPENUNLINK:-openunlink}
51 export MULTIOP=${MULTIOP:-multiop}
52 READS=${READS:-"reads"}
53 MUNLINK=${MUNLINK:-munlink}
54 SOCKETSERVER=${SOCKETSERVER:-socketserver}
55 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
56 MEMHOG=${MEMHOG:-memhog}
57 DIRECTIO=${DIRECTIO:-directio}
58 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
60 CHECK_GRANT=${CHECK_GRANT:-"yes"}
61 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
62 export PARALLEL=${PARALLEL:-"no"}
64 export NAME=${NAME:-local}
71 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
72 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
73 . $LUSTRE/tests/test-framework.sh
75 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24D 27m 64b 68 71 115 300o"
81 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
82 # bug number for skipped test: LU-4536 LU-1957
83 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 65ic 180"
85 [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
92 pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
93 cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
102 check_swap_layouts_support()
104 $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
105 { skip "Does not support layout lock."; return 0; }
109 check_and_setup_lustre
113 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
114 awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
115 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
118 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
119 rm -rf $DIR/[Rdfs][0-9]*
121 # $RUNAS_ID may get set incorrectly somewhere else
122 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
128 if [ "${ONLY}" = "MOUNT" ] ; then
129 echo "Lustre is up, please go on"
133 echo "preparing for tests involving mounts"
134 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
137 echo # add a newline after mke2fs.
141 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
142 lctl set_param debug=-1 2> /dev/null || true
145 $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
147 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
149 run_test 0a "touch; rm ====================="
152 chmod 0755 $DIR || error "chmod 0755 $DIR failed"
153 $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
155 run_test 0b "chmod 0755 $DIR ============================="
158 $LCTL get_param mdc.*.import | grep "state: FULL" ||
159 error "import not FULL"
160 $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
163 run_test 0c "check import proc ============================="
166 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
167 test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
168 test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
169 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
172 $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
174 run_test 1 "mkdir; remkdir; rmdir =============================="
177 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
178 touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
179 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
181 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
183 run_test 2 "mkdir; touch; rmdir; check file ===================="
186 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
187 $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
188 touch $DIR/$tdir/$tfile
189 $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
191 $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
193 run_test 3 "mkdir; touch; rmdir; check dir ====================="
195 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
199 test_mkdir $DIR/$tdir ||
200 error "Create remote directory failed"
202 touch $DIR/$tdir/$tfile ||
203 error "Create file under remote directory failed"
206 error "Expect error removing in-use dir $DIR/$tdir"
208 test -d $DIR/$tdir || error "Remote directory disappeared"
210 rm -rf $DIR/$tdir || error "remove remote dir error"
212 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
215 test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
216 test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
217 chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
218 $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
219 $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
221 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
224 touch $DIR/$tfile || error "touch $DIR/$tfile failed"
225 chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
226 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
227 error "$tfile does not have perm 0666 or UID $UID"
228 $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
229 $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
230 error "$tfile should be 0666 and owned by UID $UID"
232 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
235 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
237 chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
238 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
239 error "$tfile should be owned by UID $RUNAS_ID"
240 $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
241 $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
242 error "$tfile should be owned by UID $RUNAS_ID"
244 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
247 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
249 chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
250 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
251 error "$tfile should be owned by GID $UID"
252 $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
253 $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
254 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
256 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
259 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
260 test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
261 chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
262 $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
263 chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
264 test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
265 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
266 error "$tdir/d/subdir should be GID $RUNAS_GID"
267 if [[ $MDSCOUNT -gt 1 ]]; then
268 # check remote dir sgid inherite
269 $LFS mkdir -i 0 $DIR/$tdir.local ||
270 error "mkdir $tdir.local failed"
271 chmod g+s $DIR/$tdir.local ||
272 error "chmod $tdir.local failed"
273 chgrp $RUNAS_GID $DIR/$tdir.local ||
274 error "chgrp $tdir.local failed"
275 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
276 error "mkdir $tdir.remote failed"
277 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
278 error "$tdir.remote should be owned by $UID.$RUNAS_ID"
279 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
280 error "$tdir.remote should be mode 02755"
283 run_test 6g "Is new dir in sgid dir inheriting group?"
285 test_6h() { # bug 7331
286 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
287 touch $DIR/$tfile || error "touch failed"
288 chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
289 $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
290 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
291 $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
292 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
294 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
297 test_mkdir $DIR/$tdir
298 $MCREATE $DIR/$tdir/$tfile
299 chmod 0666 $DIR/$tdir/$tfile
300 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
301 error "$tdir/$tfile should be mode 0666"
303 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
306 if [ ! -d $DIR/$tdir ]; then
307 test_mkdir $DIR/$tdir
309 $MCREATE $DIR/$tdir/$tfile
310 echo -n foo > $DIR/$tdir/$tfile
311 [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
312 $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
314 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
317 test_mkdir $DIR/$tdir
318 touch $DIR/$tdir/$tfile
319 chmod 0666 $DIR/$tdir/$tfile
320 $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
321 error "$tfile mode not 0666"
323 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
326 test_mkdir $DIR/$tdir
327 test_mkdir $DIR/$tdir/d2
328 test_mkdir $DIR/$tdir/d2/d3
329 $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
331 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
334 test_mkdir $DIR/$tdir
335 test_mkdir $DIR/$tdir/d2
336 touch $DIR/$tdir/d2/$tfile
337 $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
338 error "$tdir/d2/$tfile not a file"
340 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
343 test_mkdir $DIR/$tdir
344 test_mkdir $DIR/$tdir/d2
345 chmod 0666 $DIR/$tdir/d2
346 chmod 0705 $DIR/$tdir/d2
347 $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
348 error "$tdir/d2 mode not 0705"
350 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
353 test_mkdir $DIR/$tdir
354 touch $DIR/$tdir/$tfile
355 chmod 0666 $DIR/$tdir/$tfile
356 chmod 0654 $DIR/$tdir/$tfile
357 $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
358 error "$tdir/d2 mode not 0654"
360 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
363 test_mkdir $DIR/$tdir
364 dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
366 $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
367 error "$tdir/$tfile size not 0 after truncate"
369 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
372 test_mkdir $DIR/$tdir
373 touch $DIR/$tdir/$tfile
375 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
377 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
380 test_mkdir $DIR/$tdir
381 touch $DIR/$tdir/$tfile
382 mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
383 $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
384 error "$tdir/${tfile_2} not a file after rename"
385 rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
387 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
390 test_mkdir $DIR/$tdir
391 touch $DIR/$tdir/$tfile
392 rm -rf $DIR/$tdir/$tfile
393 $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
395 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
398 test_mkdir -p $DIR/$tdir
399 touch $DIR/$tdir/$tfile
400 ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
402 $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
403 error "$tdir/l-exist not a symlink"
404 $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
405 error "$tdir/l-exist not referencing a file"
406 rm -f $DIR/$tdir/l-exist
407 $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
409 run_test 17a "symlinks: create, remove (real) =================="
412 test_mkdir -p $DIR/$tdir
413 ln -s no-such-file $DIR/$tdir/l-dangle
415 $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
416 error "$tdir/l-dangle not referencing no-such-file"
417 $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
418 error "$tdir/l-dangle not referencing non-existent file"
419 rm -f $DIR/$tdir/l-dangle
420 $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
422 run_test 17b "symlinks: create, remove (dangling) =============="
424 test_17c() { # bug 3440 - don't save failed open RPC for replay
425 test_mkdir -p $DIR/$tdir
426 ln -s foo $DIR/$tdir/$tfile
427 cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
429 run_test 17c "symlinks: open dangling (should return error) ===="
432 test_mkdir -p $DIR/$tdir
433 ln -s foo $DIR/$tdir/$tfile
434 touch $DIR/$tdir/$tfile || error "creating to new symlink"
436 run_test 17d "symlinks: create dangling ========================"
439 test_mkdir -p $DIR/$tdir
440 local foo=$DIR/$tdir/$tfile
441 ln -s $foo $foo || error "create symlink failed"
442 ls -l $foo || error "ls -l failed"
443 ls $foo && error "ls not failed" || true
445 run_test 17e "symlinks: create recursive symlink (should return error) ===="
448 test_mkdir -p $DIR/$tdir
449 ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
450 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
451 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
452 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
453 ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
454 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
457 run_test 17f "symlinks: long and very long symlink name ========================"
459 # str_repeat(S, N) generate a string that is string S repeated N times
464 while [ $((n -= 1)) -ge 0 ]; do
470 # Long symlinks and LU-2241
472 test_mkdir -p $DIR/$tdir
473 local TESTS="59 60 61 4094 4095"
475 # Fix for inode size boundary in 2.1.4
476 [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
479 # Patch not applied to 2.2 or 2.3 branches
480 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
481 [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
484 # skip long symlink name for rhel6.5.
485 # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
486 grep -q '6.5' /etc/redhat-release &>/dev/null &&
487 TESTS="59 60 61 4062 4063"
490 local SYMNAME=$(str_repeat 'x' $i)
491 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
492 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
495 run_test 17g "symlinks: really long symlink name and inode boundaries"
497 test_17h() { #bug 17378
498 remote_mds_nodsh && skip "remote MDS with nodsh" && return
499 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
501 test_mkdir -p $DIR/$tdir
502 if [[ $MDSCOUNT -gt 1 ]]; then
503 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
507 $SETSTRIPE -c -1 $DIR/$tdir
508 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
509 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
510 touch $DIR/$tdir/$tfile || true
512 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
514 test_17i() { #bug 20018
515 remote_mds_nodsh && skip "remote MDS with nodsh" && return
516 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
517 test_mkdir -c1 $DIR/$tdir
518 local foo=$DIR/$tdir/$tfile
520 if [[ $MDSCOUNT -gt 1 ]]; then
521 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
525 ln -s $foo $foo || error "create symlink failed"
526 #define OBD_FAIL_MDS_READLINK_EPROTO 0x143
527 do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
528 ls -l $foo && error "error not detected"
531 run_test 17i "don't panic on short symlink"
533 test_17k() { #bug 22301
534 [[ -z "$(which rsync 2>/dev/null)" ]] &&
535 skip "no rsync command" && return 0
536 rsync --help | grep -q xattr ||
537 skip_env "$(rsync --version | head -n1) does not support xattrs"
538 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
539 test_mkdir -p $DIR/$tdir
540 test_mkdir -p $DIR/$tdir.new
541 touch $DIR/$tdir/$tfile
542 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
543 rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
544 error "rsync failed with xattrs enabled"
546 run_test 17k "symlinks: rsync with xattrs enabled ========================="
548 test_17l() { # LU-279
549 [[ -z "$(which getfattr 2>/dev/null)" ]] &&
550 skip "no getfattr command" && return 0
551 test_mkdir -p $DIR/$tdir
552 touch $DIR/$tdir/$tfile
553 ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
554 for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
555 # -h to not follow symlinks. -m '' to list all the xattrs.
556 # grep to remove first line: '# file: $path'.
557 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
559 lgetxattr_size_check $path $xattr ||
560 error "lgetxattr_size_check $path $xattr failed"
564 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
568 local short_sym="0123456789"
569 local WDIR=$DIR/${tdir}m
572 remote_mds_nodsh && skip "remote MDS with nodsh" && return
573 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
574 [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
575 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
577 [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
578 skip "only for ldiskfs MDT" && return 0
580 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
584 # create a long symlink file
585 for ((i = 0; i < 4; ++i)); do
586 long_sym=${long_sym}${long_sym}
589 echo "create 512 short and long symlink files under $WDIR"
590 for ((i = 0; i < 256; ++i)); do
591 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
592 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
598 wait_delete_completed
600 echo "recreate the 512 symlink files with a shorter string"
601 for ((i = 0; i < 512; ++i)); do
602 # rewrite the symlink file with a shorter string
603 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
604 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
607 local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
608 local devname=$(mdsdevname $mds_index)
610 echo "stop and checking mds${mds_index}:"
611 # e2fsck should not return error
613 run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
616 start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
617 df $MOUNT > /dev/null 2>&1
619 error "e2fsck detected error for short/long symlink: rc=$rc"
621 run_test 17m "run e2fsck against MDT which contains short/long symlink"
623 check_fs_consistency_17n() {
627 # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
628 # so it only check MDT1/MDT2 instead of all of MDTs.
629 for mdt_index in 1 2; do
630 local devname=$(mdsdevname $mdt_index)
631 # e2fsck should not return error
633 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
636 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
637 error "mount mds$mdt_index failed"
638 df $MOUNT > /dev/null 2>&1
646 remote_mds_nodsh && skip "remote MDS with nodsh" && return
647 [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
648 [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
649 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
651 [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
652 skip "only for ldiskfs MDT" && return 0
654 [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
656 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
658 test_mkdir $DIR/$tdir
659 for ((i=0; i<10; i++)); do
660 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
661 error "create remote dir error $i"
662 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
663 error "create files under remote dir failed $i"
666 check_fs_consistency_17n ||
667 error "e2fsck report error after create files under remote dir"
669 for ((i = 0; i < 10; i++)); do
670 rm -rf $DIR/$tdir/remote_dir_${i} ||
671 error "destroy remote dir error $i"
674 check_fs_consistency_17n ||
675 error "e2fsck report error after unlink files under remote dir"
677 [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
678 skip "lustre < 2.4.50 does not support migrate mv " && return
680 for ((i = 0; i < 10; i++)); do
681 mkdir -p $DIR/$tdir/remote_dir_${i}
682 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
683 error "create files under remote dir failed $i"
684 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
685 error "migrate remote dir error $i"
687 check_fs_consistency_17n || error "e2fsck report error after migration"
689 for ((i = 0; i < 10; i++)); do
690 rm -rf $DIR/$tdir/remote_dir_${i} ||
691 error "destroy remote dir error $i"
694 check_fs_consistency_17n || error "e2fsck report error after unlink"
696 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
699 remote_mds_nodsh && skip "remote MDS with nodsh" && return
700 [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
701 skip "Need MDS version at least 2.3.64" && return
703 local WDIR=$DIR/${tdir}o
708 mdt_index=$($LFS getstripe -M $WDIR)
709 mdt_index=$((mdt_index+1))
713 #fail mds will wait the failover finish then set
714 #following fail_loc to avoid interfer the recovery process.
717 #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
718 do_facet mds${mdt_index} lctl set_param fail_loc=0x194
719 ls -l $WDIR/$tfile && rc=1
720 do_facet mds${mdt_index} lctl set_param fail_loc=0
721 [[ $rc -ne 0 ]] && error "stat file should fail"
724 run_test 17o "stat file with incompat LMA feature"
727 touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
728 ls $DIR || error "Failed to ls $DIR: $?"
730 run_test 18 "touch .../f ; ls ... =============================="
736 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
738 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
741 ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
743 run_test 19b "ls -l .../f19 (should return error) =============="
746 [ $RUNAS_ID -eq $UID ] &&
747 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
748 $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
750 run_test 19c "$RUNAS touch .../f19 (should return error) =="
753 cat $DIR/f19 && error || true
755 run_test 19d "cat .../f19 (should return error) =============="
767 $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
769 run_test 20 "touch .../f ; ls -l ... ==========================="
772 test_mkdir -p $DIR/$tdir
773 [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
774 ln -s dangle $DIR/$tdir/link
775 echo foo >> $DIR/$tdir/link
776 cat $DIR/$tdir/dangle
777 $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
778 $CHECKSTAT -f -t file $DIR/$tdir/link ||
779 error "$tdir/link not linked to a file"
781 run_test 21 "write to dangling link ============================"
785 test_mkdir -p $DIR/$tdir
786 chown $RUNAS_ID:$RUNAS_GID $WDIR
787 (cd $WDIR || error "cd $WDIR failed";
788 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
790 ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
791 $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
792 $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
794 run_test 22 "unpack tar archive as non-root user ==============="
798 test_mkdir -p $DIR/$tdir
799 local file=$DIR/$tdir/$tfile
801 openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
802 openfile -f O_CREAT:O_EXCL $file &&
803 error "$file recreate succeeded" || true
805 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
807 test_23b() { # bug 18988
808 test_mkdir -p $DIR/$tdir
809 local file=$DIR/$tdir/$tfile
812 echo foo > $file || error "write filed"
813 echo bar >> $file || error "append filed"
814 $CHECKSTAT -s 8 $file || error "wrong size"
817 run_test 23b "O_APPEND check =========================="
821 echo '-- same directory rename'
822 test_mkdir $DIR/$tdir
823 touch $DIR/$tdir/$tfile.1
824 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
825 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
827 run_test 24a "rename file to non-existent target"
830 test_mkdir $DIR/$tdir
831 touch $DIR/$tdir/$tfile.{1,2}
832 mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
833 $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
834 $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
836 run_test 24b "rename file to existing target"
839 test_mkdir $DIR/$tdir
840 test_mkdir $DIR/$tdir/d$testnum.1
841 mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
842 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
843 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
845 run_test 24c "rename directory to non-existent target"
848 test_mkdir -c1 $DIR/$tdir
849 test_mkdir -c1 $DIR/$tdir/d$testnum.1
850 test_mkdir -c1 $DIR/$tdir/d$testnum.2
851 mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
852 $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
853 $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
855 run_test 24d "rename directory to existing target"
858 echo '-- cross directory renames --'
862 mv $DIR/R5a/f $DIR/R5b/g
863 $CHECKSTAT -a $DIR/R5a/f || error
864 $CHECKSTAT -t file $DIR/R5b/g || error
866 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
871 touch $DIR/R6a/f $DIR/R6b/g
872 mv $DIR/R6a/f $DIR/R6b/g
873 $CHECKSTAT -a $DIR/R6a/f || error
874 $CHECKSTAT -t file $DIR/R6b/g || error
876 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
881 test_mkdir $DIR/R7a/d
882 mv $DIR/R7a/d $DIR/R7b/e
883 $CHECKSTAT -a $DIR/R7a/d || error
884 $CHECKSTAT -t dir $DIR/R7b/e || error
886 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
889 test_mkdir -c1 $DIR/R8a
890 test_mkdir -c1 $DIR/R8b
891 test_mkdir -c1 $DIR/R8a/d
892 test_mkdir -c1 $DIR/R8b/e
893 mrename $DIR/R8a/d $DIR/R8b/e
894 $CHECKSTAT -a $DIR/R8a/d || error
895 $CHECKSTAT -t dir $DIR/R8b/e || error
897 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
900 echo "-- rename error cases"
904 mrename $DIR/R9/f $DIR/R9/a
905 $CHECKSTAT -t file $DIR/R9/f || error
906 $CHECKSTAT -t dir $DIR/R9/a || error
907 $CHECKSTAT -a $DIR/R9/a/f || error
909 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
913 mrename $DIR/R10/f $DIR/R10/g
914 $CHECKSTAT -t dir $DIR/R10 || error
915 $CHECKSTAT -a $DIR/R10/f || error
916 $CHECKSTAT -a $DIR/R10/g || error
918 run_test 24j "source does not exist ============================"
922 test_mkdir $DIR/R11a/d
924 mv $DIR/R11a/f $DIR/R11a/d
925 $CHECKSTAT -a $DIR/R11a/f || error
926 $CHECKSTAT -t file $DIR/R11a/d/f || error
928 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
930 # bug 2429 - rename foo foo foo creates invalid file
933 $MULTIOP $f OcNs || error
935 run_test 24l "Renaming a file to itself ========================"
939 $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
940 # on ext3 this does not remove either the source or target files
941 # though the "expected" operation would be to remove the source
942 $CHECKSTAT -t file ${f} || error "${f} missing"
943 $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
945 run_test 24m "Renaming a file to a hard link to itself ========="
949 # this stats the old file after it was renamed, so it should fail
953 $CHECKSTAT ${f}.rename
956 run_test 24n "Statting the old file after renaming (Posix rename 2)"
959 test_mkdir -p $DIR/d24o
960 rename_many -s random -v -n 10 $DIR/d24o
962 run_test 24o "rename of files during htree split ==============="
967 DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
968 mrename $DIR/R12a $DIR/R12b
969 $CHECKSTAT -a $DIR/R12a || error
970 $CHECKSTAT -t dir $DIR/R12b || error
971 DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
972 [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
974 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
976 cleanup_multiop_pause() {
982 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
985 local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
986 multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
989 trap cleanup_multiop_pause EXIT
990 mrename $DIR/R13a $DIR/R13b
991 $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
992 $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
993 local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
994 [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
995 cleanup_multiop_pause
996 wait $MULTIPID || error "multiop close failed"
998 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1000 test_24r() { #bug 3789
1001 test_mkdir $DIR/R14a
1002 test_mkdir $DIR/R14a/b
1003 mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1004 $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1005 $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1007 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1010 test_mkdir $DIR/R15a
1011 test_mkdir $DIR/R15a/b
1012 test_mkdir $DIR/R15a/b/c
1013 mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1014 $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1015 $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1017 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1019 test_mkdir $DIR/R16a
1020 test_mkdir $DIR/R16a/b
1021 test_mkdir $DIR/R16a/b/c
1022 mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1023 $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1024 $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1026 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1028 test_24u() { # bug12192
1029 $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1030 $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1032 run_test 24u "create stripe file"
1036 size=$(getconf PAGE_SIZE 2>/dev/null)
1037 echo -n ${size:-4096}
1040 simple_cleanup_common() {
1043 wait_delete_completed
1046 max_pages_per_rpc() {
1047 $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1051 local NRFILES=100000
1052 local FREE_INODES=$(mdt_free_inodes 0)
1053 [[ $FREE_INODES -lt $NRFILES ]] &&
1054 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1057 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1058 trap simple_cleanup_common EXIT
1060 # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1061 [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1063 test_mkdir -p $DIR/$tdir
1064 createmany -m $DIR/$tdir/$tfile $NRFILES
1066 cancel_lru_locks mdc
1067 lctl set_param mdc.*.stats clear
1069 ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1071 # LU-5 large readdir
1072 # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1073 # 8 bytes for name(filename is mostly 5 in this test) +
1074 # 8 bytes for luda_type
1075 # take into account of overhead in lu_dirpage header and end mark in
1076 # each page, plus one in RPC_NUM calculation.
1078 RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1079 RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1080 mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1081 awk '/^mds_readpage/ {print $2}')
1082 [[ $mds_readpage -gt $RPC_NUM ]] &&
1083 error "large readdir doesn't take effect"
1085 simple_cleanup_common
1087 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1089 test_24w() { # bug21506
1091 dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1092 dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1093 dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1094 SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1095 [[ "$SZ1" -eq "$SZ2" ]] ||
1096 error "Error reading at the end of the file $tfile"
1098 run_test 24w "Reading a file larger than 4Gb"
1101 [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1103 [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1104 skip "Need MDS version at least 2.7.56" && return
1106 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1108 local remote_dir=$DIR/$tdir/remote_dir
1110 test_mkdir -p $DIR/$tdir
1111 $LFS mkdir -i $MDTIDX $remote_dir ||
1112 error "create remote directory failed"
1114 test_mkdir -p $DIR/$tdir/src_dir
1115 touch $DIR/$tdir/src_file
1116 test_mkdir -p $remote_dir/tgt_dir
1117 touch $remote_dir/tgt_file
1119 mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1120 error "rename dir cross MDT failed!"
1122 mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1123 error "rename file cross MDT failed!"
1125 touch $DIR/$tdir/ln_file
1126 ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1127 error "ln file cross MDT failed"
1129 rm -rf $DIR/$tdir || error "Can not delete directories"
1131 run_test 24x "cross MDT rename/link"
1134 [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1135 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1137 local remote_dir=$DIR/$tdir/remote_dir
1139 test_mkdir -p $DIR/$tdir
1140 $LFS mkdir -i $MDTIDX $remote_dir ||
1141 error "create remote directory failed"
1143 test_mkdir -p $remote_dir/src_dir
1144 touch $remote_dir/src_file
1145 test_mkdir -p $remote_dir/tgt_dir
1146 touch $remote_dir/tgt_file
1148 mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1149 error "rename subdir in the same remote dir failed!"
1151 mrename $remote_dir/src_file $remote_dir/tgt_file ||
1152 error "rename files in the same remote dir failed!"
1154 ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1155 error "link files in the same remote dir failed!"
1157 rm -rf $DIR/$tdir || error "Can not delete directories"
1159 run_test 24y "rename/link on the same dir should succeed"
1161 test_24A() { # LU-3182
1165 test_mkdir -p $DIR/$tdir
1166 createmany -m $DIR/$tdir/$tfile $NFILES
1167 local t=$(ls $DIR/$tdir | wc -l)
1168 local u=$(ls $DIR/$tdir | sort -u | wc -l)
1169 local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1170 if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1171 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1174 rm -rf $DIR/$tdir || error "Can not delete directories"
1176 run_test 24A "readdir() returns correct number of entries."
1178 test_24B() { # LU-4805
1179 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1182 test_mkdir $DIR/$tdir
1183 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1184 error "create striped dir failed"
1186 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1187 [ $count -eq 2 ] || error "Expected 2, got $count"
1189 touch $DIR/$tdir/striped_dir/a
1191 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1192 [ $count -eq 3 ] || error "Expected 3, got $count"
1194 touch $DIR/$tdir/striped_dir/.f
1196 count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1197 [ $count -eq 4 ] || error "Expected 4, got $count"
1199 rm -rf $DIR/$tdir || error "Can not delete directories"
1201 run_test 24B "readdir for striped dir return correct number of entries"
1204 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1210 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1211 error "create striped dir failed"
1213 cd $DIR/$tdir/d0/striped_dir
1215 local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1216 local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1217 local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1219 [ "$d0_ino" = "$parent_ino" ] ||
1220 error ".. wrong, expect $d0_ino, get $parent_ino"
1222 mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1223 error "mv striped dir failed"
1225 parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1227 [ "$d1_ino" = "$parent_ino" ] ||
1228 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1230 run_test 24C "check .. in striped dir"
1232 test_24D() { # LU-6101
1237 createmany -m $DIR/$tdir/$tfile $NFILES
1238 local t=$(ls $DIR/$tdir | wc -l)
1239 local u=$(ls $DIR/$tdir | sort -u | wc -l)
1240 local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1241 if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1242 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1245 rm -rf $DIR/$tdir || error "Can not delete directories"
1247 run_test 24D "readdir() returns correct number of entries after cursor reload"
1250 [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1251 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1254 mkdir $DIR/$tdir/src_dir
1255 $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1256 error "create remote source failed"
1258 touch $DIR/$tdir/src_dir/src_child/a
1260 $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1261 error "create remote target dir failed"
1263 $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1264 error "create remote target child failed"
1266 mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1267 error "rename dir cross MDT failed!"
1271 $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1272 error "src_child still exists after rename"
1274 $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1275 error "missing file(a) after rename"
1277 rm -rf $DIR/$tdir || error "Can not delete directories"
1279 run_test 24E "cross MDT rename/link"
1282 echo '== symlink sanity ============================================='
1286 touch $DIR/s25/foo || error
1288 run_test 25a "create file in symlinked directory ==============="
1291 [ ! -d $DIR/d25 ] && test_25a
1292 $CHECKSTAT -t file $DIR/s25/foo || error
1294 run_test 25b "lookup file in symlinked directory ==============="
1298 test_mkdir $DIR/d26/d26-2
1299 ln -s d26/d26-2 $DIR/s26
1300 touch $DIR/s26/foo || error
1302 run_test 26a "multiple component symlink ======================="
1305 test_mkdir -p $DIR/d26b/d26-2
1306 ln -s d26b/d26-2/foo $DIR/s26-2
1307 touch $DIR/s26-2 || error
1309 run_test 26b "multiple component symlink at end of lookup ======"
1312 test_mkdir $DIR/d26.2
1313 touch $DIR/d26.2/foo
1314 ln -s d26.2 $DIR/s26.2-1
1315 ln -s s26.2-1 $DIR/s26.2-2
1316 ln -s s26.2-2 $DIR/s26.2-3
1317 chmod 0666 $DIR/s26.2-3/foo
1319 run_test 26c "chain of symlinks ================================"
1321 # recursive symlinks (bug 439)
1323 ln -s d26-3/foo $DIR/d26-3
1325 run_test 26d "create multiple component recursive symlink ======"
1328 [ ! -h $DIR/d26-3 ] && test_26d
1331 run_test 26e "unlink multiple component recursive symlink ======"
1333 # recursive symlinks (bug 7022)
1335 test_mkdir -p $DIR/$tdir
1336 test_mkdir $DIR/$tdir/$tfile || error "mkdir $DIR/$tdir/$tfile failed"
1337 cd $DIR/$tdir/$tfile || error "cd $DIR/$tdir/$tfile failed"
1338 test_mkdir -p lndir/bar1 || error "mkdir lndir/bar1 failed"
1339 test_mkdir $DIR/$tdir/$tfile/$tfile || error "mkdir $tfile failed"
1340 cd $tfile || error "cd $tfile failed"
1341 ln -s .. dotdot || error "ln dotdot failed"
1342 ln -s dotdot/lndir lndir || error "ln lndir failed"
1343 cd $DIR/$tdir || error "cd $DIR/$tdir failed"
1344 output=`ls $tfile/$tfile/lndir/bar1`
1345 [ "$output" = bar1 ] && error "unexpected output"
1346 rm -r $tfile || error "rm $tfile failed"
1347 $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1349 run_test 26f "rm -r of a directory which has recursive symlink ="
1352 echo '== stripe sanity =============================================='
1353 test_mkdir -p $DIR/d27 || error "mkdir failed"
1355 $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1356 $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1357 log "== test_27a: write to one stripe file ========================="
1358 cp /etc/hosts $DIR/d27/f0 || error
1360 run_test 27a "one stripe file =================================="
1363 [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1364 test_mkdir -p $DIR/d27
1365 $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1366 $GETSTRIPE -c $DIR/d27/f01
1367 [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1368 error "two-stripe file doesn't have two stripes"
1370 dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1372 run_test 27b "create and write to two stripe file"
1375 test_mkdir -p $DIR/d27
1376 $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1377 $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1378 dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1380 run_test 27d "create file with default settings ================"
1383 # LU-5839 adds check for existed layout before setting it
1384 [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1385 skip "Need MDS version at least 2.7.56" && return
1386 test_mkdir -p $DIR/d27
1387 $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1388 $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1389 $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1391 run_test 27e "setstripe existing file (should return error) ======"
1394 test_mkdir $DIR/$tdir
1395 $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1396 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1397 $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1398 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1399 dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1400 $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1402 run_test 27f "setstripe with bad stripe size (should return error)"
1405 test_mkdir -p $DIR/d27
1406 $MCREATE $DIR/d27/fnone || error "mcreate failed"
1407 $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1408 error "$DIR/d27/fnone has object"
1410 run_test 27g "$GETSTRIPE with no objects"
1413 test_mkdir $DIR/$tdir
1414 touch $DIR/$tdir/$tfile || error "touch failed"
1415 [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1416 error "missing objects"
1418 run_test 27i "$GETSTRIPE with some objects"
1421 test_mkdir -p $DIR/d27
1422 $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1424 run_test 27j "setstripe with bad stripe offset (should return error)"
1426 test_27k() { # bug 2844
1427 test_mkdir -p $DIR/d27
1429 LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1430 [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1431 $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1432 BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1433 [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1434 dd if=/dev/zero of=$FILE bs=4k count=1
1435 BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1436 [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1438 run_test 27k "limit i_blksize for broken user apps ============="
1441 test_mkdir -p $DIR/d27
1442 mcreate $DIR/f27l || error "creating file"
1443 $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1444 error "setstripe should have failed" || true
1446 run_test 27l "check setstripe permissions (should return error)"
1449 [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1452 ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1454 if [[ $ORIGFREE -gt $MAXFREE ]]; then
1455 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1458 trap simple_cleanup_common EXIT
1459 test_mkdir -p $DIR/$tdir
1460 $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1461 dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1462 error "dd should fill OST0"
1464 while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1466 [ $i -gt 256 ] && break
1469 touch $DIR/$tdir/f27m_$i
1470 [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1471 error "OST0 was full but new created file still use it"
1473 touch $DIR/$tdir/f27m_$i
1474 [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1475 error "OST0 was full but new created file still use it"
1476 simple_cleanup_common
1478 run_test 27m "create file while OST0 was full =================="
1481 local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1485 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1486 # if the OST isn't full anymore.
1488 local OSTIDX=${1:-""}
1490 local list=$(comma_list $(osts_nodes))
1491 [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1493 do_nodes $list lctl set_param fail_loc=0
1494 sync # initiate all OST_DESTROYs from MDS to OST
1498 exhaust_precreations() {
1501 local FAILIDX=${3:-$OSTIDX}
1502 local ofacet=ost$((OSTIDX + 1))
1504 test_mkdir -p -c1 $DIR/$tdir
1505 local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1506 local mfacet=mds$((mdtidx + 1))
1507 echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1509 local OST=$(ostname_from_index $OSTIDX)
1512 local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1513 local last_id=$(do_facet $mfacet lctl get_param -n \
1514 osc.$mdtosc_proc1.prealloc_last_id)
1515 local next_id=$(do_facet $mfacet lctl get_param -n \
1516 osc.$mdtosc_proc1.prealloc_next_id)
1518 local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1519 do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1521 test_mkdir -p $DIR/$tdir/${OST}
1522 $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1523 #define OBD_FAIL_OST_ENOSPC 0x215
1524 do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1525 echo "Creating to objid $last_id on ost $OST..."
1526 createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1527 do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1528 do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1532 exhaust_all_precreations() {
1534 for (( i=0; i < OSTCOUNT; i++ )) ; do
1535 exhaust_precreations $i $1 -1
1540 [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1541 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1542 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1543 remote_ost_nodsh && skip "remote OST with nodsh" && return
1546 rm -f $DIR/$tdir/$tfile
1547 exhaust_precreations 0 0x80000215
1548 $SETSTRIPE -c -1 $DIR/$tdir
1549 touch $DIR/$tdir/$tfile || error
1550 $GETSTRIPE $DIR/$tdir/$tfile
1553 run_test 27n "create file with some full OSTs =================="
1556 [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1557 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1558 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1559 remote_ost_nodsh && skip "remote OST with nodsh" && return
1562 rm -f $DIR/$tdir/$tfile
1563 exhaust_all_precreations 0x215
1565 touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1570 run_test 27o "create file with all full OSTs (should error) ===="
1573 [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1574 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1575 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1576 remote_ost_nodsh && skip "remote OST with nodsh" && return
1579 rm -f $DIR/$tdir/$tfile
1580 test_mkdir -p $DIR/$tdir
1582 $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1583 $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1584 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1586 exhaust_precreations 0 0x80000215
1587 echo foo >> $DIR/$tdir/$tfile || error "append failed"
1588 $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1589 $GETSTRIPE $DIR/$tdir/$tfile
1593 run_test 27p "append to a truncated file with some full OSTs ==="
1596 [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1597 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1598 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1599 remote_ost_nodsh && skip "remote OST with nodsh" && return
1602 rm -f $DIR/$tdir/$tfile
1604 test_mkdir -p $DIR/$tdir
1605 $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1606 $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1607 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1609 exhaust_all_precreations 0x215
1611 echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1612 $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1616 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1619 [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1620 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1621 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1622 remote_ost_nodsh && skip "remote OST with nodsh" && return
1625 rm -f $DIR/$tdir/$tfile
1626 exhaust_precreations 0 0x80000215
1628 $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1632 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1634 test_27s() { # bug 10725
1635 test_mkdir -p $DIR/$tdir
1636 local stripe_size=$((4096 * 1024 * 1024)) # 2^32
1637 local stripe_count=0
1638 [ $OSTCOUNT -eq 1 ] || stripe_count=2
1639 $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1640 error "stripe width >= 2^32 succeeded" || true
1643 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1645 test_27t() { # bug 10864
1650 $WLFS getstripe $tfile
1653 run_test 27t "check that utils parse path correctly"
1655 test_27u() { # bug 4900
1656 [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1657 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1659 local list=$(comma_list $(mdts_nodes))
1661 #define OBD_FAIL_MDS_OSC_PRECREATE 0x139
1662 do_nodes $list $LCTL set_param fail_loc=0x139
1663 test_mkdir -p $DIR/$tdir
1665 createmany -o $DIR/$tdir/t- 1000
1666 do_nodes $list $LCTL set_param fail_loc=0
1668 TLOG=$TMP/$tfile.getstripe
1669 $GETSTRIPE $DIR/$tdir > $TLOG
1670 OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1671 unlinkmany $DIR/$tdir/t- 1000
1672 [[ $OBJS -gt 0 ]] &&
1673 error "$OBJS objects created on OST-0. See $TLOG" || pass
1675 run_test 27u "skip object creation on OSC w/o objects =========="
1677 test_27v() { # bug 4900
1678 [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1679 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1680 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1681 remote_ost_nodsh && skip "remote OST with nodsh" && return
1683 exhaust_all_precreations 0x215
1686 test_mkdir -p $DIR/$tdir
1687 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe / file
1689 touch $DIR/$tdir/$tfile
1690 #define OBD_FAIL_TGT_DELAY_PRECREATE 0x705
1692 for (( i=1; i < OSTCOUNT; i++ )); do
1693 do_facet ost$i lctl set_param fail_loc=0x705
1695 local START=`date +%s`
1696 createmany -o $DIR/$tdir/$tfile 32
1698 local FINISH=`date +%s`
1699 local TIMEOUT=`lctl get_param -n timeout`
1700 local PROCESS=$((FINISH - START))
1701 [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1702 error "$FINISH - $START >= $TIMEOUT / 2"
1703 sleep $((TIMEOUT / 2 - PROCESS))
1706 run_test 27v "skip object creation on slow OST ================="
1708 test_27w() { # bug 10997
1709 test_mkdir -p $DIR/$tdir || error "mkdir failed"
1710 $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1711 [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1712 error "stripe size $size != 65536" || true
1713 [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1714 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1716 run_test 27w "check $SETSTRIPE -S option"
1719 [[ $OSTCOUNT -lt 2 ]] &&
1720 skip_env "skipping multiple stripe count/offset test" && return
1722 test_mkdir -p $DIR/$tdir || error "mkdir failed"
1723 for i in $(seq 1 $OSTCOUNT); do
1725 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1726 error "setstripe -c $i -i $offset failed"
1727 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1728 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1729 [ $count -ne $i ] && error "stripe count $count != $i" || true
1730 [ $index -ne $offset ] &&
1731 error "stripe offset $index != $offset" || true
1734 run_test 27wa "check $SETSTRIPE -c -i options"
1737 remote_ost_nodsh && skip "remote OST with nodsh" && return
1738 [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1739 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1740 OFFSET=$(($OSTCOUNT - 1))
1742 local OST=$(ostname_from_index $OSTIDX)
1744 test_mkdir -p $DIR/$tdir
1745 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe per file
1746 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1748 createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1749 for i in `seq 0 $OFFSET`; do
1750 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1751 error "OST0 was degraded but new created file still use it"
1753 do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1755 run_test 27x "create files while OST0 is degraded"
1758 [[ $OSTCOUNT -lt 2 ]] &&
1759 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1760 remote_mds_nodsh && skip "remote MDS with nodsh" && return
1761 remote_ost_nodsh && skip "remote OST with nodsh" && return
1762 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1764 local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1765 local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1766 osc.$mdtosc.prealloc_last_id)
1767 local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1768 osc.$mdtosc.prealloc_next_id)
1769 local fcount=$((last_id - next_id))
1770 [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1771 [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1773 local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1774 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1775 local OST_DEACTIVE_IDX=-1
1780 for OSC in $MDS_OSCS; do
1781 OST=$(osc_to_ost $OSC)
1782 OSTIDX=$(index_from_ostuuid $OST)
1783 if [ $OST_DEACTIVE_IDX == -1 ]; then
1784 OST_DEACTIVE_IDX=$OSTIDX
1786 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1787 echo $OSC "is Deactivated:"
1788 do_facet $SINGLEMDS lctl --device %$OSC deactivate
1792 OSTIDX=$(index_from_ostuuid $OST)
1793 test_mkdir -p $DIR/$tdir
1794 $SETSTRIPE -c 1 $DIR/$tdir # 1 stripe / file
1796 for OSC in $MDS_OSCS; do
1797 OST=$(osc_to_ost $OSC)
1798 OSTIDX=$(index_from_ostuuid $OST)
1799 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1800 echo $OST "is degraded:"
1801 do_facet ost$((OSTIDX+1)) lctl set_param -n \
1802 obdfilter.$OST.degraded=1
1807 createmany -o $DIR/$tdir/$tfile $fcount
1809 for OSC in $MDS_OSCS; do
1810 OST=$(osc_to_ost $OSC)
1811 OSTIDX=$(index_from_ostuuid $OST)
1812 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1813 echo $OST "is recovered from degraded:"
1814 do_facet ost$((OSTIDX+1)) lctl set_param -n \
1815 obdfilter.$OST.degraded=0
1817 do_facet $SINGLEMDS lctl --device %$OSC activate
1821 # all osp devices get activated, hence -1 stripe count restored
1824 # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1825 # devices get activated.
1827 $SETSTRIPE -c -1 $DIR/$tfile
1828 stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1830 [ $stripecnt -ne $OSTCOUNT ] &&
1831 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1834 run_test 27y "create files while OST0 is degraded and the rest inactive"
1840 lmm_count=$($GETSTRIPE -c $1)
1841 lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1842 lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1844 local old_ifs="$IFS"
1846 fid=($($LFS path2fid $1))
1849 log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1850 log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1852 # compare lmm_seq and lu_fid->f_seq
1853 [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1854 # compare lmm_object_id and lu_fid->oid
1855 [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1857 # check the trusted.fid attribute of the OST objects of the file
1858 local have_obdidx=false
1860 $GETSTRIPE $1 | while read obdidx oid hex seq; do
1861 # skip lines up to and including "obdidx"
1862 [ -z "$obdidx" ] && break
1863 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1864 $have_obdidx || continue
1866 local ost=$((obdidx + 1))
1867 local dev=$(ostdevname $ost)
1870 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1872 seq=$(echo $seq | sed -e "s/^0x//g")
1873 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1874 oid_hex=$(echo $oid)
1876 oid_hex=$(echo $hex | sed -e "s/^0x//g")
1878 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1882 # Don't unmount/remount the OSTs if we don't need to do that.
1883 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1884 # update too, until that use mount/ll_decode_filter_fid/mount.
1885 # Re-enable when debugfs will understand new filter_fid.
1887 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1888 ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1889 $dev 2>/dev/null" | grep "parent=")
1892 mount_fstype ost$ost
1893 ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1894 $(facet_mntpt ost$ost)/$obj_file)
1895 unmount_fstype ost$ost
1896 start ost$ost $dev $OST_MOUNT_OPTS
1900 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1902 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1904 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1905 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1906 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1907 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1908 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1910 if echo $ff_parent | grep -q 'stripe='; then
1911 ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1914 # $LL_DECODE_FILTER_FID does not print "stripe="; look
1915 # into f_ver in this case. See the comment on
1918 ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1922 # compare lmm_seq and filter_fid->ff_parent.f_seq
1923 [ $ff_pseq = $lmm_seq ] ||
1924 error "FF parent SEQ $ff_pseq != $lmm_seq"
1925 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1926 [ $ff_poid = $lmm_oid ] ||
1927 error "FF parent OID $ff_poid != $lmm_oid"
1928 (($ff_pstripe == $stripe_nr)) ||
1929 error "FF stripe $ff_pstripe != $stripe_nr"
1931 stripe_nr=$((stripe_nr + 1))
1936 remote_ost_nodsh && skip "remote OST with nodsh" && return
1937 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1938 test_mkdir -p $DIR/$tdir
1940 $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1941 { error "setstripe -c -1 failed"; return 1; }
1942 # We need to send a write to every object to get parent FID info set.
1943 # This _should_ also work for setattr, but does not currently.
1944 # touch $DIR/$tdir/$tfile-1 ||
1945 dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1946 { error "dd $tfile-1 failed"; return 2; }
1947 $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1948 { error "setstripe -c -1 failed"; return 3; }
1949 dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1950 { error "dd $tfile-2 failed"; return 4; }
1952 # make sure write RPCs have been sent to OSTs
1955 check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1956 check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1958 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1960 test_27A() { # b=19102
1961 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1962 local restore_size=$($GETSTRIPE -S $MOUNT)
1963 local restore_count=$($GETSTRIPE -c $MOUNT)
1964 local restore_offset=$($GETSTRIPE -i $MOUNT)
1965 $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1966 wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/ *//g'" "1" 20 ||
1967 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1968 local default_size=$($GETSTRIPE -S $MOUNT)
1969 local default_offset=$($GETSTRIPE -i $MOUNT)
1970 local dsize=$((1024 * 1024))
1971 [ $default_size -eq $dsize ] ||
1972 error "stripe size $default_size != $dsize"
1973 [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1974 $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1976 run_test 27A "check filesystem-wide default LOV EA values"
1978 test_27B() { # LU-2523
1979 test_mkdir -p $DIR/$tdir
1980 rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1982 # open f1 with O_LOV_DELAY_CREATE
1984 # call setstripe ioctl on open file descriptor for f1
1986 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1990 # open f1 with O_LOV_DELAY_CREATE
1992 # call setstripe ioctl on open file descriptor for f1
1994 multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1996 # Allow multiop to fail in imitation of NFS's busted semantics.
1999 run_test 27B "call setstripe on open unlinked file/rename victim"
2001 test_27C() { #LU-2871
2002 [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2010 test_mkdir -p $DIR/$tdir
2012 for i in $(seq 0 $((OSTCOUNT - 1))); do
2013 # set stripe across all OSTs starting from OST$i
2014 $SETSTRIPE -i $i -c -1 $tfile$i
2015 # get striping information
2016 ost_idx=($($GETSTRIPE $tfile$i |
2017 tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2021 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2022 error "${#ost_idx[@]} != $OSTCOUNT"
2024 for index in $(seq 0 $((OSTCOUNT - 1))); do
2026 for j in $(echo ${ost_idx[@]}); do
2027 if [ $index -eq $j ]; then
2033 error "Can not find $index in ${ost_idx[@]}"
2037 run_test 27C "check full striping across all OSTs"
2040 [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2041 [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2042 remote_mds_nodsh && skip "remote MDS with nodsh" && return
2043 local POOL=${POOL:-testpool}
2045 local last_ost=$(($OSTCOUNT - 1))
2047 local ost_list=$(seq $first_ost $ost_step $last_ost)
2048 local ost_range="$first_ost $last_ost $ost_step"
2050 test_mkdir -p $DIR/$tdir
2051 pool_add $POOL || error "pool_add failed"
2052 pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2055 [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
2057 llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2058 error "llapi_layout_test failed"
2060 destroy_test_pools || error "destroy test pools failed"
2062 run_test 27D "validate llapi_layout API"
2064 # Verify that default_easize is increased from its initial value after
2065 # accessing a widely striped file.
2067 [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2068 [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2069 skip "client does not have LU-3338 fix" && return
2071 # 72 bytes is the minimum space required to store striping
2072 # information for a file striped across one OST:
2073 # (sizeof(struct lov_user_md_v3) +
2074 # sizeof(struct lov_user_ost_data_v1))
2076 $LCTL set_param -n llite.*.default_easize $min_easize ||
2077 error "lctl set_param failed"
2078 local easize=$($LCTL get_param -n llite.*.default_easize)
2080 [ $easize -eq $min_easize ] ||
2081 error "failed to set default_easize"
2083 $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2084 error "setstripe failed"
2088 easize=$($LCTL get_param -n llite.*.default_easize)
2090 [ $easize -gt $min_easize ] ||
2091 error "default_easize not updated"
2093 run_test 27E "check that default extended attribute size properly increases"
2095 test_27F() { # LU-5346/LU-7975
2097 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2099 [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2100 skip "Need MDS version at least 2.8.51" && return
2102 test_mkdir -p $DIR/$tdir
2104 $SETSTRIPE -c 2 $DIR/$tdir
2106 # stop all OSTs to reproduce situation for LU-7975 ticket
2107 for num in $(seq $OSTCOUNT); do
2111 # open/create f0 with O_LOV_DELAY_CREATE
2112 # truncate f0 to a non-0 size
2114 multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2116 $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2117 # open/write it again to force delayed layout creation
2118 cat /etc/hosts > $DIR/$tdir/f0 &
2122 for num in $(seq $OSTCOUNT); do
2123 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2124 error "ost$num failed to start"
2127 wait $catpid || error "cat failed"
2129 cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2130 [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2133 run_test 27F "Client resend delayed layout creation with non-zero size"
2135 # createtest also checks that device nodes are created and
2136 # then visible correctly (#2091)
2137 test_28() { # bug 2091
2139 $CREATETEST $DIR/d28/ct || error
2141 run_test 28 "create/mknod/mkdir with bad file types ============"
2144 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2145 sync; sleep 1; sync # flush out any dirty pages from previous tests
2152 declare -i LOCKCOUNTORIG=0
2153 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2154 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2156 [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2158 declare -i LOCKUNUSEDCOUNTORIG=0
2159 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2160 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2167 declare -i LOCKCOUNTCURRENT=0
2168 for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2169 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2172 declare -i LOCKUNUSEDCOUNTCURRENT=0
2173 for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2174 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2177 if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2178 $LCTL set_param -n ldlm.dump_namespaces ""
2179 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2180 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2181 log "dumped log to $TMP/test_29.dk (bug 5793)"
2184 if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2185 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2186 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2187 log "dumped log to $TMP/test_29.dk (bug 5793)"
2191 run_test 29 "IT_GETATTR regression ============================"
2193 test_30a() { # was test_30
2194 cp $(which ls) $DIR || cp /bin/ls $DIR
2198 run_test 30a "execute binary from Lustre (execve) =============="
2201 cp `which ls` $DIR || cp /bin/ls $DIR
2203 $RUNAS $DIR/ls / || error
2206 run_test 30b "execute binary from Lustre as non-root ==========="
2208 test_30c() { # b=22376
2209 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2210 cp `which ls` $DIR || cp /bin/ls $DIR
2212 cancel_lru_locks mdc
2213 cancel_lru_locks osc
2214 $RUNAS $DIR/ls / || error
2217 run_test 30c "execute binary from Lustre without read perms ===="
2220 $OPENUNLINK $DIR/f31 $DIR/f31 || error
2221 $CHECKSTAT -a $DIR/f31 || error
2223 run_test 31a "open-unlink file =================================="
2226 touch $DIR/f31 || error
2227 ln $DIR/f31 $DIR/f31b || error
2228 $MULTIOP $DIR/f31b Ouc || error
2229 $CHECKSTAT -t file $DIR/f31 || error
2231 run_test 31b "unlink file with multiple links while open ======="
2234 touch $DIR/f31 || error
2235 ln $DIR/f31 $DIR/f31c || error
2236 multiop_bg_pause $DIR/f31 O_uc || return 1
2238 $MULTIOP $DIR/f31c Ouc
2239 kill -USR1 $MULTIPID
2242 run_test 31c "open-unlink file with multiple links ============="
2245 opendirunlink $DIR/d31d $DIR/d31d || error
2246 $CHECKSTAT -a $DIR/d31d || error
2248 run_test 31d "remove of open directory ========================="
2250 test_31e() { # bug 2904
2251 openfilleddirunlink $DIR/d31e || error
2253 run_test 31e "remove of open non-empty directory ==============="
2255 test_31f() { # bug 4554
2256 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2258 test_mkdir $DIR/d31f
2259 $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2260 cp /etc/hosts $DIR/d31f
2262 $GETSTRIPE $DIR/d31f/hosts
2263 multiop_bg_pause $DIR/d31f D_c || return 1
2266 rm -rv $DIR/d31f || error "first of $DIR/d31f"
2267 test_mkdir $DIR/d31f
2268 $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2269 cp /etc/hosts $DIR/d31f
2271 $GETSTRIPE $DIR/d31f/hosts
2272 multiop_bg_pause $DIR/d31f D_c || return 1
2275 kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2276 wait $MULTIPID || error "first opendir $MULTIPID failed"
2280 kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2281 wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2284 run_test 31f "remove of open directory with open-unlink file ==="
2287 echo "-- cross directory link --"
2288 test_mkdir -c1 $DIR/${tdir}ga
2289 test_mkdir -c1 $DIR/${tdir}gb
2290 touch $DIR/${tdir}ga/f
2291 ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2292 $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2293 [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2294 $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2295 [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2297 run_test 31g "cross directory link==============="
2300 echo "-- cross directory link --"
2301 test_mkdir -c1 $DIR/${tdir}
2302 test_mkdir -c1 $DIR/${tdir}/dir
2303 touch $DIR/${tdir}/f
2304 ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2305 $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2306 [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2307 $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2308 [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2310 run_test 31h "cross directory link under child==============="
2313 echo "-- cross directory link --"
2314 test_mkdir -c1 $DIR/$tdir
2315 test_mkdir -c1 $DIR/$tdir/dir
2316 touch $DIR/$tdir/dir/f
2317 ln $DIR/$tdir/dir/f $DIR/$tdir/g
2318 $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2319 [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2320 $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2321 [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2323 run_test 31i "cross directory link under parent==============="
2326 test_mkdir -c1 -p $DIR/$tdir
2327 test_mkdir -c1 -p $DIR/$tdir/dir1
2328 ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2329 link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2330 mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2331 mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2334 run_test 31j "link for directory==============="
2337 test_mkdir -c1 -p $DIR/$tdir
2339 touch $DIR/$tdir/exist
2340 mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2341 mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2342 mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2343 mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2344 mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2345 mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2346 mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2349 run_test 31k "link to file: the same, non-existing, dir==============="
2355 touch $DIR/d31m2/exist
2356 mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2357 mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2358 mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2359 mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2360 mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2361 mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2364 run_test 31m "link to file: the same, non-existing, dir==============="
2367 touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2368 nlink=$(stat --format=%h $DIR/$tfile)
2369 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2371 local cmd="exec $fd<$DIR/$tfile"
2374 trap "eval $cmd" EXIT
2375 nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2376 [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2377 rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2378 nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2379 [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2382 run_test 31n "check link count of unlinked file"
2385 local TEMPNAME=$(mktemp $1_XXXXXX)
2386 mlink $TEMPNAME $1 2> /dev/null &&
2387 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2391 test_31o() { # LU-2901
2392 test_mkdir -p $DIR/$tdir
2393 for LOOP in $(seq 100); do
2394 rm -f $DIR/$tdir/$tfile*
2395 for THREAD in $(seq 8); do
2396 link_one $DIR/$tdir/$tfile.$LOOP &
2399 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2400 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2401 error "$LINKS duplicate links to $tfile.$LOOP" &&
2405 run_test 31o "duplicate hard links with same filename"
2408 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2410 test_mkdir $DIR/$tdir
2411 $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2412 $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2414 opendirunlink $DIR/$tdir/striped_dir/test1 ||
2415 error "open unlink test1 failed"
2416 opendirunlink $DIR/$tdir/striped_dir/test2 ||
2417 error "open unlink test2 failed"
2419 $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2420 error "test1 still exists"
2421 $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2422 error "test2 still exists"
2424 run_test 31p "remove of open striped directory"
2426 cleanup_test32_mount() {
2429 local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2430 $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2431 losetup -d $loopdev || true
2437 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2438 echo "== more mountpoints and symlinks ================="
2439 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2440 trap cleanup_test32_mount EXIT
2441 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2442 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2443 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2444 cleanup_test32_mount
2446 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2449 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2450 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2451 trap cleanup_test32_mount EXIT
2452 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2453 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2454 ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2455 cleanup_test32_mount
2457 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2460 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2461 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2462 trap cleanup_test32_mount EXIT
2463 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2464 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2465 test_mkdir -p $DIR/$tdir/d2/test_dir
2466 $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2467 cleanup_test32_mount
2469 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2472 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2473 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2474 trap cleanup_test32_mount EXIT
2475 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2476 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2477 test_mkdir -p $DIR/$tdir/d2/test_dir
2478 ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2479 cleanup_test32_mount
2481 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2484 [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2485 test_mkdir -p $DIR/d32e/tmp
2486 TMP_DIR=$DIR/d32e/tmp
2487 ln -s $DIR/d32e $TMP_DIR/symlink11
2488 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2489 $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2490 $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2492 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2495 [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2496 test_mkdir -p $DIR/d32f/tmp
2497 TMP_DIR=$DIR/d32f/tmp
2498 ln -s $DIR/d32f $TMP_DIR/symlink11
2499 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2500 ls $DIR/d32f/tmp/symlink11 || error
2501 ls $DIR/d32f/symlink01 || error
2503 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2506 TMP_DIR=$DIR/$tdir/tmp
2507 test_mkdir -p $DIR/$tdir/tmp
2508 test_mkdir $DIR/${tdir}2
2509 ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2510 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2511 $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2512 $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2513 $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2514 $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2516 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2519 rm -fr $DIR/$tdir $DIR/${tdir}2
2520 TMP_DIR=$DIR/$tdir/tmp
2521 test_mkdir -p $DIR/$tdir/tmp
2522 test_mkdir $DIR/${tdir}2
2523 ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2524 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2525 ls $TMP_DIR/symlink12 || error
2526 ls $DIR/$tdir/symlink02 || error
2528 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2531 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2532 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2533 trap cleanup_test32_mount EXIT
2534 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2535 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2536 touch $DIR/$tdir/test_file
2537 $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2538 cleanup_test32_mount
2540 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2543 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2544 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2545 trap cleanup_test32_mount EXIT
2546 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2547 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2548 touch $DIR/$tdir/test_file
2549 cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2550 cleanup_test32_mount
2552 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2555 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2557 trap cleanup_test32_mount EXIT
2558 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2559 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2560 test_mkdir -p $DIR/$tdir/d2
2561 touch $DIR/$tdir/d2/test_file || error
2562 $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2563 cleanup_test32_mount
2565 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2568 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2570 trap cleanup_test32_mount EXIT
2571 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2572 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2573 test_mkdir -p $DIR/$tdir/d2
2574 touch $DIR/$tdir/d2/test_file
2575 cat $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2576 cleanup_test32_mount
2578 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2582 test_mkdir -p $DIR/d32m/tmp
2583 TMP_DIR=$DIR/d32m/tmp
2584 ln -s $DIR $TMP_DIR/symlink11
2585 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2586 $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2587 $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2589 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2593 test_mkdir -p $DIR/d32n/tmp
2594 TMP_DIR=$DIR/d32n/tmp
2595 ln -s $DIR $TMP_DIR/symlink11
2596 ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2597 ls -l $DIR/d32n/tmp/symlink11 || error
2598 ls -l $DIR/d32n/symlink01 || error
2600 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2604 test_mkdir -p $DIR/d32o/tmp
2605 TMP_DIR=$DIR/d32o/tmp
2606 ln -s $DIR/$tfile $TMP_DIR/symlink12
2607 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2608 $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2609 $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2610 $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2611 $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2613 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2623 test_mkdir -p $DIR/d32p/tmp
2625 TMP_DIR=$DIR/d32p/tmp
2627 ln -s $DIR/$tfile $TMP_DIR/symlink12
2629 ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2631 cat $DIR/d32p/tmp/symlink12 || error
2633 cat $DIR/d32p/symlink02 || error
2636 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2639 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2640 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2641 trap cleanup_test32_mount EXIT
2642 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2643 touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2644 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2645 ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2646 cleanup_test32_mount
2648 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2651 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2652 [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2653 trap cleanup_test32_mount EXIT
2654 test_mkdir -p $DIR/$tdir/ext2-mountpoint
2655 touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2656 mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2657 ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2658 cleanup_test32_mount
2660 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2665 chmod 444 $DIR/$tfile
2666 chown $RUNAS_ID $DIR/$tfile
2668 $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2671 run_test 33aa "write file with mode 444 (should return error) ===="
2675 test_mkdir -p $DIR/d33
2676 chown $RUNAS_ID $DIR/d33
2677 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2678 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2679 error "open RDWR" || true
2681 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2685 test_mkdir -p $DIR/d33
2686 chown $RUNAS_ID $DIR/d33
2687 $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2689 run_test 33b "test open file with malformed flags (No panic)"
2692 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2698 remote_ost_nodsh && skip "remote OST with nodsh" && return
2701 test_mkdir -p $DIR/d33
2702 # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2705 for ostnum in $(seq $OSTCOUNT); do
2706 # test-framework's OST numbering is one-based, while Lustre's
2708 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2709 # Parsing llobdstat's output sucks; we could grep the /proc
2710 # path, but that's likely to not be as portable as using the
2711 # llobdstat utility. So we parse lctl output instead.
2712 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2713 obdfilter/$ostname/stats |
2714 awk '/^write_bytes/ {print $7}' )
2715 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2716 if (( ${write_bytes:-0} > 0 ))
2723 $all_zeros || return 0
2726 echo foo > $DIR/d33/bar
2730 # Total up write_bytes after writing. We'd better find non-zeros.
2731 for ostnum in $(seq $OSTCOUNT); do
2732 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2733 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2734 obdfilter/$ostname/stats |
2735 awk '/^write_bytes/ {print $7}' )
2736 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2737 if (( ${write_bytes:-0} > 0 ))
2746 for ostnum in $(seq $OSTCOUNT); do
2747 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2748 echo "Check that write_bytes is present in obdfilter/*/stats:"
2749 do_facet ost$ostnum lctl get_param -n \
2750 obdfilter/$ostname/stats
2752 error "OST not keeping write_bytes stats (b22312)"
2755 run_test 33c "test llobdstat and write_bytes"
2758 [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2759 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2761 local remote_dir=$DIR/$tdir/remote_dir
2763 test_mkdir -p $DIR/$tdir
2764 $LFS mkdir -i $MDTIDX $remote_dir ||
2765 error "create remote directory failed"
2767 touch $remote_dir/$tfile
2768 chmod 444 $remote_dir/$tfile
2769 chown $RUNAS_ID $remote_dir/$tfile
2771 $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2773 chown $RUNAS_ID $remote_dir
2774 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2775 error "create" || true
2776 $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2777 error "open RDWR" || true
2778 $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2780 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2783 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2787 $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2788 $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2789 mkdir $DIR/$tdir/local_dir
2791 local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2792 local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2793 local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2795 [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2796 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2798 rmdir $DIR/$tdir/* || error "rmdir failed"
2801 $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2802 $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2803 mkdir $DIR/$tdir/local_dir
2805 s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2806 s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2807 l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2809 [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2810 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2812 rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2815 $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2816 $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2817 mkdir $DIR/$tdir/local_dir
2819 s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2820 s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2821 l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2823 [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2824 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2826 run_test 33e "mkdir and striped directory should have same mode"
2830 do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2834 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2835 remote_mds_nodsh && skip "remote MDS with nodsh" && return
2838 chmod go+rwx $DIR/$tdir
2839 do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2840 trap cleanup_33f EXIT
2842 $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2843 error "cannot create striped directory"
2845 $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2846 error "cannot create files in striped directory"
2848 $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2849 error "cannot remove files in striped directory"
2851 $RUNAS rmdir $DIR/$tdir/striped_dir ||
2852 error "cannot remove striped directory"
2856 run_test 33f "nonroot user can create, access, and remove a striped directory"
2859 mkdir -p $DIR/$tdir/dir2
2861 local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2863 [[ $err =~ "exists" ]] || error "Not exists error"
2865 run_test 33g "nonroot user create already existing root created file"
2867 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2870 $MCREATE $DIR/f34 || error
2871 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2872 $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2873 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2874 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2876 run_test 34a "truncate file that has not been opened ==========="
2879 [ ! -f $DIR/f34 ] && test_34a
2880 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2881 $OPENFILE -f O_RDONLY $DIR/f34
2882 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2883 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2885 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2888 [ ! -f $DIR/f34 ] && test_34a
2889 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2890 $OPENFILE -f O_RDWR $DIR/f34
2891 $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2892 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2894 run_test 34c "O_RDWR opening file-with-size works =============="
2897 [ ! -f $DIR/f34 ] && test_34a
2898 dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2899 $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2902 run_test 34d "write to sparse file ============================="
2906 $MCREATE $DIR/f34e || error
2907 $TRUNCATE $DIR/f34e 1000 || error
2908 $CHECKSTAT -s 1000 $DIR/f34e || error
2909 $OPENFILE -f O_RDWR $DIR/f34e
2910 $CHECKSTAT -s 1000 $DIR/f34e || error
2912 run_test 34e "create objects, some with size and some without =="
2914 test_34f() { # bug 6242, 6243
2915 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2918 $MCREATE $DIR/f34f || error
2919 $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2920 dd if=$DIR/f34f of=$TMP/f34f
2921 $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2922 dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2923 cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2924 cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2925 rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2927 run_test 34f "read from a file with no objects until EOF ======="
2930 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2931 dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2932 $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2933 $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2934 cancel_lru_locks osc
2935 $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2936 error "wrong size after lock cancel"
2938 $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2939 $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2940 error "expanding truncate failed"
2941 cancel_lru_locks osc
2942 $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2943 error "wrong expanded size after lock cancel"
2945 run_test 34g "truncate long file ==============================="
2948 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2952 dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2953 sync # Flush the cache so that multiop below does not block on cache
2954 # flush when getting the group lock
2955 $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2958 # Since just timed wait is not good enough, let's do a sync write
2959 # that way we are sure enough time for a roundtrip + processing
2960 # passed + 2 seconds of extra margin.
2961 dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2965 if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2966 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2970 local nsz=`stat -c %s $DIR/$tfile`
2971 [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2973 run_test 34h "ftruncate file under grouplock should not block"
2976 cp /bin/sh $DIR/f35a
2978 chown $RUNAS_ID $DIR/f35a
2979 $RUNAS $DIR/f35a && error || true
2982 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2986 utime $DIR/f36 || error
2988 run_test 36a "MDS utime check (mknod, utime) ==================="
2992 utime $DIR/f36 || error
2994 run_test 36b "OST utime check (open, utime) ===================="
2999 chown $RUNAS_ID $DIR/d36
3000 $RUNAS utime $DIR/d36/f36 || error
3002 run_test 36c "non-root MDS utime check (mknod, utime) =========="
3005 [ ! -d $DIR/d36 ] && test_36c
3006 echo "" > $DIR/d36/f36
3007 $RUNAS utime $DIR/d36/f36 || error
3009 run_test 36d "non-root OST utime check (open, utime) ==========="
3012 [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3013 test_mkdir -p $DIR/$tdir
3014 touch $DIR/$tdir/$tfile
3015 $RUNAS utime $DIR/$tdir/$tfile && \
3016 error "utime worked, expected failure" || true
3018 run_test 36e "utime on non-owned file (should return error) ===="
3022 local LANG_SAVE=$LANG
3023 local LC_LANG_SAVE=$LC_LANG
3024 export LANG=C LC_LANG=C # for date language
3026 DATESTR="Dec 20 2000"
3027 test_mkdir -p $DIR/$tdir
3028 lctl set_param fail_loc=$fl
3030 cp /etc/hosts $DIR/$tdir/$tfile
3031 sync & # write RPC generated with "current" inode timestamp, but delayed
3033 touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3034 LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3035 cancel_lru_locks osc
3036 LS_AFTER="`ls -l $DIR/$tdir/$tfile`" # timestamp from OST object
3038 [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3039 echo "BEFORE: $LS_BEFORE" && \
3040 echo "AFTER : $LS_AFTER" && \
3041 echo "WANT : $DATESTR" && \
3042 error "$DIR/$tdir/$tfile timestamps changed" || true
3044 export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3048 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3049 #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3050 subr_36fh "0x80000214"
3052 run_test 36f "utime on file racing with OST BRW write =========="
3055 remote_ost_nodsh && skip "remote OST with nodsh" && return
3056 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3061 test_mkdir -p $DIR/$tdir
3062 fmd_max_age=$(do_facet ost1 \
3063 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3066 fmd_before=$(do_facet ost1 \
3067 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3068 touch $DIR/$tdir/$tfile
3069 sleep $((fmd_max_age + 12))
3070 fmd_after=$(do_facet ost1 \
3071 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3073 echo "fmd_before: $fmd_before"
3074 echo "fmd_after: $fmd_after"
3075 [[ $fmd_after -gt $fmd_before ]] &&
3076 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3077 error "fmd didn't expire after ping" || true
3079 run_test 36g "filter mod data cache expiry ====================="
3082 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3083 #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3084 subr_36fh "0x80000227"
3086 run_test 36h "utime on file racing with OST BRW write =========="
3089 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3091 test_mkdir $DIR/$tdir
3092 $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3094 local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3095 local new_mtime=$((mtime + 200))
3097 #change Modify time of striped dir
3098 touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3099 error "change mtime failed"
3101 local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3103 [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3105 run_test 36i "change mtime on striped directory"
3107 # test_37 - duplicate with tests 32q 32r
3110 local file=$DIR/$tfile
3112 openfile -f O_DIRECTORY $file
3115 [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3116 [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3118 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3120 test_39a() { # was test_39
3122 touch $DIR/${tfile}2
3123 # ls -l $DIR/$tfile $DIR/${tfile}2
3124 # ls -lu $DIR/$tfile $DIR/${tfile}2
3125 # ls -lc $DIR/$tfile $DIR/${tfile}2
3127 $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3128 if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3130 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3132 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3134 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3135 error "O_TRUNC didn't change timestamps"
3138 run_test 39a "mtime changed on create ==========================="
3141 test_mkdir -p -c1 $DIR/$tdir
3142 cp -p /etc/passwd $DIR/$tdir/fopen
3143 cp -p /etc/passwd $DIR/$tdir/flink
3144 cp -p /etc/passwd $DIR/$tdir/funlink
3145 cp -p /etc/passwd $DIR/$tdir/frename
3146 ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3149 echo "aaaaaa" >> $DIR/$tdir/fopen
3150 echo "aaaaaa" >> $DIR/$tdir/flink
3151 echo "aaaaaa" >> $DIR/$tdir/funlink
3152 echo "aaaaaa" >> $DIR/$tdir/frename
3154 local open_new=`stat -c %Y $DIR/$tdir/fopen`
3155 local link_new=`stat -c %Y $DIR/$tdir/flink`
3156 local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3157 local rename_new=`stat -c %Y $DIR/$tdir/frename`
3159 cat $DIR/$tdir/fopen > /dev/null
3160 ln $DIR/$tdir/flink $DIR/$tdir/flink2
3161 rm -f $DIR/$tdir/funlink2
3162 mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3164 for (( i=0; i < 2; i++ )) ; do
3165 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3166 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3167 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3168 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3170 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3171 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3172 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3173 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3175 cancel_lru_locks osc
3176 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3179 run_test 39b "mtime change on open, link, unlink, rename ======"
3181 # this should be set to past
3182 TEST_39_MTIME=`date -d "1 year ago" +%s`
3188 local mtime0=`stat -c %Y $DIR1/$tfile`
3190 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3191 local mtime1=`stat -c %Y $DIR1/$tfile`
3192 [ "$mtime1" = $TEST_39_MTIME ] || \
3193 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3196 echo hello >> $DIR1/$tfile
3198 local mtime2=`stat -c %Y $DIR1/$tfile`
3199 [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3200 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3202 mv $DIR1/$tfile $DIR1/$tfile-1
3204 for (( i=0; i < 2; i++ )) ; do
3205 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3206 [ "$mtime2" = "$mtime3" ] || \
3207 error "mtime ($mtime2) changed (to $mtime3) on rename"
3209 cancel_lru_locks osc
3210 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3213 run_test 39c "mtime change on rename ==========================="
3217 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3220 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3222 for (( i=0; i < 2; i++ )) ; do
3223 local mtime=`stat -c %Y $DIR1/$tfile`
3224 [ $mtime = $TEST_39_MTIME ] || \
3225 error "mtime($mtime) is not set to $TEST_39_MTIME"
3227 cancel_lru_locks osc
3228 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3231 run_test 39d "create, utime, stat =============================="
3235 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3237 local mtime1=`stat -c %Y $DIR1/$tfile`
3239 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3241 for (( i=0; i < 2; i++ )) ; do
3242 local mtime2=`stat -c %Y $DIR1/$tfile`
3243 [ $mtime2 = $TEST_39_MTIME ] || \
3244 error "mtime($mtime2) is not set to $TEST_39_MTIME"
3246 cancel_lru_locks osc
3247 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3250 run_test 39e "create, stat, utime, stat ========================"
3254 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3256 mtime1=`stat -c %Y $DIR1/$tfile`
3259 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3261 for (( i=0; i < 2; i++ )) ; do
3262 local mtime2=`stat -c %Y $DIR1/$tfile`
3263 [ $mtime2 = $TEST_39_MTIME ] || \
3264 error "mtime($mtime2) is not set to $TEST_39_MTIME"
3266 cancel_lru_locks osc
3267 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3270 run_test 39f "create, stat, sleep, utime, stat ================="
3274 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3275 echo hello >> $DIR1/$tfile
3276 local mtime1=`stat -c %Y $DIR1/$tfile`
3279 chmod o+r $DIR1/$tfile
3281 for (( i=0; i < 2; i++ )) ; do
3282 local mtime2=`stat -c %Y $DIR1/$tfile`
3283 [ "$mtime1" = "$mtime2" ] || \
3284 error "lost mtime: $mtime2, should be $mtime1"
3286 cancel_lru_locks osc
3287 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3290 run_test 39g "write, chmod, stat ==============================="
3294 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3299 echo hello >> $DIR1/$tfile
3300 local mtime1=`stat -c %Y $DIR1/$tfile`
3302 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3304 if [ "$d1" != "$d2" ]; then
3305 echo "write and touch not within one second"
3307 for (( i=0; i < 2; i++ )) ; do
3308 local mtime2=`stat -c %Y $DIR1/$tfile`
3309 [ "$mtime2" = $TEST_39_MTIME ] || \
3310 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3312 cancel_lru_locks osc
3313 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3317 run_test 39h "write, utime within one second, stat ============="
3320 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3324 echo hello >> $DIR1/$tfile
3325 local mtime1=`stat -c %Y $DIR1/$tfile`
3327 mv $DIR1/$tfile $DIR1/$tfile-1
3329 for (( i=0; i < 2; i++ )) ; do
3330 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3332 [ "$mtime1" = "$mtime2" ] || \
3333 error "lost mtime: $mtime2, should be $mtime1"
3335 cancel_lru_locks osc
3336 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3339 run_test 39i "write, rename, stat =============================="
3342 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3343 start_full_debug_logging
3347 #define OBD_FAIL_OSC_DELAY_SETTIME 0x412
3348 lctl set_param fail_loc=0x80000412
3349 multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3350 error "multiop failed"
3352 local mtime1=`stat -c %Y $DIR1/$tfile`
3354 mv $DIR1/$tfile $DIR1/$tfile-1
3356 kill -USR1 $multipid
3357 wait $multipid || error "multiop close failed"
3359 for (( i=0; i < 2; i++ )) ; do
3360 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3361 [ "$mtime1" = "$mtime2" ] ||
3362 error "mtime is lost on close: $mtime2, " \
3365 cancel_lru_locks osc
3366 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3368 lctl set_param fail_loc=0
3369 stop_full_debug_logging
3371 run_test 39j "write, rename, close, stat ======================="
3374 [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3378 multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3380 local mtime1=`stat -c %Y $DIR1/$tfile`
3382 touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3384 kill -USR1 $multipid
3385 wait $multipid || error "multiop close failed"