selinux-policy/policy/modules/system/lvm.if
2007-03-06 15:35:02 +00:00

94 lines
1.8 KiB
Plaintext

## <summary>Policy for logical volume management programs.</summary>
########################################
## <summary>
## Execute lvm programs in the lvm domain.
## </summary>
## <param name="domain">
## <summary>
## The type of the process performing this action.
## </summary>
## </param>
#
interface(`lvm_domtrans',`
gen_require(`
type lvm_t, lvm_exec_t;
')
corecmd_search_sbin($1)
domtrans_pattern($1, lvm_exec_t, lvm_t)
')
########################################
## <summary>
## Execute lvm programs in the lvm domain.
## </summary>
## <param name="domain">
## <summary>
## The type of the process performing this action.
## </summary>
## </param>
## <param name="role">
## <summary>
## The role to allow the LVM domain.
## </summary>
## </param>
## <param name="terminal">
## <summary>
## The type of the terminal allow the LVM domain to use.
## </summary>
## </param>
## <rolecap/>
#
interface(`lvm_run',`
gen_require(`
type lvm_t;
')
lvm_domtrans($1)
role $2 types lvm_t;
allow lvm_t $3:chr_file rw_term_perms;
')
########################################
## <summary>
## Read LVM configuration files.
## </summary>
## <param name="domain">
## <summary>
## The type of the process performing this action.
## </summary>
## </param>
## <rolecap/>
#
interface(`lvm_read_config',`
gen_require(`
type lvm_etc_t;
')
files_search_etc($1)
allow $1 lvm_etc_t:dir list_dir_perms;
read_files_pattern($1,lvm_etc_t,lvm_etc_t)
')
########################################
## <summary>
## Manage LVM configuration files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`lvm_manage_config',`
gen_require(`
type lvm_etc_t;
')
files_search_etc($1)
manage_dirs_pattern($1,lvm_etc_t,lvm_etc_t)
manage_files_pattern($1,lvm_etc_t,lvm_etc_t)
')