2014-12-25 01:32:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Common routines for all tests
|
|
|
|
#
|
|
|
|
|
2016-11-11 00:18:49 +00:00
|
|
|
# assert that argument is not empty and is an existing path (file or directory)
|
|
|
|
_assert_path()
|
|
|
|
{
|
|
|
|
local path
|
|
|
|
|
|
|
|
path="$1"
|
|
|
|
if [ -z "$path" ]; then
|
|
|
|
echo "ASSERTION FAIL: $path is not valid"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "$path" -o -d "$path" -o -b "$path" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
echo "ASSERTION FAIL: $path is not valid"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
_fail()
|
|
|
|
{
|
2016-11-11 09:04:26 +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()
|
|
|
|
{
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "$*" | tee -a "$RESULTS"
|
2015-08-25 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2015-03-02 03:41:50 +00:00
|
|
|
_not_run()
|
|
|
|
{
|
|
|
|
echo " [NOTRUN] $*"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
run_check()
|
|
|
|
{
|
2016-11-11 09:04:26 +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-10-26 14:03:37 +00:00
|
|
|
if [ "$1" = 'root_helper' ]; then
|
2016-11-11 09:04:26 +00:00
|
|
|
"$@" >> "$RESULTS" 2>&1 || _fail "failed: $@"
|
2015-10-26 14:03:37 +00:00
|
|
|
else
|
2016-11-11 09:04:26 +00:00
|
|
|
$INSTRUMENT "$@" >> "$RESULTS" 2>&1 || _fail "failed: $@"
|
2015-10-26 14:03:37 +00:00
|
|
|
fi
|
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()
|
|
|
|
{
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "############### $@" >> "$RESULTS" 2>&1
|
2015-10-06 12:16:39 +00:00
|
|
|
if [ "$TEST_LOG" = 'tty' ]; then echo "CMD(stdout): $@" > /dev/tty; fi
|
2015-10-26 14:03:37 +00:00
|
|
|
if [ "$1" = 'root_helper' ]; then
|
2016-11-11 09:04:26 +00:00
|
|
|
"$@" 2>&1 | tee -a "$RESULTS" || _fail "failed: $@"
|
2015-10-26 14:03:37 +00:00
|
|
|
else
|
2016-11-11 09:04:26 +00:00
|
|
|
$INSTRUMENT "$@" 2>&1 | tee -a "$RESULTS" || _fail "failed: $@"
|
2015-10-26 14:03:37 +00:00
|
|
|
fi
|
2015-06-02 13:57:51 +00:00
|
|
|
}
|
|
|
|
|
2016-11-11 12:36:27 +00:00
|
|
|
# same as run_check but does not fail the test if it's handled gracefully by
|
|
|
|
# the tool, unexpected failure like segfault or abor will exit forcibly
|
|
|
|
# output is logged
|
2015-08-25 16:32:41 +00:00
|
|
|
run_mayfail()
|
|
|
|
{
|
2016-10-03 15:55:49 +00:00
|
|
|
local ret
|
|
|
|
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "############### $@" >> "$RESULTS" 2>&1
|
2015-10-06 12:16:39 +00:00
|
|
|
if [ "$TEST_LOG" = 'tty' ]; then echo "CMD(mayfail): $@" > /dev/tty; fi
|
2015-10-26 14:03:37 +00:00
|
|
|
if [ "$1" = 'root_helper' ]; then
|
2015-10-26 18:51:10 +00:00
|
|
|
"$@" >> $RESULTS 2>&1
|
2015-10-26 14:03:37 +00:00
|
|
|
else
|
2016-11-11 09:04:26 +00:00
|
|
|
$INSTRUMENT "$@" >> "$RESULTS" 2>&1
|
2015-10-26 18:51:10 +00:00
|
|
|
fi
|
2016-10-03 15:55:49 +00:00
|
|
|
ret=$?
|
|
|
|
if [ $ret != 0 ]; then
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "failed (ignored, ret=$ret): $@" >> "$RESULTS"
|
2016-10-03 15:55:49 +00:00
|
|
|
if [ $ret == 139 ]; then
|
|
|
|
_fail "mayfail: returned code 139 (SEGFAULT), not ignored"
|
2016-10-04 16:53:38 +00:00
|
|
|
elif [ $ret == 134 ]; then
|
|
|
|
_fail "mayfail: returned code 134 (SIGABRT), not ignored"
|
2016-10-03 15:55:49 +00:00
|
|
|
fi
|
|
|
|
return $ret
|
2015-10-26 14:03:37 +00:00
|
|
|
fi
|
2015-08-25 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 17:47:18 +00:00
|
|
|
# first argument is error message to print if it fails, otherwise
|
|
|
|
# same as run_check but expects the command to fail, output is logged
|
|
|
|
run_mustfail()
|
|
|
|
{
|
|
|
|
local msg
|
|
|
|
|
|
|
|
msg="$1"
|
|
|
|
shift
|
|
|
|
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "############### $@" >> "$RESULTS" 2>&1
|
2016-03-22 17:47:18 +00:00
|
|
|
if [ "$TEST_LOG" = 'tty' ]; then echo "CMD(mustfail): $@" > /dev/tty; fi
|
|
|
|
if [ "$1" = 'root_helper' ]; then
|
2016-11-11 09:04:26 +00:00
|
|
|
"$@" >> "$RESULTS" 2>&1
|
2016-03-22 17:47:18 +00:00
|
|
|
else
|
2016-11-11 09:04:26 +00:00
|
|
|
$INSTRUMENT "$@" >> "$RESULTS" 2>&1
|
2016-03-22 17:47:18 +00:00
|
|
|
fi
|
|
|
|
if [ $? != 0 ]; then
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "failed (expected): $@" >> "$RESULTS"
|
2016-03-22 17:47:18 +00:00
|
|
|
return 0
|
|
|
|
else
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "succeeded (unexpected!): $@" >> "$RESULTS"
|
2016-03-22 17:47:18 +00:00
|
|
|
_fail "unexpected success: $msg"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
check_prereq()
|
|
|
|
{
|
2016-11-11 09:04:26 +00:00
|
|
|
if ! [ -f "$TOP/$1" ]; then
|
2016-05-11 23:50:36 +00:00
|
|
|
_fail "Failed prerequisites: $1";
|
2014-12-25 01:32:11 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-06-03 02:34:25 +00:00
|
|
|
check_global_prereq()
|
|
|
|
{
|
|
|
|
which $1 &> /dev/null
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
_fail "Failed system wide prerequisities: $1";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
check_image()
|
|
|
|
{
|
2015-05-21 14:33:16 +00:00
|
|
|
local image
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
image=$1
|
2016-11-11 09:04:26 +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"
|
|
|
|
|
2016-11-11 09:04:26 +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
|
2016-11-09 10:39:02 +00:00
|
|
|
# - compressed send stream, .stream.xz
|
2015-09-23 07:19:04 +00:00
|
|
|
extract_image()
|
|
|
|
{
|
|
|
|
local image
|
|
|
|
local cleanme
|
|
|
|
|
|
|
|
image="$1"
|
|
|
|
case "$image" in
|
|
|
|
*.img)
|
2016-11-11 09:04:26 +00:00
|
|
|
rm -f "$image.restored"
|
2015-09-23 07:19:04 +00:00
|
|
|
: ;;
|
|
|
|
*.img.xz)
|
|
|
|
xz --decompress --keep "$image" || \
|
|
|
|
_fail "failed to decompress image $image" >&2
|
|
|
|
image=${image%%.xz}
|
2016-11-11 09:04:26 +00:00
|
|
|
rm -f "$image.restored"
|
2015-09-23 07:19:04 +00:00
|
|
|
cleanme=$image
|
|
|
|
;;
|
|
|
|
*.raw)
|
2016-11-11 09:04:26 +00:00
|
|
|
cp --sparse=auto "$image" "$image.restored"
|
2015-09-23 07:19:04 +00:00
|
|
|
;;
|
|
|
|
*.raw.xz)
|
|
|
|
xz --decompress --keep "$image" || \
|
|
|
|
_fail "failed to decompress image $image" >&2
|
|
|
|
image=${image%%.xz}
|
2016-11-11 09:04:26 +00:00
|
|
|
mv "$image" "$image.restored"
|
2015-09-23 07:19:04 +00:00
|
|
|
;;
|
2016-11-09 10:39:02 +00:00
|
|
|
*.stream.xz)
|
|
|
|
xz --decompress --keep "$image" || \
|
|
|
|
_fail "failed to decompress file $image" >&2
|
|
|
|
image=${image%%.xz}
|
2016-11-11 09:04:26 +00:00
|
|
|
mv "$image" "$image.restored"
|
2016-11-09 10:39:02 +00:00
|
|
|
;;
|
2015-09-23 07:19:04 +00:00
|
|
|
esac
|
|
|
|
|
2016-11-11 09:04:26 +00:00
|
|
|
if ! [ -f "$image.restored" ]; then
|
|
|
|
echo "restoring image $(basename $image)" >> "$RESULTS"
|
|
|
|
"$TOP/btrfs-image" -r "$image" "$image.restored" \
|
|
|
|
&>> "$RESULTS" \
|
2015-07-28 02:28:13 +00:00
|
|
|
|| _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"
|
2016-11-11 09:04:26 +00:00
|
|
|
for image in $(find "$dir" \( -iname '*.img' -o \
|
2015-05-21 14:33:16 +00:00
|
|
|
-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-10-23 09:34:50 +00:00
|
|
|
if [ $UID -eq 0 -o -n "$SUDO_HELPER" ]; then
|
2015-03-02 03:41:50 +00:00
|
|
|
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
|
2015-10-23 09:25:55 +00:00
|
|
|
[[ "$size" ]] || size='2G'
|
2015-07-27 12:24:31 +00:00
|
|
|
|
|
|
|
echo "\$TEST_DEV not given, use $TOP/test/test.img as fallback" >> \
|
2016-11-11 09:04:26 +00:00
|
|
|
"$RESULTS"
|
2015-07-27 12:24:31 +00:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2016-11-10 17:57:38 +00:00
|
|
|
check_kernel_support()
|
|
|
|
{
|
|
|
|
if ! grep -iq 'btrfs' /proc/filesystems; then
|
|
|
|
echo "WARNING: btrfs filesystem not listed in /proc/filesystems, some tests might fail"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
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; }
|
2016-11-10 17:57:38 +00:00
|
|
|
|
2015-08-31 05:04:36 +00:00
|
|
|
}
|
|
|
|
init_env
|