2006-03-23 19:19:38 +00:00
|
|
|
## <summary>Xen hypervisor</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute a domain transition to run xend.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed to transition.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_domtrans',`
|
2006-06-14 14:10:24 +00:00
|
|
|
gen_require(`
|
2006-03-23 19:19:38 +00:00
|
|
|
type xend_t, xend_exec_t;
|
|
|
|
')
|
|
|
|
|
2006-12-12 20:08:08 +00:00
|
|
|
domtrans_pattern($1,xend_exec_t,xend_t)
|
2006-03-23 19:19:38 +00:00
|
|
|
')
|
|
|
|
|
2006-08-29 02:41:00 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Inherit and use xen file descriptors.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain to not audit.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_use_fds',`
|
|
|
|
gen_require(`
|
|
|
|
type xend_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 xend_t:fd use;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to inherit
|
|
|
|
## xen file descriptors.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain to not audit.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_dontaudit_use_fds',`
|
|
|
|
gen_require(`
|
|
|
|
type xend_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 xend_t:fd use;
|
|
|
|
')
|
2006-03-23 19:19:38 +00:00
|
|
|
|
2007-06-21 13:36:05 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read xend image files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_read_image_files',`
|
|
|
|
gen_require(`
|
|
|
|
type xen_image_t, xend_var_lib_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_list_var_lib($1)
|
|
|
|
read_files_pattern($1,{ xend_var_lib_t xen_image_t },xen_image_t)
|
|
|
|
')
|
|
|
|
|
2006-03-23 19:19:38 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Allow the specified domain to append
|
|
|
|
## xend log files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed to transition.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_append_log',`
|
|
|
|
gen_require(`
|
2008-05-22 15:24:52 +00:00
|
|
|
type xend_var_log_t;
|
2006-03-23 19:19:38 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
logging_search_logs($1)
|
2007-06-21 13:36:05 +00:00
|
|
|
append_files_pattern($1,xend_var_log_t,xend_var_log_t)
|
2006-03-23 19:19:38 +00:00
|
|
|
dontaudit $1 xend_var_log_t:file write;
|
|
|
|
')
|
|
|
|
|
2007-06-21 13:36:05 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, write, and delete the
|
|
|
|
## xend log files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_manage_log',`
|
|
|
|
gen_require(`
|
2008-05-22 15:24:52 +00:00
|
|
|
type xend_var_log_t;
|
2007-06-21 13:36:05 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
logging_search_logs($1)
|
|
|
|
manage_dirs_pattern($1,xend_var_log_t,xend_var_log_t)
|
|
|
|
manage_files_pattern($1,xend_var_log_t,xend_var_log_t)
|
|
|
|
')
|
|
|
|
|
2006-04-26 15:22:33 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to read and write
|
2006-05-03 19:58:01 +00:00
|
|
|
## Xen unix domain stream sockets. These
|
|
|
|
## are leaked file descriptors.
|
2006-04-26 15:22:33 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2006-05-03 19:58:01 +00:00
|
|
|
## Domain to not audit.
|
2006-04-26 15:22:33 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_dontaudit_rw_unix_stream_sockets',`
|
2008-12-03 18:33:19 +00:00
|
|
|
gen_require(`
|
|
|
|
type xend_t;
|
|
|
|
')
|
2006-04-26 15:22:33 +00:00
|
|
|
|
|
|
|
dontaudit $1 xend_t:unix_stream_socket { read write };
|
|
|
|
')
|
|
|
|
|
2006-03-23 19:19:38 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Connect to xenstored over an unix stream socket.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_stream_connect_xenstore',`
|
|
|
|
gen_require(`
|
|
|
|
type xenstored_t, xenstored_var_run_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_pids($1)
|
2006-12-12 20:08:08 +00:00
|
|
|
stream_connect_pattern($1,xenstored_var_run_t,xenstored_var_run_t,xenstored_t)
|
2006-03-23 19:19:38 +00:00
|
|
|
')
|
2006-05-03 19:58:01 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Connect to xend over an unix domain stream socket.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_stream_connect',`
|
|
|
|
gen_require(`
|
|
|
|
type xend_t, xend_var_run_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_pids($1)
|
2006-12-12 20:08:08 +00:00
|
|
|
stream_connect_pattern($1,xend_var_run_t,xend_var_run_t,xend_t)
|
2006-05-03 19:58:01 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute a domain transition to run xm.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed to transition.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`xen_domtrans_xm',`
|
2006-06-14 14:10:24 +00:00
|
|
|
gen_require(`
|
2006-05-03 19:58:01 +00:00
|
|
|
type xm_t, xm_exec_t;
|
|
|
|
')
|
|
|
|
|
2006-12-12 20:08:08 +00:00
|
|
|
domtrans_pattern($1,xm_exec_t,xm_t)
|
2006-05-03 19:58:01 +00:00
|
|
|
')
|