## Virtual Private Networking client
########################################
##
## Execute VPN clients in the vpnc domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`vpn_domtrans',`
gen_require(`
type vpnc_t, vpnc_exec_t;
')
domtrans_pattern($1, vpnc_exec_t,vpnc_t)
')
########################################
##
## Execute VPN clients in the vpnc domain, and
## allow the specified role the vpnc domain.
##
##
##
## Domain allowed access.
##
##
##
##
## The role to be allowed the vpnc domain.
##
##
##
##
## The type of the terminal allow the vpnc domain to use.
##
##
##
#
interface(`vpn_run',`
gen_require(`
type vpnc_t;
')
vpn_domtrans($1)
role $2 types vpnc_t;
allow vpnc_t $3:chr_file rw_term_perms;
')
########################################
##
## Send generic signals to VPN clients.
##
##
##
## Domain allowed access.
##
##
#
interface(`vpn_signal',`
gen_require(`
type vpnc_t;
')
allow $1 vpnc_t:process signal;
')
########################################
##
## Send and receive messages from
## Vpnc over dbus.
##
##
##
## Domain allowed access.
##
##
#
interface(`vpnc_dbus_chat',`
gen_require(`
type vpnc_t;
class dbus send_msg;
')
allow $1 vpnc_t:dbus send_msg;
allow vpnc_t $1:dbus send_msg;
')