2005-05-31 19:52:57 +00:00
|
|
|
## <module name="lvm" layer="system">
|
|
|
|
## <summary>Policy for logical volume management programs.</summary>
|
2005-05-13 14:36:35 +00:00
|
|
|
|
2005-05-19 21:06:06 +00:00
|
|
|
########################################
|
2005-06-13 17:35:46 +00:00
|
|
|
## <interface name="lvm_domtrans">
|
2005-05-19 21:06:06 +00:00
|
|
|
## <description>
|
|
|
|
## Execute lvm programs in the lvm domain.
|
|
|
|
## </description>
|
|
|
|
## <parameter name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </parameter>
|
|
|
|
## </interface>
|
2005-05-13 14:36:35 +00:00
|
|
|
#
|
2005-06-13 17:35:46 +00:00
|
|
|
define(`lvm_domtrans',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lvm_t, lvm_exec_t;
|
|
|
|
class process sigchld;
|
|
|
|
class fd use;
|
|
|
|
class fifo_file rw_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
corecmd_search_sbin($1)
|
2005-06-09 14:26:05 +00:00
|
|
|
domain_auto_trans($1, lvm_exec_t, lvm_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 lvm_t:fd use;
|
|
|
|
allow lvm_t $1:fd use;
|
|
|
|
allow lvm_t $1:fifo_file rw_file_perms;
|
|
|
|
allow lvm_t $1:process sigchld;
|
2005-05-13 14:36:35 +00:00
|
|
|
')
|
|
|
|
|
2005-05-19 21:06:06 +00:00
|
|
|
########################################
|
2005-06-13 17:35:46 +00:00
|
|
|
## <interface name="lvm_run">
|
2005-05-19 21:06:06 +00:00
|
|
|
## <description>
|
|
|
|
## Execute lvm programs in the lvm domain.
|
|
|
|
## </description>
|
|
|
|
## <parameter name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </parameter>
|
|
|
|
## <parameter name="role">
|
|
|
|
## The role to allow the LVM domain.
|
|
|
|
## </parameter>
|
|
|
|
## <parameter name="terminal">
|
|
|
|
## The type of the terminal allow the LVM domain to use.
|
|
|
|
## </parameter>
|
|
|
|
## </interface>
|
2005-05-13 14:36:35 +00:00
|
|
|
#
|
2005-06-13 17:35:46 +00:00
|
|
|
define(`lvm_run',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lvm_t;
|
|
|
|
class chr_file rw_term_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
lvm_domtrans($1)
|
2005-06-03 12:25:14 +00:00
|
|
|
role $2 types lvm_t;
|
2005-06-17 17:59:26 +00:00
|
|
|
allow lvm_t $3:chr_file rw_term_perms;
|
2005-05-19 21:06:06 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <interface name="lvm_read_config">
|
|
|
|
## <description>
|
|
|
|
## Read LVM configuration files.
|
|
|
|
## </description>
|
|
|
|
## <parameter name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </parameter>
|
|
|
|
## </interface>
|
2005-05-13 14:36:35 +00:00
|
|
|
#
|
|
|
|
define(`lvm_read_config',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lvm_t, lvm_exec_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
files_search_etc($1)
|
2005-06-09 14:26:05 +00:00
|
|
|
allow $1 lvm_etc_t:dir r_dir_perms;
|
|
|
|
allow $1 lvm_etc_t:file r_file_perms;
|
2005-05-13 14:36:35 +00:00
|
|
|
')
|
|
|
|
|
2005-05-31 19:52:57 +00:00
|
|
|
## </module>
|