2014-12-25 01:32:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Common routines for all tests
|
|
|
|
#
|
|
|
|
|
|
|
|
_fail()
|
|
|
|
{
|
2015-04-03 07:01:12 +00:00
|
|
|
echo "$*" | tee -a $RESULTS
|
2014-12-25 01:32:11 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2015-08-25 16:32:41 +00:00
|
|
|
# log a message to the results file
|
|
|
|
_log()
|
|
|
|
{
|
|
|
|
echo "$*" | tee -a $RESULTS
|
|
|
|
}
|
|
|
|
|
2015-03-02 03:41:50 +00:00
|
|
|
_not_run()
|
|
|
|
{
|
|
|
|
echo " [NOTRUN] $*"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
run_check()
|
|
|
|
{
|
2015-04-03 07:01:12 +00:00
|
|
|
echo "############### $@" >> $RESULTS 2>&1
|
2015-10-06 12:16:39 +00:00
|
|
|
if [ "$TEST_LOG" = 'tty' ]; then echo "CMD: $@" > /dev/tty; fi
|
2015-04-03 07:01:12 +00:00
|
|
|
"$@" >> $RESULTS 2>&1 || _fail "failed: $@"
|
2014-12-25 01:32:11 +00:00
|
|
|
}
|
|
|
|
|
2015-06-02 13:57:51 +00:00
|
|
|
# same as run_check but the stderr+stdout output is duplicated on stdout and
|
|
|
|
# can be processed further
|
|
|
|
run_check_stdout()
|
|
|
|
{
|
|
|
|
echo "############### $@" >> $RESULTS 2>&1
|
2015-10-06 12:16:39 +00:00
|
|
|
if [ "$TEST_LOG" = 'tty' ]; then echo "CMD(stdout): $@" > /dev/tty; fi
|
2015-06-02 13:57:51 +00:00
|
|
|
"$@" 2>&1 | tee -a $RESULTS || _fail "failed: $@"
|
|
|
|
}
|
|
|
|
|
2015-08-25 16:32:41 +00:00
|
|
|
# same as run_check but does not fail the test, output is logged
|
|
|
|
run_mayfail()
|
|
|
|
{
|
|
|
|
echo "############### $@" >> $RESULTS 2>&1
|
2015-10-06 12:16:39 +00:00
|
|
|
if [ "$TEST_LOG" = 'tty' ]; then echo "CMD(mayfail): $@" > /dev/tty; fi
|
2015-08-25 16:32:41 +00:00
|
|
|
"$@" >> $RESULTS 2>&1 || _log "failed (ignored): $@"
|
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
check_prereq()
|
|
|
|
{
|
2015-04-03 07:01:12 +00:00
|
|
|
if ! [ -f $TOP/$1 ]; then
|
2014-12-25 01:32:11 +00:00
|
|
|
_fail "Failed prerequisities: $1";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
check_image()
|
|
|
|
{
|
2015-05-21 14:33:16 +00:00
|
|
|
local image
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
image=$1
|
2015-04-03 07:01:12 +00:00
|
|
|
echo "testing image $(basename $image)" >> $RESULTS
|
|
|
|
$TOP/btrfs check $image >> $RESULTS 2>&1
|
2014-12-25 01:32:11 +00:00
|
|
|
[ $? -eq 0 ] && _fail "btrfs check should have detected corruption"
|
|
|
|
|
2015-04-03 07:01:12 +00:00
|
|
|
run_check $TOP/btrfs check --repair $image
|
|
|
|
run_check $TOP/btrfs check $image
|
2014-12-25 01:32:11 +00:00
|
|
|
}
|
|
|
|
|
2015-09-23 07:19:04 +00:00
|
|
|
# Extract a usable image from packed formats
|
2015-05-21 14:33:16 +00:00
|
|
|
# - raw btrfs filesystem images, suffix .raw
|
|
|
|
# - dtto compressed by XZ, suffix .raw.xz
|
|
|
|
# - meta-dump images with suffix .img
|
|
|
|
# - dtto compressed by XZ, suffix .img.xz
|
2015-09-23 07:19:04 +00:00
|
|
|
extract_image()
|
|
|
|
{
|
|
|
|
local image
|
|
|
|
local cleanme
|
|
|
|
|
|
|
|
image="$1"
|
|
|
|
case "$image" in
|
|
|
|
*.img)
|
|
|
|
rm -f $image.restored
|
|
|
|
: ;;
|
|
|
|
*.img.xz)
|
|
|
|
xz --decompress --keep "$image" || \
|
|
|
|
_fail "failed to decompress image $image" >&2
|
|
|
|
image=${image%%.xz}
|
|
|
|
rm -f $image.restored
|
|
|
|
cleanme=$image
|
|
|
|
;;
|
|
|
|
*.raw)
|
|
|
|
cp --sparse=auto $image $image.restored
|
|
|
|
;;
|
|
|
|
*.raw.xz)
|
|
|
|
xz --decompress --keep "$image" || \
|
|
|
|
_fail "failed to decompress image $image" >&2
|
|
|
|
image=${image%%.xz}
|
|
|
|
mv "$image" "$image".restored
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if ! [ -f $image.restored ]; then
|
|
|
|
echo "restoring image $(basename $image)" >> $RESULTS
|
2015-07-28 02:28:13 +00:00
|
|
|
$TOP/btrfs-image -r $image $image.restored \
|
|
|
|
&>> $RESULTS \
|
|
|
|
|| _fail "failed to restore image $image" >&2
|
2015-09-23 07:19:04 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
[ -f "$cleanme" ] && rm -f "$cleanme"
|
|
|
|
|
|
|
|
echo "$image.restored"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Process all image dumps in a given directory
|
2014-12-25 01:32:11 +00:00
|
|
|
check_all_images()
|
|
|
|
{
|
2015-09-23 07:19:04 +00:00
|
|
|
local dir
|
|
|
|
local extracted
|
|
|
|
|
|
|
|
dir="$1"
|
2015-05-21 14:33:16 +00:00
|
|
|
for image in $(find $dir \( -iname '*.img' -o \
|
|
|
|
-iname '*.img.xz' -o \
|
|
|
|
-iname '*.raw' -o \
|
2015-05-25 13:35:58 +00:00
|
|
|
-iname '*.raw.xz' \) | sort)
|
2014-12-25 01:32:11 +00:00
|
|
|
do
|
2015-09-23 07:19:04 +00:00
|
|
|
extracted=$(extract_image "$image")
|
|
|
|
check_image "$extracted"
|
|
|
|
rm -f "$extracted"
|
2014-12-25 01:32:11 +00:00
|
|
|
done
|
|
|
|
}
|
2015-01-14 17:07:43 +00:00
|
|
|
|
|
|
|
# some tests need to mount the recovered image and do verifications call
|
|
|
|
# 'setup_root_helper' and then check for have_root_helper == 1 if the test
|
|
|
|
# needs to fail otherwise; using sudo by default for now
|
2015-03-09 11:30:26 +00:00
|
|
|
SUDO_HELPER=
|
|
|
|
NEED_SUDO_VALIDATE=unknown
|
|
|
|
export SUDO_HELPER
|
|
|
|
export NEED_SUDO_VALIDATE
|
2015-03-02 03:41:50 +00:00
|
|
|
root_helper()
|
|
|
|
{
|
|
|
|
if [ $UID -eq 0 ]; then
|
2015-03-09 11:30:26 +00:00
|
|
|
"$@"
|
2015-03-02 03:41:50 +00:00
|
|
|
else
|
2015-03-09 11:30:26 +00:00
|
|
|
if [ "$NEED_SUDO_VALIDATE" = 'yes' ]; then
|
|
|
|
sudo -v -n &>/dev/null || \
|
|
|
|
_not_run "Need to validate sudo credentials"
|
|
|
|
sudo -n "$@"
|
|
|
|
elif [ "$NEED_SUDO_VALIDATE" = 'no' ]; then
|
|
|
|
sudo -n /bin/true &> /dev/null || \
|
|
|
|
_not_run "Need to validate sudo user settings"
|
|
|
|
sudo -n "$@"
|
2015-03-02 03:41:50 +00:00
|
|
|
else
|
|
|
|
# should not happen
|
2015-03-09 11:30:26 +00:00
|
|
|
_not_run "Need to validate root privileges"
|
2015-03-02 03:41:50 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-01-14 17:07:43 +00:00
|
|
|
setup_root_helper()
|
|
|
|
{
|
2015-03-02 03:41:50 +00:00
|
|
|
if [ $UID -eq 0 ]; then
|
|
|
|
return
|
|
|
|
fi
|
2015-03-09 11:30:26 +00:00
|
|
|
|
|
|
|
# Test for old sudo or special settings, which make sudo -v fail even
|
|
|
|
# if user setting is NOPASSWD
|
|
|
|
sudo -n /bin/true &>/dev/null && NEED_SUDO_VALIDATE=no
|
2015-03-02 03:41:50 +00:00
|
|
|
|
|
|
|
# Newer sudo or default sudo setting
|
2015-03-09 11:30:26 +00:00
|
|
|
sudo -v -n &>/dev/null && NEED_SUDO_VALIDATE=yes
|
2015-03-02 03:41:50 +00:00
|
|
|
|
2015-03-10 13:11:18 +00:00
|
|
|
if [ "$NEED_SUDO_VALIDATE" = 'unknown' ]; then
|
2015-03-09 11:30:26 +00:00
|
|
|
_not_run "Need to validate root privileges"
|
2015-01-14 17:07:43 +00:00
|
|
|
fi
|
2015-03-09 11:30:26 +00:00
|
|
|
SUDO_HELPER=root_helper
|
2015-01-14 17:07:43 +00:00
|
|
|
}
|
2015-07-27 12:24:31 +00:00
|
|
|
|
|
|
|
prepare_test_dev()
|
|
|
|
{
|
|
|
|
# num[K/M/G/T...]
|
|
|
|
local size="$1"
|
|
|
|
|
|
|
|
[[ "$TEST_DEV" ]] && return
|
|
|
|
[[ "$size" ]] || size='1G'
|
|
|
|
|
|
|
|
echo "\$TEST_DEV not given, use $TOP/test/test.img as fallback" >> \
|
|
|
|
$RESULTS
|
|
|
|
TEST_DEV="$TOP/tests/test.img"
|
|
|
|
|
|
|
|
truncate -s "$size" "$TEST_DEV" || _not_run "create file for loop device failed"
|
|
|
|
}
|
|
|
|
|
2015-09-01 12:45:22 +00:00
|
|
|
run_check_mount_test_dev()
|
|
|
|
{
|
|
|
|
setup_root_helper
|
|
|
|
|
|
|
|
local loop_opt
|
|
|
|
if [[ -b "$TEST_DEV" ]]; then
|
|
|
|
loop_opt=""
|
|
|
|
elif [[ -f "$TEST_DEV" ]]; then
|
|
|
|
loop_opt="-o loop"
|
|
|
|
else
|
|
|
|
_fail "Invalid \$TEST_DEV: $TEST_DEV"
|
|
|
|
fi
|
|
|
|
|
|
|
|
[[ -d "$TEST_MNT" ]] || {
|
|
|
|
_fail "Invalid \$TEST_MNT: $TEST_MNT"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_check $SUDO_HELPER mount $loop_opt "$@" "$TEST_DEV" "$TEST_MNT"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_check_umount_test_dev()
|
|
|
|
{
|
|
|
|
setup_root_helper
|
|
|
|
run_check $SUDO_HELPER umount "$@" "$TEST_DEV"
|
|
|
|
}
|
|
|
|
|
2015-08-31 05:04:36 +00:00
|
|
|
init_env()
|
|
|
|
{
|
|
|
|
TEST_MNT="${TEST_MNT:-$TOP/tests/mnt}"
|
|
|
|
export TEST_MNT
|
|
|
|
mkdir -p "$TEST_MNT" || { echo "Failed mkdir -p $TEST_MNT"; exit 1; }
|
|
|
|
}
|
|
|
|
init_env
|