## mDNS/DNS-SD daemon implementing Apple ZeroConf architecture.
########################################
##
## Execute avahi server in the avahi domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`avahi_domtrans',`
gen_require(`
type avahi_exec_t, avahi_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, avahi_exec_t, avahi_t)
')
########################################
##
## Send generic signals to avahi.
##
##
##
## Domain allowed access.
##
##
#
interface(`avahi_signal',`
gen_require(`
type avahi_t;
')
allow $1 avahi_t:process signal;
')
########################################
##
## Send kill signals to avahi.
##
##
##
## Domain allowed access.
##
##
#
interface(`avahi_kill',`
gen_require(`
type avahi_t;
')
allow $1 avahi_t:process sigkill;
')
########################################
##
## Send null signals to avahi.
##
##
##
## Domain allowed access.
##
##
#
interface(`avahi_signull',`
gen_require(`
type avahi_t;
')
allow $1 avahi_t:process signull;
')
########################################
##
## Send and receive messages from
## avahi over dbus.
##
##
##
## Domain allowed access.
##
##
#
interface(`avahi_dbus_chat',`
gen_require(`
type avahi_t;
class dbus send_msg;
')
allow $1 avahi_t:dbus send_msg;
allow avahi_t $1:dbus send_msg;
')
########################################
##
## Connect to avahi using a unix
$$ stream socket.
##
##
##
## Domain allowed access.
##
##
#
interface(`avahi_stream_connect',`
gen_require(`
type avahi_t, avahi_var_run_t;
')
files_search_pids($1)
stream_connect_pattern($1, avahi_var_run_t, avahi_var_run_t, avahi_t)
')
########################################
##
## Do not audit attempts to search
## avahi pid directories.
##
##
##
## Domain to not audit.
##
##
#
interface(`avahi_dontaudit_search_pid',`
gen_require(`
type avahi_var_run_t;
')
dontaudit $1 avahi_var_run_t:dir search_dir_perms;
')
########################################
##
## All of the rules required to
## administrate an avahi environment.
##
##
##
## Domain allowed access.
##
##
##
##
## Role allowed access.
##
##
##
#
interface(`avahi_admin',`
gen_require(`
type avahi_t, avahi_var_run_t, avahi_initrc_exec_t;
type avahi_var_lib_t;
')
allow $1 avahi_t:process { ptrace signal_perms };
ps_process_pattern($1, avahi_t)
init_labeled_script_domtrans($1, avahi_initrc_exec_t)
domain_system_change_exemption($1)
role_transition $2 avahi_initrc_exec_t system_r;
allow $2 system_r;
files_search_pids($1)
admin_pattern($1, avahi_var_run_t)
files_search_var_lib($1)
admin_pattern($1, avahi_var_lib_t)
')