add clockspeed from petre rodan

This commit is contained in:
Chris PeBenito 2006-05-08 14:16:10 +00:00
parent bf2f29a845
commit 46bec43425
5 changed files with 147 additions and 0 deletions

View File

@ -46,6 +46,7 @@
calamaris
cipe
clamav (Erich Schubert)
clockspeed (Petre Rodan)
courier
dante
dcc

View File

@ -0,0 +1,14 @@
#
# /usr
#
/usr/bin/clockadd -- gen_context(system_u:object_r:clockspeed_cli_exec_t,s0)
/usr/bin/clockspeed -- gen_context(system_u:object_r:clockspeed_srv_exec_t,s0)
/usr/bin/sntpclock -- gen_context(system_u:object_r:clockspeed_cli_exec_t,s0)
/usr/bin/taiclock -- gen_context(system_u:object_r:clockspeed_cli_exec_t,s0)
/usr/bin/taiclockd -- gen_context(system_u:object_r:clockspeed_srv_exec_t,s0)
#
# /var
#
/var/lib/clockspeed(/.*)? gen_context(system_u:object_r:clockspeed_var_lib_t,s0)

View File

@ -0,0 +1,53 @@
## <summary>Clockspeed simple network time protocol client</summary>
########################################
## <summary>
## Execute clockspeed utilities in the clockspeed_cli domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`clockspeed_domtrans_cli',`
gen_require(`
type clockspeed_cli_t, clockspeed_cli_exec_t;
')
domain_auto_trans($1, clockspeed_cli_exec_t, clockspeed_cli_t)
allow clockspeed_cli_t $1:fd use;
allow clockspeed_cli_t $1:fifo_file { read write };
allow clockspeed_cli_t $1:process sigchld;
')
########################################
## <summary>
## Allow the specified role the clockspeed_cli domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <param name="role">
## <summary>
## The role to be allowed the clockspeed_cli domain.
## </summary>
## </param>
## <param name="terminal">
## <summary>
## The type of the terminal allow the clockspeed_cli domain to use.
## </summary>
## </param>
#
template(`clockspeed_run_cli',`
gen_require(`
type clockspeed_cli_t;
')
role $2 types clockspeed_cli_t;
clockspeed_domtrans_cli($1)
allow clockspeed_cli_t $3:chr_file { getattr read write ioctl };
')

View File

@ -0,0 +1,75 @@
policy_module(clockspeed,1.0.0)
########################################
#
# Declarations
#
type clockspeed_cli_t;
type clockspeed_cli_exec_t;
domain_type(clockspeed_cli_t)
domain_entry_file(clockspeed_cli_t,clockspeed_cli_exec_t)
type clockspeed_srv_t;
type clockspeed_srv_exec_t;
init_daemon_domain(clockspeed_srv_t, clockspeed_srv_exec_t)
type clockspeed_var_lib_t;
files_type(clockspeed_var_lib_t)
########################################
#
# Client local policy
#
allow clockspeed_cli_t self:capability sys_time;
allow clockspeed_cli_t self:udp_socket create_socket_perms;
allow clockspeed_cli_t clockspeed_var_lib_t:dir search;
allow clockspeed_cli_t clockspeed_var_lib_t:file { getattr read };
corenet_non_ipsec_sendrecv(clockspeed_cli_t)
corenet_udp_sendrecv_generic_if(clockspeed_cli_t)
corenet_udp_sendrecv_generic_node(clockspeed_cli_t)
corenet_udp_sendrecv_ntp_port(clockspeed_cli_t)
files_list_var_lib(clockspeed_cli_t)
files_read_etc_files(clockspeed_cli_t)
libs_use_ld_so(clockspeed_cli_t)
libs_use_shared_libs(clockspeed_cli_t)
miscfiles_read_localization(clockspeed_cli_t)
########################################
#
# Server local policy
#
allow clockspeed_srv_t self:capability { sys_time net_bind_service };
allow clockspeed_srv_t self:udp_socket create_socket_perms;
allow clockspeed_srv_t self:unix_dgram_socket create_socket_perms;
allow clockspeed_srv_t self:unix_stream_socket create_socket_perms;
allow clockspeed_srv_t clockspeed_var_lib_t:dir rw_dir_perms;
allow clockspeed_srv_t clockspeed_var_lib_t:file create_file_perms;
allow clockspeed_srv_t clockspeed_var_lib_t:fifo_file create_file_perms;
corenet_non_ipsec_sendrecv(clockspeed_srv_t)
corenet_udp_sendrecv_generic_if(clockspeed_srv_t)
corenet_udp_sendrecv_generic_node(clockspeed_srv_t)
corenet_udp_sendrecv_ntp_port(clockspeed_srv_t)
corenet_udp_bind_inaddr_any_node(clockspeed_srv_t)
corenet_udp_bind_clockspeed_port(clockspeed_srv_t)
files_read_etc_files(clockspeed_srv_t)
files_list_var_lib(clockspeed_srv_t)
libs_use_ld_so(clockspeed_srv_t)
libs_use_shared_libs(clockspeed_srv_t)
miscfiles_read_localization(clockspeed_srv_t)
optional_policy(`
daemontools_service_domain(clockspeed_srv_t,clockspeed_srv_exec_t)
')

View File

@ -231,6 +231,10 @@ ifdef(`targeted_policy',`
clock_run(sysadm_t,sysadm_r,admin_terminal)
')
optional_policy(`
clockspeed_run_cli(sysadm_t,sysadm_r,admin_terminal)
')
optional_policy(`
certwatach_run(sysadm_t,sysadm_r,admin_terminal)
')