selinux-policy/policy/modules/system/modutils.if

298 lines
5.9 KiB
Plaintext
Raw Normal View History

2005-05-23 15:50:12 +00:00
## <summary>Policy for kernel module utilities</summary>
2005-04-20 19:07:16 +00:00
2005-04-14 20:18:17 +00:00
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Read the dependencies of kernel modules.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2005-04-14 20:18:17 +00:00
#
2006-02-02 21:08:12 +00:00
interface(`modutils_read_module_deps',`
2005-06-17 17:59:26 +00:00
gen_require(`
type modules_dep_t;
')
files_list_kernel_modules($1)
2006-12-12 20:08:08 +00:00
allow $1 modules_dep_t:file read_file_perms;
2005-04-14 20:18:17 +00:00
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Read the configuration options used when
## loading modules.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-04-14 20:18:17 +00:00
#
2006-02-02 21:08:12 +00:00
interface(`modutils_read_module_config',`
2005-06-17 17:59:26 +00:00
gen_require(`
type modules_conf_t;
')
2005-04-14 20:18:17 +00:00
2005-06-17 17:59:26 +00:00
# This file type can be in /etc or
# /lib(64)?/modules
files_search_etc($1)
files_search_boot($1)
2006-12-12 20:08:08 +00:00
allow $1 modules_conf_t:file read_file_perms;
allow $1 modules_conf_t:lnk_file read_lnk_file_perms;
2005-04-14 20:18:17 +00:00
')
2005-10-14 18:42:42 +00:00
########################################
## <summary>
## Rename a file with the configuration options used when
## loading modules.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-10-14 18:42:42 +00:00
## </param>
#
2006-02-02 21:08:12 +00:00
interface(`modutils_rename_module_config',`
2005-10-14 18:42:42 +00:00
gen_require(`
type modules_conf_t;
')
2006-12-12 20:08:08 +00:00
allow $1 modules_conf_t:file rename_file_perms;
2005-10-14 18:42:42 +00:00
')
2005-04-14 20:18:17 +00:00
########################################
2005-08-11 17:46:39 +00:00
## <summary>
## Unconditionally execute insmod in the insmod domain.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2005-04-14 20:18:17 +00:00
#
# cjp: this is added for pppd, due to nested
# conditionals not working.
interface(`modutils_domtrans_insmod_uncond',`
2005-06-17 17:59:26 +00:00
gen_require(`
type insmod_t, insmod_exec_t;
')
2007-03-23 23:24:59 +00:00
corecmd_search_bin($1)
2006-12-12 20:08:08 +00:00
domtrans_pattern($1, insmod_exec_t, insmod_t)
2005-04-14 20:18:17 +00:00
')
########################################
## <summary>
## Execute insmod in the insmod domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`modutils_domtrans_insmod',`
gen_require(`
bool secure_mode_insmod;
')
if (!secure_mode_insmod) {
modutils_domtrans_insmod_uncond($1)
}
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Execute insmod in the insmod domain, and
## allow the specified role the insmod domain,
## and use the caller's terminal. Has a sigchld
## backchannel.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
## <param name="role">
## <summary>
2005-06-23 21:30:57 +00:00
## The role to be allowed the insmod domain.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
## <param name="terminal">
## <summary>
2005-06-23 21:30:57 +00:00
## The type of the terminal allow the insmod domain to use.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
#
interface(`modutils_run_insmod',`
2005-06-17 17:59:26 +00:00
gen_require(`
type insmod_t;
')
2005-06-13 17:35:46 +00:00
modutils_domtrans_insmod($1)
role $2 types insmod_t;
2005-06-17 17:59:26 +00:00
allow insmod_t $3:chr_file rw_term_perms;
')
2005-04-14 20:18:17 +00:00
########################################
## <summary>
## Execute insmod in the caller domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
2005-04-14 20:18:17 +00:00
#
interface(`modutils_exec_insmod',`
2005-06-17 17:59:26 +00:00
gen_require(`
2005-09-14 00:30:10 +00:00
type insmod_exec_t;
2005-06-17 17:59:26 +00:00
')
2007-03-23 23:24:59 +00:00
corecmd_search_bin($1)
2005-06-09 14:26:05 +00:00
can_exec($1, insmod_exec_t)
2005-04-14 20:18:17 +00:00
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Execute depmod in the depmod domain.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
#
interface(`modutils_domtrans_depmod',`
2005-06-17 17:59:26 +00:00
gen_require(`
type depmod_t, depmod_exec_t;
')
2007-03-23 23:24:59 +00:00
corecmd_search_bin($1)
2006-12-12 20:08:08 +00:00
domtrans_pattern($1, depmod_exec_t, depmod_t)
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Execute depmod in the depmod domain.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
## <param name="role">
## <summary>
2005-06-23 21:30:57 +00:00
## The role to be allowed the depmod domain.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
## <param name="terminal">
## <summary>
2005-06-23 21:30:57 +00:00
## The type of the terminal allow the depmod domain to use.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
#
interface(`modutils_run_depmod',`
2005-06-17 17:59:26 +00:00
gen_require(`
type depmod_t;
')
2005-06-13 17:35:46 +00:00
modutils_domtrans_depmod($1)
role $2 types depmod_t;
2005-06-17 17:59:26 +00:00
allow insmod_t $3:chr_file rw_term_perms;
')
########################################
## <summary>
## Execute depmod in the caller domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`modutils_exec_depmod',`
2005-06-17 17:59:26 +00:00
gen_require(`
2005-10-18 18:25:33 +00:00
type depmod_exec_t;
2005-06-17 17:59:26 +00:00
')
2007-03-23 23:24:59 +00:00
corecmd_search_bin($1)
2005-06-09 14:26:05 +00:00
can_exec($1, depmod_exec_t)
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Execute depmod in the depmod domain.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
#
interface(`modutils_domtrans_update_mods',`
2005-06-17 17:59:26 +00:00
gen_require(`
type update_modules_t, update_modules_exec_t;
')
2007-03-23 23:24:59 +00:00
corecmd_search_bin($1)
2006-12-12 20:08:08 +00:00
domtrans_pattern($1, update_modules_exec_t, update_modules_t)
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Execute update_modules in the update_modules domain.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
## <param name="role">
## <summary>
2005-06-23 21:30:57 +00:00
## The role to be allowed the update_modules domain.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
## <param name="terminal">
## <summary>
2005-06-23 21:30:57 +00:00
## The type of the terminal allow the update_modules domain to use.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
#
interface(`modutils_run_update_mods',`
2005-06-17 17:59:26 +00:00
gen_require(`
type update_modules_t;
')
2005-06-13 17:35:46 +00:00
modutils_domtrans_update_mods($1)
role $2 types update_modules_t;
2005-06-17 17:59:26 +00:00
allow update_modules_t $3:chr_file rw_term_perms;
')
########################################
## <summary>
## Execute update_modules in the caller domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`modutils_exec_update_mods',`
2005-06-17 17:59:26 +00:00
gen_require(`
2005-10-18 18:25:33 +00:00
type update_modules_exec_t;
2005-06-17 17:59:26 +00:00
')
2007-03-23 23:24:59 +00:00
corecmd_search_bin($1)
2005-06-09 14:26:05 +00:00
can_exec($1, update_modules_exec_t)
')