## Policy for logical volume management programs.
########################################
##
## Execute lvm programs in the lvm domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`lvm_domtrans',`
gen_require(`
type lvm_t, lvm_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, lvm_exec_t, lvm_t)
')
########################################
##
## Execute lvm programs in the caller domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`lvm_exec',`
gen_require(`
type lvm_exec_t;
')
corecmd_search_bin($1)
can_exec($1, lvm_exec_t)
')
########################################
##
## Execute lvm programs in the lvm domain.
##
##
##
## Domain allowed to transition.
##
##
##
##
## The role to allow the LVM domain.
##
##
##
#
interface(`lvm_run',`
gen_require(`
type lvm_t;
')
lvm_domtrans($1)
role $2 types lvm_t;
')
########################################
##
## Read LVM configuration files.
##
##
##
## Domain allowed access.
##
##
##
#
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)
')
########################################
##
## Manage LVM configuration files.
##
##
##
## Domain allowed access.
##
##
##
#
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)
')
######################################
##
## Execute a domain transition to run clvmd.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`lvm_domtrans_clvmd',`
gen_require(`
type clvmd_t, clvmd_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, clvmd_exec_t, clvmd_t)
')
########################################
##
## Read and write to lvm temporary file system.
##
##
##
## Domain allowed access.
##
##
#
interface(`lvm_rw_clvmd_tmpfs_files',`
gen_require(`
type clvmd_tmpfs_t;
')
allow $1 clvmd_tmpfs_t:file rw_file_perms;
')