selinux-policy/policy/modules/apps/usernetctl.if

67 lines
1.4 KiB
Plaintext
Raw Normal View History

2006-01-17 23:01:14 +00:00
## <summary>User network interface configuration helper</summary>
########################################
## <summary>
## Execute usernetctl in the usernetctl domain.
## </summary>
## <param name="domain">
## <summary>
2006-01-17 23:01:14 +00:00
## Domain allowed access.
## </summary>
2006-01-17 23:01:14 +00:00
## </param>
#
interface(`usernetctl_domtrans',`
gen_require(`
type usernetctl_t, usernetctl_exec_t;
')
domtrans_pattern($1,usernetctl_exec_t,usernetctl_t)
2006-01-17 23:01:14 +00:00
')
########################################
## <summary>
## Execute usernetctl in the usernetctl domain, and
## allow the specified role the usernetctl domain.
## </summary>
## <param name="domain">
## <summary>
2006-01-17 23:01:14 +00:00
## Domain allowed access.
## </summary>
2006-01-17 23:01:14 +00:00
## </param>
## <param name="role">
## <summary>
2006-01-17 23:01:14 +00:00
## The role to be allowed the usernetctl domain.
## </summary>
2006-01-17 23:01:14 +00:00
## </param>
## <param name="terminal">
## <summary>
2006-01-17 23:01:14 +00:00
## The type of the terminal allow the usernetctl domain to use.
## </summary>
2006-01-17 23:01:14 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2006-01-17 23:01:14 +00:00
#
interface(`usernetctl_run',`
gen_require(`
type usernetctl_t;
')
usernetctl_domtrans($1)
role $2 types usernetctl_t;
allow usernetctl_t $3:chr_file rw_term_perms;
sysnet_run_ifconfig(usernetctl_t,$2,$3)
sysnet_run_dhcpc(usernetctl_t,$2,$3)
optional_policy(`
2006-01-17 23:01:14 +00:00
consoletype_run(usernetctl_t,$2,$3)
')
optional_policy(`
2006-01-17 23:01:14 +00:00
iptables_run(usernetctl_t,$2,$3)
')
optional_policy(`
2006-01-17 23:01:14 +00:00
modutils_run_insmod(usernetctl_t,$2,$3)
')
')