## RAID array management tools.
########################################
##
## Execute software raid tools in
## the mdadm domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`raid_domtrans_mdadm',`
gen_require(`
type mdadm_t, mdadm_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, mdadm_exec_t, mdadm_t)
')
######################################
##
## Execute mdadm in the mdadm
## domain, and allow the specified
## role the mdadm domain.
##
##
##
## Role allowed access.
##
##
##
##
## Domain allowed to transition.
##
##
#
interface(`raid_run_mdadm',`
gen_require(`
attribute_role mdadm_roles;
')
raid_domtrans_mdadm($2)
roleattribute $1 mdadm_roles;
')
########################################
##
## read mdadm pid files. (Deprecated)
##
##
##
## Domain allowed access.
##
##
#
interface(`raid_read_mdadm_pid',`
refpolicywarn(`$0($*) has been deprecated, please use raid_read_mdadm_runtime_files() instead.')
raid_read_mdadm_runtime_files($1)
')
########################################
##
## Create, read, write, and delete
## mdadm pid files. (Deprecated)
##
##
##
## Domain allowed access.
##
##
#
interface(`raid_manage_mdadm_pid',`
refpolicywarn(`$0($*) has been deprecated, please use raid_manage_mdadm_runtime_files() instead.')
raid_manage_mdadm_runtime_files($1)
')
########################################
##
## Read mdadm runtime files.
##
##
##
## Domain allowed access.
##
##
#
interface(`raid_read_mdadm_runtime_files',`
gen_require(`
type mdadm_runtime_t;
')
files_search_runtime($1)
allow $1 mdadm_runtime_t:dir list_dir_perms;
allow $1 mdadm_runtime_t:file read_file_perms;
')
########################################
##
## Create, read, write, and delete
## mdadm runtime files.
##
##
##
## Domain allowed access.
##
##
#
interface(`raid_manage_mdadm_runtime_files',`
gen_require(`
type mdadm_runtime_t;
')
files_search_runtime($1)
allow $1 mdadm_runtime_t:file manage_file_perms;
')
########################################
##
## All of the rules required to
## administrate an mdadm environment.
##
##
##
## Domain allowed access.
##
##
##
##
## Role allowed access.
##
##
##
#
interface(`raid_admin_mdadm',`
gen_require(`
type mdadm_t, mdadm_initrc_exec_t, mdadm_runtime_t;
')
allow $1 mdadm_t:process { ptrace signal_perms };
ps_process_pattern($1, mdadm_t)
init_startstop_service($1, $2, mdadm_t, mdadm_initrc_exec_t)
files_search_runtime($1)
admin_pattern($1, mdadm_runtime_t)
')