2014-04-26 20:40:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# kpatch integration test framework
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 Josh Poimboeuf <jpoimboe@redhat.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA,
|
|
|
|
# 02110-1301, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# This is a basic integration test framework for kpatch, which tests building,
|
|
|
|
# loading, and unloading patches, as well as any other related custom tests.
|
|
|
|
#
|
|
|
|
# This script looks for test input files in the current directory. It expects
|
|
|
|
# certain file naming conventions:
|
|
|
|
#
|
|
|
|
# - foo.patch: patch that should build successfully
|
|
|
|
#
|
2014-09-15 13:20:43 +00:00
|
|
|
# - foo-SLOW.patch: patch that should be skipped in the quick test
|
|
|
|
#
|
2014-04-26 20:40:34 +00:00
|
|
|
# - bar-FAIL.patch: patch that should fail to build
|
|
|
|
#
|
|
|
|
# - foo-LOADED.test: executable which tests whether the foo.patch module is
|
|
|
|
# loaded. It will be used to test that loading/unloading the patch module
|
|
|
|
# works as expected.
|
|
|
|
#
|
|
|
|
# Any other *.test files will be executed after all the patch modules have been
|
|
|
|
# built from the *.patch files. They can be used for more custom tests above
|
|
|
|
# and beyond the simple loading and unloading tests.
|
|
|
|
|
2017-01-09 16:12:28 +00:00
|
|
|
shopt -s nullglob
|
|
|
|
|
2014-04-26 20:40:34 +00:00
|
|
|
SCRIPTDIR="$(readlink -f $(dirname $(type -p $0)))"
|
|
|
|
ROOTDIR="$(readlink -f $SCRIPTDIR/../..)"
|
|
|
|
# TODO: option to use system-installed binaries instead
|
|
|
|
KPATCH="sudo $ROOTDIR/kpatch/kpatch"
|
2014-05-05 19:07:22 +00:00
|
|
|
RMMOD="sudo rmmod"
|
2015-10-23 21:56:08 +00:00
|
|
|
unset CCACHE_HASHDIR
|
2014-04-26 20:40:34 +00:00
|
|
|
KPATCHBUILD="$ROOTDIR"/kpatch-build/kpatch-build
|
|
|
|
ERROR=0
|
|
|
|
LOG=test.log
|
|
|
|
rm -f $LOG
|
|
|
|
|
2016-12-07 20:05:41 +00:00
|
|
|
PATCHDIR="${PATCHDIR:-$PWD}"
|
|
|
|
declare -a PATCH_LIST
|
|
|
|
declare -a TEST_LIST
|
|
|
|
|
2014-04-26 20:40:34 +00:00
|
|
|
usage() {
|
2016-12-07 20:05:41 +00:00
|
|
|
echo "usage: $0 [options] [patch1 ... patchN]" >&2
|
|
|
|
echo " patchN Pathnames of patches to test" >&2
|
2014-04-26 20:40:34 +00:00
|
|
|
echo " -h, --help Show this help message" >&2
|
2014-05-27 13:34:21 +00:00
|
|
|
echo " -c, --cached Don't rebuild patch modules" >&2
|
2016-12-05 15:18:43 +00:00
|
|
|
echo " -d, --directory Patch directory" >&2
|
2014-05-27 13:34:21 +00:00
|
|
|
echo " -q, --quick Just combine all patches into one module for testing" >&2
|
2014-04-26 20:40:34 +00:00
|
|
|
}
|
|
|
|
|
2016-12-05 15:18:43 +00:00
|
|
|
options=$(getopt -o hcd:q -l "help,cached,directory,quick" -- "$@") || exit 1
|
2014-04-26 20:40:34 +00:00
|
|
|
|
|
|
|
eval set -- "$options"
|
|
|
|
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
|
|
case "$1" in
|
|
|
|
-h|--help)
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
;;
|
2014-05-27 13:34:21 +00:00
|
|
|
-c|--cached)
|
2014-04-26 20:40:34 +00:00
|
|
|
SKIPBUILD=1
|
|
|
|
;;
|
2016-12-05 15:18:43 +00:00
|
|
|
-d|--directory)
|
|
|
|
PATCHDIR="$2"
|
|
|
|
shift
|
|
|
|
;;
|
2014-05-27 13:34:21 +00:00
|
|
|
-q|--quick)
|
|
|
|
QUICK=1
|
|
|
|
;;
|
2016-12-07 20:05:41 +00:00
|
|
|
*)
|
|
|
|
[[ "$1" = "--" ]] && shift && continue
|
|
|
|
PATCH_LIST+=("$1")
|
|
|
|
;;
|
2014-04-26 20:40:34 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2016-12-07 20:05:41 +00:00
|
|
|
if [[ ${#PATCH_LIST[@]} = 0 ]]; then
|
|
|
|
PATCH_LIST=($PATCHDIR/*.patch)
|
|
|
|
TEST_LIST=($PATCHDIR/*.test)
|
2017-01-09 16:12:28 +00:00
|
|
|
if [[ ${#PATCH_LIST[@]} = 0 ]]; then
|
|
|
|
echo "No patches found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-12-07 20:05:41 +00:00
|
|
|
else
|
|
|
|
for file in "${PATCH_LIST[@]}"; do
|
|
|
|
prefix=${file%%.patch}
|
|
|
|
[[ -e "$prefix-FAIL.test" ]] && TEST_LIST+=("$prefix-FAIL.test")
|
|
|
|
[[ -e "$prefix-LOADED.test" ]] && TEST_LIST+=("$prefix-LOADED.test")
|
|
|
|
[[ -e "$prefix-SLOW.test" ]] && TEST_LIST+=("$prefix-SLOW.test")
|
|
|
|
done
|
|
|
|
fi
|
2014-04-26 20:40:34 +00:00
|
|
|
|
|
|
|
error() {
|
2014-05-05 22:07:13 +00:00
|
|
|
echo "ERROR: $@" |tee -a $LOG >&2
|
2014-04-26 20:40:34 +00:00
|
|
|
ERROR=$((ERROR + 1))
|
|
|
|
}
|
|
|
|
|
2014-05-05 22:07:13 +00:00
|
|
|
log() {
|
|
|
|
echo "$@" |tee -a $LOG
|
|
|
|
}
|
|
|
|
|
2014-05-05 19:07:22 +00:00
|
|
|
unload_all() {
|
|
|
|
for i in `lsmod |egrep '^kpatch' |awk '{print $1}'`; do
|
|
|
|
if [[ $i != kpatch ]]; then
|
|
|
|
$KPATCH unload $i >> $LOG 2>&1 || error "\"kpatch unload $i\" failed"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if lsmod |egrep -q '^kpatch'; then
|
|
|
|
$RMMOD kpatch >> $LOG 2>&1 || error "\"rmmod kpatch\" failed"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-04-26 20:40:34 +00:00
|
|
|
build_module() {
|
|
|
|
file=$1
|
2016-12-05 15:18:43 +00:00
|
|
|
prefix=$(basename ${file%%.patch})
|
2014-04-26 20:40:34 +00:00
|
|
|
module=kpatch-$prefix.ko
|
|
|
|
|
2014-05-27 13:34:21 +00:00
|
|
|
[[ $prefix = COMBINED ]] && return
|
|
|
|
|
2014-09-15 13:20:43 +00:00
|
|
|
if [[ $prefix =~ -FAIL ]]; then
|
2014-04-26 20:40:34 +00:00
|
|
|
shouldfail=1
|
|
|
|
else
|
|
|
|
shouldfail=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $SKIPBUILD -eq 1 ]]; then
|
2014-05-05 20:14:16 +00:00
|
|
|
skip=0
|
2014-04-26 20:40:34 +00:00
|
|
|
[[ $shouldfail -eq 1 ]] && skip=1
|
|
|
|
[[ -e $module ]] && skip=1
|
2014-05-05 22:07:13 +00:00
|
|
|
[[ $skip -eq 1 ]] && log "skipping build: $prefix" && return
|
2014-04-26 20:40:34 +00:00
|
|
|
fi
|
|
|
|
|
2014-05-05 22:07:13 +00:00
|
|
|
log "build: $prefix"
|
2014-04-26 20:40:34 +00:00
|
|
|
|
|
|
|
if ! $KPATCHBUILD $file >> $LOG 2>&1; then
|
|
|
|
[[ $shouldfail -eq 0 ]] && error "$prefix: build failed"
|
|
|
|
else
|
|
|
|
[[ $shouldfail -eq 1 ]] && error "$prefix: build succeeded when it should have failed"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
run_load_test() {
|
|
|
|
file=$1
|
2016-12-05 15:18:43 +00:00
|
|
|
prefix=$(basename ${file%%.patch})
|
2014-04-26 20:40:34 +00:00
|
|
|
module=kpatch-$prefix.ko
|
2016-12-05 15:18:43 +00:00
|
|
|
testprog="$(dirname $1)/$prefix-LOADED.test"
|
2014-04-26 20:40:34 +00:00
|
|
|
|
2014-05-27 13:34:21 +00:00
|
|
|
[[ $prefix = COMBINED ]] && return
|
2014-09-15 13:20:43 +00:00
|
|
|
[[ $prefix =~ -FAIL ]] && return
|
2014-04-26 20:40:34 +00:00
|
|
|
|
|
|
|
if [[ ! -e $module ]]; then
|
2014-05-15 21:11:47 +00:00
|
|
|
log "can't find $module, skipping"
|
2014-04-26 20:40:34 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2014-05-15 21:11:47 +00:00
|
|
|
if [[ -e $testprog ]]; then
|
|
|
|
log "load test: $prefix"
|
|
|
|
else
|
|
|
|
log "load test: $prefix (no test prog)"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2016-12-05 15:18:43 +00:00
|
|
|
if [[ -e $testprog ]] && $testprog >> $LOG 2>&1; then
|
2015-10-29 22:21:54 +00:00
|
|
|
error "$prefix: $testprog succeeded before kpatch load"
|
2014-04-28 18:32:00 +00:00
|
|
|
return
|
2014-04-26 20:40:34 +00:00
|
|
|
fi
|
|
|
|
|
2015-10-29 22:21:54 +00:00
|
|
|
if ! $KPATCH load $module >> $LOG 2>&1; then
|
|
|
|
error "$prefix: kpatch load failed"
|
2014-05-05 19:07:22 +00:00
|
|
|
return
|
2014-04-26 20:40:34 +00:00
|
|
|
fi
|
|
|
|
|
2016-12-05 15:18:43 +00:00
|
|
|
if [[ -e $testprog ]] && ! $testprog >> $LOG 2>&1; then
|
2015-10-29 22:21:54 +00:00
|
|
|
error "$prefix: $testprog failed after kpatch load"
|
|
|
|
fi
|
|
|
|
|
2014-04-26 20:40:34 +00:00
|
|
|
if ! $KPATCH unload $module >> $LOG 2>&1; then
|
|
|
|
error "$prefix: kpatch unload failed"
|
2014-04-28 18:32:00 +00:00
|
|
|
return
|
2014-04-26 20:40:34 +00:00
|
|
|
fi
|
|
|
|
|
2016-12-05 15:18:43 +00:00
|
|
|
if [[ -e $testprog ]] && $testprog >> $LOG 2>&1; then
|
2014-04-26 20:40:34 +00:00
|
|
|
error "$prefix: $testprog succeeded after kpatch unload"
|
2014-05-05 19:07:22 +00:00
|
|
|
return
|
|
|
|
fi
|
2014-04-26 20:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
run_custom_test() {
|
|
|
|
testprog=$1
|
2016-12-05 15:18:43 +00:00
|
|
|
prefix=$(basename ${file%%.test}})
|
2014-04-26 20:40:34 +00:00
|
|
|
|
|
|
|
[[ $testprog = *-LOADED.test ]] && return
|
|
|
|
|
2014-05-05 22:07:13 +00:00
|
|
|
log "custom test: $prefix"
|
2014-04-26 20:40:34 +00:00
|
|
|
|
2016-12-05 15:18:43 +00:00
|
|
|
if ! $testprog >> $LOG 2>&1; then
|
2014-04-26 20:40:34 +00:00
|
|
|
error "$prefix: test failed"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-05-27 13:34:21 +00:00
|
|
|
build_combined_module() {
|
|
|
|
|
|
|
|
if [[ $SKIPBUILD -eq 1 ]] && [[ -e kpatch-COMBINED.ko ]]; then
|
|
|
|
log "skipping build: combined"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! which combinediff > /dev/null; then
|
|
|
|
log "patchutils not installed, skipping combined module build"
|
|
|
|
error "PLEASE INSTALL PATCHUTILS"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-12-07 20:05:41 +00:00
|
|
|
declare -a COMBINED_LIST
|
|
|
|
for file in "${PATCH_LIST[@]}"; do
|
|
|
|
[[ $file =~ -FAIL ]] && log "combine: skipping $file" && continue
|
|
|
|
[[ $file =~ -SLOW ]] && log "combine: skipping $file" && continue
|
|
|
|
COMBINED_LIST+=($file)
|
|
|
|
done
|
|
|
|
if [[ ${#COMBINED_LIST[@]} -le 1 ]]; then
|
|
|
|
log "skipping build: combined (only ${#PATCH_LIST[@]} patch(es))"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2014-10-06 19:42:34 +00:00
|
|
|
rm -f COMBINED.patch TMP.patch
|
2014-05-27 13:34:21 +00:00
|
|
|
first=1
|
2016-12-07 20:05:41 +00:00
|
|
|
for file in "${COMBINED_LIST[@]}"; do
|
2014-05-27 13:34:21 +00:00
|
|
|
prefix=${file%%.patch}
|
|
|
|
|
|
|
|
log "combine: $prefix"
|
|
|
|
|
|
|
|
if [[ $first -eq 1 ]]; then
|
|
|
|
cp -f $file COMBINED.patch
|
|
|
|
first=0
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
combinediff COMBINED.patch $file > TMP.patch
|
|
|
|
mv -f TMP.patch COMBINED.patch
|
|
|
|
done
|
|
|
|
|
|
|
|
log "build: combined module"
|
|
|
|
|
|
|
|
if ! $KPATCHBUILD COMBINED.patch >> $LOG 2>&1; then
|
|
|
|
error "combined build failed"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
run_combined_test() {
|
2017-01-09 18:26:15 +00:00
|
|
|
if [[ ! -e COMBINED.patch ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2014-05-27 13:34:21 +00:00
|
|
|
if [[ ! -e kpatch-COMBINED.ko ]]; then
|
|
|
|
log "can't find kpatch-COMBINED.ko, skipping"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
log "load test: combined module"
|
|
|
|
|
2015-10-29 22:21:54 +00:00
|
|
|
unload_all
|
|
|
|
|
2016-12-07 20:05:41 +00:00
|
|
|
for testprog in "${TEST_LIST[@]}"; do
|
2015-10-29 22:21:54 +00:00
|
|
|
[[ $testprog != *-LOADED.test ]] && continue
|
2016-12-05 15:18:43 +00:00
|
|
|
if $testprog >> $LOG 2>&1; then
|
2015-10-29 22:21:54 +00:00
|
|
|
error "combined: $testprog succeeded before kpatch load"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if ! $KPATCH load kpatch-COMBINED.ko >> $LOG 2>&1; then
|
|
|
|
error "combined: kpatch load failed"
|
2014-05-27 13:34:21 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-12-07 20:05:41 +00:00
|
|
|
for testprog in "${TEST_LIST[@]}"; do
|
2014-05-27 13:34:21 +00:00
|
|
|
[[ $testprog != *-LOADED.test ]] && continue
|
2016-12-05 15:18:43 +00:00
|
|
|
if ! $testprog >> $LOG 2>&1; then
|
2015-10-29 22:21:54 +00:00
|
|
|
error "combined: $testprog failed after kpatch load"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if ! $KPATCH unload kpatch-COMBINED.ko >> $LOG 2>&1; then
|
|
|
|
error "combined: kpatch unload failed"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-12-07 20:05:41 +00:00
|
|
|
for testprog in "${TEST_LIST[@]}"; do
|
2015-10-29 22:21:54 +00:00
|
|
|
[[ $testprog != *-LOADED.test ]] && continue
|
2016-12-05 15:18:43 +00:00
|
|
|
if $testprog >> $LOG 2>&1; then
|
2015-10-29 22:21:54 +00:00
|
|
|
error "combined: $testprog succeeded after kpatch unload"
|
|
|
|
return
|
2014-05-27 13:34:21 +00:00
|
|
|
fi
|
|
|
|
done
|
2015-10-29 22:21:54 +00:00
|
|
|
|
2014-05-27 13:34:21 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 18:19:08 +00:00
|
|
|
echo "clearing printk buffer"
|
|
|
|
sudo dmesg -C
|
|
|
|
|
2014-05-27 13:34:21 +00:00
|
|
|
if [[ $QUICK != 1 ]]; then
|
2016-12-07 20:05:41 +00:00
|
|
|
for file in "${PATCH_LIST[@]}"; do
|
2014-05-27 13:34:21 +00:00
|
|
|
build_module $file
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
build_combined_module
|
2014-04-26 20:40:34 +00:00
|
|
|
|
2014-05-05 19:07:22 +00:00
|
|
|
unload_all
|
|
|
|
|
2014-05-27 13:34:21 +00:00
|
|
|
if [[ $QUICK != 1 ]]; then
|
2016-12-07 20:05:41 +00:00
|
|
|
for file in "${PATCH_LIST[@]}"; do
|
2014-05-27 13:34:21 +00:00
|
|
|
run_load_test $file
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
run_combined_test
|
|
|
|
|
|
|
|
if [[ $QUICK != 1 ]]; then
|
2016-12-07 20:05:41 +00:00
|
|
|
for testprog in "${TEST_LIST[@]}"; do
|
2014-05-27 13:34:21 +00:00
|
|
|
unload_all
|
2016-12-07 20:05:41 +00:00
|
|
|
run_custom_test $testprog
|
2014-05-27 13:34:21 +00:00
|
|
|
done
|
|
|
|
fi
|
2014-04-26 20:40:34 +00:00
|
|
|
|
|
|
|
|
2014-05-05 19:07:22 +00:00
|
|
|
unload_all
|
|
|
|
|
2014-06-27 18:19:08 +00:00
|
|
|
dmesg |grep -q "Call Trace" && error "kernel error detected in printk buffer"
|
|
|
|
|
2014-05-20 19:33:17 +00:00
|
|
|
if [[ $ERROR -gt 0 ]]; then
|
|
|
|
log "$ERROR errors encountered"
|
|
|
|
echo "see test.log for more information"
|
|
|
|
else
|
|
|
|
log "SUCCESS"
|
|
|
|
fi
|
2014-04-26 20:40:34 +00:00
|
|
|
|
|
|
|
exit $ERROR
|