2018-06-23 13:00:56 +00:00
|
|
|
## <summary>RPC port mapping service.</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute portmap helper in the helper domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed to transition.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`portmap_domtrans_helper',`
|
|
|
|
gen_require(`
|
|
|
|
type portmap_helper_t, portmap_helper_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
corecmd_search_bin($1)
|
|
|
|
domtrans_pattern($1, portmap_helper_exec_t, portmap_helper_t)
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute portmap helper in the helper
|
|
|
|
## domain, and allow the specified role
|
|
|
|
## the helper domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed to transition.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
|
|
|
## Role allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`portmap_run_helper',`
|
|
|
|
gen_require(`
|
|
|
|
attribute_role portmap_helper_roles;
|
|
|
|
')
|
|
|
|
|
|
|
|
portmap_domtrans_helper($1)
|
|
|
|
roleattribute $2 portmap_helper_roles;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## All of the rules required to
|
|
|
|
## administrate an portmap environment.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
|
|
|
## Role allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`portmap_admin',`
|
|
|
|
gen_require(`
|
|
|
|
type portmap_t, portmap_initrc_exec_t, portmap_helper_t;
|
2019-09-08 20:55:02 +00:00
|
|
|
type portmap_runtime_t, portmap_tmp_t;
|
2018-06-23 13:00:56 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 { portmap_t portmap_helper_t }:process { ptrace signal_perms };
|
|
|
|
ps_process_pattern($1, { portmap_t portmap_helper_t })
|
|
|
|
|
|
|
|
init_startstop_service($1, $2, portmap_t, portmap_initrc_exec_t)
|
|
|
|
|
2020-06-27 21:11:48 +00:00
|
|
|
files_search_runtime($1)
|
2019-09-08 20:55:02 +00:00
|
|
|
admin_pattern($1, portmap_runtime_t)
|
2018-06-23 13:00:56 +00:00
|
|
|
|
|
|
|
files_search_tmp($1)
|
|
|
|
admin_pattern($1, portmap_tmp_t)
|
|
|
|
')
|