162 lines
3.3 KiB
Plaintext
162 lines
3.3 KiB
Plaintext
## <summary>Smokeping network latency measurement.</summary>
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute a domain transition to run smokeping.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed to transition.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`smokeping_domtrans',`
|
|
gen_require(`
|
|
type smokeping_t, smokeping_exec_t;
|
|
')
|
|
|
|
corecmd_search_bin($1)
|
|
domtrans_pattern($1, smokeping_exec_t, smokeping_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute smokeping init scripts in
|
|
## the initrc domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed to transition.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`smokeping_initrc_domtrans',`
|
|
gen_require(`
|
|
type smokeping_initrc_exec_t;
|
|
')
|
|
|
|
init_labeled_script_domtrans($1, smokeping_initrc_exec_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Read smokeping pid files. (Deprecated)
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`smokeping_read_pid_files',`
|
|
refpolicywarn(`$0($*) has been deprecated.')
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Create, read, write, and delete
|
|
## smokeping pid files. (Deprecated)
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`smokeping_manage_pid_files',`
|
|
refpolicywarn(`$0($*) has been deprecated.')
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Get attributes of smokeping lib files.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`smokeping_getattr_lib_files',`
|
|
gen_require(`
|
|
type smokeping_var_lib_t;
|
|
')
|
|
|
|
files_search_var_lib($1)
|
|
getattr_files_pattern($1, smokeping_var_lib_t, smokeping_var_lib_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Read smokeping lib files.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`smokeping_read_lib_files',`
|
|
gen_require(`
|
|
type smokeping_var_lib_t;
|
|
')
|
|
|
|
files_search_var_lib($1)
|
|
read_files_pattern($1, smokeping_var_lib_t, smokeping_var_lib_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Create, read, write, and delete
|
|
## smokeping lib files.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`smokeping_manage_lib_files',`
|
|
gen_require(`
|
|
type smokeping_var_lib_t;
|
|
')
|
|
|
|
files_search_var_lib($1)
|
|
manage_files_pattern($1, smokeping_var_lib_t, smokeping_var_lib_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## All of the rules required to
|
|
## administrate a smokeping environment.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
## <param name="role">
|
|
## <summary>
|
|
## Role allowed access.
|
|
## </summary>
|
|
## </param>
|
|
## <rolecap/>
|
|
#
|
|
interface(`smokeping_admin',`
|
|
gen_require(`
|
|
type smokeping_t, smokeping_initrc_exec_t, smokeping_var_lib_t;
|
|
type smokeping_runtime_t;
|
|
')
|
|
|
|
allow $1 smokeping_t:process { ptrace signal_perms };
|
|
ps_process_pattern($1, smokeping_t)
|
|
|
|
init_startstop_service($1, $2, smokeping_t, smokeping_initrc_exec_t)
|
|
|
|
files_search_var_lib($1)
|
|
admin_pattern($1, smokeping_var_lib_t)
|
|
|
|
files_search_runtime($1)
|
|
admin_pattern($1, smokeping_runtime_t)
|
|
')
|