## Kernel crash dumping mechanism.
######################################
##
## Execute kdump in the kdump domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`kdump_domtrans',`
gen_require(`
type kdump_t, kdump_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, kdump_exec_t, kdump_t)
')
#######################################
##
## Execute kdump init scripts in
## the init script domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`kdump_initrc_domtrans',`
gen_require(`
type kdump_initrc_exec_t;
')
init_labeled_script_domtrans($1, kdump_initrc_exec_t)
')
#####################################
##
## Read kdump configuration files.
##
##
##
## Domain allowed access.
##
##
#
interface(`kdump_read_config',`
gen_require(`
type kdump_etc_t;
')
files_search_etc($1)
allow $1 kdump_etc_t:file read_file_perms;
')
####################################
##
## Create, read, write, and delete
## kdmup configuration files.
##
##
##
## Domain allowed access.
##
##
#
interface(`kdump_manage_config',`
gen_require(`
type kdump_etc_t;
')
files_search_etc($1)
allow $1 kdump_etc_t:file manage_file_perms;
')
######################################
##
## All of the rules required to
## administrate an kdump environment.
##
##
##
## Domain allowed access.
##
##
##
##
## Role allowed access.
##
##
##
#
interface(`kdump_admin',`
gen_require(`
type kdump_t, kdump_etc_t, kdumpctl_tmp_t;
type kdump_initrc_exec_t, kdumpctl_t;
')
allow $1 { kdump_t kdumpctl_t }:process { ptrace signal_perms };
ps_process_pattern($1, { kdump_t kdumpctl_t })
init_startstop_service($1, $2, kdump_t, kdump_initrc_exec_t)
files_search_etc($1)
admin_pattern($1, kdump_etc_t)
files_search_tmp($1)
admin_pattern($1, kdumpctl_tmp_t)
')