## policy for rspamd
########################################
##
## Execute rspamd_exec_t in the rspamd domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`rspamd_domtrans',`
gen_require(`
type rspamd_t, rspamd_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, rspamd_exec_t, rspamd_t)
')
######################################
##
## Execute rspamd in the caller domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_exec',`
gen_require(`
type rspamd_exec_t;
')
corecmd_search_bin($1)
can_exec($1, rspamd_exec_t)
')
########################################
##
## Read rspamd's log files.
##
##
##
## Domain allowed access.
##
##
##
#
interface(`rspamd_read_log',`
gen_require(`
type rspamd_log_t;
')
logging_search_logs($1)
read_files_pattern($1, rspamd_log_t, rspamd_log_t)
')
########################################
##
## Append to rspamd log files.
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_append_log',`
gen_require(`
type rspamd_log_t;
')
logging_search_logs($1)
append_files_pattern($1, rspamd_log_t, rspamd_log_t)
')
########################################
##
## Manage rspamd log files
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_manage_log',`
gen_require(`
type rspamd_log_t;
')
logging_search_logs($1)
manage_dirs_pattern($1, rspamd_log_t, rspamd_log_t)
manage_files_pattern($1, rspamd_log_t, rspamd_log_t)
manage_lnk_files_pattern($1, rspamd_log_t, rspamd_log_t)
')
########################################
##
## Search rspamd lib directories.
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_search_lib',`
gen_require(`
type rspamd_var_lib_t;
')
allow $1 rspamd_var_lib_t:dir search_dir_perms;
files_search_var_lib($1)
')
########################################
##
## Read rspamd lib files.
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_read_lib_files',`
gen_require(`
type rspamd_var_lib_t;
')
files_search_var_lib($1)
read_files_pattern($1, rspamd_var_lib_t, rspamd_var_lib_t)
')
########################################
##
## Manage rspamd lib files.
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_manage_lib_files',`
gen_require(`
type rspamd_var_lib_t;
')
files_search_var_lib($1)
manage_files_pattern($1, rspamd_var_lib_t, rspamd_var_lib_t)
')
########################################
##
## Manage rspamd lib directories.
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_manage_lib_dirs',`
gen_require(`
type rspamd_var_lib_t;
')
files_search_var_lib($1)
manage_dirs_pattern($1, rspamd_var_lib_t, rspamd_var_lib_t)
')
########################################
##
## Read rspamd PID files.
##
##
##
## Domain allowed access.
##
##
#
interface(`rspamd_read_pid_files',`
gen_require(`
type rspamd_var_run_t;
')
files_search_pids($1)
read_files_pattern($1, rspamd_var_run_t, rspamd_var_run_t)
')
########################################
##
## All of the rules required to administrate
## an rspamd environment
##
##
##
## Domain allowed access.
##
##
##
##
## Role allowed access.
##
##
##
#
interface(`rspamd_admin',`
gen_require(`
type rspamd_t;
type rspamd_log_t;
type rspamd_var_lib_t;
type rspamd_var_run_t;
')
allow $1 rspamd_t:process { signal_perms };
ps_process_pattern($1, rspamd_t)
tunable_policy(`deny_ptrace',`',`
allow $1 rspamd_t:process ptrace;
')
logging_search_logs($1)
admin_pattern($1, rspamd_log_t)
files_search_var_lib($1)
admin_pattern($1, rspamd_var_lib_t)
files_search_pids($1)
admin_pattern($1, rspamd_var_run_t)
optional_policy(`
systemd_passwd_agent_exec($1)
systemd_read_fifo_file_passwd_run($1)
')
')
############################################################################
# network.if
############################################################################
########################################
##
## Bind TCP sockets to the rspamd worker port.
##
##
##
## Domain allowed access.
##
##
##
#
interface(`corenet_tcp_bind_rspamd_wrkr_port',`
gen_require(`
type rspamd_wrkr_port_t;
')
allow $1 rspamd_wrkr_port_t:tcp_socket name_bind;
')
########################################
##
## Bind TCP sockets to the rspamd controller port.
##
##
##
## Domain allowed access.
##
##
##
#
interface(`corenet_tcp_bind_rspamd_cntrllr_port',`
gen_require(`
type rspamd_cntrllr_port_t;
')
allow $1 rspamd_cntrllr_port_t:tcp_socket name_bind;
')
########################################
##
## Bind TCP sockets to the rspamd proxy port.
##
##
##
## Domain allowed access.
##
##
##
#
interface(`corenet_tcp_bind_rspamd_prx_port',`
gen_require(`
type rspamd_prx_port_t;
')
allow $1 rspamd_prx_port_t:tcp_socket name_bind;
')
########################################
##
## Make a TCP connection to the rspamd worker port.
##
##
##
## Domain allowed access.
##
##
#
interface(`corenet_tcp_connect_rspamd_wrkr_port',`
gen_require(`
type rspamd_wrkr_port_t;
')
allow $1 rspamd_wrkr_port_t:tcp_socket name_connect;
')