2005-06-20 18:40:44 +00:00
|
|
|
## <module name="hotplug">
|
2005-05-31 19:52:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Policy for hotplug system, for supporting the
|
|
|
|
## connection and disconnection of devices at runtime.
|
|
|
|
## </summary>
|
2005-05-02 19:24:29 +00:00
|
|
|
|
|
|
|
#######################################
|
|
|
|
#
|
2005-06-13 17:35:46 +00:00
|
|
|
# hotplug_domtrans(domain)
|
2005-05-02 19:24:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`hotplug_domtrans',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type hotplug_t, hotplug_exec_t;
|
|
|
|
class process sigchld;
|
|
|
|
class fd use;
|
|
|
|
class fifo_file rw_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
corecmd_search_sbin($1)
|
|
|
|
domain_auto_trans($1,hotplug_exec_t,hotplug_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
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
|
|
|
')
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
#
|
2005-06-13 17:35:46 +00:00
|
|
|
# hotplug_exec(domain)
|
2005-05-02 19:24:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`hotplug_exec',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type hotplug_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
corecmd_search_sbin($1)
|
2005-06-09 14:50:48 +00:00
|
|
|
can_exec($1,hotplug_exec_t)
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
#
|
2005-06-13 17:35:46 +00:00
|
|
|
# hotplug_use_fd(domain)
|
2005-05-02 19:24:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`hotplug_use_fd',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type hotplug_t;
|
|
|
|
class fd use;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 hotplug_t:fd use;
|
2005-05-02 19:24:29 +00:00
|
|
|
')
|
|
|
|
|
2005-05-09 21:07:53 +00:00
|
|
|
#######################################
|
|
|
|
#
|
2005-06-13 17:35:46 +00:00
|
|
|
# hotplug_dontaudit_use_fd(domain)
|
2005-05-09 21:07:53 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`hotplug_dontaudit_use_fd',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type hotplug_t;
|
|
|
|
class fd use;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
dontaudit $1 hotplug_t:fd use;
|
2005-05-09 21:07:53 +00:00
|
|
|
')
|
|
|
|
|
2005-05-04 17:01:46 +00:00
|
|
|
########################################
|
|
|
|
#
|
2005-06-13 17:35:46 +00:00
|
|
|
# hotplug_dontaudit_search_config(domain)
|
2005-05-04 17:01:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`hotplug_dontaudit_search_config',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type hotplug_etc_t;
|
|
|
|
class dir search;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
dontaudit $1 hotplug_etc_t:dir search;
|
2005-05-04 17:01:46 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-05-19 21:06:06 +00:00
|
|
|
## <interface name="hotplug_read_config">
|
2005-06-23 16:00:05 +00:00
|
|
|
## <desc>
|
2005-05-19 21:06:06 +00:00
|
|
|
## Read the configuration files for hotplug.
|
2005-06-23 16:00:05 +00:00
|
|
|
## </desc>
|
|
|
|
## <param name="domain">
|
2005-05-19 21:06:06 +00:00
|
|
|
## The type of the process performing this action.
|
2005-06-23 16:00:05 +00:00
|
|
|
## </param>
|
2005-05-19 21:06:06 +00:00
|
|
|
## </interface>
|
2005-05-04 17:01:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`hotplug_read_config',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type hotplug_etc_t;
|
|
|
|
class file r_file_perms;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
files_search_etc($1)
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 hotplug_etc_t:file r_file_perms;
|
|
|
|
allow $1 hotplug_etc_t:dir r_dir_perms;
|
|
|
|
allow $1 hotplug_etc_t:lnk_file r_file_perms;
|
2005-05-04 17:01:46 +00:00
|
|
|
')
|
|
|
|
|
2005-05-31 19:52:57 +00:00
|
|
|
## </module>
|