blob: 6ec21831fc82bd097530bbdec4fefdf06d27ac21 [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
Nick Kralevichd90d0012018-08-07 15:13:05 +000023# Legacy text relocations
24allow untrusted_app_all apk_data_file:file execmod;
25
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080026# Some apps ship with shared libraries and binaries that they write out
27# to their sandbox directory and then execute.
Nick Kralevich23c9d912018-08-02 15:54:23 -070028allow untrusted_app_all { app_data_file privapp_data_file }:file { rx_file_perms };
Nick Kralevichd90d0012018-08-07 15:13:05 +000029allow untrusted_app_all app_data_file:file execmod;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080030
Nick Kralevich4738b932018-08-06 14:48:53 -070031# Executing files from an application home directory violates
32# W^X (https://en.wikipedia.org/wiki/W%5EX) constraints (loading executable code
33# from a writable file) and is an unsafe application behavior. Test to see if we
34# can get rid of it.
35auditallow untrusted_app_all app_data_file:file { execute execute_no_trans };
36
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080037# ASEC
38allow untrusted_app_all asec_apk_file:file r_file_perms;
39allow untrusted_app_all asec_apk_file:dir r_dir_perms;
40# Execute libs in asec containers.
Nick Kralevichd90d0012018-08-07 15:13:05 +000041allow untrusted_app_all asec_public_file:file { execute execmod };
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080042
43# Used by Finsky / Android "Verify Apps" functionality when
44# running "adb install foo.apk".
45# TODO: Long term, we don't want apps probing into shell data files.
46# Figure out a way to remove these rules.
47allow untrusted_app_all shell_data_file:file r_file_perms;
48allow untrusted_app_all shell_data_file:dir r_dir_perms;
49
Max Bires278147e2018-01-23 12:32:55 -080050# Allow traceur to pass file descriptors through a content provider to untrusted apps
51# for the purpose of sharing files through e.g. gmail
52allow untrusted_app_all trace_data_file:file { getattr read };
53
54# untrusted apps should not be able to open trace data files, they should depend
55# upon traceur to pass a file descriptor
56neverallow untrusted_app_all trace_data_file:dir *;
57neverallow untrusted_app_all trace_data_file:file { no_w_file_perms open };
58
Dan Cashman91d398d2017-09-26 12:58:29 -070059# Allow to read staged apks.
60allow untrusted_app_all { apk_tmp_file apk_private_tmp_file }:file {read getattr};
61
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080062# Read and write system app data files passed over Binder.
63# Motivating case was /data/data/com.android.settings/cache/*.jpg for
64# cropping or taking user photos.
65allow untrusted_app_all system_app_data_file:file { read write getattr };
66
67#
68# Rules migrated from old app domains coalesced into untrusted_app.
69# This includes what used to be media_app, shared_app, and release_app.
70#
71
72# Access to /data/media.
73allow untrusted_app_all media_rw_data_file:dir create_dir_perms;
74allow untrusted_app_all media_rw_data_file:file create_file_perms;
75
76# Traverse into /mnt/media_rw for bypassing FUSE daemon
77# TODO: narrow this to just MediaProvider
78allow untrusted_app_all mnt_media_rw_file:dir search;
79
80# allow cts to query all services
81allow untrusted_app_all servicemanager:service_manager list;
82
83allow untrusted_app_all audioserver_service:service_manager find;
84allow untrusted_app_all cameraserver_service:service_manager find;
85allow untrusted_app_all drmserver_service:service_manager find;
86allow untrusted_app_all mediaserver_service:service_manager find;
87allow untrusted_app_all mediaextractor_service:service_manager find;
88allow untrusted_app_all mediacodec_service:service_manager find;
89allow untrusted_app_all mediametrics_service:service_manager find;
90allow untrusted_app_all mediadrmserver_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080091allow untrusted_app_all nfc_service:service_manager find;
92allow untrusted_app_all radio_service:service_manager find;
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080093allow untrusted_app_all app_api_service:service_manager find;
94allow untrusted_app_all vr_manager_service:service_manager find;
95
96# Allow GMS core to access perfprofd output, which is stored
97# in /data/misc/perfprofd/. GMS core will need to list all
98# data stored in that directory to process them one by one.
99userdebug_or_eng(`
100 allow untrusted_app_all perfprofd_data_file:file r_file_perms;
101 allow untrusted_app_all perfprofd_data_file:dir r_dir_perms;
102')
103
104# gdbserver for ndk-gdb ptrace attaches to app process.
105allow untrusted_app_all self:process ptrace;
106
107# Cts: HwRngTest
108allow untrusted_app_all sysfs_hwrandom:dir search;
109allow untrusted_app_all sysfs_hwrandom:file r_file_perms;
110
Fyodor Kupolovb238fe62017-03-14 11:42:03 -0700111# Allow apps to view preloaded media content
112allow untrusted_app_all preloads_media_file:dir r_dir_perms;
113allow untrusted_app_all preloads_media_file:file r_file_perms;
114allow untrusted_app_all preloads_data_file:dir search;
Sandeep Patilef7b2102017-04-28 13:17:26 -0700115
116# Allow untrusted apps read / execute access to /vendor/app for there can
117# be pre-installed vendor apps that package a library within themselves.
118# TODO (b/37784178) Consider creating a special type for /vendor/app installed
119# apps.
120allow untrusted_app_all vendor_app_file:dir { open getattr read search };
121allow untrusted_app_all vendor_app_file:file { open getattr read execute };
122allow untrusted_app_all vendor_app_file:lnk_file { open getattr read };
Primiano Tuccic80f9e02017-12-21 03:51:15 +0100123
124# Write app-specific trace data to the Perfetto traced damon. This requires
125# connecting to its producer socket and obtaining a (per-process) tmpfs fd.
126allow untrusted_app_all traced:fd use;
127allow untrusted_app_all traced_tmpfs:file { read write getattr map };
128unix_socket_connect(untrusted_app_all, traced_producer, traced)
Nathan Haroldee268642017-12-14 18:20:30 -0800129
130# allow untrusted apps to use UDP sockets provided by the system server but not
131# modify them other than to connect
Nathan Harold252b0152018-03-27 06:34:54 -0700132allow untrusted_app_all system_server:udp_socket {
133 connect getattr read recvfrom sendto write getopt setopt };
Joel Galensond93ef542018-03-26 16:37:42 -0700134
135# This is allowed for targetSdkVersion <= 25 but disallowed on newer versions.
136dontaudit untrusted_app_all net_dns_prop:file read;
137
138# These have been disallowed since Android O.
139# For P, we assume that apps are safely handling the denial.
140dontaudit untrusted_app_all proc_stat:file read;
141dontaudit untrusted_app_all proc_vmstat:file read;
142dontaudit untrusted_app_all proc_uptime:file read;
Jeff Vander Stoep3aa7ca52018-04-03 11:22:38 -0700143
144# Allow the allocation and use of ptys
145# Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm
146create_pty(untrusted_app_all)
Jeff Vander Stoep7a4af302018-04-10 12:47:48 -0700147
148# /proc/net access.
149# TODO(b/9496886) Audit access for removal.
150# VPN apps require access to /proc/net/{tcp,udp} so access will need to be
151# limited through a mechanism other than SELinux.
152r_dir_file(untrusted_app_all, proc_net_type)
153userdebug_or_eng(`
154 auditallow untrusted_app_all {
155 proc_net_type
156 -proc_net_vpn
157 }:{ dir file lnk_file } { getattr open read };
158')
Jeff Vander Stoep9c7396d2018-06-01 12:12:11 -0700159
Nick Kralevichd90d0012018-08-07 15:13:05 +0000160# Temporary auditing to get data on what apps use execmod.
161# TODO(b/111544476) Remove this and deny the permission if feasible.
162auditallow untrusted_app_all { apk_data_file app_data_file asec_public_file }:file execmod;
163
Jeff Vander Stoep9c7396d2018-06-01 12:12:11 -0700164# Attempts to write to system_data_file is generally a sign
165# that apps are attempting to access encrypted storage before
166# the ACTION_USER_UNLOCKED intent is delivered. Suppress this
167# denial to prevent third party apps from spamming the logs.
168dontaudit untrusted_app_all system_data_file:dir write;