selinux-policy/refpolicy/policy/modules/services/nscd.te

140 lines
3.6 KiB
Plaintext
Raw Normal View History

2005-07-13 20:48:51 +00:00
policy_module(nscd,1.0)
2005-09-19 14:18:48 +00:00
gen_require(`
2005-09-20 20:48:17 +00:00
class nscd all_nscd_perms;
2005-09-19 14:18:48 +00:00
')
2005-07-13 20:48:51 +00:00
########################################
#
# Declarations
#
# nscd is both the client program and the daemon.
2005-09-07 13:31:37 +00:00
type nscd_t;
2005-07-13 20:48:51 +00:00
type nscd_exec_t;
init_daemon_domain(nscd_t,nscd_exec_t)
2005-09-15 21:03:29 +00:00
type nscd_log_t;
logging_log_file(nscd_log_t)
2005-07-13 20:48:51 +00:00
type nscd_var_run_t;
files_pid_file(nscd_var_run_t)
########################################
#
# Local policy
#
allow nscd_t self:capability { kill setgid setuid };
dontaudit nscd_t self:capability sys_tty_config;
allow nscd_t self:process { getattr setsched };
2005-09-07 13:31:37 +00:00
allow nscd_t self:fifo_file { read write };
2005-07-13 20:48:51 +00:00
allow nscd_t self:unix_stream_socket create_stream_socket_perms;
allow nscd_t self:unix_dgram_socket create_socket_perms;
allow nscd_t self:netlink_selinux_socket create_socket_perms;
allow nscd_t self:netlink_route_socket r_netlink_socket_perms;
allow nscd_t self:netlink_audit_socket { create_netlink_socket_perms nlmsg_relay };
2005-07-13 20:48:51 +00:00
allow nscd_t self:tcp_socket create_socket_perms;
2005-09-07 13:31:37 +00:00
allow nscd_t self:udp_socket create_socket_perms;
2005-07-13 20:48:51 +00:00
# For client program operation, invoked from sysadm_t.
# Transition occurs to nscd_t due to direct_sysadm_daemon.
allow nscd_t self:nscd { admin getstat };
2005-09-15 21:03:29 +00:00
allow nscd_t nscd_log_t:file create_file_perms;
logging_create_log(nscd_t,nscd_log_t)
2005-07-13 20:48:51 +00:00
allow nscd_t nscd_var_run_t:file create_file_perms;
allow nscd_t nscd_var_run_t:sock_file create_file_perms;
files_create_pid(nscd_t,nscd_var_run_t,{ file sock_file })
2005-07-13 20:48:51 +00:00
kernel_read_kernel_sysctl(nscd_t)
kernel_list_proc(nscd_t)
kernel_read_proc_symlinks(nscd_t)
dev_read_sysfs(nscd_t)
dev_read_rand(nscd_t)
dev_read_urand(nscd_t)
fs_getattr_all_fs(nscd_t)
fs_search_auto_mountpoints(nscd_t)
term_dontaudit_use_console(nscd_t)
# for when /etc/passwd has just been updated and has the wrong type
auth_getattr_shadow(nscd_t)
corenet_tcp_sendrecv_all_if(nscd_t)
corenet_udp_sendrecv_all_if(nscd_t)
corenet_raw_sendrecv_all_if(nscd_t)
corenet_tcp_sendrecv_all_nodes(nscd_t)
corenet_udp_sendrecv_all_nodes(nscd_t)
corenet_raw_sendrecv_all_nodes(nscd_t)
corenet_tcp_sendrecv_all_ports(nscd_t)
corenet_udp_sendrecv_all_ports(nscd_t)
corenet_tcp_bind_all_nodes(nscd_t)
corenet_udp_bind_all_nodes(nscd_t)
2005-09-13 13:06:07 +00:00
corenet_tcp_connect_all_ports(nscd_t)
2005-09-15 21:03:29 +00:00
corenet_use_tun_tap_device(nscd_t)
2005-07-13 20:48:51 +00:00
2005-09-07 13:31:37 +00:00
selinux_get_fs_mount(nscd_t)
selinux_validate_context(nscd_t)
selinux_compute_access_vector(nscd_t)
selinux_compute_create_context(nscd_t)
selinux_compute_relabel_context(nscd_t)
selinux_compute_user_contexts(nscd_t)
2005-07-13 20:48:51 +00:00
domain_use_wide_inherit_fd(nscd_t)
files_read_etc_files(nscd_t)
init_use_fd(nscd_t)
init_use_script_pty(nscd_t)
libs_use_ld_so(nscd_t)
libs_use_shared_libs(nscd_t)
logging_send_syslog_msg(nscd_t)
miscfiles_read_localization(nscd_t)
2005-09-07 13:31:37 +00:00
seutil_read_config(nscd_t)
seutil_read_default_contexts(nscd_t)
seutil_sigchld_newrole(nscd_t)
2005-07-13 20:48:51 +00:00
sysnet_read_config(nscd_t)
userdom_dontaudit_use_unpriv_user_fd(nscd_t)
userdom_dontaudit_search_sysadm_home_dir(nscd_t)
ifdef(`targeted_policy', `
term_dontaudit_use_unallocated_tty(nscd_t)
term_dontaudit_use_generic_pty(nscd_t)
files_dontaudit_read_root_file(nscd_t)
')
optional_policy(`nis.te',`
nis_use_ypbind(nscd_t)
')
optional_policy(`udev.te', `
udev_read_db(nscd_t)
')
ifdef(`TODO',`
optional_policy(`winbind.te', `
# Handle winbind for samba, Might only be needed for targeted policy
allow nscd_t winbind_var_run_t:sock_file { read write getattr };
can_unix_connect(nscd_t, winbind_t)
allow nscd_t samba_var_t:dir search;
allow nscd_t winbind_var_run_t:dir { getattr search };
')
optional_policy(`rhgb.te',`
rhgb_domain(nscd_t)
')
2005-09-15 21:03:29 +00:00
r_dir_file(nscd_t, cert_t)
2005-07-13 20:48:51 +00:00
allow nscd_t tmp_t:dir { search getattr };
allow nscd_t tmp_t:lnk_file read;
') dnl end TODO