X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Ftests%2Fconf-sanity.sh;h=199c73c9861c7bd348205a26436e478ec0c7571b;hp=19528e74f0290faca6021794425167bac52605f9;hb=744f5f8e6d8b902953431b0a39542b86c09275b1;hpb=3b73dde668d26036f6afdc42abb779a25b35e3fe diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh index 19528e7..199c73c9 100644 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -1,6 +1,6 @@ #!/bin/bash -# requirement: -# add uml1 uml2 uml3 in your /etc/hosts +# -*- mode: Bash; tab-width: 4; indent-tabs-mode: t; -*- +# vim:autoindent:shiftwidth=4:tabstop=4: # FIXME - there is no reason to use all of these different # return codes, espcially when most of them are mapped to something @@ -11,11 +11,9 @@ set -e ONLY=${ONLY:-"$*"} -# bug number for skipped test: 13739 19280 -HEAD_EXCEPT=" 32a 50e 50f" - # bug number for skipped test: -ALWAYS_EXCEPT=" $CONF_SANITY_EXCEPT $HEAD_EXCEPT" +# 15977 +ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT" # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! SRCDIR=`dirname $0` @@ -28,6 +26,7 @@ RLUSTRE=${RLUSTRE:-$LUSTRE} . $LUSTRE/tests/test-framework.sh init_test_env $@ +init_logging # STORED_MDSSIZE is used in test_18 if [ -n "$MDSSIZE" ]; then STORED_MDSSIZE=$MDSSIZE @@ -37,10 +36,9 @@ MDSSIZE=40000 OSTSIZE=40000 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh} -remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0 -remote_ost_nodsh && skip "remote OST with nodsh" && exit 0 +require_dsh_mds || exit 0 +require_dsh_ost || exit 0 -# [ "$SLOW" = "no" ] && EXCEPT_SLOW="0 1 2 3 6 7 15 18 24b 25 30 31 32 33 34a 45" assert_DIR @@ -493,7 +491,7 @@ test_18() { [ $SPACE -gt $((MIN / 20)) ] && OK=1 && myMDSSIZE=$MIN && \ log "use file $MDSDEV with MIN=$MIN" - [ -z "$OK" ] && skip "$MDSDEV too small for ${MIN}kB MDS" && return + [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return echo "mount mds with large journal..." @@ -595,6 +593,8 @@ test_22() { stop_ost mount_client $MOUNT # check_mount will block trying to contact ost + mcreate $DIR/$tfile || return 40 + rm -f $DIR/$tfile || return 42 umount_client $MOUNT pass @@ -657,8 +657,8 @@ test_23a() { # was test_23 echo "waiting for mount to finish ... " WAIT=$(( WAIT + sleep)) done - [ "$WAIT" -eq "$MAX_WAIT" ] && error "MOUNT_PID $MOUNT_PID and \ - MOUNT__LUSTRE_PID $MOUNT__LUSTRE_PID still not killed in $WAIT secs" + [ "$WAIT" -eq "$MAX_WAIT" ] && error "MOUNT_PID $MOUNT_PID and "\ + "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs" ps -ef | grep mount stop_mds || error stop_ost || error @@ -698,7 +698,7 @@ test_24a() { [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \ - skip "mixed loopback and real device not working" && return + skip_env "mixed loopback and real device not working" && return fi local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2} @@ -744,7 +744,7 @@ run_test 24a "Multiple MDTs on a single node" test_24b() { if [ -z "$fs2mds_DEV" ]; then do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \ - skip "mixed loopback and real device not working" && return + skip_env "mixed loopback and real device not working" && return fi local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2} @@ -843,7 +843,7 @@ test_28() { run_test 28 "permanent parameter setting" test_29() { - [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2, skipping" && return + [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return setup > /dev/null 2>&1 start_ost2 sleep 10 @@ -950,7 +950,7 @@ start32 () { echo "Starting local ${facet}: $@ $device ${MOUNT%/*}/${facet}" mount -t lustre $@ ${device} ${MOUNT%/*}/${facet} - RC=$? + local RC=$? if [ $RC -ne 0 ]; then echo "mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}" echo "Start of ${device} of local ${facet} failed ${RC}" @@ -975,66 +975,59 @@ cleanup_32() { } test_32a() { - # this test is totally useless on a client-only system - [ -n "$CLIENTONLY" -o -n "$CLIENTMODSONLY" ] && skip "client only testing" && return 0 + client_only && skip "client only testing" && return 0 [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; } - [ -z "$TUNEFS" ] && skip "No tunefs" && return 0 - local DISK1_8=$LUSTRE/tests/disk1_8.tgz - [ ! -r $DISK1_8 ] && skip "Cannot find $DISK1_8" && return 0 + [ -z "$TUNEFS" ] && skip_env "No tunefs" && return 0 - mkdir -p $TMP/$tdir - tar xjvf $DISK1_8 -C $TMP/$tdir || \ - { skip "Cannot untar $DISK1_8" && return 0; } + local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2 + [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0 + local tmpdir=$TMP/conf32a + mkdir -p $tmpdir + tar xjvf $DISK1_8 -C $tmpdir || \ + { skip_env "Cannot untar $DISK1_8" && return 0; } load_modules - lctl set_param debug=$PTLDEBUG + $LCTL set_param debug=$PTLDEBUG $TUNEFS $tmpdir/mds || error "tunefs failed" # nids are wrong, so client wont work, but server should start - start32 mds $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \ + start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \ trap cleanup_32 EXIT INT || return 3 - local UUID=$(lctl get_param -n mds.lustre-MDT0000.uuid) + local UUID=$($LCTL get_param -n mdt.lustre-MDT0000.uuid) echo MDS uuid $UUID - [ "$UUID" == "mdsA_UUID" ] || error "UUID is wrong: $UUID" + [ "$UUID" == "lustre-MDT0000_UUID" ] || error "UUID is wrong: $UUID" - $TUNEFS --mgsnode=`hostname` $tmpdir/ost1 || error "tunefs failed" + $TUNEFS --mgsnode=$HOSTNAME $tmpdir/ost1 || error "tunefs failed" start32 ost1 $tmpdir/ost1 "-o loop" || return 5 - UUID=$(lctl get_param -n obdfilter.lustre-OST0000.uuid) + UUID=$($LCTL get_param -n obdfilter.lustre-OST0000.uuid) echo OST uuid $UUID - [ "$UUID" == "ost1_UUID" ] || error "UUID is wrong: $UUID" + [ "$UUID" == "lustre-OST0000_UUID" ] || error "UUID is wrong: $UUID" local NID=$($LCTL list_nids | head -1) - echo "OSC changes should return err:" - $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 && return 7 - $LCTL conf_param lustre-OST0000.failover.node=$NID && return 8 + echo "OSC changes should succeed:" + $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 || return 7 + $LCTL conf_param lustre-OST0000.failover.node=$NID || return 8 echo "ok." + echo "MDC changes should succeed:" $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9 $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10 echo "ok." - # With a new good MDT failover nid, we should be able to mount a client - # (but it cant talk to OST) - local mountopt="-o exclude=lustre-OST0000" - - local device=`h2$NETTYPE $HOSTNAME`:/lustre - echo "Starting local client: $HOSTNAME: $mountopt $device $MOUNT" - mount -t lustre $mountopt $device $MOUNT || return 1 - - local old=$(lctl get_param -n mdc.*.max_rpcs_in_flight) - local new=$((old + 5)) - lctl conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=$new - wait_update $HOSTNAME "lctl get_param -n mdc.*.max_rpcs_in_flight" $new || return 11 + echo "LOV changes should succeed:" + $LCTL pool_new lustre.interop || return 11 + $LCTL conf_param lustre-MDT0000.lov.stripesize=4M || return 12 + echo "ok." cleanup_32 # mount a second time to make sure we didnt leave upgrade flag on load_modules $TUNEFS --dryrun $tmpdir/mds || error "tunefs failed" - start32 mds $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \ + start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \ trap cleanup_32 EXIT INT || return 12 cleanup_32 @@ -1044,20 +1037,19 @@ test_32a() { run_test 32a "Upgrade from 1.8 (not live)" test_32b() { - # this test is totally useless on a client-only system - [ -n "$CLIENTONLY" -o -n "$CLIENTMODSONLY" ] && skip "client only testing" && return 0 + client_only && skip "client only testing" && return 0 [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; } - [ -z "$TUNEFS" ] && skip "No tunefs" && return + [ -z "$TUNEFS" ] && skip_env "No tunefs" && return local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2 - [ ! -r $DISK1_8 ] && skip "Cannot find $DISK1_8" && return 0 - local tmpdir=$TMP/$tdir + [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0 + local tmpdir=$TMP/conf32b mkdir -p $tmpdir tar xjvf $DISK1_8 -C $tmpdir || \ - { skip "Cannot untar $DISK1_8" && return ; } + { skip_env "Cannot untar $DISK1_8" && return ; } load_modules - lctl set_param debug=$PTLDEBUG + $LCTL set_param debug="config" local NEWNAME=lustre # writeconf will cause servers to register with their current nids @@ -1065,22 +1057,32 @@ test_32b() { start32 mds1 $tmpdir/mds "-o loop" && \ trap cleanup_32 EXIT INT || return 3 - local UUID=$(lctl get_param -n mdt.${NEWNAME}-MDT0000.uuid) + local UUID=$($LCTL get_param -n mdt.${NEWNAME}-MDT0000.uuid) echo MDS uuid $UUID [ "$UUID" == "${NEWNAME}-MDT0000_UUID" ] || error "UUID is wrong: $UUID" - $TUNEFS --mgsnode=`hostname` --writeconf --fsname=$NEWNAME $tmpdir/ost1 || error "tunefs failed" + $TUNEFS --mgsnode=$HOSTNAME --writeconf --fsname=$NEWNAME $tmpdir/ost1 ||\ + error "tunefs failed" start32 ost1 $tmpdir/ost1 "-o loop" || return 5 - UUID=$(lctl get_param -n obdfilter.${NEWNAME}-OST0000.uuid) + UUID=$($LCTL get_param -n obdfilter.${NEWNAME}-OST0000.uuid) echo OST uuid $UUID [ "$UUID" == "${NEWNAME}-OST0000_UUID" ] || error "UUID is wrong: $UUID" + local NID=$($LCTL list_nids | head -1) + echo "OSC changes should succeed:" $LCTL conf_param ${NEWNAME}-OST0000.osc.max_dirty_mb=15 || return 7 $LCTL conf_param ${NEWNAME}-OST0000.failover.node=$NID || return 8 echo "ok." + echo "MDC changes should succeed:" $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=9 || return 9 + $LCTL conf_param ${NEWNAME}-MDT0000.failover.node=$NID || return 10 + echo "ok." + + echo "LOV changes should succeed:" + $LCTL pool_new ${NEWNAME}.interop || return 11 + $LCTL conf_param ${NEWNAME}-MDT0000.lov.stripesize=4M || return 12 echo "ok." # MDT and OST should have registered with new nids, so we should have @@ -1091,10 +1093,10 @@ test_32b() { echo "Starting local client: $HOSTNAME: $device $MOUNT" mount -t lustre $device $MOUNT || return 1 - local old=$(lctl get_param -n mdc.*.max_rpcs_in_flight) + local old=$($LCTL get_param -n mdc.*.max_rpcs_in_flight) local new=$((old + 5)) - lctl conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=$new - wait_update $HOSTNAME "lctl get_param -n mdc.*.max_rpcs_in_flight" $new || return 11 + $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=$new + wait_update $HOSTNAME "$LCTL get_param -n mdc.*.max_rpcs_in_flight" $new || return 11 [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "94306271 1478" ] || return 12 echo "ok." @@ -1112,7 +1114,7 @@ test_33a() { # bug 12333, was test_33 if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \ - skip "mixed loopback and real device not working" && return + skip_env "mixed loopback and real device not working" && return fi local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2} @@ -1199,7 +1201,7 @@ test_34c() { } run_test 34c "force umount with failed ost should be normal" -test_35() { # bug 12459 +test_35a() { # bug 12459 setup DBG_SAVE="`lctl get_param -n debug`" @@ -1213,7 +1215,7 @@ test_35() { # bug 12459 log "Wait for RECONNECT_INTERVAL seconds (10s)" sleep 10 - MSG="conf-sanity.sh test_35 `date +%F%kh%Mm%Ss`" + MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`" $LCTL clear log "$MSG" log "Stopping the MDT:" @@ -1244,7 +1246,74 @@ test_35() { # bug 12459 [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7 cleanup } -run_test 35 "Reconnect to the last active server first" +run_test 35a "Reconnect to the last active server first" + +test_35b() { # bug 18674 + remote_mds || { skip "local MDS" && return 0; } + setup + + debugsave + $LCTL set_param debug="ha" + $LCTL clear + MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`" + log "$MSG" + + log "Set up a fake failnode for the MDS" + FAKENID="127.0.0.2" + local device=$(do_facet mds "$LCTL get_param -n devices" | \ + awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1) + do_facet mds "$LCTL conf_param ${device}.failover.node=$FAKENID" || \ + return 1 + + local at_max_saved=0 + # adaptive timeouts may prevent seeing the issue + if at_is_enabled; then + at_max_saved=$(at_max_get mds) + at_max_set 0 mds client + fi + + mkdir -p $MOUNT/testdir + touch $MOUNT/testdir/test + + log "Injecting EBUSY on MDS" + # Setting OBD_FAIL_MDS_RESEND=0x136 + do_facet mds "$LCTL set_param fail_loc=0x80000136" || return 2 + + log "Stat on a test file" + stat $MOUNT/testdir/test + + log "Stop injecting EBUSY on MDS" + do_facet mds "$LCTL set_param fail_loc=0" || return 3 + rm -f $MOUNT/testdir/test + + log "done" + # restore adaptive timeout + [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client + + $LCTL dk $TMP/lustre-log-$TESTNAME.log + + # retrieve from the log if the client has ever tried to + # contact the fake server after the loss of connection + FAILCONN=`awk "BEGIN {ret = 0;} + /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ { + ret = 1; + if (\\\$NF ~ /$FAKENID/) { + ret = 2; + exit; + } + } + END {print ret}" $TMP/lustre-log-$TESTNAME.log` + + [ "$FAILCONN" == "0" ] && \ + log "ERROR: The client reconnection has not been triggered" && \ + return 4 + [ "$FAILCONN" == "2" ] && \ + log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \ + return 5 + + cleanup +} +run_test 35b "Continue reconnection retries, if the active server is busy" test_36() { # 12743 local rc @@ -1256,9 +1325,9 @@ test_36() { # 12743 if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \ - skip "mixed loopback and real device not working" && return + skip_env "mixed loopback and real device not working" && return fi - [ $OSTCOUNT -lt 2 ] && skip "skipping test for single OST" && return + [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \ { skip "remote OST" && return 0; } @@ -1320,7 +1389,7 @@ test_36() { # 12743 run_test 36 "df report consistency on OSTs with different block size" test_37() { - [ -n "$CLIENTONLY" -o -n "$CLIENTMODSONLY" ] && skip "client only testing" && return 0 + client_only && skip "client only testing" && return 0 LOCAL_MDSDEV="$TMP/mdt.img" SYM_MDSDEV="$TMP/sym_mdt.img" @@ -1449,7 +1518,7 @@ run_test 41 "mount mds with --nosvc and --nomgs" test_42() { #bug 14693 setup check_mount || return 2 - do_facet client lctl conf_param lustre.llite.some_wrong_param=10 + do_facet mgs $LCTL conf_param lustre.llite.some_wrong_param=10 umount_client $MOUNT mount_client $MOUNT || return 1 cleanup @@ -1458,7 +1527,7 @@ test_42() { #bug 14693 run_test 42 "invalid config param should not prevent client from mounting" test_43() { - [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip "run as root" + [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root" setup chmod ugo+x $DIR || error "chmod 0 failed" set_and_check mds \ @@ -1561,6 +1630,23 @@ run_test 43 "check root_squash and nosquash_nids" umount_client $MOUNT cleanup_nocli +test_44() { # 16317 + setup + check_mount || return 2 + UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2) + STATS_FOUND=no + UUIDS=$(do_facet mds "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid") + for VAL in $UUIDS; do + NID=$(echo $VAL | cut -d= -f1) + CLUUID=$(echo $VAL | cut -d= -f2) + [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break + done + [ "$STATS_FOUND" = "no" ] && error "stats not found for client" + cleanup + return 0 +} +run_test 44 "mounted client proc entry exists" + test_45() { #17310 setup check_mount || return 2 @@ -1581,8 +1667,27 @@ test_45() { #17310 } run_test 45 "long unlink handling in ptlrpcd" +cleanup_46a() { + trap 0 + local rc=0 + local count=$1 + + umount_client $MOUNT2 || rc=$? + umount_client $MOUNT || rc=$? + while [ $count -gt 0 ]; do + stop ost${count} -f || rc=$? + let count=count-1 + done + stop_mds || rc=$? + # writeconf is needed after the test, otherwise, + # we might end up with extra OSTs + writeconf || rc=$? + cleanup_nocli || rc=$? + return $rc +} + test_46a() { - OSTCOUNT=6 + echo "Testing with $OSTCOUNT OSTs" reformat start_mds || return 1 #first client should see only one ost @@ -1590,17 +1695,19 @@ test_46a() { wait_osc_import_state mds ost FULL #start_client mount_client $MOUNT || return 3 + trap "cleanup_46a $OSTCOUNT" EXIT ERR + + local i + for (( i=2; i<=$OSTCOUNT; i++ )); do + start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2)) + done + + # wait until osts in sync + for (( i=2; i<=$OSTCOUNT; i++ )); do + wait_osc_import_state mds ost$i FULL + done + - start_ost2 || return 4 - start ost3 `ostdevname 3` $OST_MOUNT_OPTS || return 5 - start ost4 `ostdevname 4` $OST_MOUNT_OPTS || return 6 - start ost5 `ostdevname 5` $OST_MOUNT_OPTS || return 7 - # wait until ost2-5 is sync - # ping_interval + 1 - wait_osc_import_state mds ost2 FULL - wait_osc_import_state mds ost3 FULL - wait_osc_import_state mds ost4 FULL - wait_osc_import_state mds ost5 FULL #second client see all ost's mount_client $MOUNT2 || return 8 @@ -1617,14 +1724,8 @@ test_46a() { # will be deadlock stat $MOUNT/widestripe || return 12 - umount_client $MOUNT2 || return 13 - umount_client $MOUNT || return 14 - stop ost5 -f || return 20 - stop ost4 -f || return 21 - stop ost3 -f || return 22 - stop_ost2 || return 23 - stop_ost || return 24 - stop_mds || return 25 + cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; } + return 0 } run_test 46a "handle ost additional - wide striped file" @@ -1647,7 +1748,7 @@ test_47() { #17674 facet_failover ost1 facet_failover $SINGLEMDS - df -h $MOUNT || return 3 + client_up || return 3 count=0 for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do @@ -1930,6 +2031,31 @@ test_50f() { } run_test 50f "normal statfs one server in down ==========================" +test_50g() { + [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return + setup + start_ost2 || error "Unable to start OST2" + + local PARAM="${FSNAME}-OST0001.osc.active" + + $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe" + do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST" + + umount_client $MOUNT || error "Unable to unmount client" + mount_client $MOUNT || error "Unable to mount client" + # This df should not cause a panic + df -k $MOUNT + + do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST" + rm -f $DIR/$tfile + umount_client $MOUNT || error "Unable to unmount client" + stop_ost2 || error "Unable to stop OST2" + stop_ost || error "Unable to stop OST1" + stop_mds || error "Unable to stop MDS" + writeconf +} +run_test 50g "deactivated OST should not cause panic=====================" + test_51() { local LOCAL_TIMEOUT=20 @@ -1953,6 +2079,139 @@ test_51() { } run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added" +copy_files_xattrs() +{ + local node=$1 + local dest=$2 + local xattrs=$3 + shift 3 + + do_node $node mkdir -p $dest + [ $? -eq 0 ] || { error "Unable to create directory"; return 1; } + + do_node $node 'tar cf - '$@' | tar xf - -C '$dest'; + [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1' + [ $? -eq 0 ] || { error "Unable to tar files"; return 2; } + + do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs + [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; } +} + +diff_files_xattrs() +{ + local node=$1 + local backup=$2 + local xattrs=$3 + shift 3 + + local backup2=${TMP}/backup2 + + do_node $node mkdir -p $backup2 + [ $? -eq 0 ] || { error "Unable to create directory"; return 1; } + + do_node $node 'tar cf - '$@' | tar xf - -C '$backup2'; + [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1' + [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; } + + do_node $node "diff -rq $backup $backup2" + [ $? -eq 0 ] || { error "contents differ"; return 3; } + + local xattrs2=${TMP}/xattrs2 + do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2 + [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; } + + do_node $node "diff $xattrs $xattrs2" + [ $? -eq 0 ] || { error "xattrs differ"; return 5; } + + do_node $node "rm -rf $backup2 $xattrs2" + [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; } +} + +test_52() { + start_mds + [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; } + start_ost + [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; } + mount_client $MOUNT + [ $? -eq 0 ] || { error "Unable to mount client"; return 3; } + + local nrfiles=8 + local ost1mnt=${MOUNT%/*}/ost1 + local ost1node=$(facet_active_host ost1) + local ost1tmp=$TMP/conf52 + + mkdir -p $DIR/$tdir + [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; } + touch $TMP/modified_first + [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; } + do_node $ost1node "mkdir -p $ost1tmp && touch $ost1tmp/modified_first" + [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; } + sleep 1 + + $LFS setstripe $DIR/$tdir -c -1 -s 1M + [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; } + + for (( i=0; i < nrfiles; i++ )); do + multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c + [ $? -eq 0 ] || { error "multiop failed"; return 8; } + echo -n . + done + echo + + # backup files + echo backup files to $TMP/files + local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first) + copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files + [ $? -eq 0 ] || { error "Unable to copy files"; return 9; } + + umount_client $MOUNT + [ $? -eq 0 ] || { error "Unable to umount client"; return 10; } + stop_ost + [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; } + + echo mount ost1 as ldiskfs + do_node $ost1node mount -t $FSTYPE $ost1_dev $ost1mnt $OST_MOUNT_OPTS + [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; } + + # backup objects + echo backup objects to $ost1tmp/objects + local objects=$(do_node $ost1node 'find '$ost1mnt'/O/0 -type f -size +0'\ + '-newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"') + copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects + [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; } + + # move objects to lost+found + do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found' + [ $? -eq 0 ] || { error "Unable to move objects"; return 14; } + + # recover objects + do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found" + [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; } + + # compare restored objects against saved ones + diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects + [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; } + + do_node $ost1node "umount $ost1_dev" + [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; } + + start_ost + [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; } + mount_client $MOUNT + [ $? -eq 0 ] || { error "Unable to mount client"; return 19; } + + # compare files + diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files + [ $? -eq 0 ] || { error "Unable to diff files"; return 20; } + + rm -rf $TMP/files $TMP/file_xattrs + [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; } + do_node $ost1node "rm -rf $ost1tmp" + [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; } + cleanup +} +run_test 52 "check recovering objects from lost+found" + cleanup_gss equals_msg `basename $0`: test complete [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true