2005-09-02 20:50:54 +00:00
|
|
|
## <summary>Dictionary daemon</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Use dictionary services by connecting
|
2006-08-15 20:00:58 +00:00
|
|
|
## over TCP. (Deprecated)
|
2005-09-02 20:50:54 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-09-02 20:50:54 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-09-02 20:50:54 +00:00
|
|
|
## </param>
|
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`dictd_tcp_connect',`
|
2006-08-15 20:00:58 +00:00
|
|
|
refpolicywarn(`$0($*) has been deprecated.')
|
2005-09-02 20:50:54 +00:00
|
|
|
')
|
2008-10-08 15:50:03 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## All of the rules required to administrate
|
|
|
|
## an dictd environment
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
|
|
|
## The role to be allowed to manage the dictd domain.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`dictd_admin',`
|
|
|
|
gen_require(`
|
|
|
|
type dictd_t, dictd_etc_t, dictd_var_lib_t;
|
|
|
|
type dictd_var_run_t, dictd_initrc_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 dictd_t:process { ptrace signal_perms };
|
|
|
|
ps_process_pattern($1, dictd_t)
|
|
|
|
|
|
|
|
init_labeled_script_domtrans($1, dictd_initrc_exec_t)
|
|
|
|
domain_system_change_exemption($1)
|
|
|
|
role_transition $2 dictd_initrc_exec_t system_r;
|
|
|
|
allow $2 system_r;
|
|
|
|
|
|
|
|
files_list_etc($1)
|
|
|
|
admin_pattern($1, dictd_etc_t)
|
|
|
|
|
|
|
|
files_list_var_lib($1)
|
|
|
|
admin_pattern($1, dictd_var_lib_t)
|
|
|
|
|
|
|
|
files_list_pids($1)
|
|
|
|
admin_pattern($1, dictd_var_run_t)
|
|
|
|
')
|