2006-01-19 23:00:23 +00:00
|
|
|
## <summary>Run .NET server and client applications on Linux.</summary>
|
|
|
|
|
2010-02-19 15:42:43 +00:00
|
|
|
#######################################
|
|
|
|
## <summary>
|
|
|
|
## The role template for the mono module.
|
|
|
|
## </summary>
|
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## This template creates a derived domains which are used
|
|
|
|
## for mono applications.
|
|
|
|
## </p>
|
|
|
|
## </desc>
|
|
|
|
## <param name="role_prefix">
|
|
|
|
## <summary>
|
|
|
|
## The prefix of the user domain (e.g., user
|
|
|
|
## is the prefix for user_t).
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="user_role">
|
|
|
|
## <summary>
|
|
|
|
## The role associated with the user domain.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="user_domain">
|
|
|
|
## <summary>
|
|
|
|
## The type of the user domain.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
template(`mono_role_template',`
|
|
|
|
gen_require(`
|
|
|
|
type mono_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
type $1_mono_t;
|
|
|
|
domain_type($1_mono_t)
|
|
|
|
domain_entry_file($1_mono_t, mono_exec_t)
|
|
|
|
role $2 types $1_mono_t;
|
|
|
|
|
|
|
|
domain_interactive_fd($1_mono_t)
|
|
|
|
application_type($1_mono_t)
|
|
|
|
|
|
|
|
allow $1_mono_t self:process { ptrace signal getsched execheap execmem execstack };
|
|
|
|
allow $3 $1_mono_t:process { getattr ptrace noatsecure signal_perms };
|
|
|
|
|
|
|
|
domtrans_pattern($3, mono_exec_t, $1_mono_t)
|
|
|
|
|
|
|
|
fs_dontaudit_rw_tmpfs_files($1_mono_t)
|
|
|
|
corecmd_bin_domtrans($1_mono_t, $1_t)
|
2010-08-26 16:55:57 +00:00
|
|
|
|
|
|
|
userdom_unpriv_usertype($1, $1_mono_t)
|
|
|
|
userdom_manage_tmpfs_role($2, $1_mono_t)
|
|
|
|
|
2010-08-26 13:41:21 +00:00
|
|
|
ifdef(`hide_broken_symptoms', `
|
|
|
|
dontaudit $1_t $1_mono_t:socket_class_set { read write };
|
|
|
|
')
|
2010-07-06 17:17:05 +00:00
|
|
|
|
2010-02-19 15:42:43 +00:00
|
|
|
optional_policy(`
|
|
|
|
xserver_role($1_r, $1_mono_t)
|
|
|
|
')
|
|
|
|
')
|
|
|
|
|
2006-01-19 23:00:23 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute the mono program in the mono domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-03 15:53:36 +00:00
|
|
|
## Domain allowed to transition.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-19 23:00:23 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`mono_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type mono_t, mono_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
corecmd_search_bin($1)
|
2006-12-12 20:08:08 +00:00
|
|
|
domtrans_pattern($1, mono_exec_t, mono_t)
|
2006-01-19 23:00:23 +00:00
|
|
|
')
|
2008-06-17 14:07:44 +00:00
|
|
|
|
2010-02-19 15:42:43 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute mono in the mono domain, and
|
|
|
|
## allow the specified role the mono domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-03 15:53:36 +00:00
|
|
|
## Domain allowed to transition.
|
2010-02-19 15:42:43 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
2010-08-03 13:20:22 +00:00
|
|
|
## Role allowed access.
|
2010-02-19 15:42:43 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`mono_run',`
|
|
|
|
gen_require(`
|
|
|
|
type mono_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
mono_domtrans($1)
|
|
|
|
role $2 types mono_t;
|
|
|
|
')
|
|
|
|
|
2008-06-17 14:07:44 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute the mono program in the caller domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`mono_exec',`
|
|
|
|
gen_require(`
|
2010-02-19 15:42:43 +00:00
|
|
|
type mono_exec_t;
|
2008-06-17 14:07:44 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
corecmd_search_bin($1)
|
|
|
|
can_exec($1, mono_exec_t)
|
|
|
|
')
|
2010-02-19 15:42:43 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write to mono shared memory.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-02 13:22:09 +00:00
|
|
|
## Domain allowed access.
|
2010-02-19 15:42:43 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`mono_rw_shm',`
|
|
|
|
gen_require(`
|
|
|
|
type mono_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 mono_t:shm rw_shm_perms;
|
|
|
|
')
|