selinux-policy/refpolicy/policy/modules/system/iptables.te

128 lines
2.9 KiB
Plaintext
Raw Normal View History

2005-04-29 20:16:38 +00:00
2005-05-02 18:36:51 +00:00
policy_module(iptables, 1.0)
2005-04-29 20:16:38 +00:00
########################################
#
# Declarations
#
type iptables_t;
type iptables_exec_t;
2005-06-13 17:35:46 +00:00
init_system_domain(iptables_t,iptables_exec_t)
2005-05-04 17:01:46 +00:00
role system_r types iptables_t;
2005-04-29 20:16:38 +00:00
type iptables_tmp_t;
2005-06-13 17:35:46 +00:00
files_tmp_file(iptables_tmp_t)
2005-04-29 20:16:38 +00:00
type iptables_var_run_t;
2005-06-13 17:35:46 +00:00
files_pid_file(iptables_var_run_t)
2005-04-29 20:16:38 +00:00
########################################
#
# Iptables local policy
#
allow iptables_t self:capability { net_admin net_raw };
2005-05-04 17:01:46 +00:00
dontaudit iptables_t self:capability sys_tty_config;
allow iptables_t self:process { sigchld sigkill sigstop signull signal };
2005-04-29 20:16:38 +00:00
2005-06-09 14:50:48 +00:00
allow iptables_t iptables_var_run_t:dir rw_dir_perms;
2005-06-13 17:35:46 +00:00
files_create_pid(iptables_t,iptables_var_run_t)
2005-04-29 20:16:38 +00:00
2005-06-09 14:50:48 +00:00
can_exec(iptables_t,iptables_exec_t)
2005-04-29 20:16:38 +00:00
2005-06-09 14:50:48 +00:00
allow iptables_t iptables_tmp_t:dir create_dir_perms;
allow iptables_t iptables_tmp_t:file create_file_perms;
2005-06-13 17:35:46 +00:00
files_create_tmp_files(iptables_t, iptables_tmp_t, { file dir })
2005-04-29 20:16:38 +00:00
2005-06-09 14:50:48 +00:00
allow iptables_t self:rawip_socket create_socket_perms;
2005-04-29 20:16:38 +00:00
kernel_read_system_state(iptables_t)
kernel_read_network_state(iptables_t)
2005-05-04 17:01:46 +00:00
kernel_read_kernel_sysctl(iptables_t)
kernel_read_modprobe_sysctl(iptables_t)
2005-06-10 01:01:13 +00:00
kernel_use_fd(iptables_t)
2005-04-29 20:16:38 +00:00
dev_read_sysfs(iptables_t)
2005-06-10 01:01:13 +00:00
fs_getattr_xattr_fs(iptables_t)
2005-04-29 20:16:38 +00:00
2005-06-10 01:01:13 +00:00
term_dontaudit_use_console(iptables_t)
2005-05-04 17:01:46 +00:00
2005-06-13 17:35:46 +00:00
domain_use_wide_inherit_fd(iptables_t)
2005-05-04 17:01:46 +00:00
2005-06-13 17:35:46 +00:00
files_read_generic_etc_files(iptables_t)
2005-04-29 20:16:38 +00:00
2005-06-13 17:35:46 +00:00
init_use_fd(iptables_t)
init_use_script_pty(iptables_t)
# to allow rules to be saved on reboot:
2005-06-13 17:35:46 +00:00
init_rw_script_tmp_files(iptables_t)
2005-06-13 17:35:46 +00:00
libs_use_ld_so(iptables_t)
libs_use_shared_libs(iptables_t)
2005-05-04 17:01:46 +00:00
2005-06-13 17:35:46 +00:00
logging_send_syslog_msg(iptables_t)
2005-04-29 20:16:38 +00:00
# system-config-network appends to /var/log
#logging_append_system_logs(iptables_t)
miscfiles_read_localization(iptables_t)
2005-06-13 17:35:46 +00:00
sysnet_domtrans_ifconfig(iptables_t)
2005-05-04 17:01:46 +00:00
2005-06-13 17:35:46 +00:00
userdom_use_all_user_fd(iptables_t)
tunable_policy(`use_dns',`
2005-06-09 14:50:48 +00:00
allow iptables_t self:udp_socket create_socket_perms;
2005-05-31 23:02:11 +00:00
2005-06-10 01:01:13 +00:00
corenet_udp_sendrecv_all_if(iptables_t)
corenet_raw_sendrecv_all_if(iptables_t)
corenet_udp_sendrecv_all_nodes(iptables_t)
corenet_raw_sendrecv_all_nodes(iptables_t)
corenet_udp_bind_all_nodes(iptables_t)
corenet_udp_sendrecv_dns_port(iptables_t)
2005-05-31 23:02:11 +00:00
2005-06-13 17:35:46 +00:00
sysnet_read_config(iptables_t)
')
2005-04-29 20:16:38 +00:00
optional_policy(`modutils.te', `
2005-06-13 17:35:46 +00:00
corecmd_search_sbin(iptables_t)
modutils_domtrans_insmod(iptables_t)
2005-04-29 20:16:38 +00:00
')
2005-05-04 17:01:46 +00:00
optional_policy(`selinux.te',`
seutil_newrole_sigchld(iptables_t)
2005-05-04 17:01:46 +00:00
')
optional_policy(`udev.te', `
2005-06-13 17:35:46 +00:00
udev_read_db(iptables_t)
2005-05-04 17:01:46 +00:00
')
ifdef(`targeted_policy', `
2005-06-10 01:01:13 +00:00
term_dontaudit_use_unallocated_tty(iptables_t)
term_dontaudit_use_generic_pty(iptables_t)
2005-05-31 23:02:11 +00:00
2005-06-13 17:35:46 +00:00
files_dontaudit_read_root_file(iptables_t)
2005-05-04 17:01:46 +00:00
')
2005-04-29 20:16:38 +00:00
ifdef(`TODO',`
2005-05-04 17:01:46 +00:00
optional_policy(`rhgb.te', `
allow iptables_t rhgb_t:process sigchld;
allow iptables_t rhgb_t:fd use;
2005-06-09 14:50:48 +00:00
allow iptables_t rhgb_t:fifo_file rw_file_perms;
2005-05-04 17:01:46 +00:00
')
2005-04-29 20:16:38 +00:00
allow iptables_t autofs_t:dir { search getattr };
2005-04-29 20:16:38 +00:00
# for iptables -L
can_ypbind(iptables_t)
optional_policy(`gnome-pty-helper.te',`
allow iptables_t sysadm_gph_t:fd use;
')
2005-04-29 20:16:38 +00:00
optional_policy(`firstboot.te', `
allow iptables_t firstboot_t:fifo_file write;
2005-04-29 20:16:38 +00:00
')
') dnl ifdef TODO