78 lines
1.5 KiB
Plaintext
78 lines
1.5 KiB
Plaintext
## <summary>Policy for iptables.</summary>
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute iptables in the iptables domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`iptables_domtrans',`
|
|
gen_require(`
|
|
type iptables_t, iptables_exec_t;
|
|
')
|
|
|
|
corecmd_search_bin($1)
|
|
domtrans_pattern($1,iptables_exec_t,iptables_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute iptables in the iptables domain, and
|
|
## allow the specified role the iptables domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
## <param name="role">
|
|
## <summary>
|
|
## The role to be allowed the iptables domain.
|
|
## </summary>
|
|
## </param>
|
|
## <param name="terminal">
|
|
## <summary>
|
|
## The type of the terminal allow the iptables domain to use.
|
|
## </summary>
|
|
## </param>
|
|
## <rolecap/>
|
|
#
|
|
interface(`iptables_run',`
|
|
gen_require(`
|
|
type iptables_t;
|
|
')
|
|
|
|
iptables_domtrans($1)
|
|
role $2 types iptables_t;
|
|
allow iptables_t $3:chr_file rw_term_perms;
|
|
|
|
sysnet_run_ifconfig(iptables_t, $2, $3)
|
|
|
|
optional_policy(`
|
|
modutils_run_insmod(iptables_t, $2, $3)
|
|
')
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute iptables in the caller domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`iptables_exec',`
|
|
gen_require(`
|
|
type iptables_exec_t;
|
|
')
|
|
|
|
corecmd_search_bin($1)
|
|
can_exec($1,iptables_exec_t)
|
|
')
|