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

82 lines
1.5 KiB
Plaintext
Raw Normal View History

2005-08-17 21:28:31 +00:00
## <summary>General Purpose Mouse driver</summary>
2006-01-20 22:02:24 +00:00
########################################
## <summary>
## Connect to GPM over a unix domain
## stream socket.
## </summary>
## <param name="domain">
## <summary>
2006-01-20 22:02:24 +00:00
## Domain allowed access.
## </summary>
2006-01-20 22:02:24 +00:00
## </param>
#
interface(`gpm_stream_connect',`
gen_require(`
type gpmctl_t, gpm_t;
')
dev_list_all_dev_nodes($1)
stream_connect_pattern($1, gpmctl_t, gpmctl_t, gpm_t)
2006-01-20 22:02:24 +00:00
')
2005-08-17 21:28:31 +00:00
########################################
## <summary>
## Get the attributes of the GPM
## control channel named socket.
## </summary>
## <param name="domain">
## <summary>
2005-08-17 21:28:31 +00:00
## Domain allowed access.
## </summary>
2005-08-17 21:28:31 +00:00
## </param>
#
interface(`gpm_getattr_gpmctl',`
gen_require(`
type gpmctl_t;
')
dev_list_all_dev_nodes($1)
allow $1 gpmctl_t:sock_file getattr;
')
########################################
## <summary>
## Do not audit attempts to get the
## attributes of the GPM control channel
## named socket.
## </summary>
## <param name="domain">
## <summary>
## Domain to not audit.
## </summary>
2005-08-17 21:28:31 +00:00
## </param>
#
interface(`gpm_dontaudit_getattr_gpmctl',`
gen_require(`
type gpmctl_t;
')
2005-09-23 19:38:34 +00:00
dontaudit $1 gpmctl_t:sock_file getattr;
2005-08-17 21:28:31 +00:00
')
########################################
## <summary>
## Set the attributes of the GPM
## control channel named socket.
## </summary>
## <param name="domain">
## <summary>
2005-08-17 21:28:31 +00:00
## Domain allowed access.
## </summary>
2005-08-17 21:28:31 +00:00
## </param>
#
interface(`gpm_setattr_gpmctl',`
gen_require(`
type gpmctl_t;
')
dev_list_all_dev_nodes($1)
allow $1 gpmctl_t:sock_file setattr;
')