selinux-refpolicy/refpolicy/policy/modules/system/udev.if

60 lines
1.2 KiB
Plaintext
Raw Normal View History

2005-04-28 15:45:32 +00:00
#######################################
#
# udev_transition(domain)
2005-04-28 15:45:32 +00:00
#
define(`udev_transition',`
requires_block_template(`$0'_depend)
allow $1 udev_exec_t:file { getattr read execute };
allow $1 udev_t:process transition;
type_transition $1 udev_exec_t:process udev_t;
dontaudit $1 udev_t:process { noatsecure siginh rlimitinh };
allow $1 udev_t:fd use;
allow udev_t $1:fd use;
allow udev_t $1:fifo_file rw_file_perms;
allow udev_t $1:process sigchld;
2005-04-28 15:45:32 +00:00
')
define(`udev_transition_depend',`
type udev_t, udev_exec_t;
class file { getattr read execute };
class process { transition noatsecure siginh rlimitinh sigchld };
class fd use;
class fifo_file rw_file_perms;
2005-04-28 15:45:32 +00:00
')
########################################
#
# udev_read_database(domain)
2005-04-28 15:45:32 +00:00
#
define(`udev_read_database',`
requires_block_template(`$0'_depend)
allow $1 udev_tdb_t:file { getattr read };
2005-04-28 15:45:32 +00:00
')
define(`udev_read_database_depend',`
type udev_tdb_t;
class file { getattr read };
2005-04-28 15:45:32 +00:00
')
2005-05-13 14:37:13 +00:00
########################################
#
# udev_modify_database(domain)
#
define(`udev_modify_database',`
requires_block_template(`$0'_depend)
allow $1 udev_tdb_t:file { getattr read write append };
2005-05-13 14:37:13 +00:00
')
define(`udev_modify_database_depend',`
type udev_tdb_t;
class file { getattr read write append };
2005-05-13 14:37:13 +00:00
')