From: sven.vermeulen@siphos.be (Sven Vermeulen) Date: Thu, 7 Aug 2014 20:05:37 +0200 Subject: [refpolicy] [PATCH 4/5] Introduce the tmpfiles_t domain In-Reply-To: <1407434738-11937-1-git-send-email-sven.vermeulen@siphos.be> References: <1407434738-11937-1-git-send-email-sven.vermeulen@siphos.be> Message-ID: <1407434738-11937-5-git-send-email-sven.vermeulen@siphos.be> To: refpolicy@oss.tresys.com List-Id: refpolicy.oss.tresys.com The tmpfiles application, as documented in [1], is used to prepare directory structures in runtime, volatile locations (such as /var/run, /run and perhaps even /tmp and /var/tmp). [1] http://www.freedesktop.org/software/systemd/man/tmpfiles.d.html The need for the tmpfiles application seems to came forward as systemd service files ("unit files") are not the flexible shell scripts that are used in init scripts (/etc/rc.d/init.d/* files). Whereas these init scripts usually did the preparation of runtime directories, the systemd service scripts do not (well, beyond the RuntimeDirectory= directive, that is). Instead, services are required to create a tmpfiles configuration file inside one of the following locations, informing the tmpfiles application to create directories and files as needed: (a.) /usr/lib/tmpfiles.d/ (*.conf) for packaged services (default settings) (b.) /run/tmpfiles.d/ (*.conf) for dynamically generated overrides of (a.) (c.) /etc/tmpfiles.d/ (*.conf) for local system administration overrides of (a.) and (b.) These files declare what action to perform on a specific location (such as create a directory) and which ownership to apply (similar to the install(1) application it seems). Both in systemd as well as OpenRC the tmpfiles application is SELinux-aware, (re)setting the context of the target. Signed-off-by: Jason Zaman Signed-off-by: Sven Vermeulen --- policy/modules/system/tmpfiles.fc | 7 ++ policy/modules/system/tmpfiles.if | 161 ++++++++++++++++++++++++++++++++++++++ policy/modules/system/tmpfiles.te | 99 +++++++++++++++++++++++ 3 files changed, 267 insertions(+) create mode 100644 policy/modules/system/tmpfiles.fc create mode 100644 policy/modules/system/tmpfiles.if create mode 100644 policy/modules/system/tmpfiles.te diff --git a/policy/modules/system/tmpfiles.fc b/policy/modules/system/tmpfiles.fc new file mode 100644 index 0000000..12fd30a --- /dev/null +++ b/policy/modules/system/tmpfiles.fc @@ -0,0 +1,7 @@ + +/etc/tmpfiles.d(/.*)? gen_context(system_u:object_r:tmpfiles_conf_t,s0) +/var/run/tmpfiles.d(/.*)? gen_context(system_u:object_r:tmpfiles_var_run_t,s0) + +/lib/rc/bin/checkpath -- gen_context(system_u:object_r:tmpfiles_exec_t,s0) +/lib/rc/sh/tmpfiles.sh -- gen_context(system_u:object_r:tmpfiles_exec_t,s0) + diff --git a/policy/modules/system/tmpfiles.if b/policy/modules/system/tmpfiles.if new file mode 100644 index 0000000..09897fc --- /dev/null +++ b/policy/modules/system/tmpfiles.if @@ -0,0 +1,161 @@ +## Policy for tmpfiles, a boot-time temporary file handler + +######################################## +## +## Read resources in /run/tmpfiles.d/. +## +## +## +## Domain allowed to transition. +## +## +# +interface(`tmpfiles_read_var_run',` + gen_require(` + type tmpfiles_var_run_t; + ') + + files_search_pids($1) + allow $1 tmpfiles_var_run_t:dir list_dir_perms; + allow $1 tmpfiles_var_run_t:file read_file_perms; +') + +######################################## +## +## Create files in /run/tmpfiles.d/. +## +## +## +## Domain allowed access. +## +## +# +interface(`tmpfiles_create_var_run_files',` + gen_require(` + type tmpfiles_var_run_t; + ') + + create_files_pattern($1, tmpfiles_var_run_t, tmpfiles_var_run_t) + + tmpfiles_read_var_run($1) +') + +######################################## +## +## Write to files in /run/tmpfiles.d/. +## +## +## +## Domain allowed access. +## +## +# +interface(`tmpfiles_write_var_run_files',` + gen_require(` + type tmpfiles_var_run_t; + ') + + write_files_pattern($1, tmpfiles_var_run_t, tmpfiles_var_run_t) + + tmpfiles_read_var_run($1) +') + +######################################## +## +## Manage files in /run/tmpfiles.d/. +## +## +## +## Domain allowed access. +## +## +# +interface(`tmpfiles_manage_var_run_files',` + gen_require(` + type tmpfiles_var_run_t; + ') + + tmpfiles_read_var_run($1) + + manage_files_pattern($1, tmpfiles_var_run_t, tmpfiles_var_run_t) +') + +######################################## +## +## Read files in /etc/tmpfiles.d/. +## +## +## +## Domain allowed to transition. +## +## +# +interface(`tmpfiles_read_conf',` + gen_require(` + type tmpfiles_conf_t; + ') + + files_search_etc($1) + allow $1 tmpfiles_conf_t:dir list_dir_perms; + allow $1 tmpfiles_conf_t:file read_file_perms; +') + +######################################## +## +## Create files in /etc/tmpfiles.d/. +## +## +## +## Domain allowed access. +## +## +# +interface(`tmpfiles_create_conf_files',` + gen_require(` + type tmpfiles_conf_t; + ') + + create_files_pattern($1, tmpfiles_conf_t, tmpfiles_conf_t) + + tmpfiles_read_conf($1) +') + +######################################## +## +## Write to files in /etc/tmpfiles.d/. +## +## +## +## Domain allowed access. +## +## +# +interface(`tmpfiles_write_conf_files',` + gen_require(` + type tmpfiles_conf_t; + ') + + write_files_pattern($1, tmpfiles_conf_t, tmpfiles_conf_t) + + tmpfiles_read_conf($1) +') + +######################################## +## +## Manage files in /etc/tmpfiles.d/. +## +## +## +## Domain allowed access. +## +## +# +interface(`tmpfiles_manage_conf_files',` + gen_require(` + type tmpfiles_conf_t; + ') + + manage_files_pattern($1, tmpfiles_conf_t, tmpfiles_conf_t) + + tmpfiles_read_conf($1) +') diff --git a/policy/modules/system/tmpfiles.te b/policy/modules/system/tmpfiles.te new file mode 100644 index 0000000..56a5379 --- /dev/null +++ b/policy/modules/system/tmpfiles.te @@ -0,0 +1,99 @@ +policy_module(tmpfiles, 1.0.0) + +######################################## +# +# Declarations +# + +## +##

+## Determine whether tmpfiles can manage +## all non-security sensitive resources. +## Without this, it is only allowed rights towards +## /run, /tmp, /dev and /var/lock. +##

+##
+gen_tunable(tmpfiles_manage_all_non_security, false) + +type tmpfiles_t; +type tmpfiles_exec_t; +init_daemon_domain(tmpfiles_t, tmpfiles_exec_t) + +type tmpfiles_conf_t; +files_config_file(tmpfiles_conf_t) + +type tmpfiles_var_run_t; +files_pid_file(tmpfiles_var_run_t) + + +######################################## +# +# Local policy +# + +allow tmpfiles_t self:capability { mknod chown fowner fsetid }; +allow tmpfiles_t self:process getsched; +allow tmpfiles_t self:fifo_file rw_fifo_file_perms; +allow tmpfiles_t self:unix_dgram_socket create_socket_perms; + +allow tmpfiles_t tmpfiles_exec_t:file execute_no_trans; + +list_dirs_pattern(tmpfiles_t, tmpfiles_conf_t, tmpfiles_conf_t) +read_files_pattern(tmpfiles_t, tmpfiles_conf_t, tmpfiles_conf_t) + +manage_files_pattern(tmpfiles_t, tmpfiles_var_run_t, tmpfiles_var_run_t) +manage_dirs_pattern(tmpfiles_t, tmpfiles_var_run_t, tmpfiles_var_run_t) + +corecmd_exec_bin(tmpfiles_t) +corecmd_exec_shell(tmpfiles_t) + +dev_create_all_chr_files(tmpfiles_t) +dev_create_generic_chr_files(tmpfiles_t) +dev_create_generic_dirs(tmpfiles_t) +dev_getattr_all_blk_files(tmpfiles_t) +dev_getattr_generic_blk_files(tmpfiles_t) +dev_getattr_generic_chr_files(tmpfiles_t) +dev_relabel_all_dev_nodes(tmpfiles_t) +dev_relabel_generic_dev_dirs(tmpfiles_t) +dev_relabelfrom_generic_chr_files(tmpfiles_t) +dev_setattr_all_chr_files(tmpfiles_t) +dev_setattr_generic_dirs(tmpfiles_t) + +files_getattr_generic_locks(tmpfiles_t) +files_getattr_tmp_dirs(tmpfiles_t) +files_manage_all_pids(tmpfiles_t) +files_manage_cgroup_files(tmpfiles_t) +files_manage_generic_locks(tmpfiles_t) +files_manage_generic_tmp_dirs(tmpfiles_t) +files_manage_generic_tmp_files(tmpfiles_t) +files_manage_var_dirs(tmpfiles_t) +files_manage_var_files(tmpfiles_t) +files_relabel_all_lock_dirs(tmpfiles_t) +files_relabel_all_pids(tmpfiles_t) +files_relabel_all_tmp_dirs(tmpfiles_t) +files_relabel_all_tmp_files(tmpfiles_t) +files_setattr_all_tmp_dirs(tmpfiles_t) +files_setattr_lock_dirs(tmpfiles_t) +files_setattr_pid_dirs(tmpfiles_t) + +fs_getattr_all_fs(tmpfiles_t) +fs_getattr_tmpfs_dirs(tmpfiles_t) + +selinux_get_enforce_mode(tmpfiles_t) + +auth_use_nsswitch(tmpfiles_t) + +init_exec_rc(tmpfiles_t) + +miscfiles_read_localization(tmpfiles_t) + +seutil_exec_setfiles(tmpfiles_t) +seutil_libselinux_linked(tmpfiles_t) +seutil_read_file_contexts(tmpfiles_t) + + +tunable_policy(`tmpfiles_manage_all_non_security',` + files_manage_non_security_dirs(tmpfiles_t) + files_manage_all_non_security_file_types(tmpfiles_t) + files_relabel_all_non_security_file_types(tmpfiles_t) +') -- 1.8.5.5