2005-07-14 18:15:47 +00:00
|
|
|
## <summary>TCP/IP encryption</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute ipsec in the ipsec domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-14 18:15:47 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-14 18:15:47 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`ipsec_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type ipsec_t, ipsec_exec_t;
|
|
|
|
')
|
|
|
|
|
2006-12-12 20:08:08 +00:00
|
|
|
domtrans_pattern($1,ipsec_exec_t,ipsec_t)
|
2005-07-14 18:15:47 +00:00
|
|
|
')
|
2005-07-18 18:31:49 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2005-08-03 15:16:33 +00:00
|
|
|
## Connect to IPSEC using a unix domain stream socket.
|
2005-07-18 18:31:49 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## </param>
|
|
|
|
#
|
2005-08-03 15:16:33 +00:00
|
|
|
interface(`ipsec_stream_connect',`
|
2005-07-18 18:31:49 +00:00
|
|
|
gen_require(`
|
2005-08-03 15:16:33 +00:00
|
|
|
type ipsec_t, ipsec_var_run_t;
|
2005-07-18 18:31:49 +00:00
|
|
|
')
|
|
|
|
|
2005-08-03 15:16:33 +00:00
|
|
|
files_search_pids($1)
|
2006-12-12 20:08:08 +00:00
|
|
|
stream_connect_pattern($1,ipsec_var_run_t,ipsec_var_run_t,ipsec_t)
|
2005-07-18 18:31:49 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Get the attributes of an IPSEC key socket.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## </param>
|
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`ipsec_getattr_key_sockets',`
|
2005-07-18 18:31:49 +00:00
|
|
|
gen_require(`
|
|
|
|
type ipsec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 ipsec_t:key_socket getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute the IPSEC management program in the caller domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`ipsec_exec_mgmt',`
|
|
|
|
gen_require(`
|
|
|
|
type ipsec_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
can_exec($1,ipsec_exec_t)
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read the IPSEC configuration
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## </param>
|
2006-09-06 22:07:25 +00:00
|
|
|
## <rolecap/>
|
2005-07-18 18:31:49 +00:00
|
|
|
#
|
|
|
|
interface(`ipsec_read_config',`
|
|
|
|
gen_require(`
|
|
|
|
type ipsec_conf_file_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_etc($1)
|
2006-12-12 20:08:08 +00:00
|
|
|
allow $1 ipsec_conf_file_t:file read_file_perms;
|
2005-07-18 18:31:49 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, write, and delete the IPSEC pid files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-18 18:31:49 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`ipsec_manage_pid',`
|
|
|
|
gen_require(`
|
|
|
|
type ipsec_var_run_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_pids($1)
|
2006-12-12 20:08:08 +00:00
|
|
|
manage_files_pattern($1,ipsec_var_run_t,ipsec_var_run_t)
|
2005-07-18 18:31:49 +00:00
|
|
|
')
|