blob: 80425dd8ad7dc25c5a99e2d687d353e99096a0fd [file] [log] [blame]
Alex Klyubin92295ef2017-01-05 15:44:32 -08001###
2### A domain for further sandboxing privileged apps.
3###
4
Alex Klyubinf5446eb2017-03-23 14:27:32 -07005typeattribute priv_app coredomain;
dcashman3e8dbf02016-12-08 11:23:34 -08006app_domain(priv_app)
dcashman2e00e632016-10-12 14:58:09 -07007
Alex Klyubin92295ef2017-01-05 15:44:32 -08008# Access the network.
9net_domain(priv_app)
10# Access bluetooth.
11bluetooth_domain(priv_app)
12
dcashman2e00e632016-10-12 14:58:09 -070013# Allow the allocation and use of ptys
14# Used by: https://play.privileged.com/store/apps/details?id=jackpal.androidterm
15create_pty(priv_app)
Alex Klyubin92295ef2017-01-05 15:44:32 -080016
17# webview crash handling depends on self ptrace (b/27697529, b/20150694, b/19277529#comment7)
18allow priv_app self:process ptrace;
19
20# Some apps ship with shared libraries that they write out
21# to their sandbox directory and then dlopen().
Daniel Micay41e3ee462017-01-08 17:19:02 -050022allow priv_app app_data_file:file execute;
Alex Klyubin92295ef2017-01-05 15:44:32 -080023
yro31b11d82018-01-09 11:27:36 -080024allow priv_app app_api_service:service_manager find;
Alex Klyubin92295ef2017-01-05 15:44:32 -080025allow priv_app audioserver_service:service_manager find;
26allow priv_app cameraserver_service:service_manager find;
27allow priv_app drmserver_service:service_manager find;
28allow priv_app mediacodec_service:service_manager find;
29allow priv_app mediadrmserver_service:service_manager find;
30allow priv_app mediaextractor_service:service_manager find;
yro31b11d82018-01-09 11:27:36 -080031allow priv_app mediametrics_service:service_manager find;
Alex Klyubin92295ef2017-01-05 15:44:32 -080032allow priv_app mediaserver_service:service_manager find;
Ricky Waic6352972017-11-13 17:52:05 +000033allow priv_app network_watchlist_service:service_manager find;
Alex Klyubin92295ef2017-01-05 15:44:32 -080034allow priv_app nfc_service:service_manager find;
Andrew Scull37174242017-02-17 13:51:32 +000035allow priv_app oem_lock_service:service_manager find;
Alex Klyubin92295ef2017-01-05 15:44:32 -080036allow priv_app persistent_data_block_service:service_manager find;
yro31b11d82018-01-09 11:27:36 -080037allow priv_app radio_service:service_manager find;
Alex Klyubin92295ef2017-01-05 15:44:32 -080038allow priv_app recovery_service:service_manager find;
yro31b11d82018-01-09 11:27:36 -080039allow priv_app stats_service:service_manager find;
40allow priv_app system_api_service:service_manager find;
Alex Klyubin92295ef2017-01-05 15:44:32 -080041
42# Write to /cache.
43allow priv_app { cache_file cache_recovery_file }:dir create_dir_perms;
44allow priv_app { cache_file cache_recovery_file }:file create_file_perms;
Nick Kralevich21cb0452017-01-23 22:19:06 -080045# /cache is a symlink to /data/cache on some devices. Allow reading the link.
46allow priv_app cache_file:lnk_file r_file_perms;
Alex Klyubin92295ef2017-01-05 15:44:32 -080047
48# Write to /data/ota_package for OTA packages.
49allow priv_app ota_package_file:dir rw_dir_perms;
50allow priv_app ota_package_file:file create_file_perms;
51
52# Access to /data/media.
53allow priv_app media_rw_data_file:dir create_dir_perms;
54allow priv_app media_rw_data_file:file create_file_perms;
55
56# Used by Finsky / Android "Verify Apps" functionality when
57# running "adb install foo.apk".
58allow priv_app shell_data_file:file r_file_perms;
59allow priv_app shell_data_file:dir r_dir_perms;
60
Max Bires715e2ae2018-03-13 09:56:27 -070061# Allow traceur to pass file descriptors through a content provider to betterbug
62allow priv_app trace_data_file:file { getattr read };
63
Alex Klyubin92295ef2017-01-05 15:44:32 -080064# Allow verifier to access staged apks.
65allow priv_app { apk_tmp_file apk_private_tmp_file }:dir r_dir_perms;
66allow priv_app { apk_tmp_file apk_private_tmp_file }:file r_file_perms;
67
68# b/18504118: Allow reads from /data/anr/traces.txt
69allow priv_app anr_data_file:file r_file_perms;
70
71# Allow GMS core to access perfprofd output, which is stored
72# in /data/misc/perfprofd/. GMS core will need to list all
73# data stored in that directory to process them one by one.
74userdebug_or_eng(`
75 allow priv_app perfprofd_data_file:file r_file_perms;
76 allow priv_app perfprofd_data_file:dir r_dir_perms;
77')
78
Alex Klyubin92295ef2017-01-05 15:44:32 -080079# For AppFuse.
80allow priv_app vold:fd use;
81allow priv_app fuse_device:chr_file { read write };
82
Tri Vof92cfb92017-12-08 15:37:01 -080083# /proc access
84allow priv_app {
85 proc_vmstat
86}:file r_file_perms;
87
88allow priv_app sysfs_type:dir search;
89# Read access to /sys/class/net/wlan*/address
90r_dir_file(priv_app, sysfs_net)
91# Read access to /sys/block/zram*/mm_stat
92r_dir_file(priv_app, sysfs_zram)
93
Alex Klyubin92295ef2017-01-05 15:44:32 -080094r_dir_file(priv_app, rootfs)
95
Sandeep Patil04654422017-04-19 11:35:15 -070096# Allow GMS core to open kernel config for OTA matching through libvintf
97allow priv_app config_gz:file { open read getattr };
98
Alex Klyubin92295ef2017-01-05 15:44:32 -080099# access the mac address
100allowxperm priv_app self:udp_socket ioctl SIOCGIFHWADDR;
101
102# Allow GMS core to communicate with update_engine for A/B update.
103binder_call(priv_app, update_engine)
104allow priv_app update_engine_service:service_manager find;
105
Jin Qian00a17892017-04-12 17:38:11 -0700106# Allow GMS core to communicate with dumpsys storaged.
107binder_call(priv_app, storaged)
108allow priv_app storaged_service:service_manager find;
109
Tao Baod7d9cfc2017-10-16 21:57:12 -0700110# Allow GMS core to access system_update_service (e.g. to publish pending
111# system update info).
112allow priv_app system_update_service:service_manager find;
113
yro31b11d82018-01-09 11:27:36 -0800114# Allow GMS core to communicate with statsd.
115binder_call(priv_app, statsd)
116
Alex Klyubin92295ef2017-01-05 15:44:32 -0800117# Allow Phone to read/write cached ringtones (opened by system).
118allow priv_app ringtone_file:file { getattr read write };
119
120# Access to /data/preloads
121allow priv_app preloads_data_file:file r_file_perms;
122allow priv_app preloads_data_file:dir r_dir_perms;
Fyodor Kupolovb238fe62017-03-14 11:42:03 -0700123allow priv_app preloads_media_file:file r_file_perms;
124allow priv_app preloads_media_file:dir r_dir_perms;
Alex Klyubin92295ef2017-01-05 15:44:32 -0800125
Shawn Willdena0c7f012017-04-11 09:41:25 -0600126# Allow privileged apps (e.g. GMS core) to generate unique hardware IDs
127allow priv_app keystore:keystore_key gen_unique_id;
128
Dan Cashman91d398d2017-09-26 12:58:29 -0700129# Allow GMS core to access /sys/fs/selinux/policyvers for compatibility check
130allow priv_app selinuxfs:file r_file_perms;
131
Mark Salyzynd33a9a12016-11-07 15:11:39 -0800132read_runtime_log_tags(priv_app)
133
Primiano Tuccic80f9e02017-12-21 03:51:15 +0100134# Write app-specific trace data to the Perfetto traced damon. This requires
135# connecting to its producer socket and obtaining a (per-process) tmpfs fd.
136allow priv_app traced:fd use;
137allow priv_app traced_tmpfs:file { read write getattr map };
138unix_socket_connect(priv_app, traced_producer, traced)
139
Jeff Vander Stoep6d8a8762018-01-18 08:55:02 -0800140# suppress denials for non-API accesses.
Dan Cashman91d398d2017-09-26 12:58:29 -0700141dontaudit priv_app exec_type:file getattr;
Jeff Vander Stoep62338482017-10-20 13:35:42 -0700142dontaudit priv_app device:dir read;
Tri Vof92cfb92017-12-08 15:37:01 -0800143dontaudit priv_app proc:file read;
Jeff Vander Stoep62338482017-10-20 13:35:42 -0700144dontaudit priv_app proc_interrupts:file read;
145dontaudit priv_app proc_modules:file read;
Jeff Vander Stoepe88d6492018-01-29 20:50:59 -0800146dontaudit priv_app proc_stat:file read;
Jeff Vander Stoep6d8a8762018-01-18 08:55:02 -0800147dontaudit priv_app proc_version:file read;
148dontaudit priv_app wifi_prop:file read;
149dontaudit priv_app net_dns_prop:file read;
Dan Cashman91d398d2017-09-26 12:58:29 -0700150
Nathan Haroldee268642017-12-14 18:20:30 -0800151# allow privileged apps to use UDP sockets provided by the system server but not
152# modify them other than to connect
153allow priv_app system_server:udp_socket { connect getattr read recvfrom sendto write };
154
Alex Klyubin92295ef2017-01-05 15:44:32 -0800155###
156### neverallow rules
157###
158
159# Receive or send uevent messages.
160neverallow priv_app domain:netlink_kobject_uevent_socket *;
161
162# Receive or send generic netlink messages
163neverallow priv_app domain:netlink_socket *;
164
165# Too much leaky information in debugfs. It's a security
166# best practice to ensure these files aren't readable.
167neverallow priv_app debugfs:file read;
168
169# Do not allow privileged apps to register services.
170# Only trusted components of Android should be registering
171# services.
172neverallow priv_app service_manager_type:service_manager add;
173
174# Do not allow privileged apps to connect to the property service
175# or set properties. b/10243159
176neverallow priv_app property_socket:sock_file write;
177neverallow priv_app init:unix_stream_socket connectto;
178neverallow priv_app property_type:property_service set;
179
180# Do not allow priv_app to be assigned mlstrustedsubject.
181# This would undermine the per-user isolation model being
182# enforced via levelFrom=user in seapp_contexts and the mls
183# constraints. As there is no direct way to specify a neverallow
184# on attribute assignment, this relies on the fact that fork
185# permission only makes sense within a domain (hence should
186# never be granted to any other domain within mlstrustedsubject)
187# and priv_app is allowed fork permission to itself.
188neverallow priv_app mlstrustedsubject:process fork;
189
190# Do not allow priv_app to hard link to any files.
191# In particular, if priv_app links to other app data
192# files, installd will not be able to guarantee the deletion
193# of the linked to file. Hard links also contribute to security
194# bugs, so we want to ensure priv_app never has this
195# capability.
196neverallow priv_app file_type:file link;
Max Bires715e2ae2018-03-13 09:56:27 -0700197
198# priv apps should not be able to open trace data files, they should depend
199# upon traceur to pass a file descriptor which they can then read
200neverallow priv_app trace_data_file:dir *;
201neverallow priv_app trace_data_file:file { no_w_file_perms open };