## Livecd tool for building alternate livecd for different os and policy versions.
########################################
##
## Execute a domain transition to run livecd.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`livecd_domtrans',`
gen_require(`
type livecd_t, livecd_exec_t;
')
domtrans_pattern($1, livecd_exec_t, livecd_t)
')
########################################
##
## Execute livecd in the livecd domain, and
## allow the specified role the livecd domain.
##
##
##
## Domain allowed access.
##
##
##
##
## Role allowed access.
##
##
#
interface(`livecd_run',`
gen_require(`
type livecd_t;
')
livecd_domtrans($1)
role $2 types livecd_t;
optional_policy(`
mount_run(livecd_t, $2)
')
')
########################################
##
## Read livecd temporary files.
##
##
##
## Domain allowed access.
##
##
#
interface(`livecd_read_tmp_files',`
gen_require(`
type livecd_tmp_t;
')
files_search_tmp($1)
read_files_pattern($1, livecd_tmp_t, livecd_tmp_t)
')
########################################
##
## Read and write livecd temporary files.
##
##
##
## Domain allowed access.
##
##
#
interface(`livecd_rw_tmp_files',`
gen_require(`
type livecd_tmp_t;
')
files_search_tmp($1)
allow $1 livecd_tmp_t:file rw_file_perms;
')
########################################
##
## Allow read and write access to livecd semaphores.
##
##
##
## Domain allowed access.
##
##
#
interface(`livecd_rw_semaphores',`
gen_require(`
type livecd_t;
')
allow $1 livecd_t:sem { unix_read unix_write associate read write };
')