2020-03-04 09:35:06 +00:00
#!/usr/bin/env bash
2017-08-07 21:09:21 +02:00
set -e
2016-01-31 09:01:43 +00:00
TEST_DESCRIPTION = "SELinux tests"
2019-12-12 09:37:19 +01:00
IMAGE_NAME = "selinux"
2017-08-04 14:34:14 +02:00
TEST_NO_NSPAWN = 1
2016-01-31 09:01:43 +00:00
# Requirements:
# Fedora 23
# selinux-policy-targeted
# selinux-policy-devel
2018-03-23 09:48:15 +01:00
# Check if selinux-policy-devel is installed, and if it isn't bail out early instead of failing
2018-06-05 21:27:01 +02:00
test -f /usr/share/selinux/devel/include/system/systemd.if || exit 0
2018-03-23 09:48:15 +01:00
2016-01-31 09:01:43 +00:00
. $TEST_BASE_DIR /test-functions
SETUP_SELINUX = yes
2016-06-23 10:25:44 +02:00
KERNEL_APPEND = " $KERNEL_APPEND selinux=1 security=selinux "
2016-01-31 09:01:43 +00:00
2019-12-12 09:37:19 +01:00
test_create_image( ) {
2019-07-12 11:47:26 -04:00
create_empty_image_rootdir
2016-01-31 09:01:43 +00:00
# Create what will eventually be our root filesystem onto an overlay
(
LOG_LEVEL = 5
setup_basic_environment
2019-10-08 09:10:12 +02:00
mask_supporting_services
2016-01-31 09:01:43 +00:00
local _modules_dir = /var/lib/selinux
rm -rf $initdir /$_modules_dir
if ! cp -ar $_modules_dir $initdir /$_modules_dir ; then
dfatal " Failed to copy $_modules_dir "
exit 1
fi
local _policy_headers_dir = /usr/share/selinux/devel
rm -rf $initdir /$_policy_headers_dir
inst_dir /usr/share/selinux
if ! cp -ar $_policy_headers_dir $initdir /$_policy_headers_dir ; then
dfatal " Failed to copy $_policy_headers_dir "
exit 1
fi
mkdir $initdir /systemd-test-module
cp systemd_test.te $initdir /systemd-test-module
cp systemd_test.if $initdir /systemd-test-module
dracut_install -o sesearch
dracut_install runcon
2020-03-31 13:19:13 +02:00
dracut_install checkmodule semodule semodule_package m4 make load_policy sefcontext_compile
dracut_install -o /usr/libexec/selinux/hll/pp # Fedora/RHEL/...
dracut_install -o /usr/lib/selinux/hll/pp # Debian/Ubuntu/...
2019-07-08 21:11:32 +02:00
)
2016-01-31 09:01:43 +00:00
}
2019-12-09 19:42:57 +01:00
do_test " $@ " 06