|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
d3d270 |
policy_module(ftp,1.2.0)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
########################################
|
|
Chris PeBenito |
fc6524 |
#
|
|
Chris PeBenito |
fc6524 |
# Declarations
|
|
Chris PeBenito |
fc6524 |
#
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
type ftpd_t;
|
|
Chris PeBenito |
fc6524 |
type ftpd_exec_t;
|
|
Chris PeBenito |
fc6524 |
init_daemon_domain(ftpd_t,ftpd_exec_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
type ftpd_etc_t;
|
|
Chris PeBenito |
9bbc75 |
files_config_file(ftpd_etc_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
# ftpd_lock_t is only needed when ftpd_is_daemon is true, but we cannot define types conditionally
|
|
Chris PeBenito |
fc6524 |
type ftpd_lock_t;
|
|
Chris PeBenito |
fc6524 |
files_lock_file(ftpd_lock_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
type ftpd_tmp_t;
|
|
Chris PeBenito |
fc6524 |
files_tmp_file(ftpd_tmp_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
type ftpd_tmpfs_t;
|
|
Chris PeBenito |
fc6524 |
files_tmpfs_file(ftpd_tmpfs_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
type ftpd_var_run_t;
|
|
Chris PeBenito |
fc6524 |
files_pid_file(ftpd_var_run_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
type xferlog_t;
|
|
Chris PeBenito |
fc6524 |
logging_log_file(xferlog_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
########################################
|
|
Chris PeBenito |
fc6524 |
#
|
|
Chris PeBenito |
fc6524 |
# Local policy
|
|
Chris PeBenito |
fc6524 |
#
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:capability { chown fowner fsetid setgid setuid sys_chroot sys_nice sys_resource };
|
|
Chris PeBenito |
fc6524 |
dontaudit ftpd_t self:capability sys_tty_config;
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:process signal_perms;
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:process { getcap setcap setsched setrlimit };
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:fifo_file rw_file_perms;
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:unix_dgram_socket { sendto create_socket_perms };
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:unix_stream_socket create_socket_perms;
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:tcp_socket create_stream_socket_perms;
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t self:udp_socket create_socket_perms;
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_etc_t:file r_file_perms;
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t ftpd_tmp_t:dir create_dir_perms;
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t ftpd_tmp_t:file create_file_perms;
|
|
Chris PeBenito |
9d5949 |
files_filetrans_tmp(ftpd_t, ftpd_tmp_t, { file dir })
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_tmpfs_t:fifo_file create_file_perms;
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_tmpfs_t:dir create_dir_perms;
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_tmpfs_t:file create_file_perms;
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_tmpfs_t:lnk_file create_lnk_perms;
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_tmpfs_t:sock_file create_file_perms;
|
|
Chris PeBenito |
9d5949 |
fs_filetrans_tmpfs(ftpd_t,ftpd_tmpfs_t,{ dir file lnk_file sock_file fifo_file })
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_var_run_t:file create_file_perms;
|
|
Chris PeBenito |
e6a2ea |
allow ftpd_t ftpd_var_run_t:dir rw_dir_perms;
|
|
Chris PeBenito |
9d5949 |
files_filetrans_pid(ftpd_t,ftpd_var_run_t)
|
|
Chris PeBenito |
e6a2ea |
|
|
Chris PeBenito |
fc6524 |
# Create and modify /var/log/xferlog.
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t xferlog_t:file create_file_perms;
|
|
Chris PeBenito |
9d5949 |
logging_filetrans_log(ftpd_t,xferlog_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
445522 |
kernel_read_kernel_sysctls(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
kernel_read_system_state(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
dev_read_sysfs(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
dev_read_urand(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
049e11 |
corecmd_exec_bin(ftpd_t)
|
|
Chris PeBenito |
049e11 |
corecmd_exec_sbin(ftpd_t)
|
|
Chris PeBenito |
049e11 |
# Execute /bin/ls (can comment this out for proftpd)
|
|
Chris PeBenito |
049e11 |
# also may need rules to allow tar etc...
|
|
Chris PeBenito |
049e11 |
corecmd_exec_ls(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_sendrecv_all_if(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_udp_sendrecv_all_if(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_raw_sendrecv_all_if(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_sendrecv_all_nodes(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_udp_sendrecv_all_nodes(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_raw_sendrecv_all_nodes(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_sendrecv_all_ports(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_udp_sendrecv_all_ports(ftpd_t)
|
|
Chris PeBenito |
bd7037 |
corenet_non_ipsec_sendrecv(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_bind_all_nodes(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_udp_bind_all_nodes(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_bind_ftp_data_port(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_bind_generic_port(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_connect_all_ports(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
049e11 |
domain_use_wide_inherit_fd(ftpd_t)
|
|
Chris PeBenito |
049e11 |
|
|
Chris PeBenito |
049e11 |
files_search_etc(ftpd_t)
|
|
Chris PeBenito |
049e11 |
files_read_etc_files(ftpd_t)
|
|
Chris PeBenito |
049e11 |
files_read_etc_runtime_files(ftpd_t)
|
|
Chris PeBenito |
9e04f5 |
files_search_var_lib(ftpd_t)
|
|
Chris PeBenito |
049e11 |
|
|
Chris PeBenito |
049e11 |
fs_search_auto_mountpoints(ftpd_t)
|
|
Chris PeBenito |
049e11 |
fs_getattr_all_fs(ftpd_t)
|
|
Chris PeBenito |
049e11 |
|
|
Chris PeBenito |
fc6524 |
term_dontaudit_use_console(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
049e11 |
auth_use_nsswitch(ftpd_t)
|
|
Chris PeBenito |
e6a2ea |
auth_domtrans_chk_passwd(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
# Append to /var/log/wtmp.
|
|
Chris PeBenito |
fc6524 |
auth_append_login_records(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
#kerberized ftp requires the following
|
|
Chris PeBenito |
fc6524 |
auth_write_login_records(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
init_use_fd(ftpd_t)
|
|
Chris PeBenito |
1815ba |
init_use_script_ptys(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
libs_use_ld_so(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
libs_use_shared_libs(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
logging_send_syslog_msg(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
miscfiles_read_localization(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
miscfiles_read_public_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
seutil_dontaudit_search_config(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
sysnet_read_config(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
userdom_dontaudit_search_sysadm_home_dir(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
userdom_dontaudit_use_unpriv_user_fd(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
ifdef(`targeted_policy',`
|
|
Chris PeBenito |
9e04f5 |
files_dontaudit_read_root_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
1815ba |
term_dontaudit_use_generic_ptys(ftpd_t)
|
|
Chris PeBenito |
1815ba |
term_dontaudit_use_unallocated_ttys(ftpd_t)
|
|
Chris PeBenito |
725926 |
|
|
Chris PeBenito |
132880 |
optional_policy(`ftp',`
|
|
Chris PeBenito |
725926 |
tunable_policy(`ftpd_is_daemon',`
|
|
Chris PeBenito |
725926 |
# cjp: fix this to use regular interfaces
|
|
Chris PeBenito |
725926 |
userdom_manage_user_home_subdir_files(user,ftpd_t)
|
|
Chris PeBenito |
725926 |
userdom_manage_user_home_subdir_symlinks(user,ftpd_t)
|
|
Chris PeBenito |
725926 |
userdom_manage_user_home_subdir_sockets(user,ftpd_t)
|
|
Chris PeBenito |
725926 |
userdom_manage_user_home_subdir_pipes(user,ftpd_t)
|
|
Chris PeBenito |
9417cb |
userdom_filetrans_user_home(user,ftpd_t,{ dir file lnk_file sock_file fifo_file })
|
|
Chris PeBenito |
725926 |
')
|
|
Chris PeBenito |
725926 |
')
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
tunable_policy(`allow_ftpd_anon_write',`
|
|
Chris PeBenito |
fc6524 |
miscfiles_manage_public_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
tunable_policy(`ftp_home_dir',`
|
|
Chris PeBenito |
fc6524 |
# allow access to /home
|
|
Chris PeBenito |
d8636f |
files_list_home(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
userdom_read_all_user_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
userdom_manage_all_user_dirs(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
userdom_manage_all_user_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
userdom_manage_all_user_symlinks(ftpd_t)
|
|
Chris PeBenito |
d8636f |
|
|
Chris PeBenito |
d8636f |
ifdef(`targeted_policy',`
|
|
Chris PeBenito |
9d5949 |
userdom_filetrans_generic_user_home(ftpd_t,{ dir file lnk_file sock_file fifo_file })
|
|
Chris PeBenito |
d8636f |
')
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
tunable_policy(`ftpd_is_daemon',`
|
|
Chris PeBenito |
fc6524 |
allow ftpd_t ftpd_lock_t:file create_file_perms;
|
|
Chris PeBenito |
9d5949 |
files_filetrans_lock(ftpd_t,ftpd_lock_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
corenet_tcp_bind_ftp_port(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
tunable_policy(`use_nfs_home_dirs && ftp_home_dir',`
|
|
Chris PeBenito |
fc6524 |
fs_read_nfs_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
fs_read_nfs_symlinks(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
tunable_policy(`use_samba_home_dirs && ftp_home_dir',`
|
|
Chris PeBenito |
fc6524 |
fs_read_cifs_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
fs_read_cifs_symlinks(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
132880 |
optional_policy(`cron',`
|
|
Chris PeBenito |
fc6524 |
corecmd_exec_shell(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
77f6e2 |
files_read_usr_files(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
fc6524 |
cron_system_entry(ftpd_t, ftpd_exec_t)
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
132880 |
optional_policy(`logrotate',`
|
|
Chris PeBenito |
fc6524 |
logrotate_exec(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
44d5d9 |
optional_policy(`daemontools',`
|
|
Chris PeBenito |
44d5d9 |
daemontools_service_domain(ftpd_t, ftpd_exec_t)
|
|
Chris PeBenito |
44d5d9 |
')
|
|
Chris PeBenito |
44d5d9 |
|
|
Chris PeBenito |
132880 |
optional_policy(`inetd',`
|
|
Chris PeBenito |
784a3b |
#reh: typeattributes not allowed in conditionals yet.
|
|
Chris PeBenito |
784a3b |
#tunable_policy(`! ftpd_is_daemon',`
|
|
Chris PeBenito |
784a3b |
# inetd_tcp_service_domain(ftpd_t,ftpd_exec_t)
|
|
Chris PeBenito |
784a3b |
#')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
73ef29 |
inetd_tcp_service_domain(ftpd_t,ftpd_exec_t)
|
|
Chris PeBenito |
73ef29 |
|
|
Chris PeBenito |
132880 |
optional_policy(`tcpd',`
|
|
Chris PeBenito |
77f6e2 |
tunable_policy(`! ftpd_is_daemon',`
|
|
Chris PeBenito |
fc6524 |
tcpd_domtrans(tcpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
77f6e2 |
')
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
132880 |
optional_policy(`mount',`
|
|
Chris PeBenito |
fc6524 |
mount_send_nfs_client_request(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
132880 |
optional_policy(`nscd',`
|
|
Chris PeBenito |
1815ba |
nscd_socket_use(ftpd_t)
|
|
Chris PeBenito |
e6a2ea |
')
|
|
Chris PeBenito |
e6a2ea |
|
|
Chris PeBenito |
132880 |
optional_policy(`selinuxutil',`
|
|
Chris PeBenito |
fc6524 |
seutil_sigchld_newrole(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|
|
Chris PeBenito |
fc6524 |
|
|
Chris PeBenito |
132880 |
optional_policy(`udev', `
|
|
Chris PeBenito |
fc6524 |
udev_read_db(ftpd_t)
|
|
Chris PeBenito |
fc6524 |
')
|