2017-02-13 22:33:27 +01:00
|
|
|
###
|
2018-04-03 20:22:38 +02:00
|
|
|
### Untrusted_27.
|
2017-02-13 22:33:27 +01:00
|
|
|
###
|
2018-04-03 20:22:38 +02:00
|
|
|
### This file defines the rules for untrusted apps running with
|
2018-11-02 19:12:43 +01:00
|
|
|
### 25 < targetSdkVersion <= 28.
|
2018-04-03 20:22:38 +02:00
|
|
|
###
|
2020-01-20 10:14:48 +01:00
|
|
|
### See public/untrusted_app.te for more information about which apps are
|
|
|
|
### placed in this selinux domain.
|
2017-02-13 22:33:27 +01:00
|
|
|
###
|
|
|
|
|
2018-04-03 20:22:38 +02:00
|
|
|
typeattribute untrusted_app_27 coredomain;
|
2017-02-13 22:33:27 +01:00
|
|
|
|
2018-04-03 20:22:38 +02:00
|
|
|
app_domain(untrusted_app_27)
|
|
|
|
untrusted_app_domain(untrusted_app_27)
|
|
|
|
net_domain(untrusted_app_27)
|
|
|
|
bluetooth_domain(untrusted_app_27)
|
2018-11-02 19:12:43 +01:00
|
|
|
|
2019-04-02 22:01:10 +02:00
|
|
|
# Text relocation support for API < 23. This is now disallowed for targetSdkVersion>=Q.
|
|
|
|
# https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#text-relocations-enforced-for-api-level-23
|
|
|
|
allow untrusted_app_27 { apk_data_file app_data_file asec_public_file }:file execmod;
|
|
|
|
|
2018-12-21 19:03:50 +01:00
|
|
|
# The ability to call exec() on files in the apps home directories
|
|
|
|
# for targetApi 26, 27, and 28.
|
|
|
|
allow untrusted_app_27 app_data_file:file execute_no_trans;
|
2019-01-28 11:33:08 +01:00
|
|
|
auditallow untrusted_app_27 app_data_file:file { execute execute_no_trans };
|
2018-11-20 00:02:49 +01:00
|
|
|
|
|
|
|
# The ability to invoke dex2oat. Historically required by ART, now only
|
|
|
|
# allowed for targetApi<=28 for compat reasons.
|
|
|
|
allow untrusted_app_27 dex2oat_exec:file rx_file_perms;
|
2018-11-20 19:45:56 +01:00
|
|
|
userdebug_or_eng(`auditallow untrusted_app_27 dex2oat_exec:file rx_file_perms;')
|
2019-01-27 22:39:19 +01:00
|
|
|
|
|
|
|
# The ability to talk to /dev/ashmem directly. targetApi>=29 must use
|
|
|
|
# ASharedMemory instead.
|
|
|
|
allow untrusted_app_27 ashmem_device:chr_file rw_file_perms;
|
2019-02-12 23:14:30 +01:00
|
|
|
auditallow untrusted_app_27 ashmem_device:chr_file open;
|
2019-04-12 00:23:24 +02:00
|
|
|
|
|
|
|
# Read /mnt/sdcard symlink.
|
|
|
|
allow untrusted_app_27 mnt_sdcard_file:lnk_file r_file_perms;
|
2021-05-12 14:19:24 +02:00
|
|
|
|
|
|
|
# allow sending RTM_GETNEIGH{TBL} messages.
|
|
|
|
allow untrusted_app_27 self:netlink_route_socket nlmsg_getneigh;
|
|
|
|
auditallow untrusted_app_27 self:netlink_route_socket nlmsg_getneigh;
|