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-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
|
|
|
|
"$@" >> $RESULTS 2>&1 || _fail "failed: $@"
|
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()
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
check_all_images()
|
|
|
|
{
|
|
|
|
dir=$1
|
|
|
|
for i in $(find $dir -iname '*.img')
|
|
|
|
do
|
2015-04-03 07:01:12 +00:00
|
|
|
echo "extracting image $(basename $i)" >> $RESULTS
|
|
|
|
$TOP/btrfs-image -r $i $i.restored || \
|
2014-12-25 01:32:11 +00:00
|
|
|
_fail "failed to extract image $i"
|
|
|
|
|
|
|
|
check_image $i.restored
|
|
|
|
|
|
|
|
rm $i.restored
|
|
|
|
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
|
|
|
}
|