## 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;
')
corecmd_search_bin($1)
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. (Deprecated)
##
##
##
## Domain allowed access.
##
##
#
interface(`tuned_read_pid_files',`
refpolicywarn(`$0($*) has been deprecated.')
')
#######################################
##
## Create, read, write, and delete
## tuned pid files. (Deprecated)
##
##
##
## Domain allowed access.
##
##
#
interface(`tuned_manage_pid_files',`
refpolicywarn(`$0($*) has been deprecated.')
')
########################################
##
## Execute tuned init scripts in
## the initrc domain.
##
##
##
## Domain allowed to transition.
##
##
#
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_runtime_t, tuned_initrc_exec_t;
type tuned_etc_t, tuned_rw_etc_t, tuned_log_t;
')
allow $1 tuned_t:process { ptrace signal_perms };
ps_process_pattern($1, tuned_t)
init_startstop_service($1, $2, tuned_t, tuned_initrc_exec_t)
files_search_etc($1)
admin_pattern($1, { tuned_etc_t tuned_rw_etc_t })
logging_search_logs($1)
admin_pattern($1, tuned_log_t)
files_search_pids($1)
admin_pattern($1, tuned_runtime_t)
')