109 lines
2.2 KiB
Plaintext
109 lines
2.2 KiB
Plaintext
## <summary>Cluster mirror log daemon.</summary>
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute a domain transition to
|
|
## run cmirrord.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed to transition.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`cmirrord_domtrans',`
|
|
gen_require(`
|
|
type cmirrord_t, cmirrord_exec_t;
|
|
')
|
|
|
|
corecmd_search_bin($1)
|
|
domtrans_pattern($1, cmirrord_exec_t, cmirrord_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute cmirrord server in the
|
|
## cmirrord domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed to transition.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`cmirrord_initrc_domtrans',`
|
|
gen_require(`
|
|
type cmirrord_initrc_exec_t;
|
|
')
|
|
|
|
init_labeled_script_domtrans($1, cmirrord_initrc_exec_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Read cmirrord PID files. (Deprecated)
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`cmirrord_read_pid_files',`
|
|
refpolicywarn(`$0($*) has been deprecated.')
|
|
')
|
|
|
|
#######################################
|
|
## <summary>
|
|
## Read and write cmirrord shared memory.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`cmirrord_rw_shm',`
|
|
gen_require(`
|
|
type cmirrord_t, cmirrord_tmpfs_t;
|
|
')
|
|
|
|
allow $1 cmirrord_t:shm rw_shm_perms;
|
|
|
|
allow $1 cmirrord_tmpfs_t:dir list_dir_perms;
|
|
rw_files_pattern($1, cmirrord_tmpfs_t, cmirrord_tmpfs_t)
|
|
read_lnk_files_pattern($1, cmirrord_tmpfs_t, cmirrord_tmpfs_t)
|
|
fs_search_tmpfs($1)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## All of the rules required to
|
|
## administrate an cmirrord environment.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
## <param name="role">
|
|
## <summary>
|
|
## Role allowed access.
|
|
## </summary>
|
|
## </param>
|
|
## <rolecap/>
|
|
#
|
|
interface(`cmirrord_admin',`
|
|
gen_require(`
|
|
type cmirrord_t, cmirrord_initrc_exec_t, cmirrord_runtime_t;
|
|
')
|
|
|
|
allow $1 cmirrord_t:process { ptrace signal_perms };
|
|
ps_process_pattern($1, cmirrord_t)
|
|
|
|
init_startstop_service($1, $2, cmirrord_t, cmirrord_initrc_exec_t)
|
|
|
|
files_list_runtime($1)
|
|
admin_pattern($1, cmirrord_runtime_t)
|
|
')
|