icecast policy from Dan Walsh
Fixed some style and spacing issues Replace manage_var_run interface with manage_pid_files with fewer permissions Replaced rkit_daemon_system_domain with rtkit_schedule
This commit is contained in:
parent
ac19f1ac26
commit
584dfaca45
8
policy/modules/services/icecast.fc
Normal file
8
policy/modules/services/icecast.fc
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
/etc/rc\.d/init\.d/icecast -- gen_context(system_u:object_r:icecast_initrc_exec_t,s0)
|
||||
|
||||
/usr/bin/icecast -- gen_context(system_u:object_r:icecast_exec_t,s0)
|
||||
|
||||
/var/log/icecast(/.*)? gen_context(system_u:object_r:icecast_log_t,s0)
|
||||
|
||||
/var/run/icecast(/.*)? gen_context(system_u:object_r:icecast_var_run_t,s0)
|
192
policy/modules/services/icecast.if
Normal file
192
policy/modules/services/icecast.if
Normal file
@ -0,0 +1,192 @@
|
||||
|
||||
## <summary> ShoutCast compatible streaming media server</summary>
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Execute a domain transition to run icecast.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed to transition.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`icecast_domtrans',`
|
||||
gen_require(`
|
||||
type icecast_t, icecast_exec_t;
|
||||
')
|
||||
|
||||
domtrans_pattern($1, icecast_exec_t, icecast_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Execute icecast server in the icecast domain.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`icecast_initrc_domtrans',`
|
||||
gen_require(`
|
||||
type icecast_initrc_exec_t;
|
||||
')
|
||||
|
||||
init_labeled_script_domtrans($1, icecast_initrc_exec_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Read icecast PID files.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`icecast_read_pid_files',`
|
||||
gen_require(`
|
||||
type icecast_var_run_t;
|
||||
')
|
||||
|
||||
files_search_pids($1)
|
||||
allow $1 icecast_var_run_t:file read_file_perms;
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Manage icecast pid files.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`icecast_manage_pid_files',`
|
||||
gen_require(`
|
||||
type icecast_var_run_t;
|
||||
')
|
||||
|
||||
files_search_pids($1)
|
||||
manage_files_pattern($1, icecast_var_run_t, icecast_var_run_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Allow the specified domain to read icecast's log files.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
## <rolecap/>
|
||||
#
|
||||
interface(`icecast_read_log',`
|
||||
gen_require(`
|
||||
type icecast_log_t;
|
||||
')
|
||||
|
||||
logging_search_logs($1)
|
||||
read_files_pattern($1, icecast_log_t, icecast_log_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Allow the specified domain to append
|
||||
## icecast log files.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`icecast_append_log',`
|
||||
gen_require(`
|
||||
type icecast_log_t;
|
||||
')
|
||||
|
||||
logging_search_logs($1)
|
||||
append_files_pattern($1, icecast_log_t, icecast_log_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Allow domain to manage icecast log files
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allow access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`icecast_manage_log',`
|
||||
gen_require(`
|
||||
type icecast_log_t;
|
||||
')
|
||||
|
||||
logging_search_logs($1)
|
||||
manage_dirs_pattern($1, icecast_log_t, icecast_log_t)
|
||||
manage_files_pattern($1, icecast_log_t, icecast_log_t)
|
||||
manage_lnk_files_pattern($1, icecast_log_t, icecast_log_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Allow domain signal icecast
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`icecast_signal',`
|
||||
gen_require(`
|
||||
type icecast_t;
|
||||
')
|
||||
|
||||
allow $1 icecast_t:process signal;
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## All of the rules required to administrate
|
||||
## an icecast environment
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
## <param name="role">
|
||||
## <summary>
|
||||
## Role allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
## <rolecap/>
|
||||
#
|
||||
interface(`icecast_admin',`
|
||||
gen_require(`
|
||||
type icecast_t, icecast_initrc_exec_t;
|
||||
')
|
||||
|
||||
allow $1 icecast_t:process { ptrace signal_perms getattr };
|
||||
read_files_pattern($1, icecast_t, icecast_t)
|
||||
|
||||
# Allow icecast_t to restart the apache service
|
||||
icecast_initrc_domtrans($1)
|
||||
domain_system_change_exemption($1)
|
||||
role_transition $2 icecast_initrc_exec_t system_r;
|
||||
allow $2 system_r;
|
||||
|
||||
icecast_manage_pid_files($1)
|
||||
|
||||
icecast_manage_log($1)
|
||||
|
||||
')
|
57
policy/modules/services/icecast.te
Normal file
57
policy/modules/services/icecast.te
Normal file
@ -0,0 +1,57 @@
|
||||
policy_module(icecast,1.0.0)
|
||||
|
||||
########################################
|
||||
#
|
||||
# Declarations
|
||||
#
|
||||
|
||||
type icecast_t;
|
||||
type icecast_exec_t;
|
||||
init_daemon_domain(icecast_t, icecast_exec_t)
|
||||
|
||||
type icecast_initrc_exec_t;
|
||||
init_script_file(icecast_initrc_exec_t)
|
||||
|
||||
type icecast_var_run_t;
|
||||
files_pid_file(icecast_var_run_t)
|
||||
|
||||
type icecast_log_t;
|
||||
logging_log_file(icecast_log_t)
|
||||
|
||||
########################################
|
||||
#
|
||||
# icecast local policy
|
||||
#
|
||||
|
||||
allow icecast_t self:capability { dac_override setgid setuid sys_nice };
|
||||
allow icecast_t self:process { getsched fork setsched signal };
|
||||
|
||||
# internal communication is often done using fifo and unix sockets.
|
||||
allow icecast_t self:fifo_file rw_fifo_file_perms;
|
||||
allow icecast_t self:unix_stream_socket create_stream_socket_perms;
|
||||
allow icecast_t self:tcp_socket create_stream_socket_perms;
|
||||
|
||||
manage_dirs_pattern(icecast_t, icecast_log_t, icecast_log_t)
|
||||
manage_files_pattern(icecast_t, icecast_log_t, icecast_log_t)
|
||||
logging_log_filetrans(icecast_t, icecast_log_t, { file dir } )
|
||||
|
||||
manage_dirs_pattern(icecast_t, icecast_var_run_t, icecast_var_run_t)
|
||||
manage_files_pattern(icecast_t, icecast_var_run_t, icecast_var_run_t)
|
||||
files_pid_filetrans(icecast_t, icecast_var_run_t, { file dir })
|
||||
|
||||
corenet_tcp_bind_soundd_port(icecast_t)
|
||||
|
||||
# Init script handling
|
||||
domain_use_interactive_fds(icecast_t)
|
||||
|
||||
files_read_etc_files(icecast_t)
|
||||
|
||||
auth_use_nsswitch(icecast_t)
|
||||
|
||||
miscfiles_read_localization(icecast_t)
|
||||
|
||||
sysnet_dns_name_resolve(icecast_t)
|
||||
|
||||
optional_policy(`
|
||||
rtkit_schedule(icecast_t)
|
||||
')
|
Loading…
Reference in New Issue
Block a user