aboutsummaryrefslogtreecommitdiff
blob: de89d0f10225b0f122c618b4e6c29092940f5b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
## <summary>Bugzilla server</summary>

########################################
## <summary>
##	Allow the specified domain to search
##	bugzilla directories.
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed access.
##	</summary>
## </param>
#
interface(`bugzilla_search_content',`
	gen_require(`
		type httpd_bugzilla_content_t;
	')

	allow $1 httpd_bugzilla_content_t:dir search_dir_perms;
')

########################################
## <summary>
##	Do not audit attempts to read and write
##	bugzilla script unix domain stream sockets.
## </summary>
## <param name="domain">
##	<summary>
##	Domain to not audit.
##	</summary>
## </param>
#
interface(`bugzilla_dontaudit_rw_stream_sockets',`
	gen_require(`
		type httpd_bugzilla_script_t;
	')

	dontaudit $1 httpd_bugzilla_script_t:unix_stream_socket { read write };
')

########################################
## <summary>
##	All of the rules required to administrate
##	an bugzilla environment
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed access.
##	</summary>
## </param>
## <param name="role">
##	<summary>
##	The role to be allowed to manage the bugzilla domain.
##	</summary>
## </param>
## <rolecap/>
#
interface(`bugzilla_admin',`
	gen_require(`
		type httpd_bugzilla_script_t, httpd_bugzilla_content_t, httpd_bugzilla_ra_content_t;
		type httpd_bugzilla_rw_content_t, httpd_bugzilla_script_exec_t;
		type httpd_bugzilla_htaccess_t;
	')

	allow $1 httpd_bugzilla_script_t:process { ptrace signal_perms };
	ps_process_pattern($1, httpd_bugzilla_script_t)

	files_list_var_lib(httpd_bugzilla_script_t)

	apache_list_sys_content($1)
	admin_pattern($1, httpd_bugzilla_script_exec_t)
	admin_pattern($1, httpd_bugzilla_script_t)
	admin_pattern($1, httpd_bugzilla_content_t)
	admin_pattern($1, httpd_bugzilla_htaccess_t)
	admin_pattern($1, httpd_bugzilla_rw_content_t)
	admin_pattern($1, httpd_bugzilla_ra_content_t)
')