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

73 lines
1.4 KiB
Plaintext
Raw Normal View History

## <summary>Policy for logical volume management programs.</summary>
2005-05-13 14:36:35 +00:00
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Execute lvm programs in the lvm domain.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
2005-06-23 21:30:57 +00:00
## The type of the process performing this action.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2005-05-13 14:36:35 +00:00
#
interface(`lvm_domtrans',`
2005-06-17 17:59:26 +00:00
gen_require(`
type lvm_t, lvm_exec_t;
')
2005-06-17 17:59:26 +00:00
corecmd_search_sbin($1)
2006-12-12 20:08:08 +00:00
domtrans_pattern($1, lvm_exec_t, lvm_t)
2005-05-13 14:36:35 +00:00
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Execute lvm programs in the lvm domain.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
2005-06-23 21:30:57 +00:00
## The type of the process performing this action.
## </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 allow the LVM 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 LVM domain to use.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-05-13 14:36:35 +00:00
#
interface(`lvm_run',`
2005-06-17 17:59:26 +00:00
gen_require(`
type lvm_t;
')
2005-06-13 17:35:46 +00:00
lvm_domtrans($1)
role $2 types lvm_t;
2005-06-17 17:59:26 +00:00
allow lvm_t $3:chr_file rw_term_perms;
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Read LVM configuration files.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
2005-06-23 21:30:57 +00:00
## The type of the process performing this action.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-05-13 14:36:35 +00:00
#
interface(`lvm_read_config',`
2005-06-17 17:59:26 +00:00
gen_require(`
2005-10-18 18:25:33 +00:00
type lvm_t, lvm_etc_t;
2005-06-17 17:59:26 +00:00
')
2005-06-17 17:59:26 +00:00
files_search_etc($1)
2006-12-12 20:08:08 +00:00
allow $1 lvm_etc_t:dir list_dir_perms;
read_files_pattern($1,lvm_etc_t,lvm_etc_t)
2005-05-13 14:36:35 +00:00
')