add zabbix from dan
This commit is contained in:
parent
697489040e
commit
97e8156ecb
@ -52,6 +52,7 @@
|
||||
- Added modules:
|
||||
consolekit (Dan Walsh)
|
||||
fail2ban (Dan Walsh)
|
||||
zabbix (Dan Walsh)
|
||||
|
||||
* Tue Dec 12 2006 Chris PeBenito <selinux@tresys.com> - 20061212
|
||||
- Add policy patterns support macros. This changes the behavior of
|
||||
|
5
policy/modules/services/zabbix.fc
Normal file
5
policy/modules/services/zabbix.fc
Normal file
@ -0,0 +1,5 @@
|
||||
/usr/bin/zabbix_server -- gen_context(system_u:object_r:zabbix_exec_t,s0)
|
||||
|
||||
/var/log/zabbix(/.*)? gen_context(system_u:object_r:zabbix_log_t,s0)
|
||||
|
||||
/var/run/zabbix(/.*)? gen_context(system_u:object_r:zabbix_var_run_t,s0)
|
78
policy/modules/services/zabbix.if
Normal file
78
policy/modules/services/zabbix.if
Normal file
@ -0,0 +1,78 @@
|
||||
## <summary>Distributed infrastructure monitoring</summary>
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Execute a domain transition to run zabbix.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed to transition.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`zabbix_domtrans',`
|
||||
gen_require(`
|
||||
type zabbix_t, zabbix_exec_t;
|
||||
')
|
||||
|
||||
domtrans_pattern($1,zabbix_exec_t,zabbix_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Allow the specified domain to read zabbix's log files.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
## <rolecap/>
|
||||
#
|
||||
interface(`zabbix_read_log',`
|
||||
gen_require(`
|
||||
type zabbix_log_t;
|
||||
')
|
||||
|
||||
logging_search_logs($1)
|
||||
read_files_pattern($1,zabbix_log_t,zabbix_log_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Allow the specified domain to append
|
||||
## zabbix log files.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`zabbix_append_log',`
|
||||
gen_require(`
|
||||
type var_log_t, zabbix_log_t;
|
||||
')
|
||||
|
||||
logging_search_logs($1)
|
||||
append_files_pattern($1,zabbix_log_t,zabbix_log_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
## <summary>
|
||||
## Read zabbix PID files.
|
||||
## </summary>
|
||||
## <param name="domain">
|
||||
## <summary>
|
||||
## Domain allowed access.
|
||||
## </summary>
|
||||
## </param>
|
||||
#
|
||||
interface(`zabbix_read_pid_files',`
|
||||
gen_require(`
|
||||
type zabbix_var_run_t;
|
||||
')
|
||||
|
||||
files_search_pids($1)
|
||||
allow $1 zabbix_var_run_t:file read_file_perms;
|
||||
')
|
57
policy/modules/services/zabbix.te
Normal file
57
policy/modules/services/zabbix.te
Normal file
@ -0,0 +1,57 @@
|
||||
|
||||
policy_module(zabbix,1.0.0)
|
||||
|
||||
########################################
|
||||
#
|
||||
# Declarations
|
||||
#
|
||||
|
||||
type zabbix_t;
|
||||
type zabbix_exec_t;
|
||||
init_daemon_domain(zabbix_t, zabbix_exec_t)
|
||||
|
||||
# log files
|
||||
type zabbix_log_t;
|
||||
logging_log_file(zabbix_log_t)
|
||||
|
||||
# pid files
|
||||
type zabbix_var_run_t;
|
||||
files_pid_file(zabbix_var_run_t)
|
||||
|
||||
########################################
|
||||
#
|
||||
# zabbix local policy
|
||||
#
|
||||
|
||||
allow zabbix_t self:capability { setuid setgid };
|
||||
allow zabbix_t self:fifo_file rw_file_perms;
|
||||
allow zabbix_t self:unix_stream_socket create_stream_socket_perms;
|
||||
|
||||
# log files
|
||||
allow zabbix_t zabbix_log_t:dir setattr;
|
||||
manage_files_pattern(zabbix_t,zabbix_log_t,zabbix_log_t)
|
||||
logging_log_filetrans(zabbix_t,zabbix_log_t,file)
|
||||
|
||||
# pid file
|
||||
manage_files_pattern(zabbix_t,zabbix_var_run_t,zabbix_var_run_t)
|
||||
files_pid_filetrans(zabbix_t,zabbix_var_run_t, file)
|
||||
|
||||
files_read_etc_files(zabbix_t)
|
||||
|
||||
libs_use_ld_so(zabbix_t)
|
||||
libs_use_shared_libs(zabbix_t)
|
||||
|
||||
miscfiles_read_localization(zabbix_t)
|
||||
|
||||
ifdef(`targeted_policy',`
|
||||
term_dontaudit_use_unallocated_ttys(zabbix_t)
|
||||
term_dontaudit_use_generic_ptys(zabbix_t)
|
||||
')
|
||||
|
||||
optional_policy(`
|
||||
mysql_stream_connect(zabbix_t)
|
||||
')
|
||||
|
||||
optional_policy(`
|
||||
postgresql_stream_connect(zabbix_t)
|
||||
')
|
Loading…
Reference in New Issue
Block a user