2005-06-24 13:36:57 +00:00
|
|
|
## <summary>Periodic execution of scheduled commands.</summary>
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-24 20:37:09 +00:00
|
|
|
#######################################
|
|
|
|
## <summary>
|
|
|
|
## The per user domain template for the cron module.
|
|
|
|
## </summary>
|
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## This template creates a derived domains which are used
|
|
|
|
## for running programs on behalf of the user, from cron.
|
|
|
|
## A type for the user crontab is also created.
|
|
|
|
## </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">
|
|
|
|
## The prefix of the user domain (e.g., user
|
|
|
|
## is the prefix for user_t).
|
|
|
|
## </param>
|
2005-08-30 15:48:57 +00:00
|
|
|
## <param name="user_domain">
|
|
|
|
## The type of the user domain.
|
|
|
|
## </param>
|
|
|
|
## <param name="user_role">
|
|
|
|
## The role associated with the user domain.
|
|
|
|
## </param>
|
2005-05-11 19:05:50 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
template(`cron_per_userdomain_template',`
|
2005-10-18 18:25:33 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute cron_spool_type;
|
2005-10-19 14:36:04 +00:00
|
|
|
type crond_t, cron_spool_t, crontab_exec_t;
|
2005-10-18 18:25:33 +00:00
|
|
|
')
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# Type of user crontabs once moved to cron spool.
|
2005-07-13 18:29:08 +00:00
|
|
|
type $1_cron_spool_t, cron_spool_type;
|
2005-06-29 14:26:41 +00:00
|
|
|
files_type($1_cron_spool_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-09-09 20:51:54 +00:00
|
|
|
type $1_crond_t;
|
|
|
|
domain_type($1_crond_t)
|
|
|
|
domain_cron_exemption_target($1_crond_t)
|
2005-06-13 17:35:46 +00:00
|
|
|
corecmd_shell_entry_type($1_crond_t)
|
2005-08-30 15:48:57 +00:00
|
|
|
role $3 types $1_crond_t;
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
type $1_crontab_t;
|
2005-06-13 17:35:46 +00:00
|
|
|
domain_type($1_crontab_t)
|
|
|
|
domain_entry_file($1_crontab_t,crontab_exec_t)
|
2005-08-30 15:48:57 +00:00
|
|
|
role $3 types $1_crontab_t;
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
##############################
|
|
|
|
#
|
|
|
|
# $1_crond_t local policy
|
|
|
|
#
|
|
|
|
|
|
|
|
allow $1_crond_t self:capability dac_override;
|
2005-06-10 01:01:13 +00:00
|
|
|
allow $1_crond_t self:process { signal_perms setsched };
|
2005-06-09 15:32:23 +00:00
|
|
|
allow $1_crond_t self:fifo_file rw_file_perms;
|
2005-06-10 01:01:13 +00:00
|
|
|
allow $1_crond_t self:unix_stream_socket create_stream_socket_perms;
|
|
|
|
allow $1_crond_t self:unix_dgram_socket create_socket_perms;
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
# The entrypoint interface is not used as this is not
|
|
|
|
# a regular entrypoint. Since crontab files are
|
|
|
|
# not directly executed, crond must ensure that
|
|
|
|
# the crontab file has a type that is appropriate
|
|
|
|
# for the domain of the user cron job. It
|
|
|
|
# performs an entrypoint permission check
|
|
|
|
# for this purpose.
|
|
|
|
allow $1_crond_t $1_cron_spool_t:file entrypoint;
|
|
|
|
|
|
|
|
# Permit a transition from the crond_t domain to this domain.
|
|
|
|
# The transition is requested explicitly by the modified crond
|
|
|
|
# via setexeccon. There is no way to set up an automatic
|
|
|
|
# transition, since crontabs are configuration files, not executables.
|
|
|
|
allow crond_t $1_crond_t:process transition;
|
|
|
|
dontaudit crond_t $1_crond_t:process { noatsecure siginh rlimitinh };
|
|
|
|
allow crond_t $1_crond_t:fd use;
|
|
|
|
allow $1_crond_t crond_t:fd use;
|
|
|
|
allow $1_crond_t crond_t:fifo_file rw_file_perms;
|
|
|
|
allow $1_crond_t crond_t:process sigchld;
|
|
|
|
|
|
|
|
kernel_read_system_state($1_crond_t)
|
|
|
|
kernel_read_kernel_sysctl($1_crond_t)
|
|
|
|
|
|
|
|
# ps does not need to access /boot when run from cron
|
2005-06-10 01:01:13 +00:00
|
|
|
bootloader_dontaudit_search_boot($1_crond_t)
|
|
|
|
|
|
|
|
corenet_tcp_sendrecv_all_if($1_crond_t)
|
|
|
|
corenet_raw_sendrecv_all_if($1_crond_t)
|
|
|
|
corenet_udp_sendrecv_all_if($1_crond_t)
|
|
|
|
corenet_tcp_sendrecv_all_nodes($1_crond_t)
|
|
|
|
corenet_raw_sendrecv_all_nodes($1_crond_t)
|
|
|
|
corenet_udp_sendrecv_all_nodes($1_crond_t)
|
|
|
|
corenet_tcp_sendrecv_all_ports($1_crond_t)
|
|
|
|
corenet_udp_sendrecv_all_ports($1_crond_t)
|
|
|
|
corenet_tcp_bind_all_nodes($1_crond_t)
|
|
|
|
corenet_udp_bind_all_nodes($1_crond_t)
|
2005-09-16 19:36:10 +00:00
|
|
|
corenet_tcp_connect_all_ports($1_crond_t)
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-13 16:22:32 +00:00
|
|
|
dev_read_urand($1_crond_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-10 01:01:13 +00:00
|
|
|
fs_getattr_all_fs($1_crond_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
domain_exec_all_entry_files($1_crond_t)
|
2005-09-20 20:48:17 +00:00
|
|
|
# quiet other ps operations
|
|
|
|
domain_dontaudit_read_all_domains_state($1_crond_t)
|
2005-05-12 20:50:09 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
files_read_usr_files($1_crond_t)
|
2005-06-29 14:26:41 +00:00
|
|
|
files_exec_etc_files($1_crond_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
# for nscd:
|
2005-06-13 17:35:46 +00:00
|
|
|
files_dontaudit_search_pids($1_crond_t)
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
corecmd_exec_bin($1_crond_t)
|
|
|
|
corecmd_exec_sbin($1_crond_t)
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
libs_use_ld_so($1_crond_t)
|
|
|
|
libs_use_shared_libs($1_crond_t)
|
|
|
|
libs_exec_lib_files($1_crond_t)
|
|
|
|
libs_exec_ld_so($1_crond_t)
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
files_read_etc_runtime_files($1_crond_t)
|
2005-09-20 20:48:17 +00:00
|
|
|
files_read_var_files($1_crond_t)
|
|
|
|
files_search_spool($1_crond_t)
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
logging_search_logs($1_crond_t)
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-14 20:48:34 +00:00
|
|
|
seutil_read_config($1_crond_t)
|
2005-05-11 19:05:50 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
miscfiles_read_localization($1_crond_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-08-30 15:48:57 +00:00
|
|
|
userdom_manage_user_tmp_files($1,$1_crond_t)
|
|
|
|
userdom_manage_user_tmp_symlinks($1,$1_crond_t)
|
|
|
|
userdom_manage_user_tmp_pipes($1,$1_crond_t)
|
|
|
|
userdom_manage_user_tmp_sockets($1,$1_crond_t)
|
2005-08-25 20:27:20 +00:00
|
|
|
# Run scripts in user home directory and access shared libs.
|
2005-08-30 15:48:57 +00:00
|
|
|
userdom_exec_user_home_files($1,$1_crond_t)
|
2005-09-20 20:48:17 +00:00
|
|
|
# Access user files and dirs.
|
|
|
|
# userdom_manage_user_home_subdir_dirs($1,$1_crond_t)
|
|
|
|
userdom_manage_user_home_subdir_files($1,$1_crond_t)
|
|
|
|
userdom_manage_user_home_subdir_symlinks($1,$1_crond_t)
|
|
|
|
userdom_manage_user_home_subdir_pipes($1,$1_crond_t)
|
|
|
|
userdom_manage_user_home_subdir_sockets($1,$1_crond_t)
|
|
|
|
# userdom_create_user_home($1,$1_crond_t,notdevfile_class_set)
|
2005-08-25 20:27:20 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
tunable_policy(`fcron_crond', `
|
2005-06-09 15:32:23 +00:00
|
|
|
allow crond_t $1_cron_spool_t:file create_file_perms;
|
2005-06-03 12:25:14 +00:00
|
|
|
')
|
|
|
|
|
2005-06-27 16:30:55 +00:00
|
|
|
optional_policy(`nis.te',`
|
|
|
|
nis_use_ypbind($1_crond_t)
|
|
|
|
')
|
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
ifdef(`TODO',`
|
2005-09-29 20:59:00 +00:00
|
|
|
optional_policy(`apache.te', `
|
|
|
|
create_dir_file($1_crond_t, httpd_$1_content_t)
|
|
|
|
')
|
2005-08-25 20:27:20 +00:00
|
|
|
allow $1_crond_t tmp_t:dir rw_dir_perms;
|
|
|
|
type_transition $1_crond_t $1_tmp_t:{ file lnk_file sock_file fifo_file } $1_tmp_t;
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
ifdef(`mta.te', `
|
|
|
|
domain_auto_trans($1_crond_t, sendmail_exec_t, $1_mail_t)
|
2005-06-09 15:32:23 +00:00
|
|
|
allow $1_crond_t sendmail_exec_t:lnk_file r_file_perms;
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# $1_mail_t should only be reading from the cron fifo not needing to write
|
|
|
|
dontaudit $1_mail_t crond_t:fifo_file write;
|
|
|
|
allow mta_user_agent $1_crond_t:fd use;
|
|
|
|
')
|
|
|
|
') dnl endif TODO
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
##############################
|
|
|
|
#
|
|
|
|
# $1_crontab_t local policy
|
|
|
|
#
|
2005-05-12 20:50:09 +00:00
|
|
|
|
2005-07-13 18:29:08 +00:00
|
|
|
# Transition from the user domain to the derived domain.
|
2005-08-30 15:48:57 +00:00
|
|
|
domain_auto_trans($2, crontab_exec_t, $1_crontab_t)
|
|
|
|
allow $2 $1_crontab_t:fd use;
|
|
|
|
allow $1_crontab_t $2:fd use;
|
|
|
|
allow $1_crontab_t $2:fifo_file rw_file_perms;
|
|
|
|
allow $1_crontab_t $2:process sigchld;
|
2005-07-13 18:29:08 +00:00
|
|
|
|
2005-09-20 20:48:17 +00:00
|
|
|
# crontab shows up in user ps
|
|
|
|
allow $2 $1_crontab_t:dir { search getattr read };
|
|
|
|
allow $2 $1_crontab_t:{ file lnk_file } { read getattr };
|
|
|
|
allow $2 $1_crontab_t:process getattr;
|
|
|
|
dontaudit $2 $1_crontab_t:process ptrace;
|
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# for ^Z
|
2005-08-30 15:48:57 +00:00
|
|
|
allow $2 $1_crontab_t:process signal;
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# Allow crond to read those crontabs in cron spool.
|
2005-09-22 21:59:50 +00:00
|
|
|
allow crond_t $1_cron_spool_t:file create_file_perms;
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# dac_override is to create the file in the directory under /tmp
|
|
|
|
allow $1_crontab_t self:capability { setuid setgid chown dac_override };
|
2005-06-09 15:32:23 +00:00
|
|
|
allow $1_crontab_t self:process signal_perms;
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# create files in /var/spool/cron
|
2005-06-09 15:32:23 +00:00
|
|
|
allow $1_crontab_t $1_cron_spool_t:file create_file_perms;
|
|
|
|
allow $1_crontab_t cron_spool_t:dir rw_dir_perms;
|
2005-10-19 14:36:04 +00:00
|
|
|
type_transition $1_crontab_t $1_cron_spool_t:file $1_cron_spool_t;
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# crontab signals crond by updating the mtime on the spooldir
|
|
|
|
allow $1_crontab_t cron_spool_t:dir setattr;
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-09-16 19:36:10 +00:00
|
|
|
kernel_read_system_state($1_crontab_t)
|
|
|
|
|
2005-07-13 18:29:08 +00:00
|
|
|
# for the checks used by crontab -u
|
|
|
|
selinux_dontaudit_search_fs($1_crontab_t)
|
|
|
|
|
2005-06-10 01:01:13 +00:00
|
|
|
fs_getattr_xattr_fs($1_crontab_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-08-30 15:48:57 +00:00
|
|
|
# Run helper programs as the user domain
|
|
|
|
corecmd_bin_domtrans($1_crontab_t,$2)
|
|
|
|
corecmd_sbin_domtrans($1_crontab_t,$2)
|
|
|
|
corecmd_shell_domtrans($1_crontab_t,$2)
|
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
domain_use_wide_inherit_fd($1_crontab_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-29 14:26:41 +00:00
|
|
|
files_read_etc_files($1_crontab_t)
|
2005-07-13 18:29:08 +00:00
|
|
|
files_dontaudit_search_pids($1_crontab_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
libs_use_ld_so($1_crontab_t)
|
|
|
|
libs_use_shared_libs($1_crontab_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
logging_send_syslog_msg($1_crontab_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
miscfiles_read_localization($1_crontab_t)
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-09-16 19:36:10 +00:00
|
|
|
seutil_read_config($1_crontab_t)
|
2005-07-13 18:29:08 +00:00
|
|
|
|
2005-08-30 15:48:57 +00:00
|
|
|
userdom_manage_user_tmp_dirs($1,$1_crontab_t)
|
|
|
|
userdom_manage_user_tmp_files($1,$1_crontab_t)
|
|
|
|
# Access terminals.
|
|
|
|
userdom_use_user_terminals($1,$1_crontab_t)
|
|
|
|
# Read user crontabs
|
|
|
|
userdom_read_user_home_files($1,$1_crontab_t)
|
2005-08-25 20:27:20 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
tunable_policy(`fcron_crond', `
|
|
|
|
# fcron wants an instant update of a crontab change for the administrator
|
|
|
|
# also crontab does a security check for crontab -u
|
|
|
|
dontaudit $1_crontab_t crond_t:process signal;
|
|
|
|
')
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
ifdef(`TODO',`
|
2005-08-25 20:27:20 +00:00
|
|
|
allow $1_crond_t tmp_t:dir rw_dir_perms;
|
|
|
|
type_transition $1_crond_t $1_tmp_t:{ file dir } $1_tmp_t;
|
2005-05-11 20:55:40 +00:00
|
|
|
|
2005-08-30 15:48:57 +00:00
|
|
|
# Read user crontabs
|
2005-06-03 12:25:14 +00:00
|
|
|
dontaudit $1_crontab_t $1_home_dir_t:dir write;
|
|
|
|
|
|
|
|
# Inherit and use descriptors from gnome-pty-helper.
|
|
|
|
ifdef(`gnome-pty-helper.te', `allow $1_crontab_t $1_gph_t:fd use;')
|
|
|
|
') dnl endif TODO
|
2005-05-11 19:05:50 +00:00
|
|
|
')
|
2005-05-19 21:06:06 +00:00
|
|
|
|
2005-06-24 20:37:09 +00:00
|
|
|
#######################################
|
|
|
|
## <summary>
|
|
|
|
## The administrative functions template for the cron module.
|
|
|
|
## </summary>
|
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## This template creates rules for administrating the cron service,
|
|
|
|
## allowing the specified user to manage other user crontabs.
|
|
|
|
## </p>
|
|
|
|
## </desc>
|
|
|
|
## <param name="userdomain_prefix">
|
|
|
|
## The prefix of the user domain (e.g., user
|
|
|
|
## is the prefix for user_t).
|
|
|
|
## </param>
|
2005-05-19 21:06:06 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
template(`cron_admin_template',`
|
2005-10-19 14:36:04 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute cron_spool_type;
|
|
|
|
')
|
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# Allow our crontab domain to unlink a user cron spool file.
|
2005-07-13 18:29:08 +00:00
|
|
|
allow $1_crontab_t cron_spool_type:file { getattr read unlink };
|
|
|
|
|
|
|
|
logging_read_generic_logs($1_crond_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
# Manipulate other users crontab.
|
2005-06-14 20:48:34 +00:00
|
|
|
selinux_get_fs_mount($1_crontab_t)
|
|
|
|
selinux_validate_context($1_crontab_t)
|
|
|
|
selinux_compute_access_vector($1_crontab_t)
|
|
|
|
selinux_compute_create_context($1_crontab_t)
|
|
|
|
selinux_compute_relabel_context($1_crontab_t)
|
|
|
|
selinux_compute_user_contexts($1_crontab_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
tunable_policy(`fcron_crond', `
|
|
|
|
# fcron wants an instant update of a crontab change for the administrator
|
|
|
|
# also crontab does a security check for crontab -u
|
|
|
|
allow $1_crontab_t self:process setfscreate;
|
2005-06-14 20:48:34 +00:00
|
|
|
selinux_get_fs_mount($1_crontab_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
')
|
2005-05-19 21:06:06 +00:00
|
|
|
')
|
2005-05-31 21:25:45 +00:00
|
|
|
|
|
|
|
########################################
|
2005-06-28 17:32:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Make the specified program domain accessable
|
|
|
|
## from the system cron jobs.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process to transition to.
|
|
|
|
## </param>
|
|
|
|
## <param name="entrypoint">
|
|
|
|
## The type of the file used as an entrypoint to this domain.
|
|
|
|
## </param>
|
2005-05-31 21:25:45 +00:00
|
|
|
#
|
2005-06-28 17:32:57 +00:00
|
|
|
interface(`cron_system_entry',`
|
|
|
|
gen_require(`
|
|
|
|
type crond_t, system_crond_t;
|
|
|
|
class fd use;
|
|
|
|
class fifo_file rw_file_perms;
|
|
|
|
class process sigchld;
|
|
|
|
')
|
|
|
|
|
|
|
|
domain_auto_trans(system_crond_t, $2, $1)
|
|
|
|
|
|
|
|
# cjp: perhaps these four rules from the old
|
|
|
|
# domain_auto_trans are not needed?
|
|
|
|
allow system_crond_t $1:fd use;
|
|
|
|
allow $1 system_crond_t:fd use;
|
|
|
|
allow $1 system_crond_t:fifo_file rw_file_perms;
|
|
|
|
allow $1 system_crond_t:process sigchld;
|
|
|
|
|
2005-10-21 19:36:49 +00:00
|
|
|
allow $1 crond_t:fifo_file rw_file_perms;
|
2005-06-28 17:32:57 +00:00
|
|
|
allow $1 crond_t:fd use;
|
|
|
|
allow $1 crond_t:process sigchld;
|
|
|
|
')
|
|
|
|
|
2005-09-02 19:11:07 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Inherit and use a file descriptor
|
|
|
|
## from the cron daemon.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_use_fd',`
|
|
|
|
gen_require(`
|
|
|
|
type crond_t;
|
|
|
|
class fd use;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 crond_t:fd use;
|
|
|
|
')
|
|
|
|
|
2005-08-30 20:47:41 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Send a SIGCHLD signal to the cron daemon.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_sigchld',`
|
|
|
|
gen_require(`
|
|
|
|
type crond_t;
|
|
|
|
class process sigchld;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 crond_t:process sigchld;
|
|
|
|
')
|
|
|
|
|
2005-06-30 18:54:08 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
2005-09-02 19:11:07 +00:00
|
|
|
## Read a cron daemon unnamed pipe.
|
2005-06-30 18:54:08 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-09-02 19:11:07 +00:00
|
|
|
## Domain allowed access.
|
2005-06-30 18:54:08 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_read_pipe',`
|
|
|
|
gen_require(`
|
|
|
|
type crond_t;
|
|
|
|
class file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 crond_t:file r_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-09-02 19:11:07 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write a cron daemon unnamed pipe.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_rw_pipe',`
|
|
|
|
gen_require(`
|
|
|
|
type crond_t;
|
|
|
|
')
|
|
|
|
|
2005-10-23 20:18:36 +00:00
|
|
|
allow $1 crond_t:fifo_file { read write };
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, and write a cron daemon TCP socket.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
# cjp: need to fix this name
|
|
|
|
interface(`cron_crw_tcp_socket',`
|
|
|
|
gen_require(`
|
|
|
|
type crond_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 crond_t:tcp_socket { create read write };
|
2005-09-02 19:11:07 +00:00
|
|
|
')
|
|
|
|
|
2005-06-28 20:54:49 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Search the directory containing user cron tables.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process to performing this action.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_search_spool',`
|
|
|
|
gen_require(`
|
|
|
|
type cron_spool_t;
|
|
|
|
class dir search;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_spool($1)
|
|
|
|
allow $1 cron_spool_t:dir search;
|
|
|
|
')
|
2005-08-30 20:47:41 +00:00
|
|
|
|
2005-09-02 19:11:07 +00:00
|
|
|
########################################
|
2005-10-21 19:36:49 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute APM in the apm domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_domtrans_anacron_system_job',`
|
|
|
|
gen_require(`
|
|
|
|
type system_crond_t, anacron_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
domain_auto_trans($1,anacron_exec_t,system_crond_t)
|
|
|
|
|
|
|
|
allow $1 system_crond_t:fd use;
|
|
|
|
allow system_crond_t $1:fd use;
|
|
|
|
allow system_crond_t $1:fifo_file rw_file_perms;
|
|
|
|
allow system_crond_t $1:process sigchld;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-09-02 19:11:07 +00:00
|
|
|
## <summary>
|
|
|
|
## Inherit and use a file descriptor
|
|
|
|
## from system cron jobs.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_use_system_job_fd',`
|
|
|
|
gen_require(`
|
|
|
|
type system_crond_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 system_crond_t:fd use;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2005-10-23 20:18:36 +00:00
|
|
|
## Write a system cron job unnamed pipe.
|
2005-09-02 19:11:07 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_write_system_job_pipe',`
|
|
|
|
gen_require(`
|
|
|
|
type system_crond_t;
|
|
|
|
class file write;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 system_crond_t:file write;
|
|
|
|
')
|
|
|
|
|
2005-10-23 20:18:36 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write a system cron job unnamed pipe.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_rw_system_job_pipe',`
|
|
|
|
gen_require(`
|
|
|
|
type system_crond_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 system_crond_t:file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-08-30 20:47:41 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read temporary files from the system cron jobs.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`cron_read_system_job_tmp_files',`
|
|
|
|
gen_require(`
|
|
|
|
type system_crond_tmp_t;
|
|
|
|
class file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_tmp($1)
|
|
|
|
allow $1 system_crond_tmp_t:file r_file_perms;
|
|
|
|
')
|