## System shutdown command
########################################
##
## Execute a domain transition to run shutdown.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`shutdown_domtrans',`
gen_require(`
type shutdown_t, shutdown_exec_t;
')
domtrans_pattern($1, shutdown_exec_t, shutdown_t)
ifdef(`hide_broken_symptoms', `
dontaudit shutdown_t $1:socket_class_set { read write };
dontaudit shutdown_t $1:fifo_file rw_inherited_fifo_file_perms;
')
')
########################################
##
## Execute shutdown in the shutdown domain, and
## allow the specified role the shutdown domain.
##
##
##
## Domain allowed to transition.
##
##
##
##
## Role allowed access.
##
##
#
interface(`shutdown_run',`
gen_require(`
type shutdown_t;
')
shutdown_domtrans($1)
role $2 types shutdown_t;
')
########################################
##
## Role access for shutdown
##
##
##
## Role allowed access
##
##
##
##
## User domain for the role
##
##
#
interface(`shutdown_role',`
gen_require(`
type shutdown_t;
')
role $1 types shutdown_t;
shutdown_domtrans($2)
ps_process_pattern($2, shutdown_t)
allow $2 shutdown_t:process signal;
')
########################################
##
## Recieve sigchld from shutdown
##
##
##
## Domain allowed access
##
##
#
interface(`shutdown_send_sigchld',`
gen_require(`
type shutdown_t;
')
allow shutdown_t $1:process signal;
')
########################################
##
## Send and receive messages from
## shutdown over dbus.
##
##
##
## Domain allowed access.
##
##
#
interface(`shutdown_dbus_chat',`
gen_require(`
type shutdown_t;
class dbus send_msg;
')
allow $1 shutdown_t:dbus send_msg;
allow shutdown_t $1:dbus send_msg;
')
########################################
##
## Get attributes of shutdown executable.
##
##
##
## Domain allowed access.
##
##
#
interface(`shutdown_getattr_exec_files',`
gen_require(`
type shutdown_exec_t;
')
allow $1 shutdown_exec_t:file getattr;
')