Add separate x_pointer and x_keyboard classes inheriting from x_device.
This is needed to allow more fine-grained control over X devices without using different types. Using different types is problematic because devices act as subjects in the X Flask implementation, and subjects cannot be labeled through a type transition (since the output role is hardcoded to object_r). Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov>
This commit is contained in:
parent
808341bb9b
commit
e4928c5f79
|
@ -93,6 +93,33 @@ common database
|
|||
relabelto
|
||||
}
|
||||
|
||||
#
|
||||
# Define a common prefix for pointer and keyboard access vectors.
|
||||
#
|
||||
|
||||
common x_device
|
||||
{
|
||||
getattr
|
||||
setattr
|
||||
use
|
||||
read
|
||||
write
|
||||
getfocus
|
||||
setfocus
|
||||
bell
|
||||
force_cursor
|
||||
freeze
|
||||
grab
|
||||
manage
|
||||
list_property
|
||||
get_property
|
||||
set_property
|
||||
add
|
||||
remove
|
||||
create
|
||||
destroy
|
||||
}
|
||||
|
||||
#
|
||||
# Define the access vectors.
|
||||
#
|
||||
|
@ -525,27 +552,7 @@ class x_client
|
|||
}
|
||||
|
||||
class x_device
|
||||
{
|
||||
getattr
|
||||
setattr
|
||||
use
|
||||
read
|
||||
write
|
||||
getfocus
|
||||
setfocus
|
||||
bell
|
||||
force_cursor
|
||||
freeze
|
||||
grab
|
||||
manage
|
||||
list_property
|
||||
get_property
|
||||
set_property
|
||||
add
|
||||
remove
|
||||
create
|
||||
destroy
|
||||
}
|
||||
inherits x_device
|
||||
|
||||
class x_server
|
||||
{
|
||||
|
@ -802,3 +809,9 @@ class kernel_service
|
|||
|
||||
class tun_socket
|
||||
inherits socket
|
||||
|
||||
class x_pointer
|
||||
inherits x_device
|
||||
|
||||
class x_keyboard
|
||||
inherits x_device
|
||||
|
|
|
@ -121,4 +121,8 @@ class kernel_service
|
|||
|
||||
class tun_socket
|
||||
|
||||
# Still More SE-X Windows stuff
|
||||
class x_pointer # userspace
|
||||
class x_keyboard # userspace
|
||||
|
||||
# FLASK
|
||||
|
|
Loading…
Reference in New Issue