2006-05-02 17:42:41 +00:00
|
|
|
## <summary>OpenCA - Open Certificate Authority</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute the OpenCA program with
|
|
|
|
## a domain transition.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-05 13:03:19 +00:00
|
|
|
## Domain allowed to transition.
|
2006-05-02 17:42:41 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`openca_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type openca_ca_t, openca_ca_exec_t, openca_usr_share_t;
|
|
|
|
')
|
|
|
|
|
2009-06-26 14:40:13 +00:00
|
|
|
domtrans_pattern($1, openca_ca_exec_t, openca_ca_t)
|
2007-02-07 22:10:45 +00:00
|
|
|
allow $1 openca_usr_share_t:dir search_dir_perms;
|
|
|
|
files_search_usr($1)
|
2006-05-02 17:42:41 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Send OpenCA generic signals.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`openca_signal',`
|
|
|
|
gen_require(`
|
|
|
|
type openca_ca_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 openca_ca_t:process signal;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Send OpenCA stop signals.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`openca_sigstop',`
|
|
|
|
gen_require(`
|
|
|
|
type openca_ca_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 openca_ca_t:process sigstop;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Kill OpenCA.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`openca_kill',`
|
|
|
|
gen_require(`
|
|
|
|
type openca_ca_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 openca_ca_t:process sigkill;
|
|
|
|
')
|