## Network time protocol daemon
########################################
##
## NTP stub interface. No access allowed.
##
##
## N/A
##
#
interface(`ntp_stub',`
gen_require(`
type ntpd_t;
')
')
########################################
##
## Execute ntp server in the ntpd domain.
##
##
## The type of the process performing this action.
##
#
interface(`ntp_domtrans',`
gen_require(`
type ntpd_t, ntpd_exec_t;
class process sigchld;
class fd use;
class fifo_file rw_file_perms;
')
corecmd_search_sbin($1)
domain_auto_trans($1,ntpd_exec_t,ntpd_t)
allow $1 ntpd_t:fd use;
allow ntpd_t $1:fd use;
allow ntpd_t $1:fifo_file rw_file_perms;
allow ntpd_t $1:process sigchld;
')
########################################
##
## Execute ntp server in the ntpd domain.
##
##
## The type of the process performing this action.
##
#
interface(`ntp_domtrans_ntpdate',`
gen_require(`
type ntpd_t, ntpdate_exec_t;
class process sigchld;
class fd use;
class fifo_file rw_file_perms;
')
corecmd_search_sbin($1)
domain_auto_trans($1,ntpdate_exec_t,ntpd_t)
allow $1 ntpd_t:fd use;
allow ntpd_t $1:fd use;
allow ntpd_t $1:fifo_file rw_file_perms;
allow ntpd_t $1:process sigchld;
')