2020-03-04 12:35:06 +03:00
#!/usr/bin/env bash
2017-08-07 22:09:21 +03:00
set -e
2016-01-31 12:01:43 +03:00
TEST_DESCRIPTION = "SELinux tests"
2019-12-12 11:37:19 +03:00
IMAGE_NAME = "selinux"
2017-08-04 15:34:14 +03:00
TEST_NO_NSPAWN = 1
2016-01-31 12:01:43 +03:00
# Requirements:
# Fedora 23
# selinux-policy-targeted
# selinux-policy-devel
2018-03-23 11:48:15 +03:00
# Check if selinux-policy-devel is installed, and if it isn't bail out early instead of failing
2018-06-05 22:27:01 +03:00
test -f /usr/share/selinux/devel/include/system/systemd.if || exit 0
2018-03-23 11:48:15 +03:00
2016-01-31 12:01:43 +03:00
. $TEST_BASE_DIR /test-functions
SETUP_SELINUX = yes
2016-06-23 11:25:44 +03:00
KERNEL_APPEND = " $KERNEL_APPEND selinux=1 security=selinux "
2016-01-31 12:01:43 +03:00
2019-12-12 11:37:19 +03:00
test_create_image( ) {
2019-07-12 18:47:26 +03:00
create_empty_image_rootdir
2016-01-31 12:01:43 +03:00
# Create what will eventually be our root filesystem onto an overlay
(
LOG_LEVEL = 5
setup_basic_environment
2019-10-08 10:10:12 +03:00
mask_supporting_services
2016-01-31 12:01:43 +03: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
dracut_install checkmodule semodule semodule_package m4 make /usr/libexec/selinux/hll/pp load_policy sefcontext_compile
2019-07-08 22:11:32 +03:00
)
2016-01-31 12:01:43 +03:00
}
2019-12-09 21:42:57 +03:00
do_test " $@ " 06