selinux-policy/policy/modules/services/openvpn.if

93 lines
1.8 KiB
Plaintext
Raw Normal View History

2006-04-14 20:07:01 +00:00
## <summary>full-featured SSL VPN solution</summary>
2007-09-06 18:34:40 +00:00
########################################
## <summary>
## Execute OPENVPN clients in the openvpn domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`openvpn_domtrans',`
gen_require(`
type openvpn_t, openvpn_exec_t;
')
domtrans_pattern($1, openvpn_exec_t, openvpn_t)
')
########################################
## <summary>
## Execute OPENVPN clients in the openvpn domain, and
## allow the specified role the openvpn domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <param name="role">
## <summary>
## The role to be allowed the openvpn domain.
## </summary>
## </param>
## <param name="terminal">
## <summary>
## The type of the terminal allow the openvpn domain to use.
## </summary>
## </param>
## <rolecap/>
#
interface(`openvpn_run',`
gen_require(`
type openvpn_t;
')
openvpn_domtrans($1)
role $2 types openvpn_t;
allow openvpn_t $3:chr_file rw_term_perms;
')
########################################
## <summary>
## Send generic signals to OPENVPN clients.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`openvpn_signal',`
gen_require(`
type openvpn_t;
')
allow $1 openvpn_t:process signal;
')
2006-04-14 20:07:01 +00:00
########################################
## <summary>
## Allow the specified domain to read
## OpenVPN configuration files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2006-04-14 20:07:01 +00:00
#
interface(`openvpn_read_config',`
gen_require(`
type openvpn_etc_t;
')
files_search_etc($1)
2006-12-12 20:08:08 +00:00
allow $1 openvpn_etc_t:dir list_dir_perms;
read_files_pattern($1, openvpn_etc_t, openvpn_etc_t)
read_lnk_files_pattern($1, openvpn_etc_t, openvpn_etc_t)
2006-04-14 20:07:01 +00:00
')