## Ricci cluster management agent ######################################## ## ## Execute a domain transition to run ricci. ## ## ## ## Domain allowed to transition. ## ## # interface(`ricci_domtrans',` gen_require(` type ricci_t, ricci_exec_t; ') domtrans_pattern($1, ricci_exec_t, ricci_t) ') ####################################### ## ## Execute ricci server in the ricci domain. ## ## ## ## Domain allowed access. ## ## # interface(`ricci_initrc_domtrans',` gen_require(` type ricci_initrc_exec_t; ') init_labeled_script_domtrans($1, ricci_initrc_exec_t) ') ######################################## ## ## Execute a domain transition to run ricci_modcluster. ## ## ## ## Domain allowed to transition. ## ## # interface(`ricci_domtrans_modcluster',` gen_require(` type ricci_modcluster_t, ricci_modcluster_exec_t; ') domtrans_pattern($1, ricci_modcluster_exec_t, ricci_modcluster_t) ') ######################################## ## ## Do not audit attempts to use ## ricci_modcluster file descriptors. ## ## ## ## Domain to not audit. ## ## # interface(`ricci_dontaudit_use_modcluster_fds',` gen_require(` type ricci_modcluster_t; ') dontaudit $1 ricci_modcluster_t:fd use; ') ######################################## ## ## Do not audit attempts to read write ## ricci_modcluster unamed pipes. ## ## ## ## Domain to not audit. ## ## # interface(`ricci_dontaudit_rw_modcluster_pipes',` gen_require(` type ricci_modcluster_t; ') dontaudit $1 ricci_modcluster_t:fifo_file rw_inherited_fifo_file_perms; ') ######################################## ## ## Connect to ricci_modclusterd over a unix stream socket. ## ## ## ## Domain allowed access. ## ## # interface(`ricci_stream_connect_modclusterd',` gen_require(` type ricci_modclusterd_t, ricci_modcluster_var_run_t; ') files_search_pids($1) stream_connect_pattern($1, ricci_modcluster_var_run_t, ricci_modcluster_var_run_t, ricci_modclusterd_t) ') ######################################## ## ## Read and write to ricci_modcluserd temporary file system. ## ## ## ## Domain allowed access. ## ## # interface(`ricci_rw_modclusterd_tmpfs_files',` gen_require(` type ricci_modclusterd_tmpfs_t; ') fs_search_tmpfs($1) allow $1 ricci_modclusterd_tmpfs_t:file rw_file_perms; ') ######################################## ## ## Execute a domain transition to run ricci_modlog. ## ## ## ## Domain allowed to transition. ## ## # interface(`ricci_domtrans_modlog',` gen_require(` type ricci_modlog_t, ricci_modlog_exec_t; ') domtrans_pattern($1, ricci_modlog_exec_t, ricci_modlog_t) ') ######################################## ## ## Execute a domain transition to run ricci_modrpm. ## ## ## ## Domain allowed to transition. ## ## # interface(`ricci_domtrans_modrpm',` gen_require(` type ricci_modrpm_t, ricci_modrpm_exec_t; ') domtrans_pattern($1, ricci_modrpm_exec_t, ricci_modrpm_t) ') ######################################## ## ## Execute a domain transition to run ricci_modservice. ## ## ## ## Domain allowed to transition. ## ## # interface(`ricci_domtrans_modservice',` gen_require(` type ricci_modservice_t, ricci_modservice_exec_t; ') domtrans_pattern($1, ricci_modservice_exec_t, ricci_modservice_t) ') ######################################## ## ## Execute a domain transition to run ricci_modstorage. ## ## ## ## Domain allowed to transition. ## ## # interface(`ricci_domtrans_modstorage',` gen_require(` type ricci_modstorage_t, ricci_modstorage_exec_t; ') domtrans_pattern($1, ricci_modstorage_exec_t, ricci_modstorage_t) ') #################################### ## ## Allow the specified domain to manage ricci's lib files. ## ## ## ## Domain allowed access. ## ## # interface(`ricci_manage_lib_files',` gen_require(` type ricci_var_lib_t; ') files_search_var_lib($1) manage_dirs_pattern($1, ricci_var_lib_t, ricci_var_lib_t) manage_files_pattern($1, ricci_var_lib_t, ricci_var_lib_t) ') ######################################## ## ## All of the rules required to administrate ## an ricci environment ## ## ## ## Domain allowed access. ## ## ## ## ## Role allowed access. ## ## ## # interface(`ricci_admin',` gen_require(` type ricci_t, ricci_initrc_exec_t, ricci_tmp_t; type ricci_var_lib_t, ricci_var_log_t, ricci_var_run_t; ') allow $1 ricci_t:process signal_perms; ps_process_pattern($1, ricci_t) tunable_policy(`deny_ptrace',`',` allow $1 ricci_t:process ptrace; ') ricci_initrc_domtrans($1) domain_system_change_exemption($1) role_transition $2 ricci_initrc_exec_t system_r; allow $2 system_r; files_list_tmp($1) admin_pattern($1, ricci_tmp_t) files_list_var_lib($1) admin_pattern($1, ricci_var_lib_t) logging_list_logs($1) admin_pattern($1, ricci_var_log_t) files_list_pids($1) admin_pattern($1, ricci_var_run_t) ')