blob: 23ee9435d9bb57e554b2a959bb044fd7c30a82fc [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
Steven Moreland826b92f2020-09-17 17:15:26 +00005### ephemeral_app for instant apps and isolated_app (which has a reduced
6### permission set).
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -08007### Apps are labeled based on mac_permissions.xml (maps signer and
8### optionally package name to seinfo value) and seapp_contexts (maps UID
9### and optionally seinfo value to domain for process and type for data
10### directory). The untrusted_app_all attribute is assigned to all default
11### seapp_contexts for any app with UID between APP_AID (10000)
12### and AID_ISOLATED_START (99000) if the app has no specific seinfo
13### value as determined from mac_permissions.xml. In current AOSP, this
14### attribute is assigned to all non-system apps as well as to any system apps
15### that are not signed by the platform key. To move
16### a system app into a specific domain, add a signer entry for it to
17### mac_permissions.xml and assign it one of the pre-existing seinfo values
18### or define and use a new seinfo value in both mac_permissions.xml and
19### seapp_contexts.
20###
Chad Brubakereda4b882017-04-26 12:32:51 -070021### Note that rules that should apply to all untrusted apps must be in app.te or also
Nick Kralevich41b21ee2018-08-06 12:36:20 -070022### added to ephemeral_app.te.
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080023
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080024# Some apps ship with shared libraries and binaries that they write out
25# to their sandbox directory and then execute.
Nick Kralevich0eb0a162018-12-12 09:06:05 -080026allow untrusted_app_all privapp_data_file:file { r_file_perms execute };
Nick Kralevich65a89c12018-12-21 10:03:50 -080027allow untrusted_app_all app_data_file:file { r_file_perms execute };
Alan Stokes931623e2019-02-27 18:07:09 +000028auditallow untrusted_app_all app_data_file:file execute;
Nick Kralevich0eb0a162018-12-12 09:06:05 -080029
Nick Kralevich9ea8c072019-02-06 13:19:19 -080030# Chrome Crashpad uses the the dynamic linker to load native executables
31# from an APK (b/112050209, crbug.com/928422)
32allow untrusted_app_all system_linker_exec:file execute_no_trans;
33
Nick Kralevich87e91232019-01-24 13:05:03 -080034# Follow priv-app symlinks. This is used for dynamite functionality.
35allow untrusted_app_all privapp_data_file:lnk_file r_file_perms;
36
37# Allow handling of less common filesystem objects
38allow untrusted_app_all app_data_file:{ lnk_file sock_file fifo_file } create_file_perms;
39
Nick Kralevichfb66c6f2019-01-11 09:37:46 -080040# Allow loading and deleting executable shared libraries
41# within an application home directory. Such shared libraries would be
42# created by things like renderscript or via other mechanisms.
43allow untrusted_app_all app_exec_data_file:file { r_file_perms execute unlink };
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080044
45# ASEC
46allow untrusted_app_all asec_apk_file:file r_file_perms;
47allow untrusted_app_all asec_apk_file:dir r_dir_perms;
48# Execute libs in asec containers.
Nick Kralevichf3eb9852018-08-07 15:14:34 -070049allow untrusted_app_all asec_public_file:file { execute };
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080050
51# Used by Finsky / Android "Verify Apps" functionality when
52# running "adb install foo.apk".
53# TODO: Long term, we don't want apps probing into shell data files.
54# Figure out a way to remove these rules.
55allow untrusted_app_all shell_data_file:file r_file_perms;
56allow untrusted_app_all shell_data_file:dir r_dir_perms;
57
Max Bires278147e2018-01-23 12:32:55 -080058# Allow traceur to pass file descriptors through a content provider to untrusted apps
59# for the purpose of sharing files through e.g. gmail
60allow untrusted_app_all trace_data_file:file { getattr read };
61
62# untrusted apps should not be able to open trace data files, they should depend
63# upon traceur to pass a file descriptor
64neverallow untrusted_app_all trace_data_file:dir *;
65neverallow untrusted_app_all trace_data_file:file { no_w_file_perms open };
66
Adam Shih25437152020-12-07 16:30:29 +080067# neverallow untrusted apps accessing debugfs_tracing
68neverallow untrusted_app_all debugfs_tracing:file no_rw_file_perms;
69
Dan Cashman91d398d2017-09-26 12:58:29 -070070# Allow to read staged apks.
71allow untrusted_app_all { apk_tmp_file apk_private_tmp_file }:file {read getattr};
72
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080073# Read and write system app data files passed over Binder.
74# Motivating case was /data/data/com.android.settings/cache/*.jpg for
75# cropping or taking user photos.
76allow untrusted_app_all system_app_data_file:file { read write getattr };
77
78#
79# Rules migrated from old app domains coalesced into untrusted_app.
80# This includes what used to be media_app, shared_app, and release_app.
81#
82
83# Access to /data/media.
84allow untrusted_app_all media_rw_data_file:dir create_dir_perms;
85allow untrusted_app_all media_rw_data_file:file create_file_perms;
86
87# Traverse into /mnt/media_rw for bypassing FUSE daemon
88# TODO: narrow this to just MediaProvider
89allow untrusted_app_all mnt_media_rw_file:dir search;
90
91# allow cts to query all services
92allow untrusted_app_all servicemanager:service_manager list;
93
94allow untrusted_app_all audioserver_service:service_manager find;
95allow untrusted_app_all cameraserver_service:service_manager find;
96allow untrusted_app_all drmserver_service:service_manager find;
97allow untrusted_app_all mediaserver_service:service_manager find;
98allow untrusted_app_all mediaextractor_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080099allow untrusted_app_all mediametrics_service:service_manager find;
100allow untrusted_app_all mediadrmserver_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -0800101allow untrusted_app_all nfc_service:service_manager find;
102allow untrusted_app_all radio_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -0800103allow untrusted_app_all app_api_service:service_manager find;
104allow untrusted_app_all vr_manager_service:service_manager find;
105
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -0800106# gdbserver for ndk-gdb ptrace attaches to app process.
107allow untrusted_app_all self:process ptrace;
108
Nick Kralevich3e5668f2019-01-23 14:39:43 -0800109# Android Studio Instant Run has the application connect to a
110# runas_app socket listening in the abstract namespace.
111# https://developer.android.com/studio/run/
112# b/123297648
113allow untrusted_app_all runas_app:unix_stream_socket connectto;
114
Nick Kralevich337f5642019-01-30 13:19:36 -0800115# Untrusted apps need to be able to send a SIGCHLD to runas_app
116# when running under a debugger (b/123612207)
117allow untrusted_app_all runas_app:process sigchld;
118
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -0800119# Cts: HwRngTest
120allow untrusted_app_all sysfs_hwrandom:dir search;
121allow untrusted_app_all sysfs_hwrandom:file r_file_perms;
122
Fyodor Kupolovb238fe62017-03-14 11:42:03 -0700123# Allow apps to view preloaded media content
124allow untrusted_app_all preloads_media_file:dir r_dir_perms;
125allow untrusted_app_all preloads_media_file:file r_file_perms;
126allow untrusted_app_all preloads_data_file:dir search;
Sandeep Patilef7b2102017-04-28 13:17:26 -0700127
128# Allow untrusted apps read / execute access to /vendor/app for there can
129# be pre-installed vendor apps that package a library within themselves.
130# TODO (b/37784178) Consider creating a special type for /vendor/app installed
131# apps.
132allow untrusted_app_all vendor_app_file:dir { open getattr read search };
Nick Kralevich0bfa7b52018-10-26 13:11:52 -0700133allow untrusted_app_all vendor_app_file:file { r_file_perms execute };
Sandeep Patilef7b2102017-04-28 13:17:26 -0700134allow untrusted_app_all vendor_app_file:lnk_file { open getattr read };
Primiano Tuccic80f9e02017-12-21 03:51:15 +0100135
136# Write app-specific trace data to the Perfetto traced damon. This requires
137# connecting to its producer socket and obtaining a (per-process) tmpfs fd.
Florian Mayer5e522812019-10-08 16:15:14 +0100138perfetto_producer(untrusted_app_all)
Nathan Haroldee268642017-12-14 18:20:30 -0800139
Ryan Savitski67a82482020-01-22 19:16:13 +0000140# Allow profiling if the app opts in by being marked profileable/debuggable.
Ryan Savitskica0690e2019-01-16 16:29:43 +0000141can_profile_heap(untrusted_app_all)
Ryan Savitski67a82482020-01-22 19:16:13 +0000142can_profile_perf(untrusted_app_all)
Ryan Savitskica0690e2019-01-16 16:29:43 +0000143
Nathan Haroldee268642017-12-14 18:20:30 -0800144# allow untrusted apps to use UDP sockets provided by the system server but not
145# modify them other than to connect
Nathan Harold252b0152018-03-27 06:34:54 -0700146allow untrusted_app_all system_server:udp_socket {
147 connect getattr read recvfrom sendto write getopt setopt };
Joel Galensond93ef542018-03-26 16:37:42 -0700148
Nick Kralevich0eb0a162018-12-12 09:06:05 -0800149# Allow the renderscript compiler to be run.
150domain_auto_trans(untrusted_app_all, rs_exec, rs)
151
Adam Shih25437152020-12-07 16:30:29 +0800152# suppress denials caused by debugfs_tracing
153dontaudit untrusted_app_all debugfs_tracing:file rw_file_perms;
154
Joel Galensond93ef542018-03-26 16:37:42 -0700155# This is allowed for targetSdkVersion <= 25 but disallowed on newer versions.
156dontaudit untrusted_app_all net_dns_prop:file read;
157
158# These have been disallowed since Android O.
159# For P, we assume that apps are safely handling the denial.
160dontaudit untrusted_app_all proc_stat:file read;
161dontaudit untrusted_app_all proc_vmstat:file read;
162dontaudit untrusted_app_all proc_uptime:file read;
Jeff Vander Stoep3aa7ca52018-04-03 11:22:38 -0700163
164# Allow the allocation and use of ptys
165# Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm
166create_pty(untrusted_app_all)
Jeff Vander Stoep7a4af302018-04-10 12:47:48 -0700167
Dan Austin55d90962018-11-29 10:37:18 -0800168# Allow access to kcov via its ioctl interface for coverage
169# guided kernel fuzzing.
170userdebug_or_eng(`
171 allow untrusted_app_all debugfs_kcov:file rw_file_perms;
172 allowxperm untrusted_app_all debugfs_kcov:file ioctl { KCOV_INIT_TRACE KCOV_ENABLE KCOV_DISABLE };
173')
Ryan Savitskiffa0dd92020-01-10 19:02:43 +0000174
175# Allow signalling simpleperf domain, which is the domain that the simpleperf
176# profiler runs as when executed by the app. The signals are used to control
177# the profiler (which would be profiling the app that is sending the signal).
178allow untrusted_app_all simpleperf:process signal;