2006-01-18 19:09:48 +00:00
|
|
|
## <summary>Digital Certificate Tracking</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Domain transition to certwatch.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed to transition.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-18 19:09:48 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`certwatch_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type certwatch_exec_t, certwatch_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_usr($1)
|
2007-03-23 23:24:59 +00:00
|
|
|
corecmd_search_bin($1)
|
2008-07-23 21:38:39 +00:00
|
|
|
domtrans_pattern($1, certwatch_exec_t, certwatch_t)
|
2006-01-18 19:09:48 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute certwatch in the certwatch domain, and
|
|
|
|
## allow the specified role the certwatch domain,
|
|
|
|
## and use the caller's terminal. Has a sigchld
|
|
|
|
## backchannel.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed to transition.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-18 19:09:48 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-03 13:20:22 +00:00
|
|
|
## Role allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-18 19:09:48 +00:00
|
|
|
## </param>
|
2006-09-06 22:07:25 +00:00
|
|
|
## <rolecap/>
|
2006-01-18 19:09:48 +00:00
|
|
|
#
|
2007-08-30 15:01:48 +00:00
|
|
|
interface(`certwatch_run',`
|
2006-01-18 19:09:48 +00:00
|
|
|
gen_require(`
|
|
|
|
type certwatch_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
certwatch_domtrans($1)
|
|
|
|
role $2 types certwatch_t;
|
|
|
|
')
|
2007-08-30 15:01:48 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute certwatch in the certwatch domain, and
|
|
|
|
## allow the specified role the certwatch domain,
|
|
|
|
## and use the caller's terminal. Has a sigchld
|
|
|
|
## backchannel. (Deprecated)
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed to transition.
|
2007-08-30 15:01:48 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
2010-08-03 13:20:22 +00:00
|
|
|
## Role allowed access.
|
2007-08-30 15:01:48 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="terminal">
|
|
|
|
## <summary>
|
|
|
|
## The type of the terminal allow the certwatch domain to use.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`certwatach_run',`
|
|
|
|
refpolicywarn(`$0($*) has been deprecated, please use certwatch_run() instead.')
|
|
|
|
certwatch_run($*)
|
|
|
|
')
|