2006-10-02 15:22:48 +00:00
|
|
|
## <summary>GNU network object model environment (GNOME)</summary>
|
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
############################################################
|
2006-10-02 15:22:48 +00:00
|
|
|
## <summary>
|
2008-11-05 16:10:46 +00:00
|
|
|
## Role access for gnome
|
2006-10-02 15:22:48 +00:00
|
|
|
## </summary>
|
2008-11-05 16:10:46 +00:00
|
|
|
## <param name="role">
|
2006-10-02 15:22:48 +00:00
|
|
|
## <summary>
|
2008-11-05 16:10:46 +00:00
|
|
|
## Role allowed access
|
2006-10-02 15:22:48 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
2008-11-05 16:10:46 +00:00
|
|
|
## <param name="domain">
|
2006-10-02 15:22:48 +00:00
|
|
|
## <summary>
|
2008-11-05 16:10:46 +00:00
|
|
|
## User domain for the role
|
2006-10-02 15:22:48 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
2008-11-05 16:10:46 +00:00
|
|
|
interface(`gnome_role',`
|
2006-10-02 15:22:48 +00:00
|
|
|
gen_require(`
|
2008-11-05 16:10:46 +00:00
|
|
|
type gconfd_t, gconfd_exec_t;
|
|
|
|
type gconf_tmp_t;
|
2006-10-02 15:22:48 +00:00
|
|
|
')
|
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
role $1 types gconfd_t;
|
2006-10-02 15:22:48 +00:00
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
domain_auto_trans($2, gconfd_exec_t, gconfd_t)
|
|
|
|
allow gconfd_t $2:fd use;
|
|
|
|
allow gconfd_t $2:fifo_file write;
|
|
|
|
allow gconfd_t $2:unix_stream_socket connectto;
|
2007-02-16 23:01:42 +00:00
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
ps_process_pattern($2, gconfd_t)
|
2006-10-02 15:22:48 +00:00
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
#gnome_stream_connect_gconf_template($1, $2)
|
|
|
|
read_files_pattern($2, gconf_tmp_t, gconf_tmp_t)
|
|
|
|
allow $2 gconfd_t:unix_stream_socket connectto;
|
2006-10-02 15:22:48 +00:00
|
|
|
')
|
2008-10-17 15:52:39 +00:00
|
|
|
|
2006-10-02 15:22:48 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## gconf connection template.
|
|
|
|
## </summary>
|
|
|
|
## <param name="user_domain">
|
|
|
|
## <summary>
|
|
|
|
## The type of the user domain.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
2008-11-05 16:10:46 +00:00
|
|
|
interface(`gnome_stream_connect_gconf',`
|
2006-10-02 15:22:48 +00:00
|
|
|
gen_require(`
|
2008-11-05 16:10:46 +00:00
|
|
|
type gconfd_t, gconf_tmp_t;
|
2006-10-02 15:22:48 +00:00
|
|
|
')
|
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
read_files_pattern($1, gconf_tmp_t, gconf_tmp_t)
|
|
|
|
allow $1 gconfd_t:unix_stream_socket connectto;
|
2007-02-16 23:01:42 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2008-11-05 16:10:46 +00:00
|
|
|
## Run gconfd in gconfd domain.
|
2007-02-16 23:01:42 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
2008-11-05 16:10:46 +00:00
|
|
|
interface(`gnome_domtrans_gconfd',`
|
2007-02-16 23:01:42 +00:00
|
|
|
gen_require(`
|
2008-11-05 16:10:46 +00:00
|
|
|
type gconfd_t, gconfd_exec_t;
|
2007-02-16 23:01:42 +00:00
|
|
|
')
|
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
domtrans_pattern($1, gconfd_exec_t, gconfd_t)
|
2007-02-16 23:01:42 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## manage gnome homedir content (.config)
|
|
|
|
## </summary>
|
|
|
|
## <param name="user_domain">
|
|
|
|
## <summary>
|
|
|
|
## The type of the user domain.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
2008-11-05 16:10:46 +00:00
|
|
|
interface(`gnome_manage_config',`
|
2007-02-16 23:01:42 +00:00
|
|
|
gen_require(`
|
2008-11-05 16:10:46 +00:00
|
|
|
type gnome_home_t;
|
2007-02-16 23:01:42 +00:00
|
|
|
')
|
|
|
|
|
2008-11-05 16:10:46 +00:00
|
|
|
allow $1 gnome_home_t:dir manage_dir_perms;
|
|
|
|
allow $1 gnome_home_t:file manage_file_perms;
|
|
|
|
userdom_search_user_home_dirs($1)
|
2006-10-02 15:22:48 +00:00
|
|
|
')
|