Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# Macros for ssh domains.
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# Authors:  Stephen Smalley <sds@epoch.ncsc.mil>
Chris PeBenito 0fbfa5
#           Russell Coker <russell@coker.com.au>
Chris PeBenito 0fbfa5
#           Thomas Bleher <ThomasBleher@gmx.de>
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# 
Chris PeBenito 0fbfa5
# ssh_domain(domain_prefix)
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# Define a derived domain for the ssh program when executed
Chris PeBenito 0fbfa5
# by a user domain.
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# The type declaration for the executable type for this program is
Chris PeBenito 0fbfa5
# provided separately in domains/program/ssh.te. 
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
undefine(`ssh_domain')
Chris PeBenito 0fbfa5
ifdef(`ssh.te', `
Chris PeBenito 0fbfa5
define(`ssh_domain',`
Chris PeBenito 0fbfa5
# Derived domain based on the calling user domain and the program.
Chris PeBenito 0fbfa5
type $1_ssh_t, domain, privlog, nscd_client_domain;
Chris PeBenito 0fbfa5
type $1_home_ssh_t, file_type, $1_file_type, sysadmfile;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
allow $1_ssh_t autofs_t:dir { search getattr };
Chris PeBenito 0fbfa5
if (use_nfs_home_dirs) {
Chris PeBenito 0fbfa5
create_dir_file($1_ssh_t, nfs_t)
Chris PeBenito 0fbfa5
}
Chris PeBenito 0fbfa5
if (use_samba_home_dirs) {
Chris PeBenito 0fbfa5
create_dir_file($1_ssh_t, cifs_t)
Chris PeBenito 0fbfa5
}
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Transition from the user domain to the derived domain.
Chris PeBenito 0fbfa5
domain_auto_trans($1_t, ssh_exec_t, $1_ssh_t)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# The user role is authorized for this domain.
Chris PeBenito 0fbfa5
role $1_r types $1_ssh_t;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Grant permissions within the domain.
Chris PeBenito 0fbfa5
general_domain_access($1_ssh_t)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Use descriptors created by sshd
Chris PeBenito 0fbfa5
allow $1_ssh_t privfd:fd use;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
uses_shlib($1_ssh_t)
Chris PeBenito 0fbfa5
read_locale($1_ssh_t)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Get attributes of file systems.
Chris PeBenito 0fbfa5
allow $1_ssh_t fs_type:filesystem getattr;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
base_file_read_access($1_ssh_t)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Read /var.
Chris PeBenito 0fbfa5
allow $1_ssh_t var_t:dir r_dir_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t var_t:notdevfile_class_set r_file_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Read /var/run, /var/log.
Chris PeBenito 0fbfa5
allow $1_ssh_t var_run_t:dir r_dir_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t var_run_t:{ file lnk_file } r_file_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t var_log_t:dir r_dir_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t var_log_t:{ file lnk_file } r_file_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Read /etc.
Chris PeBenito 0fbfa5
allow $1_ssh_t etc_t:dir r_dir_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t etc_t:notdevfile_class_set r_file_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t etc_runtime_t:{ file lnk_file } r_file_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Read /dev directories and any symbolic links.
Chris PeBenito 0fbfa5
allow $1_ssh_t device_t:dir r_dir_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t device_t:lnk_file r_file_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Read /dev/urandom.
Chris PeBenito 0fbfa5
allow $1_ssh_t urandom_device_t:chr_file r_file_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Read and write /dev/null.
Chris PeBenito 0fbfa5
allow $1_ssh_t { null_device_t zero_device_t }:chr_file rw_file_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Grant permissions needed to create TCP and UDP sockets and
Chris PeBenito 0fbfa5
# to access the network.
Chris PeBenito 0fbfa5
can_network_client_tcp($1_ssh_t)
Chris PeBenito 0fbfa5
can_resolve($1_ssh_t)
Chris PeBenito 0fbfa5
can_ypbind($1_ssh_t)
Chris PeBenito 0fbfa5
can_kerberos($1_ssh_t)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# for port forwarding
Chris PeBenito 0fbfa5
if (user_tcp_server) {
Chris PeBenito 0fbfa5
allow $1_ssh_t port_t:tcp_socket name_bind;
Chris PeBenito 0fbfa5
}
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Use capabilities.
Chris PeBenito 0fbfa5
allow $1_ssh_t self:capability { setuid setgid dac_override dac_read_search };
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# run helper programs - needed eg for x11-ssh-askpass
Chris PeBenito 0fbfa5
can_exec($1_ssh_t, { shell_exec_t bin_t })
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Read the ssh key file.
Chris PeBenito 0fbfa5
allow $1_ssh_t sshd_key_t:file r_file_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Access the ssh temporary files.
Chris PeBenito 0fbfa5
file_type_auto_trans($1_ssh_t, tmp_t, sshd_tmp_t)
Chris PeBenito 0fbfa5
allow $1_ssh_t $1_tmp_t:dir r_dir_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# for rsync
Chris PeBenito 0fbfa5
allow $1_ssh_t $1_t:unix_stream_socket rw_socket_perms;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Access the users .ssh directory.
Chris PeBenito 0fbfa5
file_type_auto_trans({ sysadm_ssh_t $1_ssh_t }, $1_home_dir_t, $1_home_ssh_t, dir)
Chris PeBenito 0fbfa5
file_type_auto_trans($1_ssh_t, $1_home_dir_t, $1_home_ssh_t, sock_file)
Chris PeBenito 0fbfa5
allow $1_t $1_home_ssh_t:sock_file create_file_perms;
Chris PeBenito 0fbfa5
allow { sysadm_ssh_t $1_ssh_t } $1_home_ssh_t:file create_file_perms;
Chris PeBenito 0fbfa5
allow { sysadm_ssh_t $1_ssh_t } $1_home_ssh_t:lnk_file { getattr read };
Chris PeBenito 0fbfa5
dontaudit $1_ssh_t $1_home_t:dir { getattr search };
Chris PeBenito 0fbfa5
r_dir_file({ sshd_t sshd_extern_t }, $1_home_ssh_t)
Chris PeBenito 0fbfa5
rw_dir_create_file($1_t, $1_home_ssh_t)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# for /bin/sh used to execute xauth
Chris PeBenito 0fbfa5
dontaudit $1_ssh_t proc_t:dir search;
Chris PeBenito 0fbfa5
dontaudit $1_ssh_t proc_t:{ lnk_file file } { getattr read };
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Inherit and use descriptors from gnome-pty-helper.
Chris PeBenito 0fbfa5
ifdef(`gnome-pty-helper.te', `allow $1_ssh_t $1_gph_t:fd use;')
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Write to the user domain tty.
Chris PeBenito 0fbfa5
access_terminal($1_ssh_t, $1)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
# Allow the user shell to signal the ssh program.
Chris PeBenito 0fbfa5
allow $1_t $1_ssh_t:process signal;
Chris PeBenito 0fbfa5
# allow ps to show ssh
Chris PeBenito 0fbfa5
can_ps($1_t, $1_ssh_t)
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
ifdef(`xserver.te', `
Chris PeBenito 0fbfa5
# Communicate with the X server.
Chris PeBenito 0fbfa5
ifdef(`startx.te', `
Chris PeBenito 0fbfa5
can_unix_connect($1_ssh_t, $1_xserver_t)
Chris PeBenito 0fbfa5
allow $1_ssh_t $1_xserver_tmp_t:sock_file rw_file_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t $1_xserver_tmp_t:dir search;
Chris PeBenito 0fbfa5
')dnl end if startx
Chris PeBenito 0fbfa5
ifdef(`xdm.te', `
Chris PeBenito 0fbfa5
allow $1_ssh_t { xdm_xserver_tmp_t xdm_tmp_t }:dir search;
Chris PeBenito 0fbfa5
allow $1_ssh_t { xdm_tmp_t }:sock_file write;
Chris PeBenito 0fbfa5
')
Chris PeBenito 0fbfa5
')dnl end if xserver
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
ifdef(`ssh-agent.te', `
Chris PeBenito 0fbfa5
ssh_agent_domain($1)
Chris PeBenito 0fbfa5
')dnl end if ssh_agent.te
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
#allow ssh to access keys stored on removable media
Chris PeBenito 0fbfa5
# Should we have a boolean around this?
Chris PeBenito 0fbfa5
allow $1_ssh_t mnt_t:dir search;
Chris PeBenito 0fbfa5
r_dir_file($1_ssh_t, removable_t) 
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
ifdef(`xdm.te', `
Chris PeBenito 0fbfa5
# should be able to remove these two later
Chris PeBenito 0fbfa5
allow $1_ssh_t xdm_xserver_tmp_t:sock_file { read write };
Chris PeBenito 0fbfa5
allow $1_ssh_t xdm_xserver_tmp_t:dir search;
Chris PeBenito 0fbfa5
allow $1_ssh_t xdm_xserver_t:unix_stream_socket connectto;
Chris PeBenito 0fbfa5
allow $1_ssh_t xdm_xserver_t:shm r_shm_perms;
Chris PeBenito 0fbfa5
allow $1_ssh_t xdm_xserver_t:fd use;
Chris PeBenito 0fbfa5
allow $1_ssh_t xdm_xserver_tmpfs_t:file read;
Chris PeBenito 0fbfa5
allow $1_ssh_t xdm_t:fd use;
Chris PeBenito 0fbfa5
')dnl end if xdm.te
Chris PeBenito 0fbfa5
')dnl end macro definition
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
', `
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
define(`ssh_domain',`')
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
')dnl end if ssh.te