]> git.ipfire.org Git - people/stevee/selinux-policy.git/blame - policy/modules/kernel/domain.te
Remove module for gnome.
[people/stevee/selinux-policy.git] / policy / modules / kernel / domain.te
CommitLineData
0de0ea5c 1policy_module(domain, 1.9.1)
960373dd 2
fd89e19f
CP
3########################################
4#
5# Declarations
6#
3eaa9939
DW
7## <desc>
8## <p>
9## Allow all domains to use other domains file descriptors
10## </p>
11## </desc>
12#
5946923f 13gen_tunable(allow_domain_fd_use, true)
3eaa9939
DW
14
15## <desc>
16## <p>
17## Allow all domains to have the kernel load modules
18## </p>
19## </desc>
20#
21gen_tunable(domain_kernel_load_modules, false)
fd89e19f 22
623e4f08
DG
23## <desc>
24## <p>
25## Control the ability to mmap a low area of the address space,
26## as configured by /proc/sys/kernel/mmap_min_addr.
27## </p>
28## </desc>
29gen_tunable(mmap_low_allowed, false)
30
b4cd1533
CP
31# Mark process types as domains
32attribute domain;
33
2e863f8a
CP
34# Transitions only allowed from domains to other domains
35neverallow domain ~domain:process { transition dyntransition };
36
605ba285 37# Domains that are unconfined
95501942 38attribute unconfined_domain_type;
605ba285 39
41337aa8
CP
40# Domains that can mmap low memory.
41attribute mmap_low_domain_type;
42neverallow { domain -mmap_low_domain_type } self:memprotect mmap_zero;
43
2e863f8a
CP
44# Domains that can set their current context
45# (perform dynamic transitions)
46attribute set_curr_context;
47
48# enabling setcurrent breaks process tranquility. If you do not
49# know what this means or do not understand the implications of a
50# dynamic transition, you should not be using it!!!
51neverallow { domain -set_curr_context } self:process setcurrent;
52
960373dd
CP
53# entrypoint executables
54attribute entry_type;
55
8a0da108
CP
56# widely-inheritable file descriptors
57attribute privfd;
58
2e863f8a 59#
8bd67899 60# constraint related attributes
2e863f8a
CP
61#
62
63# [1] types that can change SELinux identity on transition
8bd67899 64attribute can_change_process_identity;
2e863f8a
CP
65
66# [2] types that can change SELinux role on transition
8bd67899 67attribute can_change_process_role;
2e863f8a
CP
68
69# [3] types that can change the SELinux identity on a filesystem
70# object or a socket object on a create or relabel
8bd67899
CP
71attribute can_change_object_identity;
72
2e863f8a
CP
73# [3] types that can change to system_u:system_r
74attribute can_system_change;
a154cd45 75
2e863f8a
CP
76# [4] types that have attribute 1 can change the SELinux
77# identity only if the target domain has this attribute.
78# Types that have attribute 2 can change the SELinux role
79# only if the target domain has this attribute.
80attribute process_user_target;
81
82# For cron jobs
83# [5] types used for cron daemons
84attribute cron_source_domain;
85# [6] types used for cron jobs
86attribute cron_job_domain;
87
88# [7] types that are unconditionally exempt from
89# SELinux identity and role change constraints
90attribute process_uncond_exempt; # add userhelperdomain to this one
2a3478cf 91
e0dfbdf1 92neverallow { domain unlabeled_t } ~{ domain unlabeled_t }:process *;
2e863f8a 93neverallow ~{ domain unlabeled_t } *:process *;
3cfd4876
CP
94
95########################################
96#
97# Rules applied to all domains
98#
99
1f6524ae 100# read /proc/(pid|self) entries
ef659a47
CP
101allow domain self:dir list_dir_perms;
102allow domain self:lnk_file { read_lnk_file_perms lock ioctl };
3cfd4876 103allow domain self:file rw_file_perms;
1f6524ae 104kernel_read_proc_symlinks(domain)
3eaa9939
DW
105kernel_read_crypto_sysctls(domain)
106
495df416
CP
107# Every domain gets the key ring, so we should default
108# to no one allowed to look at it; afs kernel support creates
109# a keyring
110kernel_dontaudit_search_key(domain)
111kernel_dontaudit_link_key(domain)
3eaa9939 112kernel_dontaudit_search_debugfs(domain)
3cfd4876
CP
113
114# create child processes in the domain
3eaa9939 115allow domain self:process { fork getsched sigchld };
3cfd4876
CP
116
117# Use trusted objects in /dev
1a725aa0 118dev_read_cpu_online(domain)
3cfd4876
CP
119dev_rw_null(domain)
120dev_rw_zero(domain)
121term_use_controlling_term(domain)
122
123# list the root directory
124files_list_root(domain)
fb52482a
DW
125# allow all domains to search through default_t directory, since users sometimes
126# place labels within these directories. (samba_share_t) for example.
127files_search_default(domain)
3cfd4876 128
3eaa9939
DW
129# All executables should be able to search the directory they are in
130corecmd_search_bin(domain)
131
132tunable_policy(`domain_kernel_load_modules',`
133 kernel_request_load_module(domain)
134')
135
3cfd4876
CP
136tunable_policy(`global_ssp',`
137 # enable reading of urandom for all domains:
138 # this should be enabled when all programs
139 # are compiled with ProPolice/SSP
140 # stack smashing protection.
141 dev_read_urand(domain)
142')
b518fc2e 143
3eaa9939
DW
144optional_policy(`
145 afs_rw_cache(domain)
146')
147
8fddd0b9
MG
148optional_policy(`
149 libs_use_ld_so(domain)
150 libs_use_shared_libs(domain)
151 libs_read_lib_files(domain)
152')
6e68e6bb 153
165b42d2
CP
154optional_policy(`
155 setrans_translate_context(domain)
156')
157
495df416
CP
158# xdm passes an open file descriptor to xsession-errors.log which is then audited by all confined domains.
159optional_policy(`
160 xserver_dontaudit_use_xdm_fds(domain)
161 xserver_dontaudit_rw_xdm_pipes(domain)
3eaa9939
DW
162 xserver_dontaudit_append_xdm_home_files(domain)
163 xserver_dontaudit_write_log(domain)
495df416
CP
164')
165
b518fc2e
CP
166########################################
167#
168# Unconfined access to this module
169#
170
171# unconfined access also allows constraints, but this
172# is handled in the interface as typeattribute cannot
173# be used on an attribute.
174
175# Use/sendto/connectto sockets created by any domain.
176allow unconfined_domain_type domain:{ socket_class_set socket key_socket } *;
177
178# Use descriptors and pipes created by any domain.
179allow unconfined_domain_type domain:fd use;
180allow unconfined_domain_type domain:fifo_file rw_file_perms;
181
3eaa9939
DW
182allow unconfined_domain_type unconfined_domain_type:dbus send_msg;
183
b518fc2e 184# Act upon any other process.
995bdbb1 185allow unconfined_domain_type domain:process ~{ ptrace transition dyntransition execmem execstack execheap };
186tunable_policy(`deny_ptrace',`',`
187 allow unconfined_domain_type domain:process ptrace;
188')
b518fc2e
CP
189
190# Create/access any System V IPC objects.
191allow unconfined_domain_type domain:{ sem msgq shm } *;
192allow unconfined_domain_type domain:msg { send receive };
193
194# For /proc/pid
ef659a47 195allow unconfined_domain_type domain:dir list_dir_perms;
a65fd90a 196allow unconfined_domain_type domain:file rw_file_perms;
ef659a47 197allow unconfined_domain_type domain:lnk_file { read_lnk_file_perms ioctl lock };
d8226758
CP
198
199# act on all domains keys
200allow unconfined_domain_type domain:key *;
bdccbacd 201
b96b2004
DW
202dev_filetrans_all_named_dev(unconfined_domain_type)
203
bdccbacd
CP
204# receive from all domains over labeled networking
205domain_all_recvfrom_all_domains(unconfined_domain_type)
3eaa9939 206
b96b2004
DW
207storage_filetrans_all_named_dev(unconfined_domain_type)
208
209term_filetrans_all_named_dev(unconfined_domain_type)
210
951d25a5 211optional_policy(`
11578593
DW
212 auth_filetrans_named_content(unconfined_domain_type)
213 auth_filetrans_admin_home_content(unconfined_domain_type)
214 auth_filetrans_home_content(unconfined_domain_type)
951d25a5 215')
b96b2004
DW
216
217optional_policy(`
218 alsa_filetrans_named_content(unconfined_domain_type)
219')
220
221optional_policy(`
222 apache_filetrans_home_content(unconfined_domain_type)
223')
224
225optional_policy(`
226 bootloader_filetrans_config(unconfined_domain_type)
227')
228
b96b2004
DW
229optional_policy(`
230 devicekit_filetrans_named_content(unconfined_domain_type)
231')
232
233optional_policy(`
234 dnsmasq_filetrans_named_content(unconfined_domain_type)
235')
236
237optional_policy(`
238 kerberos_filetrans_named_content(unconfined_domain_type)
239')
240
951d25a5
DW
241optional_policy(`
242 libs_filetrans_named_content(unconfined_domain_type)
243')
244
245optional_policy(`
246 miscfiles_filetrans_named_content(unconfined_domain_type)
247')
248
b96b2004
DW
249optional_policy(`
250 mta_filetrans_named_content(unconfined_domain_type)
251')
252
951d25a5
DW
253optional_policy(`
254 modules_filetrans_named_content(unconfined_domain_type)
255')
256
b96b2004
DW
257optional_policy(`
258 networkmanager_filetrans_named_content(unconfined_domain_type)
259')
260
261optional_policy(`
262 nx_filetrans_named_content(unconfined_domain_type)
263')
264
7dd47a9a
DW
265optional_policy(`
266 postfix_filetrans_named_content(unconfined_domain_type)
267')
268
b96b2004
DW
269optional_policy(`
270 pulseaudio_filetrans_home_content(unconfined_domain_type)
271 pulseaudio_filetrans_admin_home_content(unconfined_domain_type)
272')
273
274optional_policy(`
275 quota_filetrans_named_content(unconfined_domain_type)
276')
277
951d25a5
DW
278optional_policy(`
279 sysnet_filetrans_named_content(unconfined_domain_type)
280')
281
282optional_policy(`
283 userdom_user_home_dir_filetrans_user_home_content(unconfined_domain_type, { dir file lnk_file fifo_file sock_file })
55a7fd92 284 userdom_filetrans_home_content(unconfined_domain_type)
951d25a5
DW
285')
286
b96b2004
DW
287optional_policy(`
288 virt_filetrans_home_content(unconfined_domain_type)
289')
290
291optional_policy(`
292 ssh_filetrans_admin_home_content(unconfined_domain_type)
293')
294
3eaa9939
DW
295selinux_getattr_fs(domain)
296selinux_search_fs(domain)
297selinux_dontaudit_read_fs(domain)
298
a9c4f705
DW
299optional_policy(`
300 seutil_dontaudit_read_config(domain)
301')
3eaa9939 302
a9c4f705
DW
303optional_policy(`
304 init_sigchld(domain)
305 init_signull(domain)
306')
3eaa9939
DW
307
308ifdef(`distro_redhat',`
309 files_search_mnt(domain)
310 optional_policy(`
311 unconfined_use_fds(domain)
312 ')
313')
314
315# these seem questionable:
316
317optional_policy(`
318 abrt_domtrans_helper(domain)
319 abrt_read_pid_files(domain)
320 abrt_read_state(domain)
321 abrt_signull(domain)
0e7fbb58
DW
322 abrt_append_cache(domain)
323 abrt_rw_fifo_file(domain)
3eaa9939
DW
324')
325
326optional_policy(`
327 rpm_use_fds(domain)
328 rpm_read_pipes(domain)
329 rpm_search_log(domain)
330 rpm_append_tmp_files(domain)
331 rpm_dontaudit_leaks(domain)
332 rpm_read_script_tmp_files(domain)
333 rpm_inherited_fifo(domain)
334')
335
336optional_policy(`
337 sosreport_append_tmp_files(domain)
338')
339
340tunable_policy(`allow_domain_fd_use',`
341 # Allow all domains to use fds past to them
342 allow domain domain:fd use;
343')
344
345optional_policy(`
346 cron_dontaudit_write_system_job_tmp_files(domain)
347 cron_rw_pipes(domain)
348 cron_rw_system_job_pipes(domain)
349')
350
351ifdef(`hide_broken_symptoms',`
352 dontaudit domain self:udp_socket listen;
353 allow domain domain:key { link search };
54f9ea9e 354 dontaudit domain domain:socket_class_set { read write };
c7c7cd24 355 dontaudit domain self:capability sys_module;
3eaa9939
DW
356')
357
dfe675b8
DW
358optional_policy(`
359 hal_dontaudit_read_pid_files(domain)
360')
361
5dd938af
DW
362optional_policy(`
363 ipsec_match_default_spd(domain)
364')
365
3eaa9939
DW
366optional_policy(`
367 ifdef(`hide_broken_symptoms',`
368 afs_rw_udp_sockets(domain)
369 ')
370')
371
372optional_policy(`
373 ssh_rw_pipes(domain)
374')
375
376optional_policy(`
377 unconfined_dontaudit_rw_pipes(domain)
378 unconfined_sigchld(domain)
379')
380
381# broken kernel
382dontaudit can_change_object_identity can_change_object_identity:key link;
54f9ea9e 383
e15a6502
DW
384ifdef(`distro_redhat',`
385 optional_policy(`
386 unconfined_use_fds(domain)
387 ')
388')
389
390# send init a sigchld and signull
391optional_policy(`
392 init_sigchld(domain)
393 init_signull(domain)
394')
395
396# these seem questionable:
397
398optional_policy(`
399 rpm_use_fds(domain)
400 rpm_read_pipes(domain)
401')
402
403optional_policy(`
404 selinux_dontaudit_getattr_fs(domain)
405 selinux_dontaudit_read_fs(domain)
406')
407
408optional_policy(`
409 seutil_dontaudit_read_config(domain)
410')
b8df5447
DW
411
412dontaudit domain domain:process { noatsecure siginh rlimitinh } ;
995bdbb1 413dontaudit domain self:capability sys_ptrace;