blob: a1abc416bd80249b194a90a5e3717c96143cb99e [file] [log] [blame]
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -08001###
2### Untrusted_app_25
3###
4### This file defines the rules for untrusted apps running with
5### targetSdkVersion <= 25.
6###
Jeff Vander Stoepa1aa2212020-01-20 10:14:48 +01007### See public/untrusted_app.te for more information about which apps are
8### placed in this selinux domain.
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -08009###
10
Alex Klyubinf5446eb2017-03-23 14:27:32 -070011typeattribute untrusted_app_25 coredomain;
12
Jeff Vander Stoepbacb6d72017-02-13 13:33:27 -080013app_domain(untrusted_app_25)
14untrusted_app_domain(untrusted_app_25)
15net_domain(untrusted_app_25)
16bluetooth_domain(untrusted_app_25)
17
Nick Kralevich50bb7b52017-03-03 12:17:49 -080018# b/35917228 - /proc/misc access
19# This will go away in a future Android release
20allow untrusted_app_25 proc_misc:file r_file_perms;
Nick Kralevichb4f354f2017-03-04 20:09:10 -080021
22# Access to /proc/tty/drivers, to allow apps to determine if they
23# are running in an emulated environment.
24# b/33214085 b/33814662 b/33791054 b/33211769
25# https://github.com/strazzere/anti-emulator/blob/master/AntiEmulator/src/diff/strazzere/anti/emulator/FindEmulator.java
26# This will go away in a future Android release
27allow untrusted_app_25 proc_tty_drivers:file r_file_perms;
Jeff Vander Stoep7a4af302018-04-10 12:47:48 -070028
Jeff Vander Stoepc9aba122019-04-02 13:01:10 -070029# Text relocation support for API < 23. This is now disallowed for targetSdkVersion>=Q.
Nick Kralevichf3eb9852018-08-07 15:14:34 -070030# https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#text-relocations-enforced-for-api-level-23
31allow untrusted_app_25 { apk_data_file app_data_file asec_public_file }:file execmod;
Yabin Cui5dc2c8c2018-11-02 11:12:43 -070032
Nick Kralevich65a89c12018-12-21 10:03:50 -080033# The ability to call exec() on files in the apps home directories
34# for targetApi<=25. This is also allowed for targetAPIs 26, 27,
35# and 28 in untrusted_app_27.te.
36allow untrusted_app_25 app_data_file:file execute_no_trans;
Alan Stokes3f63dbf2019-01-28 10:33:08 +000037auditallow untrusted_app_25 app_data_file:file { execute execute_no_trans };
David Brazdil535c5d22018-11-19 23:02:49 +000038
39# The ability to invoke dex2oat. Historically required by ART, now only
40# allowed for targetApi<=28 for compat reasons.
41allow untrusted_app_25 dex2oat_exec:file rx_file_perms;
Nick Kralevichcfe1bae2018-11-20 10:45:56 -080042userdebug_or_eng(`auditallow untrusted_app_25 dex2oat_exec:file rx_file_perms;')
Tri Vo73d0a672019-01-27 13:39:19 -080043
44# The ability to talk to /dev/ashmem directly. targetApi>=29 must use
45# ASharedMemory instead.
46allow untrusted_app_25 ashmem_device:chr_file rw_file_perms;
Tri Vo8b12ff52019-02-12 14:14:30 -080047auditallow untrusted_app_25 ashmem_device:chr_file open;
Tri Vo8eff3e22019-04-11 15:23:24 -070048
49# Read /mnt/sdcard symlink.
50allow untrusted_app_25 mnt_sdcard_file:lnk_file r_file_perms;
Jeff Vander Stoepa1aa2212020-01-20 10:14:48 +010051
52# allow binding to netlink route sockets and sending RTM_GETLINK messages.
53allow untrusted_app_25 self:netlink_route_socket { bind nlmsg_readpriv };