ssh updates for targeted
This commit is contained in:
parent
cbdb4ae6d3
commit
375c241556
@ -4,6 +4,11 @@
|
|||||||
# file should be used.
|
# file should be used.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
########################################
|
||||||
|
#
|
||||||
|
# Common tunables
|
||||||
|
#
|
||||||
|
|
||||||
## Allow making anonymous memory executable, e.g.
|
## Allow making anonymous memory executable, e.g.
|
||||||
## for runtime-code generation or executable stack.
|
## for runtime-code generation or executable stack.
|
||||||
gen_tunable(allow_execmem,false)
|
gen_tunable(allow_execmem,false)
|
||||||
@ -107,10 +112,6 @@ gen_tunable(squid_connect_any,false)
|
|||||||
## Allow ssh logins as sysadm_r:sysadm_t
|
## Allow ssh logins as sysadm_r:sysadm_t
|
||||||
gen_tunable(ssh_sysadm_login,false)
|
gen_tunable(ssh_sysadm_login,false)
|
||||||
|
|
||||||
## Allow staff_r users to search the sysadm home
|
|
||||||
## dir and read files (such as ~/.bashrc)
|
|
||||||
gen_tunable(staff_read_sysadm_file,false)
|
|
||||||
|
|
||||||
## Configure stunnel to be a standalone daemon or
|
## Configure stunnel to be a standalone daemon or
|
||||||
## inetd service.
|
## inetd service.
|
||||||
gen_tunable(stunnel_is_daemon,false)
|
gen_tunable(stunnel_is_daemon,false)
|
||||||
@ -154,6 +155,10 @@ gen_tunable(read_untrusted_content,false)
|
|||||||
## Allow user spamassassin clients to use the network.
|
## Allow user spamassassin clients to use the network.
|
||||||
gen_tunable(spamassassin_can_network,false)
|
gen_tunable(spamassassin_can_network,false)
|
||||||
|
|
||||||
|
## Allow staff_r users to search the sysadm home
|
||||||
|
## dir and read files (such as ~/.bashrc)
|
||||||
|
gen_tunable(staff_read_sysadm_file,false)
|
||||||
|
|
||||||
## Allow regular users direct mouse access
|
## Allow regular users direct mouse access
|
||||||
gen_tunable(user_direct_mouse,false)
|
gen_tunable(user_direct_mouse,false)
|
||||||
|
|
||||||
@ -164,7 +169,8 @@ gen_tunable(user_dmesg,false)
|
|||||||
## (also needs USERCTL=true)
|
## (also needs USERCTL=true)
|
||||||
gen_tunable(user_net_control,false)
|
gen_tunable(user_net_control,false)
|
||||||
|
|
||||||
## Allow user to r/w noextattrfile (FAT, CDROM, FLOPPY)
|
## Allow user to r/w files on filesystems
|
||||||
|
## that do not have extended attributes (FAT, CDROM, FLOPPY)
|
||||||
gen_tunable(user_rw_noexattrfile,false)
|
gen_tunable(user_rw_noexattrfile,false)
|
||||||
|
|
||||||
## Allow users to rw usb devices
|
## Allow users to rw usb devices
|
||||||
|
@ -8,18 +8,12 @@ policy_module(ssh,1.0)
|
|||||||
|
|
||||||
attribute ssh_server;
|
attribute ssh_server;
|
||||||
|
|
||||||
# Type for the ssh-agent executable.
|
|
||||||
type ssh_agent_exec_t;
|
|
||||||
files_type(ssh_agent_exec_t)
|
|
||||||
|
|
||||||
# ssh client executable.
|
# ssh client executable.
|
||||||
type ssh_exec_t;
|
type ssh_exec_t;
|
||||||
files_type(ssh_exec_t)
|
files_type(ssh_exec_t)
|
||||||
|
|
||||||
type ssh_keygen_t;
|
|
||||||
type ssh_keygen_exec_t;
|
type ssh_keygen_exec_t;
|
||||||
init_system_domain(ssh_keygen_t,ssh_keygen_exec_t)
|
files_type(ssh_keygen_exec_t)
|
||||||
role system_r types ssh_keygen_t;
|
|
||||||
|
|
||||||
type ssh_keysign_exec_t;
|
type ssh_keysign_exec_t;
|
||||||
files_type(ssh_keysign_exec_t)
|
files_type(ssh_keysign_exec_t)
|
||||||
@ -31,27 +25,40 @@ gen_require(`
|
|||||||
')
|
')
|
||||||
files_type(sshd_exec_t)
|
files_type(sshd_exec_t)
|
||||||
|
|
||||||
ssh_server_template(sshd)
|
|
||||||
ssh_server_template(sshd_extern)
|
|
||||||
|
|
||||||
# cjp: commenting this out until typeattribute works in a conditional
|
|
||||||
#optional_policy(`inetd.te',`
|
|
||||||
# tunable_policy(`run_ssh_inetd',`
|
|
||||||
# inetd_tcp_service_domain(sshd_t,sshd_exec_t)
|
|
||||||
# ',`
|
|
||||||
# init_daemon_domain(sshd_t,sshd_exec_t)
|
|
||||||
# ')
|
|
||||||
#',`
|
|
||||||
# These rules should match the else block
|
|
||||||
# of the run_ssh_inetd tunable directly above
|
|
||||||
init_daemon_domain(sshd_t,sshd_exec_t)
|
|
||||||
#')
|
|
||||||
|
|
||||||
type sshd_key_t;
|
type sshd_key_t;
|
||||||
files_type(sshd_key_t)
|
files_type(sshd_key_t)
|
||||||
|
|
||||||
type sshd_tmp_t;
|
ifdef(`targeted_policy',`
|
||||||
files_tmp_file(sshd_tmp_t)
|
unconfined_alias_domain(sshd_t)
|
||||||
|
init_system_domain(sshd_t,sshd_exec_t)
|
||||||
|
',`
|
||||||
|
# Type for the ssh-agent executable.
|
||||||
|
type ssh_agent_exec_t;
|
||||||
|
files_type(ssh_agent_exec_t)
|
||||||
|
|
||||||
|
type ssh_keygen_t;
|
||||||
|
init_system_domain(ssh_keygen_t,ssh_keygen_exec_t)
|
||||||
|
role system_r types ssh_keygen_t;
|
||||||
|
|
||||||
|
ssh_server_template(sshd)
|
||||||
|
ssh_server_template(sshd_extern)
|
||||||
|
|
||||||
|
# cjp: commenting this out until typeattribute works in a conditional
|
||||||
|
# optional_policy(`inetd.te',`
|
||||||
|
# tunable_policy(`run_ssh_inetd',`
|
||||||
|
# inetd_tcp_service_domain(sshd_t,sshd_exec_t)
|
||||||
|
# ',`
|
||||||
|
# init_daemon_domain(sshd_t,sshd_exec_t)
|
||||||
|
# ')
|
||||||
|
# ',`
|
||||||
|
# These rules should match the else block
|
||||||
|
# of the run_ssh_inetd tunable directly above
|
||||||
|
init_daemon_domain(sshd_t,sshd_exec_t)
|
||||||
|
# ')
|
||||||
|
|
||||||
|
type sshd_tmp_t;
|
||||||
|
files_tmp_file(sshd_tmp_t)
|
||||||
|
')
|
||||||
|
|
||||||
#################################
|
#################################
|
||||||
#
|
#
|
||||||
@ -60,67 +67,69 @@ files_tmp_file(sshd_tmp_t)
|
|||||||
# sshd_t is the domain for the sshd program.
|
# sshd_t is the domain for the sshd program.
|
||||||
#
|
#
|
||||||
|
|
||||||
# so a tunnel can point to another ssh tunnel
|
ifdef(`targeted_policy',`',`
|
||||||
allow sshd_t self:tcp_socket { acceptfrom connectto recvfrom };
|
# so a tunnel can point to another ssh tunnel
|
||||||
|
allow sshd_t self:tcp_socket { acceptfrom connectto recvfrom };
|
||||||
|
|
||||||
allow sshd_t sshd_tmp_t:dir create_dir_perms;
|
allow sshd_t sshd_tmp_t:dir create_dir_perms;
|
||||||
allow sshd_t sshd_tmp_t:file create_file_perms;
|
allow sshd_t sshd_tmp_t:file create_file_perms;
|
||||||
allow sshd_t sshd_tmp_t:sock_file create_file_perms;
|
allow sshd_t sshd_tmp_t:sock_file create_file_perms;
|
||||||
files_create_tmp_files(sshd_t, sshd_tmp_t, { dir file sock_file })
|
files_create_tmp_files(sshd_t, sshd_tmp_t, { dir file sock_file })
|
||||||
|
|
||||||
# for X forwarding
|
# for X forwarding
|
||||||
corenet_tcp_bind_xserver_port(sshd_t)
|
corenet_tcp_bind_xserver_port(sshd_t)
|
||||||
|
|
||||||
auth_exec_pam(sshd_t)
|
auth_exec_pam(sshd_t)
|
||||||
|
|
||||||
seutil_read_config(sshd_t)
|
seutil_read_config(sshd_t)
|
||||||
|
|
||||||
ifdef(`targeted_policy',`
|
ifdef(`targeted_policy',`
|
||||||
unconfined_domain_template(sshd_t)
|
unconfined_domain_template(sshd_t)
|
||||||
')
|
|
||||||
|
|
||||||
tunable_policy(`ssh_sysadm_login',`
|
|
||||||
# Relabel and access ptys created by sshd
|
|
||||||
# ioctl is necessary for logout() processing for utmp entry and for w to
|
|
||||||
# display the tty.
|
|
||||||
# some versions of sshd on the new SE Linux require setattr
|
|
||||||
term_use_all_user_ptys(sshd_t)
|
|
||||||
term_setattr_all_user_ptys(sshd_t)
|
|
||||||
term_relabelto_all_user_ptys(sshd_t)
|
|
||||||
|
|
||||||
userdom_spec_domtrans_all_users(sshd_t)
|
|
||||||
userdom_signal_all_users(sshd_t)
|
|
||||||
',`
|
|
||||||
userdom_spec_domtrans_unpriv_users(sshd_t)
|
|
||||||
userdom_signal_unpriv_users(sshd_t)
|
|
||||||
')
|
|
||||||
|
|
||||||
optional_policy(`rpm.te',`
|
|
||||||
rpm_use_script_fd(sshd_t)
|
|
||||||
')
|
|
||||||
|
|
||||||
ifdef(`TODO',`
|
|
||||||
tunable_policy(`ssh_sysadm_login',`
|
|
||||||
# Relabel and access ptys created by sshd
|
|
||||||
# ioctl is necessary for logout() processing for utmp entry and for w to
|
|
||||||
# display the tty.
|
|
||||||
# some versions of sshd on the new SE Linux require setattr
|
|
||||||
allow sshd_t ptyfile:chr_file relabelto;
|
|
||||||
|
|
||||||
optional_policy(`xauth.te',`
|
|
||||||
domain_trans(sshd_t, xauth_exec_t, userdomain)
|
|
||||||
')
|
')
|
||||||
',`
|
|
||||||
optional_policy(`xauth.te',`
|
tunable_policy(`ssh_sysadm_login',`
|
||||||
domain_trans(sshd_t, xauth_exec_t, unpriv_userdomain)
|
# Relabel and access ptys created by sshd
|
||||||
|
# ioctl is necessary for logout() processing for utmp entry and for w to
|
||||||
|
# display the tty.
|
||||||
|
# some versions of sshd on the new SE Linux require setattr
|
||||||
|
term_use_all_user_ptys(sshd_t)
|
||||||
|
term_setattr_all_user_ptys(sshd_t)
|
||||||
|
term_relabelto_all_user_ptys(sshd_t)
|
||||||
|
|
||||||
|
userdom_spec_domtrans_all_users(sshd_t)
|
||||||
|
userdom_signal_all_users(sshd_t)
|
||||||
|
',`
|
||||||
|
userdom_spec_domtrans_unpriv_users(sshd_t)
|
||||||
|
userdom_signal_unpriv_users(sshd_t)
|
||||||
')
|
')
|
||||||
# Relabel and access ptys created by sshd
|
|
||||||
# ioctl is necessary for logout() processing for utmp entry and for w to
|
optional_policy(`rpm.te',`
|
||||||
# display the tty.
|
rpm_use_script_fd(sshd_t)
|
||||||
# some versions of sshd on the new SE Linux require setattr
|
')
|
||||||
allow sshd_t userpty_type:chr_file { relabelto read write getattr ioctl setattr };
|
|
||||||
|
ifdef(`TODO',`
|
||||||
|
tunable_policy(`ssh_sysadm_login',`
|
||||||
|
# Relabel and access ptys created by sshd
|
||||||
|
# ioctl is necessary for logout() processing for utmp entry and for w to
|
||||||
|
# display the tty.
|
||||||
|
# some versions of sshd on the new SE Linux require setattr
|
||||||
|
allow sshd_t ptyfile:chr_file relabelto;
|
||||||
|
|
||||||
|
optional_policy(`xauth.te',`
|
||||||
|
domain_trans(sshd_t, xauth_exec_t, userdomain)
|
||||||
|
')
|
||||||
|
',`
|
||||||
|
optional_policy(`xauth.te',`
|
||||||
|
domain_trans(sshd_t, xauth_exec_t, unpriv_userdomain)
|
||||||
|
')
|
||||||
|
# Relabel and access ptys created by sshd
|
||||||
|
# ioctl is necessary for logout() processing for utmp entry and for w to
|
||||||
|
# display the tty.
|
||||||
|
# some versions of sshd on the new SE Linux require setattr
|
||||||
|
allow sshd_t userpty_type:chr_file { relabelto read write getattr ioctl setattr };
|
||||||
|
')
|
||||||
|
') dnl endif TODO
|
||||||
')
|
')
|
||||||
') dnl endif TODO
|
|
||||||
|
|
||||||
#################################
|
#################################
|
||||||
#
|
#
|
||||||
@ -129,115 +138,119 @@ tunable_policy(`ssh_sysadm_login',`
|
|||||||
# sshd_extern_t is the domain for ssh from outside our network
|
# sshd_extern_t is the domain for ssh from outside our network
|
||||||
#
|
#
|
||||||
|
|
||||||
ifdef(`TODO',`
|
ifdef(`targeted_policy',`',`
|
||||||
domain_trans(sshd_extern_t, shell_exec_t, user_mini_domain)
|
ifdef(`TODO',`
|
||||||
# Signal the user domains.
|
domain_trans(sshd_extern_t, shell_exec_t, user_mini_domain)
|
||||||
allow sshd_extern_t user_mini_domain:process signal;
|
# Signal the user domains.
|
||||||
|
allow sshd_extern_t user_mini_domain:process signal;
|
||||||
|
|
||||||
ifdef(`xauth.te', `
|
ifdef(`xauth.te', `
|
||||||
domain_trans(sshd_extern_t, xauth_exec_t, user_mini_domain)
|
domain_trans(sshd_extern_t, xauth_exec_t, user_mini_domain)
|
||||||
')
|
')
|
||||||
|
|
||||||
# Relabel and access ptys created by sshd
|
# Relabel and access ptys created by sshd
|
||||||
# ioctl is necessary for logout() processing for utmp entry and for w to
|
# ioctl is necessary for logout() processing for utmp entry and for w to
|
||||||
# display the tty.
|
# display the tty.
|
||||||
# some versions of sshd on the new SE Linux require setattr
|
# some versions of sshd on the new SE Linux require setattr
|
||||||
allow sshd_extern_t user_mini_domain:chr_file { relabelto read write getattr ioctl setattr };
|
allow sshd_extern_t user_mini_domain:chr_file { relabelto read write getattr ioctl setattr };
|
||||||
|
|
||||||
# inheriting stream sockets is needed for "ssh host command" as no pty
|
# inheriting stream sockets is needed for "ssh host command" as no pty
|
||||||
# is allocated
|
# is allocated
|
||||||
allow user_mini_domain sshd_extern_t:unix_stream_socket rw_stream_socket_perms;
|
allow user_mini_domain sshd_extern_t:unix_stream_socket rw_stream_socket_perms;
|
||||||
|
|
||||||
optional_policy(`inetd.te',`
|
optional_policy(`inetd.te',`
|
||||||
tunable_policy(`run_ssh_inetd',`
|
tunable_policy(`run_ssh_inetd',`
|
||||||
domain_trans(inetd_t, sshd_exec_t, sshd_extern_t)
|
domain_trans(inetd_t, sshd_exec_t, sshd_extern_t)
|
||||||
|
',`
|
||||||
|
domain_trans(initrc_t, sshd_exec_t, sshd_extern_t)
|
||||||
|
')
|
||||||
',`
|
',`
|
||||||
|
# These rules should match the else block
|
||||||
|
# of the run_ssh_inetd tunable directly above
|
||||||
domain_trans(initrc_t, sshd_exec_t, sshd_extern_t)
|
domain_trans(initrc_t, sshd_exec_t, sshd_extern_t)
|
||||||
')
|
')
|
||||||
',`
|
|
||||||
# These rules should match the else block
|
|
||||||
# of the run_ssh_inetd tunable directly above
|
|
||||||
domain_trans(initrc_t, sshd_exec_t, sshd_extern_t)
|
|
||||||
')
|
|
||||||
|
|
||||||
ifdef(`direct_sysadm_daemon', `
|
ifdef(`direct_sysadm_daemon', `
|
||||||
# Direct execution by sysadm_r.
|
# Direct execution by sysadm_r.
|
||||||
domain_auto_trans(sysadm_t, sshd_exec_t, sshd_t)
|
domain_auto_trans(sysadm_t, sshd_exec_t, sshd_t)
|
||||||
role_transition sysadm_r sshd_exec_t system_r;
|
role_transition sysadm_r sshd_exec_t system_r;
|
||||||
')
|
')
|
||||||
|
|
||||||
# for port forwarding
|
# for port forwarding
|
||||||
allow userdomain sshd_t:tcp_socket { connectto recvfrom };
|
allow userdomain sshd_t:tcp_socket { connectto recvfrom };
|
||||||
allow sshd_t userdomain:tcp_socket { acceptfrom recvfrom };
|
allow sshd_t userdomain:tcp_socket { acceptfrom recvfrom };
|
||||||
allow userdomain kernel_t:tcp_socket recvfrom;
|
allow userdomain kernel_t:tcp_socket recvfrom;
|
||||||
allow sshd_t kernel_t:tcp_socket recvfrom;
|
allow sshd_t kernel_t:tcp_socket recvfrom;
|
||||||
') dnl endif TODO
|
') dnl endif TODO
|
||||||
|
')
|
||||||
|
|
||||||
########################################
|
########################################
|
||||||
#
|
#
|
||||||
# ssh_keygen local policy
|
# ssh_keygen local policy
|
||||||
#
|
#
|
||||||
|
|
||||||
# ssh_keygen_t is the type of the ssh-keygen program when run at install time
|
ifdef(`targeted_policy',`',`
|
||||||
# and by sysadm_t
|
# ssh_keygen_t is the type of the ssh-keygen program when run at install time
|
||||||
|
# and by sysadm_t
|
||||||
|
|
||||||
dontaudit ssh_keygen_t self:capability sys_tty_config;
|
dontaudit ssh_keygen_t self:capability sys_tty_config;
|
||||||
allow ssh_keygen_t self:process { sigchld sigkill sigstop signull signal };
|
allow ssh_keygen_t self:process { sigchld sigkill sigstop signull signal };
|
||||||
|
|
||||||
allow ssh_keygen_t self:unix_stream_socket create_stream_socket_perms;
|
allow ssh_keygen_t self:unix_stream_socket create_stream_socket_perms;
|
||||||
|
|
||||||
allow ssh_keygen_t sshd_key_t:file create_file_perms;
|
allow ssh_keygen_t sshd_key_t:file create_file_perms;
|
||||||
files_create_etc_config(ssh_keygen_t,sshd_key_t,file)
|
files_create_etc_config(ssh_keygen_t,sshd_key_t,file)
|
||||||
|
|
||||||
kernel_read_kernel_sysctl(ssh_keygen_t)
|
kernel_read_kernel_sysctl(ssh_keygen_t)
|
||||||
|
|
||||||
fs_search_auto_mountpoints(ssh_keygen_t)
|
fs_search_auto_mountpoints(ssh_keygen_t)
|
||||||
|
|
||||||
dev_read_sysfs(ssh_keygen_t)
|
dev_read_sysfs(ssh_keygen_t)
|
||||||
dev_read_urand(ssh_keygen_t)
|
dev_read_urand(ssh_keygen_t)
|
||||||
|
|
||||||
term_dontaudit_use_console(ssh_keygen_t)
|
term_dontaudit_use_console(ssh_keygen_t)
|
||||||
|
|
||||||
domain_use_wide_inherit_fd(ssh_keygen_t)
|
domain_use_wide_inherit_fd(ssh_keygen_t)
|
||||||
|
|
||||||
files_read_etc_files(ssh_keygen_t)
|
files_read_etc_files(ssh_keygen_t)
|
||||||
|
|
||||||
init_use_fd(ssh_keygen_t)
|
init_use_fd(ssh_keygen_t)
|
||||||
init_use_script_pty(ssh_keygen_t)
|
init_use_script_pty(ssh_keygen_t)
|
||||||
|
|
||||||
libs_use_ld_so(ssh_keygen_t)
|
libs_use_ld_so(ssh_keygen_t)
|
||||||
libs_use_shared_libs(ssh_keygen_t)
|
libs_use_shared_libs(ssh_keygen_t)
|
||||||
|
|
||||||
logging_send_syslog_msg(ssh_keygen_t)
|
logging_send_syslog_msg(ssh_keygen_t)
|
||||||
|
|
||||||
allow ssh_keygen_t proc_t:dir r_dir_perms;
|
allow ssh_keygen_t proc_t:dir r_dir_perms;
|
||||||
allow ssh_keygen_t proc_t:lnk_file read;
|
allow ssh_keygen_t proc_t:lnk_file read;
|
||||||
|
|
||||||
userdom_use_sysadm_tty(ssh_keygen_t)
|
userdom_use_sysadm_tty(ssh_keygen_t)
|
||||||
userdom_dontaudit_use_unpriv_user_fd(ssh_keygen_t)
|
userdom_dontaudit_use_unpriv_user_fd(ssh_keygen_t)
|
||||||
|
|
||||||
# cjp: with the old daemon_(base_)domain being broken up into
|
# cjp: with the old daemon_(base_)domain being broken up into
|
||||||
# a daemon and system interface, this probably is not needed:
|
# a daemon and system interface, this probably is not needed:
|
||||||
ifdef(`direct_sysadm_daemon',`
|
ifdef(`direct_sysadm_daemon',`
|
||||||
userdom_dontaudit_use_sysadm_terms(ssh_keygen_t)
|
userdom_dontaudit_use_sysadm_terms(ssh_keygen_t)
|
||||||
')
|
')
|
||||||
|
|
||||||
ifdef(`targeted_policy', `
|
ifdef(`targeted_policy', `
|
||||||
term_dontaudit_use_unallocated_tty(ssh_keygen_t)
|
term_dontaudit_use_unallocated_tty(ssh_keygen_t)
|
||||||
term_dontaudit_use_generic_pty(ssh_keygen_t)
|
term_dontaudit_use_generic_pty(ssh_keygen_t)
|
||||||
files_dontaudit_read_root_file(ssh_keygen_t)
|
files_dontaudit_read_root_file(ssh_keygen_t)
|
||||||
')
|
')
|
||||||
|
|
||||||
optional_policy(`selinuxutil.te',`
|
optional_policy(`selinuxutil.te',`
|
||||||
seutil_sigchld_newrole(ssh_keygen_t)
|
seutil_sigchld_newrole(ssh_keygen_t)
|
||||||
')
|
')
|
||||||
|
|
||||||
optional_policy(`udev.te', `
|
optional_policy(`udev.te', `
|
||||||
udev_read_db(ssh_keygen_t)
|
udev_read_db(ssh_keygen_t)
|
||||||
')
|
')
|
||||||
|
|
||||||
ifdef(`TODO',`
|
ifdef(`TODO',`
|
||||||
optional_policy(`rhgb.te', `
|
optional_policy(`rhgb.te', `
|
||||||
rhgb_domain(ssh_keygen_t)
|
rhgb_domain(ssh_keygen_t)
|
||||||
')
|
')
|
||||||
|
')
|
||||||
')
|
')
|
||||||
|
@ -6,12 +6,11 @@ policy_module(xdm,1.0)
|
|||||||
# Declarations
|
# Declarations
|
||||||
#
|
#
|
||||||
|
|
||||||
# hack until all of strict is converted
|
ifdef(`targeted_policy',`
|
||||||
#type xdm_t;
|
unconfined_alias_domain(xdm_t)
|
||||||
gen_require(`
|
',`
|
||||||
type unconfined_t;
|
type xdm_t;
|
||||||
')
|
')
|
||||||
typealias unconfined_t alias xdm_t;
|
|
||||||
|
|
||||||
# real declaration moved to mls until
|
# real declaration moved to mls until
|
||||||
# range_transition works in loadable modules
|
# range_transition works in loadable modules
|
||||||
|
@ -261,3 +261,28 @@ interface(`unconfined_role',`
|
|||||||
|
|
||||||
role $1 types unconfined_t;
|
role $1 types unconfined_t;
|
||||||
')
|
')
|
||||||
|
|
||||||
|
########################################
|
||||||
|
## <summary>
|
||||||
|
## Add an alias type to the unconfined domain.
|
||||||
|
## </summary>
|
||||||
|
## <desc>
|
||||||
|
## <p>
|
||||||
|
## Add an alias type to the unconfined domain.
|
||||||
|
## </p>
|
||||||
|
## <p>
|
||||||
|
## This is added to support targeted policy. Its
|
||||||
|
## use should be very limited.
|
||||||
|
## </p>
|
||||||
|
## </desc>
|
||||||
|
## <param name="domain">
|
||||||
|
## New alias of the unconfined domain.
|
||||||
|
## </param>
|
||||||
|
#
|
||||||
|
interface(`unconfined_alias_domain',`
|
||||||
|
gen_require(`
|
||||||
|
type unconfined_t;
|
||||||
|
')
|
||||||
|
|
||||||
|
typealias unconfined_t alias $1;
|
||||||
|
')
|
||||||
|
Loading…
Reference in New Issue
Block a user