2014-12-25 01:32:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Common routines for all tests
|
|
|
|
#
|
|
|
|
|
2020-04-07 07:18:45 +00:00
|
|
|
# Temporary array for building the final command, injecting arguments as needed
|
|
|
|
declare -a cmd_array
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-08-23 17:26:42 +00:00
|
|
|
# $1: this string gets matched to files, absolute or relative path, or a
|
|
|
|
# systemwide command available via $PATH
|
|
|
|
_is_file_or_command()
|
|
|
|
{
|
|
|
|
local msg
|
|
|
|
|
|
|
|
msg="$1"
|
|
|
|
if [ -z "$msg" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "$msg" -o -d "$msg" -o -b "$msg" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
2017-09-15 14:18:00 +00:00
|
|
|
msg=$(type -p -- "$msg")
|
2017-08-25 13:44:24 +00:00
|
|
|
if [ -f "$msg" ]; then
|
2017-08-23 17:26:42 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 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()
|
|
|
|
{
|
2019-07-24 12:00:55 +00:00
|
|
|
echo "$*" >> "$RESULTS"
|
2015-08-25 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 18:24:07 +00:00
|
|
|
# copy stdout to log and pass to stdout, eg. another stdout consumer, commands
|
|
|
|
# should redirect stderr to stdout if this is consmed by further commands
|
|
|
|
_log_stdout()
|
|
|
|
{
|
|
|
|
tee -a "$RESULTS"
|
|
|
|
}
|
|
|
|
|
2020-08-28 16:23:09 +00:00
|
|
|
# print a message to stdout and to log that something was skipped
|
|
|
|
_log_skipped()
|
|
|
|
{
|
|
|
|
echo " [SKIPPED] $*" | tee -a "$RESULTS"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2015-03-02 03:41:50 +00:00
|
|
|
_not_run()
|
|
|
|
{
|
|
|
|
echo " [NOTRUN] $*"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:32:18 +00:00
|
|
|
# debugging helper
|
|
|
|
_dump_args()
|
|
|
|
{
|
|
|
|
local i
|
|
|
|
|
|
|
|
i=1
|
|
|
|
echo "DUMP args for ${FUNCNAME[1]}:"
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
echo "ARG[$i]: $1"
|
|
|
|
i=$(($i+1))
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# read arguments, look if we're calling btrfs and if there's a known
|
|
|
|
# subcommand, return argument index to insert, taking root helper into
|
|
|
|
# consideration, returns 2 for unknown subcommand
|
|
|
|
_get_spec_ins()
|
|
|
|
{
|
|
|
|
if [ "$1" = 'root_helper' ]; then
|
|
|
|
if [[ $2 =~ /btrfs$ ]]; then
|
|
|
|
echo -n 4
|
|
|
|
return
|
|
|
|
fi
|
2019-11-05 19:14:56 +00:00
|
|
|
if [[ $2 =~ /mkfs.btrfs$ ]]; then
|
|
|
|
echo -n 3
|
|
|
|
return
|
|
|
|
fi
|
2019-11-05 19:14:56 +00:00
|
|
|
if [[ $2 =~ /btrfs-convert$ ]]; then
|
|
|
|
echo -n 3
|
|
|
|
return
|
|
|
|
fi
|
2016-11-22 12:32:18 +00:00
|
|
|
else
|
|
|
|
if [[ $1 =~ /btrfs$ ]]; then
|
|
|
|
echo -n 3
|
|
|
|
return
|
|
|
|
fi
|
2019-11-05 19:14:56 +00:00
|
|
|
if [[ $1 =~ /mkfs.btrfs$ ]]; then
|
|
|
|
echo -n 2
|
|
|
|
return
|
|
|
|
fi
|
2019-11-05 19:14:56 +00:00
|
|
|
if [[ $1 =~ /btrfs-convert$ ]]; then
|
|
|
|
echo -n 2
|
|
|
|
return
|
|
|
|
fi
|
2016-11-22 12:32:18 +00:00
|
|
|
fi
|
|
|
|
echo -n 2
|
|
|
|
}
|
|
|
|
|
|
|
|
# return command-specific arguments if enabled
|
|
|
|
_cmd_spec()
|
|
|
|
{
|
|
|
|
if [ "$TEST_ENABLE_OVERRIDE" = 'true' ]; then
|
|
|
|
# if defined via common.local, use it, otherwise pass make
|
|
|
|
# arguments
|
|
|
|
if [ "$(type -t _skip_spec)" = 'function' ]; then
|
|
|
|
if _skip_spec "$@"; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
case "$1" in
|
|
|
|
check) echo -n "$TEST_ARGS_CHECK" ;;
|
2019-11-05 19:14:56 +00:00
|
|
|
*/mkfs.btrfs) echo -n "$TEST_ARGS_MKFS" ;;
|
2019-11-05 19:14:56 +00:00
|
|
|
*/btrfs-convert) echo -n "$TEST_ARGS_CONVERT" ;;
|
2016-11-22 12:32:18 +00:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-04-07 07:18:45 +00:00
|
|
|
# Check if $1 is a known command that may need parameter injection or some
|
|
|
|
# special handling regarding $INSTRUMENT
|
|
|
|
_is_target_command()
|
|
|
|
{
|
|
|
|
[[ $1 =~ /btrfs$ ]] && return 0
|
|
|
|
[[ $1 =~ /mkfs.btrfs$ ]] && return 0
|
|
|
|
[[ $1 =~ /btrfs-convert$ ]] && return 0
|
|
|
|
[[ $1 =~ /btrfs-corrupt-block$ ]] && return 0
|
|
|
|
[[ $1 =~ /btrfs-image$ ]] && return 0
|
|
|
|
[[ $1 =~ /btrfs-select-super$ ]] && return 0
|
|
|
|
[[ $1 =~ /btrfs-find-root$ ]] && return 0
|
|
|
|
[[ $1 =~ /btrfstune$ ]] && return 0
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Expanding extra commands/options for current command string
|
|
|
|
# This function is responsible for inserting the following things:
|
|
|
|
# - @INSTRUMENT before 'btrfs' commands
|
|
|
|
# To ensure that $INSTRUMENT is not executed for things like sudo/mount
|
|
|
|
# which normally have setuid/setgid which will not be instrumented
|
|
|
|
#
|
|
|
|
# - Add extra arguments for 'btrfs check/mkfs.btrfs/btrfs-convert'
|
|
|
|
# This allows us to test certain functionality like lowmem mode for 'btrfs
|
|
|
|
# check'
|
|
|
|
expand_command()
|
|
|
|
{
|
|
|
|
local command_index
|
|
|
|
local ins
|
|
|
|
local spec
|
|
|
|
local i
|
|
|
|
|
|
|
|
ins=$(_get_spec_ins "$@")
|
|
|
|
spec=$(($ins-1))
|
|
|
|
spec=$(_cmd_spec "${@:$spec}")
|
|
|
|
cmd_array=()
|
|
|
|
|
|
|
|
if [ "$1" = 'root_helper' ] && _is_target_command "$2" ; then
|
|
|
|
command_index=2
|
|
|
|
elif _is_target_command "$1" ; then
|
|
|
|
command_index=1
|
|
|
|
else
|
|
|
|
# Since we iterate from offset 1, this never get hit, thus we
|
|
|
|
# won't insert $INSTRUMENT
|
|
|
|
command_index=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
for ((i = 1; i <= $#; i++ )); do
|
|
|
|
if [ $i -eq $command_index -a ! -z "$INSTRUMENT" ]; then
|
|
|
|
cmd_array+=($INSTRUMENT)
|
|
|
|
fi
|
|
|
|
if [ $i -eq $ins -a ! -z "$spec" ]; then
|
|
|
|
cmd_array+=("$spec")
|
|
|
|
fi
|
2021-01-29 13:24:33 +00:00
|
|
|
if [ $i -eq $command_index -a "$TEST_FLAVOR" = 'static' ]; then
|
|
|
|
cmd_array+=("${!i}".static)
|
|
|
|
else
|
|
|
|
cmd_array+=("${!i}")
|
|
|
|
fi
|
2020-04-07 07:18:45 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:32:18 +00:00
|
|
|
# Argument passing magic:
|
|
|
|
# the command passed to run_* helpers is inspected, if there's 'btrfs command'
|
|
|
|
# found and there are defined additional arguments, they're inserted just after
|
|
|
|
# the command name, ie. any arguments in the test could override them.
|
|
|
|
#
|
|
|
|
# The root helper is recognized. Unrecognized subcommands or external tools
|
|
|
|
# are not affected.
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
run_check()
|
|
|
|
{
|
2020-04-07 07:18:45 +00:00
|
|
|
expand_command "$@"
|
|
|
|
echo "====== RUN CHECK ${cmd_array[@]}" >> "$RESULTS" 2>&1
|
|
|
|
if [[ $TEST_LOG =~ tty ]]; then echo "CMD: ${cmd_array[@]}" > /dev/tty; fi
|
2016-11-22 12:32:18 +00:00
|
|
|
|
2020-04-07 07:18:45 +00:00
|
|
|
"${cmd_array[@]}" >> "$RESULTS" 2>&1 || _fail "failed: ${cmd_array[@]}"
|
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
|
2020-04-07 07:18:44 +00:00
|
|
|
#
|
|
|
|
# NOTE: If this function is called on btrfs related commands, caller should
|
|
|
|
# filter the output, as INSTRUMENT can easily pollute the output.
|
2015-06-02 13:57:51 +00:00
|
|
|
run_check_stdout()
|
|
|
|
{
|
2020-04-07 07:18:45 +00:00
|
|
|
expand_command "$@"
|
|
|
|
echo "====== RUN CHECK ${cmd_array[@]}" >> "$RESULTS" 2>&1
|
|
|
|
if [[ $TEST_LOG =~ tty ]]; then echo "CMD(stdout): ${cmd_array[@]}" \
|
|
|
|
> /dev/tty; fi
|
|
|
|
"${cmd_array[@]}" 2>&1 | tee -a "$RESULTS"
|
2017-09-05 05:49:02 +00:00
|
|
|
if [ ${PIPESTATUS[0]} -ne 0 ]; then
|
|
|
|
_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
|
2018-11-26 16:53:43 +00:00
|
|
|
# the tool, unexpected failure like segfault or abort will exit forcibly
|
2016-11-11 12:36:27 +00:00
|
|
|
# output is logged
|
2015-08-25 16:32:41 +00:00
|
|
|
run_mayfail()
|
|
|
|
{
|
2020-04-07 07:18:45 +00:00
|
|
|
expand_command "$@"
|
|
|
|
echo "====== RUN MAYFAIL ${cmd_array[@]}" >> "$RESULTS" 2>&1
|
|
|
|
if [[ $TEST_LOG =~ tty ]]; then echo "CMD(mayfail): ${cmd_array[@]}" \
|
|
|
|
> /dev/tty; fi
|
|
|
|
"${cmd_array[@]}" >> "$RESULTS" 2>&1
|
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
|
|
|
}
|
|
|
|
|
2020-03-20 23:27:21 +00:00
|
|
|
# Same as run_mayfail but does not fail the test if it's handled gracefully by
|
|
|
|
# the caller, unexpected failure like segfault or abort will exit forcibly,
|
|
|
|
# output is logged
|
|
|
|
#
|
|
|
|
# NOTE: we don't use pipefail to avoid disturbing the rest of the caller
|
|
|
|
# script, so here we use a temporary output file. Pipes are not supported,
|
|
|
|
# store the output to a variable for further processing.
|
|
|
|
run_mayfail_stdout()
|
|
|
|
{
|
2021-10-11 13:50:09 +00:00
|
|
|
tmp_output=$(mktemp --tmpdir btrfs-progs-mayfail-stdout.XXXXXX)
|
2020-03-20 23:27:21 +00:00
|
|
|
|
2020-04-07 07:18:45 +00:00
|
|
|
expand_command "$@"
|
|
|
|
echo "====== RUN MAYFAIL ${cmd_array[@]}" >> "$RESULTS" 2>&1
|
|
|
|
if [[ $TEST_LOG =~ tty ]]; then echo "CMD(mayfail): ${cmd_array[@]}" \
|
|
|
|
> /dev/tty; fi
|
|
|
|
"${cmd_array[@]}" 2>&1 > "$tmp_output"
|
2020-03-20 23:27:21 +00:00
|
|
|
ret=$?
|
|
|
|
|
|
|
|
cat "$tmp_output" >> "$RESULTS"
|
|
|
|
cat "$tmp_output"
|
|
|
|
rm -- "$tmp_output"
|
|
|
|
|
|
|
|
if [ "$ret" != 0 ]; then
|
|
|
|
echo "failed (ignored, ret=$ret): $@" >> "$RESULTS"
|
|
|
|
if [ "$ret" == 139 ]; then
|
|
|
|
_fail "mayfail: returned code 139 (SEGFAULT), not ignored"
|
|
|
|
elif [ "$ret" == 134 ]; then
|
|
|
|
_fail "mayfail: returned code 134 (SIGABRT), not ignored"
|
|
|
|
fi
|
|
|
|
return "$ret"
|
|
|
|
fi
|
|
|
|
# return the command code and let the caller decide what to do based
|
|
|
|
# on the stdout
|
|
|
|
return "$ret"
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
2017-08-23 17:26:42 +00:00
|
|
|
if _is_file_or_command "$msg"; then
|
|
|
|
echo "ASSERTION FAIL: 1st argument of run_mustfail must be a message"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-04-07 07:18:45 +00:00
|
|
|
|
|
|
|
expand_command "$@"
|
|
|
|
echo "====== RUN MUSTFAIL ${cmd_array[@]}" >> "$RESULTS" 2>&1
|
|
|
|
if [[ $TEST_LOG =~ tty ]]; then echo "CMD(mustfail): ${cmd_array[@]}" \
|
|
|
|
> /dev/tty; fi
|
|
|
|
"${cmd_array[@]}" >> "$RESULTS" 2>&1
|
2016-03-22 17:47:18 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-11-01 01:30:41 +00:00
|
|
|
# The first parameter is error message to print if it fails, just like
|
|
|
|
# run_must_fail().
|
|
|
|
# NOTE: we don't use pipefail to avoid disturbing other script, so here we
|
|
|
|
# use a temporary output file.
|
|
|
|
# So it doesn't support pipeline in the @cmd
|
|
|
|
run_mustfail_stdout()
|
|
|
|
{
|
|
|
|
local msg
|
|
|
|
local ret
|
|
|
|
local tmp_output
|
|
|
|
|
2021-10-11 13:50:09 +00:00
|
|
|
tmp_output=$(mktemp --tmpdir btrfs-progs-mustfail-stdout.XXXXXX)
|
2017-11-01 01:30:41 +00:00
|
|
|
|
|
|
|
msg="$1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
if _is_file_or_command "$msg"; then
|
|
|
|
echo "ASSERTION FAIL: 1st argument of run_mustfail_stdout must be a message"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-04-07 07:18:45 +00:00
|
|
|
expand_command "$@"
|
|
|
|
echo "====== RUN MUSTFAIL ${cmd_array[@]}" >> "$RESULTS" 2>&1
|
|
|
|
if [[ $TEST_LOG =~ tty ]]; then echo "CMD(mustfail): ${cmd_array[@]}" \
|
|
|
|
> /dev/tty; fi
|
|
|
|
"${cmd_array[@]}" 2>&1 > "$tmp_output"
|
2017-11-01 01:30:41 +00:00
|
|
|
ret=$?
|
|
|
|
|
|
|
|
cat "$tmp_output" >> "$RESULTS"
|
|
|
|
cat "$tmp_output"
|
|
|
|
rm "$tmp_output"
|
|
|
|
|
|
|
|
if [ "$ret" != 0 ]; then
|
|
|
|
echo "failed (expected): $@" >> "$RESULTS"
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
echo "succeeded (unexpected!): $@" >> "$RESULTS"
|
|
|
|
_fail "unexpected success: $msg"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
check_prereq()
|
|
|
|
{
|
2020-03-01 03:33:44 +00:00
|
|
|
# Internal tools for testing, not shipped with the package
|
|
|
|
case "$1" in
|
|
|
|
btrfs-corrupt-block|btrfs-find-root|btrfs-select-super|fssum)
|
2018-02-08 06:34:19 +00:00
|
|
|
if ! [ -f "$INTERNAL_BIN/$1" ]; then
|
|
|
|
_fail "Failed prerequisites: $INTERNAL_BIN/$1";
|
|
|
|
fi
|
2020-03-01 03:33:44 +00:00
|
|
|
;;
|
|
|
|
*)
|
2021-01-29 13:24:33 +00:00
|
|
|
bin="$TOP/$1"
|
|
|
|
if [ "$TEST_FLAVOR" = 'static' ]; then
|
|
|
|
bin="${bin}.static"
|
|
|
|
fi
|
|
|
|
if ! [ -f "$bin" ]; then
|
|
|
|
_fail "Failed prerequisites: $bin";
|
2020-03-01 03:33:44 +00:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2014-12-25 01:32:11 +00:00
|
|
|
}
|
|
|
|
|
2016-06-03 02:34:25 +00:00
|
|
|
check_global_prereq()
|
|
|
|
{
|
2021-02-05 13:23:11 +00:00
|
|
|
type -p "$1" &> /dev/null
|
2016-06-03 02:34:25 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
_fail "Failed system wide prerequisities: $1";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-09-07 14:48:42 +00:00
|
|
|
# Check if dmsetup and the target passed as argument is available, and skip the
|
2021-09-07 14:57:06 +00:00
|
|
|
# test if they aren't. Some targets may be loaded by different module name, in
|
|
|
|
# that case the 2nd parameter is used as well if specified.
|
|
|
|
#
|
2021-09-07 14:48:42 +00:00
|
|
|
# $1: the target name, expectind module dm-$1
|
2021-09-07 14:57:06 +00:00
|
|
|
# $2: optional name or alias, if specified, fail
|
2019-12-17 20:31:52 +00:00
|
|
|
check_dm_target_support()
|
|
|
|
{
|
2021-09-07 14:48:42 +00:00
|
|
|
local target="$1"
|
2021-09-07 14:57:06 +00:00
|
|
|
local secondary="$2"
|
2021-09-07 14:48:42 +00:00
|
|
|
|
2019-12-17 20:31:52 +00:00
|
|
|
setup_root_helper
|
2019-12-17 20:31:55 +00:00
|
|
|
|
2021-02-05 13:23:11 +00:00
|
|
|
type -p dmsetup &> /dev/null
|
2019-12-17 20:31:55 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
_not_run "This test requires dmsetup tool";
|
|
|
|
fi
|
|
|
|
|
2021-09-07 14:48:42 +00:00
|
|
|
$SUDO_HELPER modprobe "dm-$target" >/dev/null 2>&1
|
|
|
|
$SUDO_HELPER dmsetup targets 2>&1 | grep -q "^$target"
|
|
|
|
if [ $? -ne 0 ]; then
|
2021-09-07 14:57:06 +00:00
|
|
|
# Try the other name
|
|
|
|
if ! [ -z "$secondary" ]; then
|
|
|
|
$SUDO_HELPER modprobe "dm-$secondary" >/dev/null 2>&1
|
|
|
|
$SUDO_HELPER dmsetup targets 2>&1 | grep -q "^$secondary"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
2021-09-07 14:48:42 +00:00
|
|
|
_not_run "This test requires dm-$target support"
|
|
|
|
fi
|
2019-12-17 20:31:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
check_image()
|
|
|
|
{
|
2015-05-21 14:33:16 +00:00
|
|
|
local image
|
2021-08-18 06:44:18 +00:00
|
|
|
local tmp_output
|
|
|
|
|
2021-10-11 13:50:09 +00:00
|
|
|
tmp_output=$(mktemp --tmpdir btrfs-progs-check-image.XXXXXX)
|
2015-05-21 14:33:16 +00:00
|
|
|
|
2014-12-25 01:32:11 +00:00
|
|
|
image=$1
|
2016-11-11 09:04:26 +00:00
|
|
|
echo "testing image $(basename $image)" >> "$RESULTS"
|
2021-08-23 19:23:05 +00:00
|
|
|
run_mustfail_stdout "btrfs check should have detected corruption" \
|
|
|
|
"$TOP/btrfs" check "$image" &> "$tmp_output"
|
2021-08-18 06:44:18 +00:00
|
|
|
|
|
|
|
# Also make sure no subpage related warnings
|
|
|
|
check_test_results "$tmp_output" "$testname"
|
2014-12-25 01:32:11 +00:00
|
|
|
|
2019-12-18 01:19:37 +00:00
|
|
|
run_check "$TOP/btrfs" check --repair --force "$image"
|
2021-08-18 06:44:18 +00:00
|
|
|
run_check_stdout "$TOP/btrfs" check "$image" &> "$tmp_output"
|
|
|
|
|
|
|
|
# Also make sure no subpage related warnings for the repaired image
|
|
|
|
check_test_results "$tmp_output" "$testname"
|
|
|
|
rm -f -- "$tmp_output"
|
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"
|
2018-02-07 09:57:43 +00:00
|
|
|
;;
|
2015-09-23 07:19:04 +00:00
|
|
|
*.img.xz)
|
2021-03-01 12:22:06 +00:00
|
|
|
xz --decompress --keep --force "$image" || \
|
2015-09-23 07:19:04 +00:00
|
|
|
_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)
|
2021-03-01 12:22:06 +00:00
|
|
|
cp --sparse=auto --force "$image" "$image.restored"
|
2015-09-23 07:19:04 +00:00
|
|
|
;;
|
|
|
|
*.raw.xz)
|
2021-03-01 12:22:06 +00:00
|
|
|
xz --decompress --keep --force "$image" || \
|
2015-09-23 07:19:04 +00:00
|
|
|
_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)
|
2021-03-01 12:22:06 +00:00
|
|
|
xz --decompress --keep --force "$image" || \
|
2016-11-09 10:39:02 +00:00
|
|
|
_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-18 18:21:02 +00:00
|
|
|
if [ -z "$dir" ]; then
|
|
|
|
dir=.
|
|
|
|
fi
|
|
|
|
_assert_path "$dir"
|
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"
|
|
|
|
|
2015-10-23 09:25:55 +00:00
|
|
|
[[ "$size" ]] || size='2G'
|
2017-11-01 01:30:42 +00:00
|
|
|
# Still truncate it to new size
|
|
|
|
if [ -n "$TEST_DEV" ]; then
|
2018-01-23 16:22:30 +00:00
|
|
|
truncate -s 0 "$TEST_DEV"
|
2017-11-01 01:30:42 +00:00
|
|
|
truncate -s "$size" "$TEST_DEV"
|
|
|
|
return;
|
|
|
|
fi
|
2015-07-27 12:24:31 +00:00
|
|
|
|
2018-02-08 06:34:19 +00:00
|
|
|
echo "\$TEST_DEV not given, using $TEST_TOP/test.img as fallback" >> \
|
2016-11-11 09:04:26 +00:00
|
|
|
"$RESULTS"
|
2018-02-08 06:34:19 +00:00
|
|
|
TEST_DEV="$TEST_TOP/test.img"
|
2015-07-27 12:24:31 +00:00
|
|
|
|
2018-01-23 16:22:30 +00:00
|
|
|
truncate -s 0 "$TEST_DEV"
|
2015-07-27 12:24:31 +00:00
|
|
|
truncate -s "$size" "$TEST_DEV" || _not_run "create file for loop device failed"
|
|
|
|
}
|
|
|
|
|
2019-06-05 16:55:48 +00:00
|
|
|
# Create filesystem on $TEST_DEV with given options,
|
|
|
|
# do not use for multi-device filesystem
|
|
|
|
# $1-$n: optional, default is -f
|
|
|
|
run_check_mkfs_test_dev()
|
|
|
|
{
|
|
|
|
setup_root_helper
|
|
|
|
|
|
|
|
# check accidental files/devices passed
|
|
|
|
for opt in "$@"; do
|
|
|
|
if [ -f "$opt" -o -b "$opt" ]; then
|
|
|
|
_fail "ERROR: unexpected option for run_check_mkfs_test_dev: device"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
run_check $SUDO_HELPER "$TOP/mkfs.btrfs" -f "$@" "$TEST_DEV"
|
|
|
|
}
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2017-07-12 20:05:22 +00:00
|
|
|
run_check $SUDO_HELPER mount -t btrfs $loop_opt "$@" "$TEST_DEV" "$TEST_MNT"
|
2015-09-01 12:45:22 +00:00
|
|
|
}
|
|
|
|
|
2018-01-30 17:51:25 +00:00
|
|
|
# $1-$n: optional paths to unmount, otherwise fallback to TEST_DEV
|
2015-09-01 12:45:22 +00:00
|
|
|
run_check_umount_test_dev()
|
|
|
|
{
|
|
|
|
setup_root_helper
|
2018-01-30 17:51:25 +00:00
|
|
|
if [ "$#" = 0 ]; then
|
|
|
|
set -- "$TEST_DEV"
|
|
|
|
fi
|
|
|
|
run_check $SUDO_HELPER umount "$@"
|
2015-09-01 12:45:22 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 17:57:38 +00:00
|
|
|
check_kernel_support()
|
|
|
|
{
|
|
|
|
if ! grep -iq 'btrfs' /proc/filesystems; then
|
2017-10-27 06:00:24 +00:00
|
|
|
run_check $SUDO_HELPER modprobe btrfs
|
|
|
|
if ! grep -iq 'btrfs' /proc/filesystems; then
|
|
|
|
echo \
|
|
|
|
"WARNING: btrfs filesystem not found in /proc/filesystems, some tests might fail"
|
|
|
|
return 1
|
|
|
|
fi
|
2016-11-10 17:57:38 +00:00
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2019-07-02 11:36:53 +00:00
|
|
|
# compare running kernel version to the given parameter, return success
|
|
|
|
# if running is newer than requested (let caller decide if to fail or skip)
|
|
|
|
# $1: minimum version of running kernel in major.minor format (eg. 4.19)
|
2022-10-05 02:25:12 +00:00
|
|
|
#
|
|
|
|
# Return 0 if we meet the minimal version requirement.
|
|
|
|
# Return 1 if not.
|
2019-07-02 11:36:53 +00:00
|
|
|
check_min_kernel_version()
|
|
|
|
{
|
|
|
|
local unamemajor
|
|
|
|
local unameminor
|
|
|
|
local argmajor
|
|
|
|
local argminor
|
|
|
|
|
|
|
|
# 4.19.1-1-default
|
|
|
|
uname=$(uname -r)
|
|
|
|
# 4.19.1
|
|
|
|
uname=${uname%%-*}
|
|
|
|
IFS=. read unamemajor unameminor tmp <<< "$uname"
|
|
|
|
IFS=. read argmajor argminor tmp <<< "$1"
|
2022-10-05 02:25:12 +00:00
|
|
|
# If our major > target major, we definitely meet the requirement.
|
|
|
|
# If our major < target major, we definitely don't meet the requirement.
|
|
|
|
if [ "$unamemajor" -gt "$argmajor" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
if [ "$unamemajor" -lt "$argmajor" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Only when our major is the same as the target, we need to compare
|
|
|
|
# the minor number.
|
|
|
|
# In this case, if our minor >= target minor, we meet the requirement.
|
|
|
|
if [ "$unameminor" -ge "$argminor" ]; then
|
|
|
|
return 0;
|
|
|
|
fi
|
|
|
|
return 1
|
2019-07-02 11:36:53 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 07:18:44 +00:00
|
|
|
# Get subvolume id for specified path
|
|
|
|
_get_subvolid()
|
|
|
|
{
|
|
|
|
# run_check_stdout may have INSTRUMENT polluting the output, we need to
|
|
|
|
# filter the output
|
|
|
|
run_check_stdout "$TOP/btrfs" inspect-internal rootid "$1" | \
|
|
|
|
grep -e "^[[:digit:]]\+$"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-21 05:10:41 +00:00
|
|
|
# how many files to create.
|
|
|
|
DATASET_SIZE=50
|
|
|
|
|
|
|
|
generate_dataset() {
|
|
|
|
|
|
|
|
dataset_type="$1"
|
|
|
|
dirpath=$TEST_MNT/$dataset_type
|
|
|
|
run_check $SUDO_HELPER mkdir -p "$dirpath"
|
|
|
|
|
2016-11-21 13:51:40 +00:00
|
|
|
case "$dataset_type" in
|
2016-11-21 05:10:41 +00:00
|
|
|
small)
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
|
|
|
run_check $SUDO_HELPER dd if=/dev/urandom of="$dirpath/$dataset_type.$num" bs=10K \
|
2019-07-02 11:44:02 +00:00
|
|
|
count=1 status=noxfer >/dev/null 2>&1
|
2016-11-21 05:10:41 +00:00
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
hardlink)
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
2016-11-21 13:51:40 +00:00
|
|
|
run_check $SUDO_HELPER touch "$dirpath/$dataset_type.$num"
|
2016-11-21 05:10:41 +00:00
|
|
|
run_check $SUDO_HELPER ln "$dirpath/$dataset_type.$num" "$dirpath/hlink.$num"
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
fast_symlink)
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
2016-11-21 13:51:40 +00:00
|
|
|
run_check $SUDO_HELPER touch "$dirpath/$dataset_type.$num"
|
2016-11-21 05:10:41 +00:00
|
|
|
run_check cd "$dirpath" && \
|
|
|
|
$SUDO_HELPER ln -s "$dataset_type.$num" "$dirpath/slink.$num" && \
|
|
|
|
cd /
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
brokenlink)
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
|
|
|
run_check $SUDO_HELPER ln -s "$dirpath/$dataset_type.$num" "$dirpath/blink.$num"
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
perm)
|
|
|
|
for modes in 777 775 755 750 700 666 664 644 640 600 444 440 400 000 \
|
|
|
|
1777 1775 1755 1750 1700 1666 1664 1644 1640 1600 1444 1440 1400 1000 \
|
|
|
|
2777 2775 2755 2750 2700 2666 2664 2644 2640 2600 2444 2440 2400 2000 \
|
|
|
|
4777 4775 4755 4750 4700 4666 4664 4644 4640 4600 4444 4440 4400 4000; do
|
2016-11-21 13:44:06 +00:00
|
|
|
run_check $SUDO_HELPER touch "$dirpath/$dataset_type.$modes"
|
|
|
|
run_check $SUDO_HELPER chmod "$modes" "$dirpath/$dataset_type.$modes"
|
2016-11-21 05:10:41 +00:00
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
sparse)
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
|
|
|
run_check $SUDO_HELPER dd if=/dev/urandom of="$dirpath/$dataset_type.$num" bs=10K \
|
2019-07-02 11:44:02 +00:00
|
|
|
count=1 status=noxfer >/dev/null 2>&1
|
2016-11-21 05:10:41 +00:00
|
|
|
run_check $SUDO_HELPER truncate -s 500K "$dirpath/$dataset_type.$num"
|
|
|
|
run_check $SUDO_HELPER dd if=/dev/urandom of="$dirpath/$dataset_type.$num" bs=10K \
|
2019-07-02 11:44:02 +00:00
|
|
|
oflag=append conv=notrunc count=1 status=noxfer >/dev/null 2>&1
|
2016-11-21 05:10:41 +00:00
|
|
|
run_check $SUDO_HELPER truncate -s 800K "$dirpath/$dataset_type.$num"
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
acls)
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
|
|
|
run_check $SUDO_HELPER touch "$dirpath/$dataset_type.$num"
|
|
|
|
run_check $SUDO_HELPER setfacl -m "u:root:x" "$dirpath/$dataset_type.$num"
|
|
|
|
run_check $SUDO_HELPER setfattr -n user.foo -v "bar$num" "$dirpath/$dataset_type.$num"
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
fifo)
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
|
|
|
run_check $SUDO_HELPER mkfifo "$dirpath/$dataset_type.$num"
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
|
|
|
slow_symlink)
|
2017-09-05 05:50:03 +00:00
|
|
|
long_filename=`date +%s | sha256sum | cut -f1 -d ' '`
|
2016-11-21 05:10:41 +00:00
|
|
|
run_check $SUDO_HELPER touch "$dirpath/$long_filename"
|
|
|
|
for num in $(seq 1 "$DATASET_SIZE"); do
|
|
|
|
run_check $SUDO_HELPER ln -s "$dirpath/$long_filename" "$dirpath/slow_slink.$num"
|
|
|
|
done
|
|
|
|
;;
|
2016-12-19 06:56:42 +00:00
|
|
|
large)
|
|
|
|
run_check $SUDO_HELPER dd if=/dev/urandom bs=32M count=1 \
|
2019-07-02 11:44:02 +00:00
|
|
|
of="$dirpath/$dataset_type" status=noxfer >/dev/null 2>&1
|
2016-12-19 06:56:42 +00:00
|
|
|
;;
|
2016-11-21 05:10:41 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2017-09-01 18:14:03 +00:00
|
|
|
# prepare environment for loop devices, set up the following variables
|
|
|
|
# - nloopdevs -- number of desired devices
|
|
|
|
# - loopdevs -- array containing paths to all devices (after prepare is called)
|
|
|
|
# - loopdev_prefix -- file backed images starting with this string, 'img' by default
|
|
|
|
#
|
|
|
|
# $1: number of loop devices to be set up
|
|
|
|
setup_loopdevs()
|
|
|
|
{
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
_fail "setup_loopdevs needs a number"
|
|
|
|
fi
|
|
|
|
nloopdevs="$1"
|
|
|
|
loopdev_prefix=img
|
|
|
|
declare -a loopdevs
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# create all loop devices from a given loopdev environment
|
|
|
|
prepare_loopdevs()
|
|
|
|
{
|
|
|
|
for i in `seq $nloopdevs`; do
|
2019-07-03 20:33:28 +00:00
|
|
|
touch "$loopdev_prefix$i"
|
|
|
|
chmod a+rw "$loopdev_prefix$i"
|
|
|
|
truncate -s0 "$loopdev_prefix$i"
|
|
|
|
truncate -s2g "$loopdev_prefix$i"
|
|
|
|
loopdevs[$i]=`run_check_stdout $SUDO_HELPER losetup --find --show "$loopdev_prefix$i"`
|
2017-09-01 18:14:03 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-09-12 16:17:51 +00:00
|
|
|
# detach loop devices and reset their size to 0, delete the files afterwards
|
2017-09-01 18:14:03 +00:00
|
|
|
cleanup_loopdevs()
|
|
|
|
{
|
|
|
|
for dev in ${loopdevs[@]}; do
|
2019-07-03 20:33:28 +00:00
|
|
|
run_check $SUDO_HELPER losetup -d "$dev"
|
2017-09-01 18:14:03 +00:00
|
|
|
done
|
|
|
|
for i in `seq $nloopdevs`; do
|
2019-07-03 20:33:28 +00:00
|
|
|
truncate -s0 "$loopdev_prefix$i"
|
2017-09-12 16:17:51 +00:00
|
|
|
rm -- "$loopdev_prefix$i"
|
2017-09-01 18:14:03 +00:00
|
|
|
done
|
|
|
|
run_check $SUDO_HELPER losetup --all
|
|
|
|
}
|
|
|
|
|
2015-08-31 05:04:36 +00:00
|
|
|
init_env()
|
|
|
|
{
|
2018-02-08 06:34:19 +00:00
|
|
|
TEST_MNT="${TEST_MNT:-$TEST_TOP/mnt}"
|
2015-08-31 05:04:36 +00:00
|
|
|
export TEST_MNT
|
|
|
|
mkdir -p "$TEST_MNT" || { echo "Failed mkdir -p $TEST_MNT"; exit 1; }
|
2016-11-10 17:57:38 +00:00
|
|
|
|
2019-07-03 20:33:28 +00:00
|
|
|
source "$TEST_TOP/common.local"
|
2016-11-22 12:32:18 +00:00
|
|
|
|
|
|
|
if [ "$TEST_ENABLE_OVERRIDE" = 'true' -a -n "$RESULTS" ]; then
|
|
|
|
echo "INCLUDE common.local" >> "$RESULTS"
|
|
|
|
echo " check: $TEST_ARGS_CHECK" >> "$RESULTS"
|
2019-11-05 19:14:56 +00:00
|
|
|
echo " mkfs: $TEST_ARGS_MKFS" >> "$RESULTS"
|
2019-11-05 19:14:56 +00:00
|
|
|
echo " convert: $TEST_ARGS_CONVERT" >> "$RESULTS"
|
2016-11-22 12:32:18 +00:00
|
|
|
fi
|
2015-08-31 05:04:36 +00:00
|
|
|
}
|
2020-11-09 05:39:52 +00:00
|
|
|
|
|
|
|
# Catch critical warning messages in test results
|
|
|
|
check_test_results()
|
|
|
|
{
|
|
|
|
local results="$1"
|
|
|
|
local testname="$2"
|
|
|
|
|
|
|
|
# Check subpage related warning
|
btrfs-progs: require full nodesize alignement for subpage support
For the incoming extra page size support for subpage (sectorsize <
PAGE_SIZE) cases, the support for metadata will be a critical point.
Currently for subpage support, we require 64K page size, so that no
matter whatever the nodesize is, it will be contained inside one page.
And we will reject any tree block which crosses page boundary.
But for other page size, especially 16K page size, we must support
nodesize differently.
For nodesize < PAGE_SIZE, we will have the same requirement (tree blocks
can't cross page boundary).
While for nodesize >= PAGE_SIZE, we will require the tree blocks to be
page aligned.
To support such feature, we will make btrfs-check to reports more
subpage related warnings for metadata.
This patch will report any tree block which is not nodesize aligned as a
warning.
Existing mkfs/convert has already make sure all new tree blocks are
nodesize aligned, this is just for older converted filesystems.
Signed-off-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2021-08-18 06:44:20 +00:00
|
|
|
if grep -q "not nodesize aligned" "$results"; then
|
2020-11-09 05:39:52 +00:00
|
|
|
_fail "found subpage related warning for case $testname"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-10-11 13:32:10 +00:00
|
|
|
# Create at temporary file in $TMPDIR
|
|
|
|
# $1: optional identifier that'll be part of the name
|
|
|
|
_mktemp() {
|
|
|
|
local tmp
|
|
|
|
local name
|
|
|
|
|
|
|
|
name="btrfs-progs${1:+-$1}.XXXXXX"
|
|
|
|
_log "Create temporary file $name"
|
|
|
|
tmp=$(mktemp --tmpdir "$name")
|
|
|
|
echo -n "$tmp"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Create at temporary directory in $TMPDIR
|
|
|
|
# $1: optional identifier that'll be part of the name
|
|
|
|
_mktemp_dir() {
|
|
|
|
local tmp
|
|
|
|
local name
|
|
|
|
|
|
|
|
name="btrfs-progs${1:+-$1}.XXXXXX"
|
|
|
|
_log "Create temporary file $name"
|
|
|
|
tmp=$(mktemp -d --tmpdir "$name")
|
|
|
|
echo -n "$tmp"
|
|
|
|
}
|
|
|
|
|
2022-09-15 13:58:07 +00:00
|
|
|
# Create temporary file of the given name in the local test directory (eg. when
|
|
|
|
# it's a large image and not suitable for /tmp), this also supports NFS where
|
|
|
|
# the file needs to be created by regular user and made available for roo
|
|
|
|
# $1: file name
|
|
|
|
# $2: optional size (argument suitable for truncate)
|
|
|
|
_mktemp_local() {
|
|
|
|
local name
|
|
|
|
local size
|
|
|
|
|
|
|
|
name="$1"
|
|
|
|
size="${2:-0}"
|
|
|
|
_log "Create local temporary file $name"
|
|
|
|
rm -f -- "$name"
|
|
|
|
run_check truncate -s "$size" -- "$name"
|
|
|
|
run_check chmod a+w -- "$name"
|
|
|
|
}
|
|
|
|
|
2015-08-31 05:04:36 +00:00
|
|
|
init_env
|