## Dynamic adaptive system tuning daemon ######################################## ## ## Execute a domain transition to run tuned. ## ## ## ## Domain allowed to transition. ## ## # interface(`tuned_domtrans',` gen_require(` type tuned_t, tuned_exec_t; ') domtrans_pattern($1, tuned_exec_t, tuned_t) ') ####################################### ## ## Execute tuned in the caller domain. ## ## ## ## Domain allowed access. ## ## # interface(`tuned_exec',` gen_require(` type tuned_exec_t; ') corecmd_search_bin($1) can_exec($1, tuned_exec_t) ') ###################################### ## ## Read tuned PID files. ## ## ## ## Domain allowed access. ## ## # interface(`tuned_read_pid_files',` gen_require(` type tuned_var_run_t; ') files_search_pids($1) read_files_pattern($1, tuned_var_run_t, tuned_var_run_t) ') ####################################### ## ## Manage tuned PID files. ## ## ## ## Domain allowed access. ## ## # interface(`tuned_manage_pid_files',` gen_require(` type tuned_var_run_t; ') files_search_pids($1) manage_files_pattern($1, tuned_var_run_t, tuned_var_run_t) ') ######################################## ## ## Execute tuned server in the tuned domain. ## ## ## ## Domain allowed access. ## ## # interface(`tuned_initrc_domtrans',` gen_require(` type tuned_initrc_exec_t; ') init_labeled_script_domtrans($1, tuned_initrc_exec_t) ') ######################################## ## ## All of the rules required to administrate ## an tuned environment ## ## ## ## Domain allowed access. ## ## ## ## ## Role allowed access. ## ## ## # interface(`tuned_admin',` gen_require(` type tuned_t, tuned_var_run_t; type tuned_initrc_exec_t; ') allow $1 tuned_t:process { ptrace signal_perms }; ps_process_pattern($1, tuned_t) tuned_initrc_domtrans($1) domain_system_change_exemption($1) role_transition $2 tuned_initrc_exec_t system_r; allow $2 system_r; files_search_pids($1) admin_pattern($1, tuned_var_run_t) ')