2005-05-31 19:52:57 +00:00
|
|
|
## <module name="hotplug" layer="system">
|
|
|
|
## <summary>
|
|
|
|
## Policy for hotplug system, for supporting the
|
|
|
|
## connection and disconnection of devices at runtime.
|
|
|
|
## </summary>
|
2005-05-02 19:24:29 +00:00
|
|
|
|
|
|
|
#######################################
|
|
|
|
#
|
|
|
|
# hotplug_transition(domain)
|
|
|
|
#
|
|
|
|
define(`hotplug_transition',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
allow $1 hotplug_exec_t:file { getattr read execute };
|
|
|
|
allow $1 hotplug_t:process transition;
|
|
|
|
type_transition $1 hotplug_exec_t:process hotplug_t;
|
|
|
|
dontaudit $1 hotplug_t:process { noatsecure siginh rlimitinh };
|
|
|
|
|
|
|
|
allow $1 hotplug_t:fd use;
|
|
|
|
allow hotplug_t $1:fd use;
|
|
|
|
allow hotplug_t $1:fifo_file rw_file_perms;
|
|
|
|
allow hotplug_t $1:process sigchld;
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`hotplug_transition_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type hotplug_t, hotplug_exec_t;
|
|
|
|
|
|
|
|
class file { getattr read execute };
|
|
|
|
class process { transition noatsecure siginh rlimitinh sigchld };
|
|
|
|
class fd use;
|
|
|
|
class fifo_file rw_file_perms;
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
#
|
|
|
|
# hotplug_execute(domain)
|
|
|
|
#
|
|
|
|
define(`hotplug_execute',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
allow $1 hotplug_exec_t:file { getattr read execute execute_no_trans };
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`hotplug_execute_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type hotplug_t;
|
|
|
|
|
|
|
|
class file { getattr read execute execute_no_trans };
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
#
|
|
|
|
# hotplug_use_file_descriptors(domain)
|
|
|
|
#
|
|
|
|
define(`hotplug_use_file_descriptors',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
allow $1 hotplug_t:fd use;
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`hotplug_use_file_descriptors_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type hotplug_t;
|
|
|
|
|
|
|
|
class fd use;
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
2005-05-04 17:01:46 +00:00
|
|
|
|
2005-05-09 21:07:53 +00:00
|
|
|
#######################################
|
|
|
|
#
|
|
|
|
# hotplug_ignore_use_file_descriptors(domain)
|
|
|
|
#
|
|
|
|
define(`hotplug_ignore_use_file_descriptors',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
dontaudit $1 hotplug_t:fd use;
|
2005-05-09 21:07:53 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`hotplug_ignore_use_file_descriptors_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type hotplug_t;
|
|
|
|
|
|
|
|
class fd use;
|
2005-05-09 21:07:53 +00:00
|
|
|
')
|
|
|
|
|
2005-05-04 17:01:46 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# hotplug_ignore_search_config_directory(domain)
|
|
|
|
#
|
|
|
|
define(`hotplug_ignore_search_config_directory',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
dontaudit $1 hotplug_etc_t:dir search;
|
2005-05-04 17:01:46 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`hotplug_ignore_search_config_directory_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type hotplug_etc_t;
|
|
|
|
|
|
|
|
class dir search;
|
2005-05-04 17:01:46 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-05-19 21:06:06 +00:00
|
|
|
## <interface name="hotplug_read_config">
|
|
|
|
## <description>
|
|
|
|
## Read the configuration files for hotplug.
|
|
|
|
## </description>
|
|
|
|
## <parameter name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </parameter>
|
|
|
|
## <infoflow type="read" weight="10"/>
|
|
|
|
## </interface>
|
2005-05-04 17:01:46 +00:00
|
|
|
#
|
|
|
|
define(`hotplug_read_config',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
files_search_general_system_config_directory($1)
|
|
|
|
allow $1 hotplug_etc_t:file { read getattr lock ioctl };
|
|
|
|
allow $1 hotplug_etc_t:dir { read getattr lock search ioctl };
|
|
|
|
allow $1 hotplug_etc_t:lnk_file { getattr read };
|
2005-05-04 17:01:46 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`hotplug_read_config_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type hotplug_etc_t;
|
|
|
|
|
|
|
|
class file { read getattr lock ioctl };
|
|
|
|
class dir { read getattr lock search ioctl };
|
|
|
|
class lnk_file { getattr read };
|
2005-05-04 17:01:46 +00:00
|
|
|
')
|
2005-05-31 19:52:57 +00:00
|
|
|
|
|
|
|
## </module>
|