## TCP/IP encryption ######################################## ## ## Execute ipsec in the ipsec domain. ## ## ## The type of the process performing this action. ## # interface(`ipsec_domtrans',` gen_require(` type ipsec_t, ipsec_exec_t; class process sigchld; class fd use; class fifo_file rw_file_perms; ') domain_auto_trans($1,ipsec_exec_t,ipsec_t) allow $1 ipsec_t:fd use; allow ipsec_t $1:fd use; allow ipsec_t $1:fifo_file rw_file_perms; allow ipsec_t $1:process sigchld; ') ######################################## ## ## Connect to an IPSEC unix domain stream socket. ## ## ## The type of the process performing this action. ## # interface(`ipsec_connectto_unix_stream_socket',` gen_require(` type ipsec_t; class unix_stream_socket connectto; ') allow $1 ipsec_t:unix_stream_socket connectto; ') ######################################## ## ## Get the attributes of an IPSEC key socket. ## ## ## The type of the process performing this action. ## # interface(`ipsec_getattr_key_socket',` gen_require(` type ipsec_t; class key_socket getattr; ') allow $1 ipsec_t:key_socket getattr; ') ######################################## ## ## Execute the IPSEC management program in the caller domain. ## ## ## The type of the process performing this action. ## # interface(`ipsec_exec_mgmt',` gen_require(` type ipsec_exec_t; ') can_exec($1,ipsec_exec_t) ') ######################################## ## ## Read the IPSEC configuration ## ## ## The type of the process performing this action. ## # interface(`ipsec_read_config',` gen_require(` type ipsec_conf_file_t; class file r_file_perms; ') files_search_etc($1) allow $1 ipsec_conf_file_t:file r_file_perms; ') ######################################## ## ## Create, read, write, and delete the IPSEC pid files. ## ## ## The type of the process performing this action. ## # interface(`ipsec_manage_pid',` gen_require(` type ipsec_var_run_t; class dir rw_dir_perms; class file create_file_perms; ') files_search_pids($1) allow $1 ipsec_var_run_t:dir rw_dir_perms; allow $1 ipsec_var_run_t:file create_file_perms; ')