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

986 lines
20 KiB
Plaintext
Raw Normal View History

## <summary>Policy common to all email tranfer agents.</summary>
2005-05-02 19:24:29 +00:00
2005-10-18 18:25:33 +00:00
########################################
## <summary>
## MTA stub interface. No access allowed.
## </summary>
2008-06-24 14:43:47 +00:00
## <param name="domain" unused="true">
## <summary>
2008-06-24 14:43:47 +00:00
## Domain allowed access.
## </summary>
2005-10-18 18:25:33 +00:00
## </param>
#
interface(`mta_stub',`
gen_require(`
type sendmail_exec_t;
')
')
2005-05-02 19:24:29 +00:00
#######################################
## <summary>
2005-11-28 20:25:36 +00:00
## Basic mail transfer agent domain template.
## </summary>
## <desc>
## <p>
## This template creates a derived domain which is
## a email transfer agent, which sends mail on
## behalf of the user.
## </p>
## <p>
2005-11-28 20:25:36 +00:00
## This is the basic types and rules, common
2005-11-28 22:19:08 +00:00
## to the system agent and user agents.
## </p>
## </desc>
2005-11-28 20:25:36 +00:00
## <param name="domain_prefix">
## <summary>
2005-11-28 20:25:36 +00:00
## The prefix of the domain (e.g., user
## is the prefix for user_t).
## </summary>
## </param>
## <rolecap/>
2005-05-02 19:24:29 +00:00
#
2005-11-28 20:25:36 +00:00
template(`mta_base_mail_template',`
gen_require(`
attribute user_mail_domain;
type sendmail_exec_t;
')
2005-11-28 20:25:36 +00:00
##############################
#
# $1_mail_t declarations
#
2005-10-19 14:36:04 +00:00
2005-10-23 20:18:36 +00:00
type $1_mail_t, user_mail_domain;
application_domain($1_mail_t, sendmail_exec_t)
2005-05-02 19:24:29 +00:00
2005-11-29 21:27:15 +00:00
type $1_mail_tmp_t;
files_tmp_file($1_mail_tmp_t)
2005-05-02 19:24:29 +00:00
##############################
#
# $1_mail_t local policy
#
2005-05-12 20:50:09 +00:00
allow $1_mail_t self:capability { setuid setgid chown };
2005-06-09 15:32:23 +00:00
allow $1_mail_t self:process { signal_perms setrlimit };
allow $1_mail_t self:tcp_socket create_socket_perms;
2005-05-12 20:50:09 +00:00
# re-exec itself
2005-06-09 15:32:23 +00:00
can_exec($1_mail_t, sendmail_exec_t)
2006-12-12 20:08:08 +00:00
allow $1_mail_t sendmail_exec_t:lnk_file read_lnk_file_perms;
2005-05-12 20:50:09 +00:00
2010-01-07 14:48:35 +00:00
kernel_read_system_state($1_mail_t)
kernel_read_kernel_sysctls($1_mail_t)
2005-05-12 20:50:09 +00:00
corenet_all_recvfrom_unlabeled($1_mail_t)
corenet_all_recvfrom_netlabel($1_mail_t)
corenet_tcp_sendrecv_generic_if($1_mail_t)
corenet_tcp_sendrecv_generic_node($1_mail_t)
2005-06-10 01:01:13 +00:00
corenet_tcp_sendrecv_all_ports($1_mail_t)
2005-09-16 19:36:10 +00:00
corenet_tcp_connect_all_ports($1_mail_t)
2005-11-28 20:25:36 +00:00
corenet_tcp_connect_smtp_port($1_mail_t)
2006-05-26 20:29:51 +00:00
corenet_sendrecv_smtp_client_packets($1_mail_t)
2005-05-12 20:50:09 +00:00
2005-06-13 17:35:46 +00:00
corecmd_exec_bin($1_mail_t)
2005-05-12 20:50:09 +00:00
files_read_etc_files($1_mail_t)
2005-07-12 20:34:24 +00:00
files_search_spool($1_mail_t)
2005-08-30 20:47:41 +00:00
# It wants to check for nscd
files_dontaudit_search_pids($1_mail_t)
2005-05-02 19:24:29 +00:00
auth_use_nsswitch($1_mail_t)
2010-01-07 14:48:35 +00:00
init_dontaudit_rw_utmp($1_mail_t)
2005-06-13 17:35:46 +00:00
logging_send_syslog_msg($1_mail_t)
2005-05-12 20:50:09 +00:00
miscfiles_read_localization($1_mail_t)
2005-05-12 20:50:09 +00:00
2009-07-29 14:59:09 +00:00
optional_policy(`
exim_read_log($1_mail_t)
exim_append_log($1_mail_t)
exim_manage_spool_files($1_mail_t)
')
optional_policy(`
2005-12-05 20:18:20 +00:00
postfix_domtrans_user_mail_handler($1_mail_t)
')
optional_policy(`
2005-11-28 20:25:36 +00:00
procmail_exec($1_mail_t)
')
2006-04-05 15:32:38 +00:00
optional_policy(`
qmail_domtrans_inject($1_mail_t)
')
optional_policy(`
2005-11-29 21:27:15 +00:00
gen_require(`
type etc_mail_t, mail_spool_t, mqueue_spool_t;
')
manage_dirs_pattern($1_mail_t, $1_mail_tmp_t, $1_mail_tmp_t)
manage_files_pattern($1_mail_t, $1_mail_tmp_t, $1_mail_tmp_t)
2006-02-21 18:40:44 +00:00
files_tmp_filetrans($1_mail_t, $1_mail_tmp_t, { file dir })
2005-11-28 20:25:36 +00:00
2008-10-20 16:10:42 +00:00
allow $1_mail_t etc_mail_t:dir search_dir_perms;
2005-11-28 20:25:36 +00:00
# Write to /var/spool/mail and /var/spool/mqueue.
manage_files_pattern($1_mail_t, mail_spool_t, mail_spool_t)
manage_files_pattern($1_mail_t, mqueue_spool_t, mqueue_spool_t)
2005-11-28 20:25:36 +00:00
# Check available space.
fs_getattr_xattr_fs($1_mail_t)
files_read_etc_runtime_files($1_mail_t)
# Write to /var/log/sendmail.st
sendmail_manage_log($1_mail_t)
sendmail_create_log($1_mail_t)
')
2009-07-29 14:59:09 +00:00
optional_policy(`
uucp_manage_spool($1_mail_t)
')
2005-11-28 20:25:36 +00:00
')
2008-11-05 16:10:46 +00:00
########################################
2005-11-28 20:25:36 +00:00
## <summary>
2008-11-05 16:10:46 +00:00
## Role access for mta
2005-11-28 20:25:36 +00:00
## </summary>
2008-11-05 16:10:46 +00:00
## <param name="role">
## <summary>
2008-11-05 16:10:46 +00:00
## Role allowed access
## </summary>
2005-11-28 20:25:36 +00:00
## </param>
2008-11-05 16:10:46 +00:00
## <param name="domain">
## <summary>
2008-11-05 16:10:46 +00:00
## User domain for the role
## </summary>
2005-11-28 20:25:36 +00:00
## </param>
## <rolecap/>
2005-11-28 20:25:36 +00:00
#
2008-11-05 16:10:46 +00:00
interface(`mta_role',`
gen_require(`
attribute mta_user_agent;
2008-11-05 16:10:46 +00:00
type user_mail_t, sendmail_exec_t;
')
2006-02-03 16:13:15 +00:00
2008-11-05 16:10:46 +00:00
role $1 types { user_mail_t mta_user_agent };
2005-11-28 20:25:36 +00:00
# Transition from the user domain to the derived domain.
2008-11-05 16:10:46 +00:00
domtrans_pattern($2, sendmail_exec_t, user_mail_t)
allow $2 sendmail_exec_t:lnk_file read_lnk_file_perms;
2005-11-28 20:25:36 +00:00
2008-11-05 16:10:46 +00:00
allow mta_user_agent $2:fd use;
allow mta_user_agent $2:process sigchld;
allow mta_user_agent $2:fifo_file { read write };
2005-11-28 22:19:08 +00:00
')
########################################
## <summary>
## Make the specified domain usable for a mail server.
## </summary>
## <param name="type">
## <summary>
## Type to be used as a mail server domain.
## </summary>
## </param>
## <param name="entry_point">
## <summary>
## Type of the program to be used as an entry point to this domain.
## </summary>
## </param>
2005-05-12 20:50:09 +00:00
#
interface(`mta_mailserver',`
2005-06-17 18:41:07 +00:00
gen_require(`
attribute mailserver_domain;
')
2010-01-07 14:48:35 +00:00
init_daemon_domain($1, $2)
typeattribute $1 mailserver_domain;
2005-05-12 20:50:09 +00:00
')
2008-09-12 14:18:20 +00:00
########################################
## <summary>
## Make the specified type a MTA executable file.
## </summary>
## <param name="type">
## <summary>
## Type to be used as a mail client.
## </summary>
## </param>
#
interface(`mta_agent_executable',`
gen_require(`
attribute mta_exec_type;
')
typeattribute $1 mta_exec_type;
application_executable_file($1)
')
2010-08-26 13:41:21 +00:00
######################################
## <summary>
## Dontaudit read and write an leaked file descriptors
## </summary>
## <param name="domain">
## <summary>
## Domain to not audit.
## </summary>
2010-08-26 13:41:21 +00:00
## </param>
#
interface(`mta_dontaudit_leaks_system_mail',`
gen_require(`
type system_mail_t;
')
2010-08-26 13:41:21 +00:00
dontaudit $1 system_mail_t:fifo_file write;
dontaudit $1 system_mail_t:tcp_socket { read write };
2010-08-26 13:41:21 +00:00
')
2008-09-12 14:18:20 +00:00
########################################
## <summary>
## Make the specified type by a system MTA.
## </summary>
## <param name="type">
## <summary>
## Type to be used as a mail client.
## </summary>
## </param>
#
interface(`mta_system_content',`
gen_require(`
attribute mailcontent_type;
')
typeattribute $1 mailcontent_type;
')
2005-07-07 15:25:28 +00:00
########################################
## <summary>
## Modified mailserver interface for
## sendmail daemon use.
## </summary>
## <desc>
## <p>
## A modified MTA mail server interface for
## the sendmail program. It's design does
## not fit well with policy, and using the
## regular interface causes a type_transition
## conflict if direct running of init scripts
## is enabled.
## </p>
## <p>
## This interface should most likely only be used
## by the sendmail policy.
## </p>
## </desc>
## <param name="domain">
## <summary>
2005-07-07 15:25:28 +00:00
## The type to be used for the mail server.
## </summary>
2005-07-07 15:25:28 +00:00
## </param>
2008-05-22 15:24:52 +00:00
#
interface(`mta_sendmail_mailserver',`
2005-06-17 18:41:07 +00:00
gen_require(`
2005-07-07 15:25:28 +00:00
attribute mailserver_domain;
2005-06-17 18:41:07 +00:00
type sendmail_exec_t;
')
2009-06-26 14:40:13 +00:00
init_system_domain($1, sendmail_exec_t)
2005-07-07 15:25:28 +00:00
typeattribute $1 mailserver_domain;
2005-05-13 14:37:13 +00:00
')
2005-08-30 20:47:41 +00:00
#######################################
## <summary>
## Make a type a mailserver type used
## for sending mail.
## </summary>
## <param name="domain">
## <summary>
2005-08-30 20:47:41 +00:00
## Mail server domain type used for sending mail.
## </summary>
2005-08-30 20:47:41 +00:00
## </param>
#
interface(`mta_mailserver_sender',`
gen_require(`
attribute mailserver_sender;
')
typeattribute $1 mailserver_sender;
')
#######################################
## <summary>
## Make a type a mailserver type used
## for delivering mail to local users.
## </summary>
## <param name="domain">
## <summary>
2005-08-30 20:47:41 +00:00
## Mail server domain type used for delivering mail.
## </summary>
2005-08-30 20:47:41 +00:00
## </param>
#
interface(`mta_mailserver_delivery',`
gen_require(`
attribute mailserver_delivery;
')
typeattribute $1 mailserver_delivery;
')
#######################################
## <summary>
## Make a type a mailserver type used
## for sending mail on behalf of local
## users to the local mail spool.
## </summary>
## <param name="domain">
## <summary>
2005-08-30 20:47:41 +00:00
## Mail server domain type used for sending local mail.
## </summary>
2005-08-30 20:47:41 +00:00
## </param>
#
interface(`mta_mailserver_user_agent',`
gen_require(`
2005-10-17 17:55:38 +00:00
attribute mta_user_agent;
2005-08-30 20:47:41 +00:00
')
2005-10-17 17:55:38 +00:00
typeattribute $1 mta_user_agent;
2005-08-30 20:47:41 +00:00
')
########################################
## <summary>
## Send mail from the system.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
2005-05-12 20:50:09 +00:00
#
interface(`mta_send_mail',`
2005-06-17 18:41:07 +00:00
gen_require(`
Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Replace type and attributes statements by comma delimiters where possible. Syntax error. Squash me with 959aa527a5394d23b994ecf75347d2445106d0c4 Replace type and attributes statements by comma delimiters where possible. Syntax error. Squach me with 779a708452142d6e4ac2ba2a158f724782a03291 Replace type and attributes statements by comma delimiters where possible. Syntax error. Squash me with 89180ea115794aadddaa9b356ab1dfcdc9ff102
2010-09-20 10:09:09 +00:00
attribute mta_user_agent, mta_exec_type;
2008-09-12 14:18:20 +00:00
type system_mail_t;
2005-06-17 18:41:07 +00:00
')
2008-09-12 14:18:20 +00:00
allow $1 mta_exec_type:lnk_file read_lnk_file_perms;
2010-05-19 13:00:39 +00:00
corecmd_read_bin_symlinks($1)
2008-09-12 14:18:20 +00:00
domtrans_pattern($1, mta_exec_type, system_mail_t)
2005-07-21 20:34:57 +00:00
allow mta_user_agent $1:fd use;
allow mta_user_agent $1:process sigchld;
2010-01-07 14:48:35 +00:00
allow mta_user_agent $1:fifo_file rw_fifo_file_perms;
2010-08-26 13:41:21 +00:00
ifdef(`hide_broken_symptoms',`
2010-08-26 13:41:21 +00:00
dontaudit system_mail_t $1:socket_class_set { read write };
')
2005-05-12 20:50:09 +00:00
')
########################################
## <summary>
## Execute send mail in a specified domain.
## </summary>
## <desc>
2008-12-03 19:16:20 +00:00
## <p>
## Execute send mail in a specified domain.
2008-12-03 19:16:20 +00:00
## </p>
## <p>
## No interprocess communication (signals, pipes,
## etc.) is provided by this interface since
## the domains are not owned by this module.
## </p>
## </desc>
## <param name="source_domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
## <param name="target_domain">
## <summary>
## Domain to transition to.
## </summary>
## </param>
#
interface(`mta_sendmail_domtrans',`
gen_require(`
2010-08-26 13:41:21 +00:00
attribute mta_exec_type;
')
files_search_usr($1)
2010-08-26 13:41:21 +00:00
allow $1 mta_exec_type:lnk_file read_lnk_file_perms;
2007-03-23 23:24:59 +00:00
corecmd_read_bin_symlinks($1)
2010-08-26 13:41:21 +00:00
allow $2 mta_exec_type:file entrypoint;
domtrans_pattern($1, mta_exec_type, $2)
')
2010-05-19 13:00:39 +00:00
########################################
## <summary>
## Send system mail client a signal
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_signal_system_mail',`
gen_require(`
type system_mail_t;
')
allow $1 system_mail_t:process signal;
')
########################################
## <summary>
## Send system mail client a kill signal
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_kill_system_mail',`
gen_require(`
type system_mail_t;
')
allow $1 system_mail_t:process sigkill;
')
########################################
## <summary>
## Execute sendmail in the caller domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
2005-05-12 20:50:09 +00:00
#
interface(`mta_sendmail_exec',`
2005-06-17 18:41:07 +00:00
gen_require(`
type sendmail_exec_t;
')
2005-06-09 15:32:23 +00:00
can_exec($1, sendmail_exec_t)
2005-05-12 20:50:09 +00:00
')
2005-10-22 23:50:23 +00:00
########################################
## <summary>
## Read mail server configuration.
## </summary>
## <param name="domain">
## <summary>
2006-01-16 22:03:38 +00:00
## Domain allowed access.
## </summary>
2005-10-22 23:50:23 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-10-22 23:50:23 +00:00
#
interface(`mta_read_config',`
gen_require(`
type etc_mail_t;
')
files_search_etc($1)
2005-10-24 19:50:21 +00:00
allow $1 etc_mail_t:dir list_dir_perms;
read_files_pattern($1, etc_mail_t, etc_mail_t)
read_lnk_files_pattern($1, etc_mail_t, etc_mail_t)
2005-10-22 23:50:23 +00:00
')
2009-07-29 14:59:09 +00:00
########################################
## <summary>
## write mail server configuration.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`mta_write_config',`
gen_require(`
type etc_mail_t;
')
2010-08-26 13:41:21 +00:00
manage_files_pattern($1, etc_mail_t, etc_mail_t)
allow $1 etc_mail_t:file setattr_file_perms;
2009-07-29 14:59:09 +00:00
')
########################################
2005-08-11 17:46:39 +00:00
## <summary>
2005-06-23 21:30:57 +00:00
## Read mail address aliases.
2005-08-11 17:46:39 +00:00
## </summary>
2005-06-23 21:30:57 +00:00
## <param name="domain">
## <summary>
2006-01-16 22:03:38 +00:00
## Domain allowed access.
## </summary>
2005-06-23 21:30:57 +00:00
## </param>
#
interface(`mta_read_aliases',`
2005-06-17 18:41:07 +00:00
gen_require(`
type etc_aliases_t;
')
2005-06-17 18:41:07 +00:00
files_search_etc($1)
2006-12-12 20:08:08 +00:00
allow $1 etc_aliases_t:file read_file_perms;
')
2008-10-13 13:36:50 +00:00
########################################
## <summary>
## Create, read, write, and delete mail address aliases.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_manage_aliases',`
gen_require(`
type etc_aliases_t;
')
files_search_etc($1)
manage_files_pattern($1, etc_aliases_t, etc_aliases_t)
manage_lnk_files_pattern($1, etc_aliases_t, etc_aliases_t)
')
2006-01-16 22:03:38 +00:00
########################################
## <summary>
## Type transition files created in /etc
## to the mail address aliases type.
## </summary>
## <param name="domain">
## <summary>
2006-01-16 22:03:38 +00:00
## Domain allowed access.
## </summary>
2006-01-16 22:03:38 +00:00
## </param>
#
2006-02-21 18:40:44 +00:00
interface(`mta_etc_filetrans_aliases',`
2006-01-16 22:03:38 +00:00
gen_require(`
type etc_aliases_t;
')
files_etc_filetrans($1, etc_aliases_t, file)
2006-01-16 22:03:38 +00:00
')
########################################
## <summary>
## Read and write mail aliases.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-05-13 14:37:13 +00:00
#
interface(`mta_rw_aliases',`
2005-06-17 18:41:07 +00:00
gen_require(`
type etc_aliases_t;
')
2005-06-17 18:41:07 +00:00
files_search_etc($1)
allow $1 etc_aliases_t:file { rw_file_perms setattr_file_perms };
2005-05-13 14:37:13 +00:00
')
2005-10-11 15:36:53 +00:00
#######################################
## <summary>
## Do not audit attempts to read and write TCP
## sockets of mail delivery domains.
## </summary>
## <param name="domain">
## <summary>
## Domain to not audit.
## </summary>
2005-10-11 15:36:53 +00:00
## </param>
#
2006-02-02 21:08:12 +00:00
interface(`mta_dontaudit_rw_delivery_tcp_sockets',`
2005-10-11 15:36:53 +00:00
gen_require(`
attribute mailserver_delivery;
2005-10-11 15:36:53 +00:00
')
dontaudit $1 mailserver_delivery:tcp_socket { read write };
')
#######################################
## <summary>
2006-08-15 20:00:58 +00:00
## Connect to all mail servers over TCP. (Deprecated)
2005-10-11 15:36:53 +00:00
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2005-10-11 15:36:53 +00:00
## </param>
#
interface(`mta_tcp_connect_all_mailservers',`
2006-08-15 20:00:58 +00:00
refpolicywarn(`$0($*) has been deprecated.')
2005-10-11 15:36:53 +00:00
')
2005-07-08 20:44:57 +00:00
#######################################
## <summary>
## Do not audit attempts to read a symlink
## in the mail spool.
## </summary>
## <param name="domain">
## <summary>
## Domain to not audit.
## </summary>
2005-07-08 20:44:57 +00:00
## </param>
#
2006-02-02 21:08:12 +00:00
interface(`mta_dontaudit_read_spool_symlinks',`
2005-07-08 20:44:57 +00:00
gen_require(`
type mail_spool_t;
')
dontaudit $1 mail_spool_t:lnk_file read;
')
########################################
## <summary>
## Get the attributes of mail spool files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_getattr_spool',`
2005-06-17 18:41:07 +00:00
gen_require(`
type mail_spool_t;
')
2005-06-13 17:35:46 +00:00
files_search_spool($1)
2006-12-12 20:08:08 +00:00
allow $1 mail_spool_t:dir list_dir_perms;
2009-07-29 14:59:09 +00:00
getattr_files_pattern($1, mail_spool_t, mail_spool_t)
read_lnk_files_pattern($1, mail_spool_t, mail_spool_t)
')
########################################
## <summary>
## Do not audit attempts to get the attributes
## of mail spool files.
## </summary>
## <param name="domain">
## <summary>
## Domain to not audit.
## </summary>
## </param>
#
2006-02-02 21:08:12 +00:00
interface(`mta_dontaudit_getattr_spool_files',`
2006-01-30 22:51:35 +00:00
gen_require(`
type mail_spool_t;
')
files_dontaudit_search_spool($1)
2009-07-29 14:59:09 +00:00
dontaudit $1 mail_spool_t:dir search_dir_perms;
dontaudit $1 mail_spool_t:lnk_file read_lnk_file_perms;
dontaudit $1 mail_spool_t:file getattr_file_perms;
2006-01-30 22:51:35 +00:00
')
2005-12-08 15:58:12 +00:00
#######################################
## <summary>
2010-01-07 14:48:35 +00:00
## Create private objects in the
2005-12-08 15:58:12 +00:00
## mail spool directory.
## </summary>
## <param name="domain">
## <summary>
2005-12-08 15:58:12 +00:00
## Domain allowed access.
## </summary>
2005-12-08 15:58:12 +00:00
## </param>
## <param name="private type">
## <summary>
2005-12-08 15:58:12 +00:00
## The type of the object to be created.
## </summary>
2005-12-08 15:58:12 +00:00
## </param>
## <param name="object">
## <summary>
## The object class of the object being created.
## </summary>
2005-12-08 15:58:12 +00:00
## </param>
#
2006-02-21 18:40:44 +00:00
interface(`mta_spool_filetrans',`
2005-12-08 15:58:12 +00:00
gen_require(`
type mail_spool_t;
')
files_search_spool($1)
filetrans_pattern($1, mail_spool_t, $2, $3)
2005-12-08 15:58:12 +00:00
')
########################################
## <summary>
## Read and write the mail spool.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_rw_spool',`
2005-06-17 18:41:07 +00:00
gen_require(`
type mail_spool_t;
')
2005-06-13 17:35:46 +00:00
files_search_spool($1)
2006-12-12 20:08:08 +00:00
allow $1 mail_spool_t:dir list_dir_perms;
allow $1 mail_spool_t:file setattr_file_perms;
2010-08-26 13:41:21 +00:00
manage_files_pattern($1, mail_spool_t, mail_spool_t)
read_lnk_files_pattern($1, mail_spool_t, mail_spool_t)
')
2005-08-30 20:47:41 +00:00
#######################################
## <summary>
## Create, read, and write the mail spool.
## </summary>
## <param name="domain">
## <summary>
2005-08-30 20:47:41 +00:00
## Domain allowed access.
## </summary>
2005-08-30 20:47:41 +00:00
## </param>
#
interface(`mta_append_spool',`
gen_require(`
type mail_spool_t;
')
files_search_spool($1)
2006-12-12 20:08:08 +00:00
allow $1 mail_spool_t:dir list_dir_perms;
create_files_pattern($1, mail_spool_t, mail_spool_t)
write_files_pattern($1, mail_spool_t, mail_spool_t)
read_lnk_files_pattern($1, mail_spool_t, mail_spool_t)
2005-08-30 20:47:41 +00:00
')
2005-10-23 20:18:36 +00:00
#######################################
## <summary>
## Delete from the mail spool.
## </summary>
## <param name="domain">
## <summary>
2005-10-23 20:18:36 +00:00
## Domain allowed access.
## </summary>
2005-10-23 20:18:36 +00:00
## </param>
#
interface(`mta_delete_spool',`
gen_require(`
type mail_spool_t;
')
files_search_spool($1)
delete_files_pattern($1, mail_spool_t, mail_spool_t)
2005-10-23 20:18:36 +00:00
')
########################################
## <summary>
## Create, read, write, and delete mail spool files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
2005-05-13 14:37:13 +00:00
#
interface(`mta_manage_spool',`
2005-06-17 18:41:07 +00:00
gen_require(`
type mail_spool_t;
')
2005-06-13 17:35:46 +00:00
files_search_spool($1)
manage_dirs_pattern($1, mail_spool_t, mail_spool_t)
manage_files_pattern($1, mail_spool_t, mail_spool_t)
manage_lnk_files_pattern($1, mail_spool_t, mail_spool_t)
2005-05-13 14:37:13 +00:00
')
2007-05-15 18:06:31 +00:00
########################################
## <summary>
## Search mail queue dirs.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_search_queue',`
gen_require(`
type mqueue_spool_t;
')
files_search_spool($1)
allow $1 mqueue_spool_t:dir search_dir_perms;
')
2010-05-19 13:00:39 +00:00
#######################################
## <summary>
## List the mail queue.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_list_queue',`
gen_require(`
type mqueue_spool_t;
')
allow $1 mqueue_spool_t:dir list_dir_perms;
files_search_spool($1)
')
2008-12-04 15:01:12 +00:00
#######################################
## <summary>
## Read the mail queue.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mta_read_queue',`
gen_require(`
type mqueue_spool_t;
')
read_files_pattern($1, mqueue_spool_t, mqueue_spool_t)
files_search_spool($1)
')
2005-11-15 20:17:18 +00:00
#######################################
## <summary>
## Do not audit attempts to read and
## write the mail queue.
## </summary>
## <param name="domain">
## <summary>
2005-11-15 20:17:18 +00:00
## Domain to not audit.
## </summary>
2005-11-15 20:17:18 +00:00
## </param>
#
interface(`mta_dontaudit_rw_queue',`
gen_require(`
type mqueue_spool_t;
')
dontaudit $1 mqueue_spool_t:dir search_dir_perms;
dontaudit $1 mqueue_spool_t:file rw_file_perms;
2005-11-15 20:17:18 +00:00
')
########################################
## <summary>
## Create, read, write, and delete
## mail queue files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
2005-05-13 14:37:13 +00:00
#
interface(`mta_manage_queue',`
2005-06-17 18:41:07 +00:00
gen_require(`
type mqueue_spool_t;
')
2005-07-12 20:34:24 +00:00
files_search_spool($1)
2009-07-29 14:59:09 +00:00
manage_dirs_pattern($1, mqueue_spool_t, mqueue_spool_t)
manage_files_pattern($1, mqueue_spool_t, mqueue_spool_t)
2005-05-13 14:37:13 +00:00
')
2005-10-23 20:18:36 +00:00
#######################################
## <summary>
## Read sendmail binary.
2005-10-23 22:10:59 +00:00
## </summary>
2005-10-23 20:18:36 +00:00
## <param name="domain">
## <summary>
2005-10-23 20:18:36 +00:00
## Domain allowed access.
## </summary>
2005-10-23 20:18:36 +00:00
## </param>
#
# cjp: added for postfix
interface(`mta_read_sendmail_bin',`
gen_require(`
2005-10-25 02:51:07 +00:00
type sendmail_exec_t;
2005-10-23 20:18:36 +00:00
')
2006-12-12 20:08:08 +00:00
allow $1 sendmail_exec_t:file read_file_perms;
2005-10-23 20:18:36 +00:00
')
#######################################
## <summary>
## Read and write unix domain stream sockets
## of user mail domains.
## </summary>
## <param name="domain">
## <summary>
2005-10-23 20:18:36 +00:00
## Domain allowed access.
## </summary>
2005-10-23 20:18:36 +00:00
## </param>
#
2006-02-02 21:08:12 +00:00
interface(`mta_rw_user_mail_stream_sockets',`
2005-10-23 20:18:36 +00:00
gen_require(`
attribute user_mail_domain;
')
allow $1 user_mail_domain:unix_stream_socket rw_socket_perms;
')
2010-08-26 13:41:21 +00:00
########################################
## <summary>
## Type transition files created in calling dir
## to the mail address aliases type.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <param name="domain">
## <summary>
## Directory to transition on.
## </summary>
## </param>
#
interface(`mta_filetrans_aliases',`
2010-09-20 11:30:06 +00:00
gen_require(`
type etc_aliases_t;
')
2010-08-26 13:41:21 +00:00
filetrans_pattern($1, $2, etc_aliases_t, file)
')
######################################
## <summary>
## ALlow domain to read mail content in the homedir
2010-08-26 13:41:21 +00:00
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
2010-08-26 13:41:21 +00:00
## </param>
#
interface(`mta_read_home',`
gen_require(`
type mail_home_t;
')
2010-08-26 13:41:21 +00:00
userdom_search_user_home_dirs($1)
read_files_pattern($1, mail_home_t, mail_home_t)
ifdef(`distro_redhat',`
userdom_search_admin_dir($1)
')
2010-08-26 13:41:21 +00:00
')