blob: c978ffa17e521e1163d1cb56a6bafd746d479d86 [file] [log] [blame]
Nick Kralevichdbd28d92013-06-27 15:11:02 -07001# Rules for all domains.
2
3# Allow reaping by init.
4allow domain init:process sigchld;
5
6# Read access to properties mapping.
7allow domain kernel:fd use;
8allow domain tmpfs:file { read getattr };
9
10# Search /storage/emulated tmpfs mount.
11allow domain tmpfs:dir r_dir_perms;
12
Nick Kralevichdbd28d92013-06-27 15:11:02 -070013# Intra-domain accesses.
Stephen Smalleybac4ccc2014-06-18 10:09:35 -040014allow domain self:process {
15 fork
16 sigchld
17 sigkill
18 sigstop
19 signull
20 signal
21 getsched
22 setsched
23 getsession
24 getpgid
25 setpgid
26 getcap
27 setcap
28 getattr
29 setrlimit
30};
Nick Kralevichdbd28d92013-06-27 15:11:02 -070031allow domain self:fd use;
32allow domain self:dir r_dir_perms;
33allow domain self:lnk_file r_file_perms;
34allow domain self:{ fifo_file file } rw_file_perms;
Stephen Smalley16011322014-02-24 15:06:11 -050035allow domain self:unix_dgram_socket { create_socket_perms sendto };
36allow domain self:unix_stream_socket { create_stream_socket_perms connectto };
Nick Kralevichdbd28d92013-06-27 15:11:02 -070037
38# Inherit or receive open files from others.
39allow domain init:fd use;
Alex Klyubin1fdee112013-09-13 15:59:04 -070040allow domain system_server:fd use;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070041
42# Connect to adbd and use a socket transferred from it.
Stephen Smalleyc4021ce2014-01-03 14:38:41 -050043# This is used for e.g. adb backup/restore.
Nick Kralevichdbd28d92013-06-27 15:11:02 -070044allow domain adbd:unix_stream_socket connectto;
45allow domain adbd:fd use;
Stephen Smalleyc4021ce2014-01-03 14:38:41 -050046allow domain adbd:unix_stream_socket { getattr getopt read write shutdown };
Nick Kralevichdbd28d92013-06-27 15:11:02 -070047
Nick Kralevich7d0f9552014-01-18 18:07:06 -080048userdebug_or_eng(`
49 # Same as adbd rules above, except allow su to do the same thing
50 allow domain su:unix_stream_socket connectto;
51 allow domain su:fd use;
52 allow domain su:unix_stream_socket { getattr getopt read write shutdown };
53
Stephen Smalley3dad7b62014-03-05 09:50:08 -050054 binder_call(domain, su)
55
Nick Kralevich7d0f9552014-01-18 18:07:06 -080056 # Running something like "pm dump com.android.bluetooth" requires
57 # fifo writes
58 allow domain su:fifo_file { write getattr };
59
60 # allow "gdbserver --attach" to work for su.
61 allow domain su:process sigchld;
Nick Kralevichd7e004e2014-10-31 12:40:12 -070062
63 # Allow writing coredumps to /cores/*
64 allow domain coredump_file:file create_file_perms;
65 allow domain coredump_file:dir ra_dir_perms;
Nick Kralevich7d0f9552014-01-18 18:07:06 -080066')
67
Nick Kralevich5919d1c2013-07-15 11:41:24 -070068###
69### Talk to debuggerd.
70###
Nick Kralevichdbd28d92013-06-27 15:11:02 -070071allow domain debuggerd:process sigchld;
72allow domain debuggerd:unix_stream_socket connectto;
73
74# Root fs.
75allow domain rootfs:dir r_dir_perms;
Nick Kralevich6634a102013-07-12 18:45:56 -070076allow domain rootfs:file r_file_perms;
Stephen Smalley712ca0a2013-10-23 13:25:53 -040077allow domain rootfs:lnk_file r_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070078
79# Device accesses.
80allow domain device:dir search;
Stephen Smalley712ca0a2013-10-23 13:25:53 -040081allow domain dev_type:lnk_file r_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070082allow domain devpts:dir search;
83allow domain device:file read;
Robert Craig20feb752014-03-06 10:16:53 -050084allow domain socket_device:dir r_dir_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070085allow domain owntty_device:chr_file rw_file_perms;
86allow domain null_device:chr_file rw_file_perms;
Nick Kralevichf007d032014-05-20 06:01:55 -070087allow domain zero_device:chr_file rw_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070088allow domain ashmem_device:chr_file rw_file_perms;
89allow domain binder_device:chr_file rw_file_perms;
90allow domain ptmx_device:chr_file rw_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070091allow domain log_device:dir search;
92allow domain log_device:chr_file rw_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070093allow domain alarm_device:chr_file r_file_perms;
Alex Klyubina2477052013-09-10 11:13:15 -070094allow domain urandom_device:chr_file rw_file_perms;
95allow domain random_device:chr_file rw_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -070096allow domain properties_device:file r_file_perms;
97
Mark Salyzyn8ed750e2013-11-12 15:34:52 -080098# logd access
99write_logd(domain)
100
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700101# Filesystem accesses.
102allow domain fs_type:filesystem getattr;
103allow domain fs_type:dir getattr;
104
105# System file accesses.
106allow domain system_file:dir r_dir_perms;
107allow domain system_file:file r_file_perms;
108allow domain system_file:file execute;
Stephen Smalley712ca0a2013-10-23 13:25:53 -0400109allow domain system_file:lnk_file r_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700110
111# Read files already opened under /data.
112allow domain system_data_file:dir { search getattr };
113allow domain system_data_file:file { getattr read };
Stephen Smalley712ca0a2013-10-23 13:25:53 -0400114allow domain system_data_file:lnk_file r_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700115
116# Read apk files under /data/app.
Geremy Condra81560732013-08-30 13:02:30 -0700117allow domain apk_data_file:dir { getattr search };
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700118allow domain apk_data_file:file r_file_perms;
Christopher Tate6f6c4252014-05-30 15:21:22 -0700119allow domain apk_data_file:lnk_file r_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700120
121# Read /data/dalvik-cache.
122allow domain dalvikcache_data_file:dir { search getattr };
123allow domain dalvikcache_data_file:file r_file_perms;
124
125# Read already opened /cache files.
126allow domain cache_file:dir r_dir_perms;
127allow domain cache_file:file { getattr read };
Stephen Smalley712ca0a2013-10-23 13:25:53 -0400128allow domain cache_file:lnk_file r_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700129
Nick Kralevich7466f9b2013-12-12 15:32:42 -0800130# Read timezone related information
131r_dir_file(domain, zoneinfo_data_file)
132
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700133# For /acct/uid/*/tasks.
134allow domain cgroup:dir { search write };
135allow domain cgroup:file w_file_perms;
136
137#Allow access to ion memory allocation device
138allow domain ion_device:chr_file rw_file_perms;
139
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700140# Read access to pseudo filesystems.
141r_dir_file(domain, proc)
142r_dir_file(domain, sysfs)
Nick Kralevich967f39a2013-10-30 14:12:21 -0700143r_dir_file(domain, sysfs_devices_system_cpu)
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700144r_dir_file(domain, inotify)
145r_dir_file(domain, cgroup)
Robert Craig529fcbe2014-01-07 13:46:56 -0500146r_dir_file(domain, proc_net)
Nick Kralevichf2c01182014-09-26 10:51:12 -0700147allow domain proc_cpuinfo:file r_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700148
149# debugfs access
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700150allow domain debugfs:dir r_dir_perms;
Nick Kralevich8758cc52013-07-11 11:30:20 -0700151allow domain debugfs:file w_file_perms;
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700152
Stephen Smalley712ca0a2013-10-23 13:25:53 -0400153# Get SELinux enforcing status.
Stephen Smalley00b180d2014-06-17 15:05:08 -0400154allow domain selinuxfs:dir r_dir_perms;
155allow domain selinuxfs:file r_file_perms;
Stephen Smalley712ca0a2013-10-23 13:25:53 -0400156
Stephen Smalleyf9268172014-02-24 11:35:39 -0500157# /data/security files
Nick Kralevichdbd28d92013-06-27 15:11:02 -0700158allow domain security_file:dir { search getattr };
159allow domain security_file:file getattr;
Stephen Smalleyf9268172014-02-24 11:35:39 -0500160allow domain security_file:lnk_file r_file_perms;
Nick Kralevich0c9708b2013-07-10 14:46:05 -0700161
Robert Craig48b18832014-02-04 11:36:41 -0500162# World readable asec image contents
163allow domain asec_public_file:file r_file_perms;
164allow domain { asec_public_file asec_apk_file }:dir r_dir_perms;
165
Riley Spahn344fc102014-07-07 13:56:27 -0700166allow domain servicemanager:service_manager list;
Riley Spahn344fc102014-07-07 13:56:27 -0700167allow domain service_manager_type:service_manager find;
Riley Spahn344fc102014-07-07 13:56:27 -0700168
Nick Kralevich26371982013-07-15 17:10:35 -0700169###
170### neverallow rules
171###
172
Stephen Smalleycb23ca92014-05-29 16:37:13 -0400173# Do not allow any confined domain to create new unlabeled files.
Nick Kralevich3508d612014-07-07 13:55:28 -0700174neverallow { domain -unconfineddomain -recovery } unlabeled:dir_file_class_set create;
Stephen Smalleycb23ca92014-05-29 16:37:13 -0400175
Stephen Smalley5487ca02014-02-10 16:31:04 -0500176# Limit ability to ptrace or read sensitive /proc/pid files of processes
177# with other UIDs to these whitelisted domains.
178neverallow { domain -debuggerd -vold -dumpstate -system_server } self:capability sys_ptrace;
179
Nick Kralevichb59dc272014-07-09 20:04:59 -0700180# Limit device node creation to these whitelisted domains.
181neverallow { domain -kernel -init -recovery -ueventd -watchdogd -healthd -vold -uncrypt } self:capability mknod;
182
183# Limit raw I/O to these whitelisted domains.
184neverallow { domain -kernel -init -recovery -ueventd -watchdogd -healthd -vold -uncrypt -tee } self:capability sys_rawio;
Stephen Smalley5487ca02014-02-10 16:31:04 -0500185
Stephen Smalley7ffb9972014-05-14 14:05:49 -0400186# No process can map low memory (< CONFIG_LSM_MMAP_MIN_ADDR).
187neverallow domain self:memprotect mmap_zero;
188
Stephen Smalley5487ca02014-02-10 16:31:04 -0500189# No domain needs mac_override as it is unused by SELinux.
Stephen Smalley04ee5df2014-01-30 13:23:08 -0500190neverallow domain self:capability2 mac_override;
Stephen Smalley5487ca02014-02-10 16:31:04 -0500191
192# Only recovery needs mac_admin to set contexts not defined in current policy.
Stephen Smalley04ee5df2014-01-30 13:23:08 -0500193neverallow { domain -recovery } self:capability2 mac_admin;
194
Stephen Smalleyfea6e662013-12-06 08:05:53 -0500195# Only init should be able to load SELinux policies.
196# The first load technically occurs while still in the kernel domain,
197# but this does not trigger a denial since there is no policy yet.
198# Policy reload requires allowing this to the init domain.
199neverallow { domain -init } kernel:security load_policy;
200
Stephen Smalley3235f612014-05-30 10:25:00 -0400201# Only init and the system_server can set selinux.reload_policy 1
202# to trigger a policy reload.
203neverallow { domain -init -system_server } security_prop:property_service set;
204
205# Only init and system_server can write to /data/security, where runtime
206# policy updates live.
207# Only init can relabel /data/security (for init.rc restorecon_recursive /data).
208neverallow { domain -init } security_file:{ dir file lnk_file } { relabelfrom relabelto };
209# Only init and system_server can create/setattr directories with this type.
210# init is for init.rc mkdir /data/security.
211# system_server is for creating subdirectories under /data/security.
212neverallow { domain -init -system_server } security_file:dir { create setattr };
213# Only system_server can create subdirectories and files under /data/security.
214neverallow { domain -system_server } security_file:dir { rename write add_name remove_name rmdir };
215neverallow { domain -system_server } security_file:file { create setattr write append unlink link rename };
216neverallow { domain -system_server } security_file:lnk_file { create setattr unlink rename };
217
Stephen Smalleyfea6e662013-12-06 08:05:53 -0500218# Only init prior to switching context should be able to set enforcing mode.
219# init starts in kernel domain and switches to init domain via setcon in
220# the init.rc, so the setenforce occurs while still in kernel. After
221# switching domains, there is never any need to setenforce again by init.
Nick Kralevichabae8a92014-05-12 14:32:59 -0700222neverallow domain kernel:security setenforce;
223neverallow { domain -kernel } kernel:security setcheckreqprot;
Stephen Smalley01301542013-09-27 10:38:14 -0400224
Stephen Smalley853ffaa2014-03-06 13:02:50 -0500225# No booleans in AOSP policy, so no need to ever set them.
226neverallow domain kernel:security setbool;
227
228# Adjusting the AVC cache threshold.
229# Not presently allowed to anything in policy, but possibly something
230# that could be set from init.rc.
231neverallow { domain -init } kernel:security setsecparam;
232
William Roberts85c5fc22013-10-06 15:36:11 -0400233# Only init, ueventd and system_server should be able to access HW RNG
234neverallow { domain -init -system_server -ueventd -unconfineddomain } hw_random_device:chr_file *;
Alex Klyubin8d688312013-10-03 13:35:56 -0700235
Stephen Smalley01301542013-09-27 10:38:14 -0400236# Ensure that all entrypoint executables are in exec_type.
237neverallow domain { file_type -exec_type }:file entrypoint;
Geremy Condraddf98fa2013-10-31 11:17:23 -0700238
239# Ensure that nothing in userspace can access /dev/mem or /dev/kmem
240neverallow { domain -kernel -ueventd -init } kmem_device:chr_file *;
241neverallow domain kmem_device:chr_file ~{ create relabelto unlink setattr };
Stephen Smalley7adb9992013-12-06 09:31:40 -0500242
243# Only init should be able to configure kernel usermodehelpers or
244# security-sensitive proc settings.
245neverallow { domain -init } usermodehelper:file { append write };
246neverallow { domain -init } proc_security:file { append write };
Stephen Smalley95e08422013-12-09 12:49:47 -0500247
248# No domain should be allowed to ptrace init.
249neverallow domain init:process ptrace;
Nick Kralevicha730e502014-01-03 20:44:07 -0800250
251# Init can't receive binder calls. If this neverallow rule is being
252# triggered, it's probably due to a service with no SELinux domain.
253neverallow domain init:binder call;
William Robertsd0919ec2014-01-30 09:10:28 -0800254
255# Don't allow raw read/write/open access to block_device
256# Rather force a relabel to a more specific type
Nick Kralevich9f6af082014-07-02 16:18:16 -0700257neverallow { domain -kernel -init -recovery -vold -uncrypt -install_recovery } block_device:blk_file { open read write };
William Robertsa637b2f2014-01-30 09:15:45 -0800258
259# Don't allow raw read/write/open access to generic devices.
260# Rather force a relabel to a more specific type.
261# ueventd is exempt from this, as its managing these devices.
Nick Kralevich0055ea92014-11-07 12:02:27 -0800262neverallow { domain -unconfineddomain -ueventd -recovery } device:chr_file { open read write };
Stephen Smalleyb081cc12014-02-10 13:29:38 -0500263
264# Limit what domains can mount filesystems or change their mount flags.
265# sdcard_type / vfat is exempt as a larger set of domains need
266# this capability, including device-specific domains.
267neverallow { domain -kernel -init -recovery -vold -zygote } { fs_type -sdcard_type }:filesystem { mount remount relabelfrom relabelto };
Nick Kralevich629fbc92014-05-23 16:08:23 -0700268
269#
270# Assert that, to the extent possible, we're not loading executable content from
Stephen Smalley9d2703a2014-07-21 10:21:20 -0400271# outside the rootfs or /system partition except for a few whitelisted domains.
Nick Kralevich629fbc92014-05-23 16:08:23 -0700272#
273neverallow {
274 domain
275 -appdomain
276 -dumpstate
Stephen Smalley42fb8242014-06-11 07:10:09 -0400277 -shell
Nick Kralevich629fbc92014-05-23 16:08:23 -0700278 userdebug_or_eng(`-su')
279 -system_server
280 -zygote
281} { file_type -system_file -exec_type }:file execute;
Stephen Smalley9d2703a2014-07-21 10:21:20 -0400282neverallow {
283 domain
284 -appdomain # for oemfs
285 -recovery # for /tmp/update_binary in tmpfs
286} { fs_type -rootfs }:file execute;
Stephen Smalleyad0d0fc2014-05-29 09:22:16 -0400287
288# Only the init property service should write to /data/property.
289neverallow { domain -init } property_data_file:dir { create setattr relabelfrom rename write add_name remove_name rmdir };
290neverallow { domain -init } property_data_file:file { create setattr relabelfrom write append unlink link rename };
Nick Kralevich03ce5122014-05-20 11:09:16 -0700291
292# Only recovery should be doing writes to /system
293neverallow { domain -recovery } { system_file exec_type }:dir_file_class_set
294 { create write setattr relabelfrom relabelto append unlink link rename };
Stephen Smalley75e2ef92014-06-16 13:05:38 -0400295
Stephen Smalley04b8a752014-06-19 11:26:22 -0400296# Nothing should be writing to files in the rootfs.
Nick Kralevich0055ea92014-11-07 12:02:27 -0800297neverallow { domain -recovery } rootfs:file { create write setattr relabelto append unlink link rename };
Stephen Smalley04b8a752014-06-19 11:26:22 -0400298
Stephen Smalley75e2ef92014-06-16 13:05:38 -0400299# Restrict context mounts to specific types marked with
300# the contextmount_type attribute.
301neverallow domain {fs_type -contextmount_type}:filesystem relabelto;
302
303# Ensure that context mount types are not writable, to ensure that
304# the write to /system restriction above is not bypassed via context=
305# mount to another type.
306neverallow { domain -recovery } contextmount_type:dir_file_class_set
307 { create write setattr relabelfrom relabelto append unlink link rename };
Riley Spahn76206ab2014-07-07 09:27:53 -0700308
309# Do not allow service_manager add for default_android_service.
310# Instead domains should use a more specific type such as
311# system_app_service rather than the generic type.
312# New service_types are defined in service.te and new mappings
313# from service name to service_type are defined in service_contexts.
314neverallow domain default_android_service:service_manager add;
dcashman47bd7302014-09-08 13:11:01 -0700315
316neverallow { domain -init -recovery -system_server } frp_block_device:blk_file rw_file_perms;