selinux-policy/policy/modules/services/squid.if

123 lines
2.3 KiB
Plaintext
Raw Normal View History

2005-09-02 19:11:07 +00:00
## <summary>Squid caching http proxy server</summary>
########################################
## <summary>
## Execute squid in the squid domain.
## </summary>
## <param name="domain">
## <summary>
2005-09-02 19:11:07 +00:00
## The type of the process performing this action.
## </summary>
2005-09-02 19:11:07 +00:00
## </param>
#
interface(`squid_domtrans',`
gen_require(`
type squid_t, squid_exec_t;
')
corecmd_search_sbin($1)
domain_auto_trans($1,squid_exec_t,squid_t)
allow $1 squid_t:fd use;
allow squid_t $1:fd use;
allow squid_t $1:fifo_file rw_file_perms;
allow squid_t $1:process sigchld;
')
########################################
## <summary>
## Read squid configuration file.
## </summary>
## <param name="domain">
## <summary>
2005-09-02 19:11:07 +00:00
## Domain allowed access.
## </summary>
2005-09-02 19:11:07 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-09-02 19:11:07 +00:00
#
interface(`squid_read_config',`
gen_require(`
type squid_conf_t;
')
files_search_etc($1)
allow $1 squid_conf_t:file r_file_perms;
')
2005-10-24 21:33:46 +00:00
########################################
## <summary>
## Append squid logs.
## </summary>
## <param name="domain">
## <summary>
2005-10-24 21:33:46 +00:00
## Domain allowed access.
## </summary>
2005-10-24 21:33:46 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-10-24 21:33:46 +00:00
#
interface(`squid_read_log',`
gen_require(`
type squid_log_t;
')
logging_search_logs($1)
allow $1 squid_log_t:dir search_dir_perms;
allow $1 squid_log_t:file r_file_perms;
')
########################################
## <summary>
## Append squid logs.
## </summary>
## <param name="domain">
## <summary>
2005-10-24 21:33:46 +00:00
## Domain allowed access.
## </summary>
2005-10-24 21:33:46 +00:00
## </param>
#
interface(`squid_append_log',`
gen_require(`
type squid_log_t;
')
logging_search_logs($1)
allow $1 squid_log_t:dir search_dir_perms;
allow $1 squid_log_t:file { getattr append };
')
########################################
## <summary>
## Create, read, write, and delete
## squid logs.
## </summary>
## <param name="domain">
## <summary>
2005-10-24 21:33:46 +00:00
## Domain allowed access.
## </summary>
2005-10-24 21:33:46 +00:00
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2005-10-24 21:33:46 +00:00
#
interface(`squid_manage_logs',`
gen_require(`
type squid_log_t;
')
logging_search_logs($1)
allow $1 squid_log_t:dir rw_dir_perms;
allow $1 squid_log_t:file create_file_perms;
')
2005-09-02 19:11:07 +00:00
########################################
## <summary>
2006-08-15 20:00:58 +00:00
## Use squid services by connecting over TCP. (Deprecated)
2005-09-02 19:11:07 +00:00
## </summary>
## <param name="domain">
## <summary>
2005-09-02 19:11:07 +00:00
## Domain allowed access.
## </summary>
2005-09-02 19:11:07 +00:00
## </param>
#
interface(`squid_use',`
2006-08-15 20:00:58 +00:00
refpolicywarn(`$0($*) has been deprecated.')
2005-09-02 19:11:07 +00:00
')