## Ainit ALSA configuration tool
########################################
##
## Domain transition to alsa
##
##
##
## Domain allowed access.
##
##
#
interface(`alsa_domtrans',`
gen_require(`
type alsa_t;
type alsa_exec_t;
')
domain_auto_trans($1, alsa_exec_t, alsa_t)
allow $1 alsa_t:fd use;
allow alsa_t $1:fd use;
allow alsa_t $1:fifo_file rw_file_perms;
allow alsa_t $1:process sigchld;
')
########################################
##
## Allow read and write access to alsa semaphores.
##
##
##
## Domain allowed access.
##
##
#
interface(`alsa_rw_semaphores',`
gen_require(`
type alsa_t;
')
allow $1 alsa_t:sem { unix_read unix_write associate read write };
')
########################################
##
## Allow read and write access to alsa shared memory.
##
##
##
## Domain allowed access.
##
##
#
interface(`alsa_rw_shared_mem',`
gen_require(`
type alsa_t;
')
allow $1 alsa_t:shm { unix_read unix_write create_shm_perms };
')