blob: c1cd6c75681ca87da50b1725a1230960341052d6 [file] [log] [blame]
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -08001###
2### Untrusted_app_all.
3###
Chad Brubakerb93f0492017-03-29 14:53:09 -07004### This file defines the rules shared by all untrusted app domains except
Nick Kralevich41b21ee2018-08-06 12:36:20 -07005### ephemeral_app for instant apps.
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -08006### Apps are labeled based on mac_permissions.xml (maps signer and
7### optionally package name to seinfo value) and seapp_contexts (maps UID
8### and optionally seinfo value to domain for process and type for data
9### directory). The untrusted_app_all attribute is assigned to all default
10### seapp_contexts for any app with UID between APP_AID (10000)
11### and AID_ISOLATED_START (99000) if the app has no specific seinfo
12### value as determined from mac_permissions.xml. In current AOSP, this
13### attribute is assigned to all non-system apps as well as to any system apps
14### that are not signed by the platform key. To move
15### a system app into a specific domain, add a signer entry for it to
16### mac_permissions.xml and assign it one of the pre-existing seinfo values
17### or define and use a new seinfo value in both mac_permissions.xml and
18### seapp_contexts.
19###
Chad Brubakereda4b882017-04-26 12:32:51 -070020### Note that rules that should apply to all untrusted apps must be in app.te or also
Nick Kralevich41b21ee2018-08-06 12:36:20 -070021### added to ephemeral_app.te.
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080022
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080023# Some apps ship with shared libraries and binaries that they write out
24# to their sandbox directory and then execute.
Nick Kralevich0eb0a162018-12-12 09:06:05 -080025allow untrusted_app_all privapp_data_file:file { r_file_perms execute };
Nick Kralevich65a89c12018-12-21 10:03:50 -080026allow untrusted_app_all app_data_file:file { r_file_perms execute };
Nick Kralevich0eb0a162018-12-12 09:06:05 -080027
Nick Kralevich9ea8c072019-02-06 13:19:19 -080028# Chrome Crashpad uses the the dynamic linker to load native executables
29# from an APK (b/112050209, crbug.com/928422)
30allow untrusted_app_all system_linker_exec:file execute_no_trans;
31
Nick Kralevich87e91232019-01-24 13:05:03 -080032# Follow priv-app symlinks. This is used for dynamite functionality.
33allow untrusted_app_all privapp_data_file:lnk_file r_file_perms;
34
35# Allow handling of less common filesystem objects
36allow untrusted_app_all app_data_file:{ lnk_file sock_file fifo_file } create_file_perms;
37
Nick Kralevichfb66c6f2019-01-11 09:37:46 -080038# Allow loading and deleting executable shared libraries
39# within an application home directory. Such shared libraries would be
40# created by things like renderscript or via other mechanisms.
41allow untrusted_app_all app_exec_data_file:file { r_file_perms execute unlink };
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080042
43# ASEC
44allow untrusted_app_all asec_apk_file:file r_file_perms;
45allow untrusted_app_all asec_apk_file:dir r_dir_perms;
46# Execute libs in asec containers.
Nick Kralevichf3eb9852018-08-07 15:14:34 -070047allow untrusted_app_all asec_public_file:file { execute };
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080048
49# Used by Finsky / Android "Verify Apps" functionality when
50# running "adb install foo.apk".
51# TODO: Long term, we don't want apps probing into shell data files.
52# Figure out a way to remove these rules.
53allow untrusted_app_all shell_data_file:file r_file_perms;
54allow untrusted_app_all shell_data_file:dir r_dir_perms;
55
Max Bires278147e2018-01-23 12:32:55 -080056# Allow traceur to pass file descriptors through a content provider to untrusted apps
57# for the purpose of sharing files through e.g. gmail
58allow untrusted_app_all trace_data_file:file { getattr read };
59
60# untrusted apps should not be able to open trace data files, they should depend
61# upon traceur to pass a file descriptor
62neverallow untrusted_app_all trace_data_file:dir *;
63neverallow untrusted_app_all trace_data_file:file { no_w_file_perms open };
64
Dan Cashman91d398d2017-09-26 12:58:29 -070065# Allow to read staged apks.
66allow untrusted_app_all { apk_tmp_file apk_private_tmp_file }:file {read getattr};
67
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080068# Read and write system app data files passed over Binder.
69# Motivating case was /data/data/com.android.settings/cache/*.jpg for
70# cropping or taking user photos.
71allow untrusted_app_all system_app_data_file:file { read write getattr };
72
73#
74# Rules migrated from old app domains coalesced into untrusted_app.
75# This includes what used to be media_app, shared_app, and release_app.
76#
77
78# Access to /data/media.
79allow untrusted_app_all media_rw_data_file:dir create_dir_perms;
80allow untrusted_app_all media_rw_data_file:file create_file_perms;
81
82# Traverse into /mnt/media_rw for bypassing FUSE daemon
83# TODO: narrow this to just MediaProvider
84allow untrusted_app_all mnt_media_rw_file:dir search;
85
86# allow cts to query all services
87allow untrusted_app_all servicemanager:service_manager list;
88
89allow untrusted_app_all audioserver_service:service_manager find;
90allow untrusted_app_all cameraserver_service:service_manager find;
91allow untrusted_app_all drmserver_service:service_manager find;
92allow untrusted_app_all mediaserver_service:service_manager find;
93allow untrusted_app_all mediaextractor_service:service_manager find;
94allow untrusted_app_all mediacodec_service:service_manager find;
95allow untrusted_app_all mediametrics_service:service_manager find;
96allow untrusted_app_all mediadrmserver_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080097allow untrusted_app_all nfc_service:service_manager find;
98allow untrusted_app_all radio_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080099allow untrusted_app_all app_api_service:service_manager find;
100allow untrusted_app_all vr_manager_service:service_manager find;
Yiwei Zhang544d6b32019-02-07 15:00:55 -0800101allow untrusted_app_all gpu_service:service_manager find;
102
103# Allow untrusted apps to interact with gpuservice
104binder_call(untrusted_app_all, gpuservice)
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -0800105
106# Allow GMS core to access perfprofd output, which is stored
107# in /data/misc/perfprofd/. GMS core will need to list all
108# data stored in that directory to process them one by one.
109userdebug_or_eng(`
110 allow untrusted_app_all perfprofd_data_file:file r_file_perms;
111 allow untrusted_app_all perfprofd_data_file:dir r_dir_perms;
112')
113
114# gdbserver for ndk-gdb ptrace attaches to app process.
115allow untrusted_app_all self:process ptrace;
116
Nick Kralevich3e5668f2019-01-23 14:39:43 -0800117# Android Studio Instant Run has the application connect to a
118# runas_app socket listening in the abstract namespace.
119# https://developer.android.com/studio/run/
120# b/123297648
121allow untrusted_app_all runas_app:unix_stream_socket connectto;
122
Nick Kralevich337f5642019-01-30 13:19:36 -0800123# Untrusted apps need to be able to send a SIGCHLD to runas_app
124# when running under a debugger (b/123612207)
125allow untrusted_app_all runas_app:process sigchld;
126
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -0800127# Cts: HwRngTest
128allow untrusted_app_all sysfs_hwrandom:dir search;
129allow untrusted_app_all sysfs_hwrandom:file r_file_perms;
130
Fyodor Kupolovb238fe62017-03-14 11:42:03 -0700131# Allow apps to view preloaded media content
132allow untrusted_app_all preloads_media_file:dir r_dir_perms;
133allow untrusted_app_all preloads_media_file:file r_file_perms;
134allow untrusted_app_all preloads_data_file:dir search;
Sandeep Patilef7b2102017-04-28 13:17:26 -0700135
136# Allow untrusted apps read / execute access to /vendor/app for there can
137# be pre-installed vendor apps that package a library within themselves.
138# TODO (b/37784178) Consider creating a special type for /vendor/app installed
139# apps.
140allow untrusted_app_all vendor_app_file:dir { open getattr read search };
Nick Kralevich0bfa7b52018-10-26 13:11:52 -0700141allow untrusted_app_all vendor_app_file:file { r_file_perms execute };
Sandeep Patilef7b2102017-04-28 13:17:26 -0700142allow untrusted_app_all vendor_app_file:lnk_file { open getattr read };
Primiano Tuccic80f9e02017-12-21 03:51:15 +0100143
144# Write app-specific trace data to the Perfetto traced damon. This requires
145# connecting to its producer socket and obtaining a (per-process) tmpfs fd.
146allow untrusted_app_all traced:fd use;
147allow untrusted_app_all traced_tmpfs:file { read write getattr map };
148unix_socket_connect(untrusted_app_all, traced_producer, traced)
Nathan Haroldee268642017-12-14 18:20:30 -0800149
Ryan Savitskica0690e2019-01-16 16:29:43 +0000150# Allow heap profiling if the app opts in by being marked
151# profileable/debuggable.
152can_profile_heap(untrusted_app_all)
153
Nathan Haroldee268642017-12-14 18:20:30 -0800154# allow untrusted apps to use UDP sockets provided by the system server but not
155# modify them other than to connect
Nathan Harold252b0152018-03-27 06:34:54 -0700156allow untrusted_app_all system_server:udp_socket {
157 connect getattr read recvfrom sendto write getopt setopt };
Joel Galensond93ef542018-03-26 16:37:42 -0700158
Nick Kralevich0eb0a162018-12-12 09:06:05 -0800159# Allow the renderscript compiler to be run.
160domain_auto_trans(untrusted_app_all, rs_exec, rs)
161
Joel Galensond93ef542018-03-26 16:37:42 -0700162# This is allowed for targetSdkVersion <= 25 but disallowed on newer versions.
163dontaudit untrusted_app_all net_dns_prop:file read;
164
165# These have been disallowed since Android O.
166# For P, we assume that apps are safely handling the denial.
167dontaudit untrusted_app_all proc_stat:file read;
168dontaudit untrusted_app_all proc_vmstat:file read;
169dontaudit untrusted_app_all proc_uptime:file read;
Jeff Vander Stoep3aa7ca52018-04-03 11:22:38 -0700170
171# Allow the allocation and use of ptys
172# Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm
173create_pty(untrusted_app_all)
Jeff Vander Stoep7a4af302018-04-10 12:47:48 -0700174
Jeff Vander Stoep9c7396d2018-06-01 12:12:11 -0700175# Attempts to write to system_data_file is generally a sign
176# that apps are attempting to access encrypted storage before
177# the ACTION_USER_UNLOCKED intent is delivered. Suppress this
178# denial to prevent third party apps from spamming the logs.
179dontaudit untrusted_app_all system_data_file:dir write;
Dan Austin55d90962018-11-29 10:37:18 -0800180
181# Allow access to kcov via its ioctl interface for coverage
182# guided kernel fuzzing.
183userdebug_or_eng(`
184 allow untrusted_app_all debugfs_kcov:file rw_file_perms;
185 allowxperm untrusted_app_all debugfs_kcov:file ioctl { KCOV_INIT_TRACE KCOV_ENABLE KCOV_DISABLE };
186')
Tri Vo73d0a672019-01-27 13:39:19 -0800187
188# Allow access to ashmemd to request /dev/ashmem fds.
189binder_call(untrusted_app_all, ashmemd)
190
191# TODO(b/113362644): audit apps directly using /dev/ashmem and emit error
192# message with info on how to fix that.