selinux-policy/policy/modules/apps/mozilla.if

261 lines
5.5 KiB
Plaintext
Raw Normal View History

2006-03-13 19:24:52 +00:00
## <summary>Policy for Mozilla and related web browsers</summary>
2008-11-05 16:10:46 +00:00
########################################
2006-03-13 19:24:52 +00:00
## <summary>
2008-11-05 16:10:46 +00:00
## Role access for mozilla
2006-03-13 19:24:52 +00:00
## </summary>
2008-11-05 16:10:46 +00:00
## <param name="role">
2006-03-13 19:24:52 +00:00
## <summary>
2008-11-05 16:10:46 +00:00
## Role allowed access
2006-03-13 19:24:52 +00:00
## </summary>
## </param>
2008-11-05 16:10:46 +00:00
## <param name="domain">
2006-03-13 19:24:52 +00:00
## <summary>
2008-11-05 16:10:46 +00:00
## User domain for the role
2006-03-13 19:24:52 +00:00
## </summary>
## </param>
#
2008-11-05 16:10:46 +00:00
interface(`mozilla_role',`
gen_require(`
2008-11-05 16:10:46 +00:00
type mozilla_t, mozilla_exec_t, mozilla_home_t;
')
2008-11-05 16:10:46 +00:00
role $1 types mozilla_t;
2006-03-13 19:24:52 +00:00
2008-11-05 16:10:46 +00:00
domain_auto_trans($2, mozilla_exec_t, mozilla_t)
# Unrestricted inheritance from the caller.
2008-11-05 16:10:46 +00:00
allow $2 mozilla_t:process { noatsecure siginh rlimitinh };
allow mozilla_t $2:fd use;
allow mozilla_t $2:process { sigchld signull };
allow mozilla_t $2:unix_stream_socket connectto;
2010-08-26 13:41:21 +00:00
mozilla_plugin_run(mozilla_t, $2)
2006-03-13 19:24:52 +00:00
# Allow the user domain to signal/ps.
2008-11-05 16:10:46 +00:00
ps_process_pattern($2, mozilla_t)
allow $2 mozilla_t:process signal_perms;
2006-03-13 19:24:52 +00:00
2008-11-05 16:10:46 +00:00
allow $2 mozilla_t:fd use;
allow $2 mozilla_t:shm { associate getattr };
allow $2 mozilla_t:shm { unix_read unix_write };
allow $2 mozilla_t:unix_stream_socket connectto;
2006-03-13 19:24:52 +00:00
2008-11-05 16:10:46 +00:00
# X access, Home files
manage_dirs_pattern($2, mozilla_home_t, mozilla_home_t)
manage_files_pattern($2, mozilla_home_t, mozilla_home_t)
manage_lnk_files_pattern($2, mozilla_home_t, mozilla_home_t)
relabel_dirs_pattern($2, mozilla_home_t, mozilla_home_t)
relabel_files_pattern($2, mozilla_home_t, mozilla_home_t)
relabel_lnk_files_pattern($2, mozilla_home_t, mozilla_home_t)
2009-12-01 15:30:30 +00:00
mozilla_dbus_chat($2)
2010-08-26 13:41:21 +00:00
userdom_manage_tmp_role($1, mozilla_t)
optional_policy(`
nsplugin_role($1, mozilla_t)
')
2009-12-01 15:30:30 +00:00
optional_policy(`
pulseaudio_role($1, mozilla_t)
')
2006-03-13 19:24:52 +00:00
')
########################################
## <summary>
2008-11-05 16:10:46 +00:00
## Read mozilla home directory content
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
2008-11-05 16:10:46 +00:00
interface(`mozilla_read_user_home_files',`
gen_require(`
2008-11-05 16:10:46 +00:00
type mozilla_home_t;
')
2008-11-05 16:10:46 +00:00
allow $1 mozilla_home_t:dir list_dir_perms;
allow $1 mozilla_home_t:file read_file_perms;
2009-12-01 15:30:30 +00:00
allow $1 mozilla_home_t:lnk_file read_lnk_file_perms;
2008-11-05 16:10:46 +00:00
userdom_search_user_home_dirs($1)
')
########################################
## <summary>
2008-11-05 16:10:46 +00:00
## Write mozilla home directory content
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
2008-11-05 16:10:46 +00:00
interface(`mozilla_write_user_home_files',`
gen_require(`
2008-11-05 16:10:46 +00:00
type mozilla_home_t;
')
2009-07-27 13:11:12 +00:00
write_files_pattern($1, mozilla_home_t, mozilla_home_t)
2008-11-05 16:10:46 +00:00
userdom_search_user_home_dirs($1)
')
########################################
2009-12-01 15:30:30 +00:00
## <summary>
## Dontaudit attempts to read/write mozilla home directory content
## </summary>
## <param name="domain">
## <summary>
## Domain to not audit.
2009-12-01 15:30:30 +00:00
## </summary>
## </param>
#
interface(`mozilla_dontaudit_rw_user_home_files',`
gen_require(`
type mozilla_home_t;
')
2010-08-26 13:41:21 +00:00
dontaudit $1 mozilla_home_t:file rw_inherited_file_perms;
2009-12-01 15:30:30 +00:00
')
########################################
## <summary>
## Dontaudit attempts to write mozilla home directory content
## </summary>
## <param name="domain">
## <summary>
## Domain to not audit.
2009-12-01 15:30:30 +00:00
## </summary>
## </param>
#
interface(`mozilla_dontaudit_manage_user_home_files',`
gen_require(`
type mozilla_home_t;
')
dontaudit $1 mozilla_home_t:dir manage_dir_perms;
dontaudit $1 mozilla_home_t:file manage_file_perms;
')
########################################
## <summary>
## Execmod mozilla home directory content.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mozilla_execmod_user_home_files',`
gen_require(`
type mozilla_home_t;
')
allow $1 mozilla_home_t:file execmod;
')
########################################
## <summary>
2008-11-05 16:10:46 +00:00
## Run mozilla in the mozilla domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
#
2008-11-05 16:10:46 +00:00
interface(`mozilla_domtrans',`
gen_require(`
2008-11-05 16:10:46 +00:00
type mozilla_t, mozilla_exec_t;
')
2008-11-05 16:10:46 +00:00
domtrans_pattern($1, mozilla_exec_t, mozilla_t)
')
2010-08-26 13:41:21 +00:00
########################################
## <summary>
## Execute a domain transition to run mozilla_plugin.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`mozilla_domtrans_plugin',`
gen_require(`
type mozilla_plugin_t, mozilla_plugin_exec_t;
')
domtrans_pattern($1, mozilla_plugin_exec_t, mozilla_plugin_t)
')
########################################
## <summary>
## Execute mozilla_plugin in the mozilla_plugin domain, and
## allow the specified role the mozilla_plugin domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access
## </summary>
## </param>
## <param name="role">
## <summary>
## The role to be allowed the mozilla_plugin domain.
## </summary>
## </param>
#
interface(`mozilla_run_plugin',`
gen_require(`
type mozilla_plugin_t;
')
mozilla_domtrans_plugin($1)
role $2 types mozilla_plugin_t;
allow mozilla_plugin_t $1:process signull;
2010-08-26 13:41:21 +00:00
')
########################################
## <summary>
## Send and receive messages from
## mozilla over dbus.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
2008-11-05 16:10:46 +00:00
interface(`mozilla_dbus_chat',`
gen_require(`
2008-11-05 16:10:46 +00:00
type mozilla_t;
class dbus send_msg;
')
2008-11-05 16:10:46 +00:00
allow $1 mozilla_t:dbus send_msg;
allow mozilla_t $1:dbus send_msg;
')
########################################
## <summary>
## read/write mozilla per user tcp_socket
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
2008-11-05 16:10:46 +00:00
interface(`mozilla_rw_tcp_sockets',`
gen_require(`
2008-11-05 16:10:46 +00:00
type mozilla_t;
')
2008-11-05 16:10:46 +00:00
allow $1 mozilla_t:tcp_socket rw_socket_perms;
')