selinux-policy/policy/modules/services/ftp.if

129 lines
2.8 KiB
Plaintext
Raw Normal View History

2005-10-05 19:52:53 +00:00
## <summary>File transfer protocol service</summary>
2005-11-08 22:00:30 +00:00
#######################################
## <summary>
2006-09-06 22:07:25 +00:00
## The per role template for the ftp module.
2005-11-08 22:00:30 +00:00
## </summary>
## <desc>
## <p>
## This template allows ftpd to manage files in
## a user home directory, creating files with the
## correct type.
## </p>
## <p>
## This template is invoked automatically for each user, and
## generally does not need to be invoked directly
## by policy writers.
## </p>
## </desc>
## <param name="userdomain_prefix">
## <summary>
2005-11-08 22:00:30 +00:00
## The prefix of the user domain (e.g., user
## is the prefix for user_t).
## </summary>
2005-11-08 22:00:30 +00:00
## </param>
#
2006-09-06 22:07:25 +00:00
template(`ftp_per_role_template',`
2005-11-08 22:00:30 +00:00
tunable_policy(`ftpd_is_daemon',`
2006-02-21 18:40:44 +00:00
userdom_manage_user_home_content_files($1,ftpd_t)
userdom_manage_user_home_content_symlinks($1,ftpd_t)
userdom_manage_user_home_content_sockets($1,ftpd_t)
userdom_manage_user_home_content_pipes($1,ftpd_t)
userdom_user_home_dir_filetrans_user_home_content($1,ftpd_t,{ dir file lnk_file sock_file fifo_file })
2005-11-08 22:00:30 +00:00
')
')
2005-10-05 19:52:53 +00:00
########################################
## <summary>
2006-08-15 20:00:58 +00:00
## Use ftp by connecting over TCP. (Deprecated)
2005-10-05 19:52:53 +00:00
## </summary>
## <param name="domain">
## <summary>
2005-10-05 19:52:53 +00:00
## Domain allowed access.
## </summary>
2005-10-05 19:52:53 +00:00
## </param>
#
interface(`ftp_tcp_connect',`
2006-08-15 20:00:58 +00:00
refpolicywarn(`$0($*) has been deprecated.')
2005-10-05 19:52:53 +00:00
')
########################################
## <summary>
## Read ftpd etc files
## </summary>
## <param name="domain">
## <summary>
2005-10-05 19:52:53 +00:00
## Domain allowed access.
## </summary>
2005-10-05 19:52:53 +00:00
## </param>
#
interface(`ftp_read_config',`
gen_require(`
type ftpd_etc_t;
')
files_search_etc($1)
allow $1 ftpd_etc_t:file { getattr read };
')
########################################
## <summary>
## Execute FTP daemon entry point programs.
## </summary>
## <param name="domain">
## <summary>
2005-10-05 19:52:53 +00:00
## Domain allowed access.
## </summary>
2005-10-05 19:52:53 +00:00
## </param>
#
interface(`ftp_check_exec',`
gen_require(`
type ftpd_exec_t;
')
corecmd_search_sbin($1)
allow $1 ftpd_exec_t:file x_file_perms;
')
########################################
## <summary>
## Read FTP transfer logs
## </summary>
## <param name="domain">
## <summary>
2005-10-05 19:52:53 +00:00
## Domain allowed access.
## </summary>
2005-10-05 19:52:53 +00:00
## </param>
#
interface(`ftp_read_log',`
gen_require(`
type xferlog_t;
')
logging_search_logs($1)
allow $1 xferlog_t:file r_file_perms;
')
2006-06-13 18:17:34 +00:00
########################################
## <summary>
## Execute the ftpdctl program in the ftpdctl domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`ftp_domtrans_ftpdctl',`
gen_require(`
type ftpdctl_t, ftpdctl_exec_t;
')
corecmd_search_bin($1)
domain_auto_trans($1, ftpdctl_exec_t, ftpdctl_t)
allow ftpdctl_t $1:fd use;
allow ftpdctl_t $1:fifo_file rw_file_perms;
allow ftpdctl_t $1:process sigchld;
')