selinux-policy/policy/modules/services/abrt.te

221 lines
5.7 KiB
Plaintext
Raw Normal View History

2009-09-14 13:22:24 +00:00
2010-05-18 14:18:12 +00:00
policy_module(abrt, 1.0.2)
2009-09-14 13:22:24 +00:00
########################################
#
# Declarations
#
type abrt_t;
type abrt_exec_t;
init_daemon_domain(abrt_t, abrt_exec_t)
type abrt_initrc_exec_t;
init_script_file(abrt_initrc_exec_t)
# etc files
type abrt_etc_t;
files_config_file(abrt_etc_t)
# log files
type abrt_var_log_t;
logging_log_file(abrt_var_log_t)
# tmp files
type abrt_tmp_t;
files_tmp_file(abrt_tmp_t)
# var/cache files
type abrt_var_cache_t;
files_type(abrt_var_cache_t)
# pid files
type abrt_var_run_t;
files_pid_file(abrt_var_run_t)
2010-05-18 14:18:12 +00:00
# type needed to allow all domains
# to handle /var/cache/abrt
type abrt_helper_t;
type abrt_helper_exec_t;
application_domain(abrt_helper_t, abrt_helper_exec_t)
role system_r types abrt_helper_t;
ifdef(`enable_mcs',`
init_ranged_daemon_domain(abrt_t, abrt_exec_t, s0 - mcs_systemhigh)
')
2009-09-14 13:22:24 +00:00
########################################
#
# abrt local policy
#
2010-05-18 14:18:12 +00:00
allow abrt_t self:capability { chown kill setuid setgid sys_nice dac_override };
dontaudit abrt_t self:capability sys_rawio;
2009-09-14 13:22:24 +00:00
allow abrt_t self:process { signal signull setsched getsched };
allow abrt_t self:fifo_file rw_fifo_file_perms;
allow abrt_t self:tcp_socket create_stream_socket_perms;
allow abrt_t self:udp_socket create_socket_perms;
allow abrt_t self:unix_dgram_socket create_socket_perms;
allow abrt_t self:netlink_route_socket r_netlink_socket_perms;
# abrt etc files
rw_files_pattern(abrt_t, abrt_etc_t, abrt_etc_t)
# log file
manage_files_pattern(abrt_t, abrt_var_log_t, abrt_var_log_t)
logging_log_filetrans(abrt_t, abrt_var_log_t, file)
2010-05-18 14:18:12 +00:00
# abrt tmp files
2009-09-14 13:22:24 +00:00
manage_dirs_pattern(abrt_t, abrt_tmp_t, abrt_tmp_t)
manage_files_pattern(abrt_t, abrt_tmp_t, abrt_tmp_t)
files_tmp_filetrans(abrt_t, abrt_tmp_t, { file dir })
# abrt var/cache files
manage_files_pattern(abrt_t, abrt_var_cache_t, abrt_var_cache_t)
manage_dirs_pattern(abrt_t, abrt_var_cache_t, abrt_var_cache_t)
2010-05-18 14:18:12 +00:00
manage_lnk_files_pattern(abrt_t, abrt_var_cache_t, abrt_var_cache_t)
2009-09-14 13:22:24 +00:00
files_var_filetrans(abrt_t, abrt_var_cache_t, { file dir })
# abrt pid files
manage_files_pattern(abrt_t, abrt_var_run_t, abrt_var_run_t)
manage_dirs_pattern(abrt_t, abrt_var_run_t, abrt_var_run_t)
2010-05-18 14:18:12 +00:00
manage_lnk_files_pattern(abrt_t, abrt_var_run_t, abrt_var_run_t)
2009-09-14 13:22:24 +00:00
files_pid_filetrans(abrt_t, abrt_var_run_t, { file dir })
kernel_read_ring_buffer(abrt_t)
kernel_read_system_state(abrt_t)
kernel_rw_kernel_sysctl(abrt_t)
corecmd_exec_bin(abrt_t)
corecmd_exec_shell(abrt_t)
2010-05-18 14:18:12 +00:00
corecmd_read_all_executables(abrt_t)
2009-09-14 13:22:24 +00:00
corenet_all_recvfrom_netlabel(abrt_t)
corenet_all_recvfrom_unlabeled(abrt_t)
corenet_tcp_sendrecv_generic_if(abrt_t)
corenet_tcp_sendrecv_generic_node(abrt_t)
corenet_tcp_sendrecv_generic_port(abrt_t)
2010-05-18 14:18:12 +00:00
corenet_tcp_bind_generic_node(abrt_t)
corenet_tcp_connect_http_port(abrt_t)
corenet_tcp_connect_ftp_port(abrt_t)
corenet_tcp_connect_all_ports(abrt_t)
corenet_sendrecv_http_client_packets(abrt_t)
2009-09-14 13:22:24 +00:00
2010-05-18 14:18:12 +00:00
dev_getattr_all_chr_files(abrt_t)
2009-09-14 13:22:24 +00:00
dev_read_urand(abrt_t)
2010-05-18 14:18:12 +00:00
dev_rw_sysfs(abrt_t)
dev_dontaudit_read_raw_memory(abrt_t)
domain_getattr_all_domains(abrt_t)
domain_read_all_domains_state(abrt_t)
domain_signull_all_domains(abrt_t)
2009-09-14 13:22:24 +00:00
files_getattr_all_files(abrt_t)
files_read_etc_files(abrt_t)
2010-05-18 14:18:12 +00:00
files_read_var_symlinks(abrt_t)
files_read_var_lib_files(abrt_t)
2009-09-14 13:22:24 +00:00
files_read_usr_files(abrt_t)
2010-05-18 14:18:12 +00:00
files_read_generic_tmp_files(abrt_t)
files_read_kernel_modules(abrt_t)
files_dontaudit_list_default(abrt_t)
files_dontaudit_read_default_files(abrt_t)
2009-09-14 13:22:24 +00:00
fs_list_inotifyfs(abrt_t)
fs_getattr_all_fs(abrt_t)
fs_getattr_all_dirs(abrt_t)
2010-05-18 14:18:12 +00:00
fs_read_fusefs_files(abrt_t)
fs_read_noxattr_fs_files(abrt_t)
fs_read_nfs_files(abrt_t)
fs_read_nfs_symlinks(abrt_t)
fs_search_all(abrt_t)
2009-09-14 13:22:24 +00:00
sysnet_read_config(abrt_t)
logging_read_generic_logs(abrt_t)
logging_send_syslog_msg(abrt_t)
miscfiles_read_certs(abrt_t)
miscfiles_read_localization(abrt_t)
2010-05-18 14:18:12 +00:00
userdom_dontaudit_read_user_home_content_files(abrt_t)
2009-09-14 13:22:24 +00:00
optional_policy(`
2010-05-18 14:18:12 +00:00
dbus_system_domain(abrt_t, abrt_exec_t)
2009-09-14 13:22:24 +00:00
')
optional_policy(`
2010-05-18 14:18:12 +00:00
nis_use_ypbind(abrt_t)
')
optional_policy(`
policykit_dbus_chat(abrt_t)
policykit_domtrans_auth(abrt_t)
policykit_read_lib(abrt_t)
policykit_read_reload(abrt_t)
')
# to install debuginfo packages
optional_policy(`
rpm_exec(abrt_t)
rpm_dontaudit_manage_db(abrt_t)
rpm_manage_cache(abrt_t)
rpm_manage_pid_files(abrt_t)
rpm_read_db(abrt_t)
rpm_signull(abrt_t)
2009-09-14 13:22:24 +00:00
')
# to run mailx plugin
optional_policy(`
sendmail_domtrans(abrt_t)
')
2010-05-18 14:18:12 +00:00
optional_policy(`
sssd_stream_connect(abrt_t)
')
########################################
#
# abrt--helper local policy
#
allow abrt_helper_t self:capability { chown setgid };
allow abrt_helper_t self:process signal;
read_files_pattern(abrt_helper_t, abrt_etc_t, abrt_etc_t)
manage_dirs_pattern(abrt_helper_t, abrt_var_cache_t, abrt_var_cache_t)
manage_files_pattern(abrt_helper_t, abrt_var_cache_t, abrt_var_cache_t)
manage_lnk_files_pattern(abrt_helper_t, abrt_var_cache_t, abrt_var_cache_t)
files_var_filetrans(abrt_helper_t, abrt_var_cache_t, { file dir })
read_files_pattern(abrt_helper_t, abrt_var_run_t, abrt_var_run_t)
read_lnk_files_pattern(abrt_helper_t, abrt_var_run_t, abrt_var_run_t)
domain_read_all_domains_state(abrt_helper_t)
files_read_etc_files(abrt_helper_t)
fs_list_inotifyfs(abrt_helper_t)
fs_getattr_all_fs(abrt_helper_t)
auth_use_nsswitch(abrt_helper_t)
logging_send_syslog_msg(abrt_helper_t)
miscfiles_read_localization(abrt_helper_t)
term_dontaudit_use_all_ttys(abrt_helper_t)
term_dontaudit_use_all_ptys(abrt_helper_t)
ifdef(`hide_broken_symptoms', `
userdom_dontaudit_read_user_home_content_files(abrt_helper_t)
userdom_dontaudit_read_user_tmp_files(abrt_helper_t)
dev_dontaudit_read_all_blk_files(abrt_helper_t)
dev_dontaudit_read_all_chr_files(abrt_helper_t)
dev_dontaudit_write_all_chr_files(abrt_helper_t)
dev_dontaudit_write_all_blk_files(abrt_helper_t)
fs_dontaudit_rw_anon_inodefs_files(abrt_helper_t)
')