2005-08-17 14:14:07 +00:00
|
|
|
## <summary>
|
|
|
|
## Final system configuration run during the first boot
|
|
|
|
## after installation of Red Hat/Fedora systems.
|
|
|
|
## </summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute firstboot in the firstboot domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`firstboot_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type firstboot_t, firstboot_exec_t;
|
|
|
|
class process sigchld;
|
|
|
|
class fd use;
|
|
|
|
class fifo_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
domain_auto_trans($1,firstboot_exec_t,firstboot_t)
|
|
|
|
|
|
|
|
allow $1 firstboot_t:fd use;
|
|
|
|
allow firstboot_t $1:fd use;
|
|
|
|
allow firstboot_t $1:fifo_file rw_file_perms;
|
|
|
|
allow firstboot_t $1:process sigchld;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute firstboot in the firstboot domain, and
|
|
|
|
## allow the specified role the firstboot domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## The role to be allowed the firstboot domain.
|
|
|
|
## </param>
|
|
|
|
## <param name="terminal">
|
|
|
|
## The type of the terminal allow the firstboot domain to use.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`firstboot_run',`
|
|
|
|
gen_require(`
|
|
|
|
type firstboot_t;
|
|
|
|
class chr_file rw_term_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
firstboot_domtrans($1)
|
|
|
|
role $2 types firstboot_t;
|
|
|
|
allow firstboot_t $3:chr_file rw_term_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Inherit and use a file descriptor from firstboot.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`firstboot_use_fd',`
|
|
|
|
gen_require(`
|
|
|
|
type firstboot_t;
|
|
|
|
class fd use;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 firstboot_t:fd use;
|
|
|
|
')
|
|
|
|
|
2005-09-05 16:47:19 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to inherit a
|
|
|
|
## file descriptor from firstboot.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`firstboot_dontaudit_use_fd',`
|
|
|
|
gen_require(`
|
|
|
|
type firstboot_t;
|
|
|
|
class fd use;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 firstboot_t:fd use;
|
|
|
|
')
|
|
|
|
|
2005-08-17 14:14:07 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Write to a firstboot unnamed pipe.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`firstboot_write_pipe',`
|
|
|
|
gen_require(`
|
|
|
|
type firstboot_t;
|
|
|
|
class fifo_file write;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 firstboot_t:fifo_file write;
|
|
|
|
')
|