blob: aebb7118aee60acc06342225acf4b76ca00987c9 [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 };
26allow untrusted_app_all app_data_file:file { r_file_perms execute };
27
28# Allow loading and deleting renderscript created shared libraries
29# within an application home directory.
30allow untrusted_app_all rs_data_file:file { r_file_perms execute unlink };
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080031
32# ASEC
33allow untrusted_app_all asec_apk_file:file r_file_perms;
34allow untrusted_app_all asec_apk_file:dir r_dir_perms;
35# Execute libs in asec containers.
Nick Kralevichf3eb9852018-08-07 15:14:34 -070036allow untrusted_app_all asec_public_file:file { execute };
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080037
38# Used by Finsky / Android "Verify Apps" functionality when
39# running "adb install foo.apk".
40# TODO: Long term, we don't want apps probing into shell data files.
41# Figure out a way to remove these rules.
42allow untrusted_app_all shell_data_file:file r_file_perms;
43allow untrusted_app_all shell_data_file:dir r_dir_perms;
44
Max Bires278147e2018-01-23 12:32:55 -080045# Allow traceur to pass file descriptors through a content provider to untrusted apps
46# for the purpose of sharing files through e.g. gmail
47allow untrusted_app_all trace_data_file:file { getattr read };
48
49# untrusted apps should not be able to open trace data files, they should depend
50# upon traceur to pass a file descriptor
51neverallow untrusted_app_all trace_data_file:dir *;
52neverallow untrusted_app_all trace_data_file:file { no_w_file_perms open };
53
Dan Cashman91d398d2017-09-26 12:58:29 -070054# Allow to read staged apks.
55allow untrusted_app_all { apk_tmp_file apk_private_tmp_file }:file {read getattr};
56
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080057# Read and write system app data files passed over Binder.
58# Motivating case was /data/data/com.android.settings/cache/*.jpg for
59# cropping or taking user photos.
60allow untrusted_app_all system_app_data_file:file { read write getattr };
61
62#
63# Rules migrated from old app domains coalesced into untrusted_app.
64# This includes what used to be media_app, shared_app, and release_app.
65#
66
67# Access to /data/media.
68allow untrusted_app_all media_rw_data_file:dir create_dir_perms;
69allow untrusted_app_all media_rw_data_file:file create_file_perms;
70
71# Traverse into /mnt/media_rw for bypassing FUSE daemon
72# TODO: narrow this to just MediaProvider
73allow untrusted_app_all mnt_media_rw_file:dir search;
74
75# allow cts to query all services
76allow untrusted_app_all servicemanager:service_manager list;
77
78allow untrusted_app_all audioserver_service:service_manager find;
79allow untrusted_app_all cameraserver_service:service_manager find;
80allow untrusted_app_all drmserver_service:service_manager find;
81allow untrusted_app_all mediaserver_service:service_manager find;
82allow untrusted_app_all mediaextractor_service:service_manager find;
83allow untrusted_app_all mediacodec_service:service_manager find;
84allow untrusted_app_all mediametrics_service:service_manager find;
85allow untrusted_app_all mediadrmserver_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080086allow untrusted_app_all nfc_service:service_manager find;
87allow untrusted_app_all radio_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080088allow untrusted_app_all app_api_service:service_manager find;
89allow untrusted_app_all vr_manager_service:service_manager find;
90
91# Allow GMS core to access perfprofd output, which is stored
92# in /data/misc/perfprofd/. GMS core will need to list all
93# data stored in that directory to process them one by one.
94userdebug_or_eng(`
95 allow untrusted_app_all perfprofd_data_file:file r_file_perms;
96 allow untrusted_app_all perfprofd_data_file:dir r_dir_perms;
97')
98
99# gdbserver for ndk-gdb ptrace attaches to app process.
100allow untrusted_app_all self:process ptrace;
101
102# Cts: HwRngTest
103allow untrusted_app_all sysfs_hwrandom:dir search;
104allow untrusted_app_all sysfs_hwrandom:file r_file_perms;
105
Fyodor Kupolovb238fe62017-03-14 11:42:03 -0700106# Allow apps to view preloaded media content
107allow untrusted_app_all preloads_media_file:dir r_dir_perms;
108allow untrusted_app_all preloads_media_file:file r_file_perms;
109allow untrusted_app_all preloads_data_file:dir search;
Sandeep Patilef7b2102017-04-28 13:17:26 -0700110
111# Allow untrusted apps read / execute access to /vendor/app for there can
112# be pre-installed vendor apps that package a library within themselves.
113# TODO (b/37784178) Consider creating a special type for /vendor/app installed
114# apps.
115allow untrusted_app_all vendor_app_file:dir { open getattr read search };
Nick Kralevich0bfa7b52018-10-26 13:11:52 -0700116allow untrusted_app_all vendor_app_file:file { r_file_perms execute };
Sandeep Patilef7b2102017-04-28 13:17:26 -0700117allow untrusted_app_all vendor_app_file:lnk_file { open getattr read };
Primiano Tuccic80f9e02017-12-21 03:51:15 +0100118
119# Write app-specific trace data to the Perfetto traced damon. This requires
120# connecting to its producer socket and obtaining a (per-process) tmpfs fd.
121allow untrusted_app_all traced:fd use;
122allow untrusted_app_all traced_tmpfs:file { read write getattr map };
123unix_socket_connect(untrusted_app_all, traced_producer, traced)
Nathan Haroldee268642017-12-14 18:20:30 -0800124
125# allow untrusted apps to use UDP sockets provided by the system server but not
126# modify them other than to connect
Nathan Harold252b0152018-03-27 06:34:54 -0700127allow untrusted_app_all system_server:udp_socket {
128 connect getattr read recvfrom sendto write getopt setopt };
Joel Galensond93ef542018-03-26 16:37:42 -0700129
Nick Kralevich0eb0a162018-12-12 09:06:05 -0800130# Allow the renderscript compiler to be run.
131domain_auto_trans(untrusted_app_all, rs_exec, rs)
132
Joel Galensond93ef542018-03-26 16:37:42 -0700133# This is allowed for targetSdkVersion <= 25 but disallowed on newer versions.
134dontaudit untrusted_app_all net_dns_prop:file read;
135
136# These have been disallowed since Android O.
137# For P, we assume that apps are safely handling the denial.
138dontaudit untrusted_app_all proc_stat:file read;
139dontaudit untrusted_app_all proc_vmstat:file read;
140dontaudit untrusted_app_all proc_uptime:file read;
Jeff Vander Stoep3aa7ca52018-04-03 11:22:38 -0700141
142# Allow the allocation and use of ptys
143# Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm
144create_pty(untrusted_app_all)
Jeff Vander Stoep7a4af302018-04-10 12:47:48 -0700145
Jeff Vander Stoep9c7396d2018-06-01 12:12:11 -0700146# Attempts to write to system_data_file is generally a sign
147# that apps are attempting to access encrypted storage before
148# the ACTION_USER_UNLOCKED intent is delivered. Suppress this
149# denial to prevent third party apps from spamming the logs.
150dontaudit untrusted_app_all system_data_file:dir write;
Dan Austin55d90962018-11-29 10:37:18 -0800151
152# Allow access to kcov via its ioctl interface for coverage
153# guided kernel fuzzing.
154userdebug_or_eng(`
155 allow untrusted_app_all debugfs_kcov:file rw_file_perms;
156 allowxperm untrusted_app_all debugfs_kcov:file ioctl { KCOV_INIT_TRACE KCOV_ENABLE KCOV_DISABLE };
157')