## Standards Based Linux Instrumentation for Manageability.
######################################
##
## Creates types and rules for a basic
## sblim daemon domain.
##
##
##
## Prefix for the domain.
##
##
#
template(`sblim_domain_template',`
gen_require(`
attribute sblim_domain;
')
type sblim_$1_t, sblim_domain;
type sblim_$1_exec_t;
init_daemon_domain(sblim_$1_t, sblim_$1_exec_t)
kernel_read_system_state(sblim_$1_t)
corenet_all_recvfrom_unlabeled(sblim_$1_t)
corenet_all_recvfrom_netlabel(sblim_$1_t)
logging_send_syslog_msg(sblim_$1_t)
')
########################################
##
## Transition to gatherd.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`sblim_domtrans_gatherd',`
gen_require(`
type sblim_gatherd_t, sblim_gatherd_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, sblim_gatherd_exec_t, sblim_gatherd_t)
')
########################################
##
## Read gatherd PID files.
##
##
##
## Domain allowed access.
##
##
#
interface(`sblim_read_pid_files',`
gen_require(`
type sblim_var_run_t;
')
files_search_pids($1)
allow $1 sblim_var_run_t:file read_file_perms;
')
########################################
##
## Transition to sblim named content
##
##
##
## Domain allowed access.
##
##
#
interface(`sblim_filetrans_named_content',`
gen_require(`
type sblim_var_run_t;
')
files_pid_filetrans($1, sblim_var_run_t, dir, "gather")
')
########################################
##
## Connect to sblim_sfcb over a unix stream socket.
##
##
##
## Domain allowed access.
##
##
#
interface(`sblim_stream_connect_sfcbd',`
gen_require(`
type sblim_sfcb_t, sblim_var_lib_t;
type sblim_tmp_t;
')
files_search_pids($1)
stream_connect_pattern($1, sblim_var_lib_t, sblim_var_lib_t, sblim_sfcb_t)
stream_connect_pattern($1, sblim_var_lib_t, sblim_tmp_t, sblim_tmp_t)
')
#######################################
##
## Getattr on sblim executable.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`sblim_getattr_exec_sfcbd',`
gen_require(`
type sblim_sfcbd_exec_t;
')
allow $1 sblim_sfcbd_exec_t:file getattr;
')
########################################
##
## Connect to sblim_sfcb over a unix stream socket.
##
##
##
## Domain allowed access.
##
##
#
interface(`sblim_stream_connect_sfcb',`
gen_require(`
type sblim_sfcb_t, sblim_var_lib_t;
')
files_search_pids($1)
stream_connect_pattern($1, sblim_var_lib_t, sblim_var_lib_t, sblim_sfcb_t)
')
#######################################
##
## Allow read and write access to sblim semaphores.
##
##
##
## Domain allowed access.
##
##
#
interface(`sblim_rw_semaphores_sfcbd',`
gen_require(`
type sblim_sfcbd_t;
')
allow $1 sblim_sfcbd_t:sem rw_sem_perms;
')
########################################
##
## All of the rules required to administrate
## an gatherd environment
##
##
##
## Domain allowed access.
##
##
##
#
interface(`sblim_admin',`
gen_require(`
type sblim_gatherd_t;
type sblim_reposd_t;
type sblim_var_run_t;
')
allow $1 sblim_gatherd_t:process signal_perms;
ps_process_pattern($1, sblim_gatherd_t)
tunable_policy(`deny_ptrace',`',`
allow $1 sblim_gatherd_t:process ptrace;
allow $1 sblim_reposd_t:process ptrace;
')
allow $1 sblim_reposd_t:process signal_perms;
ps_process_pattern($1, sblim_reposd_t)
files_search_pids($1)
admin_pattern($1, sblim_var_run_t)
')