Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 1 | ### |
| 2 | ### Untrusted_app_all. |
| 3 | ### |
Chad Brubaker | b93f049 | 2017-03-29 14:53:09 -0700 | [diff] [blame] | 4 | ### This file defines the rules shared by all untrusted app domains except |
Chad Brubaker | eda4b88 | 2017-04-26 12:32:51 -0700 | [diff] [blame] | 5 | ### apps which target the v2 security sandbox (ephemeral_app for instant apps, |
| 6 | ### untrusted_v2_app for fully installed v2 apps). |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 7 | ### 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 Brubaker | eda4b88 | 2017-04-26 12:32:51 -0700 | [diff] [blame] | 21 | ### Note that rules that should apply to all untrusted apps must be in app.te or also |
| 22 | ### added to untrusted_v2_app.te and ephemeral_app.te. |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 23 | |
Nick Kralevich | 9be90fb | 2017-03-06 02:49:50 +0000 | [diff] [blame] | 24 | # Legacy text relocations |
| 25 | allow untrusted_app_all apk_data_file:file execmod; |
| 26 | |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 27 | # Some apps ship with shared libraries and binaries that they write out |
| 28 | # to their sandbox directory and then execute. |
Nick Kralevich | 9be90fb | 2017-03-06 02:49:50 +0000 | [diff] [blame] | 29 | allow untrusted_app_all app_data_file:file { rx_file_perms execmod }; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 30 | |
| 31 | # ASEC |
| 32 | allow untrusted_app_all asec_apk_file:file r_file_perms; |
| 33 | allow untrusted_app_all asec_apk_file:dir r_dir_perms; |
| 34 | # Execute libs in asec containers. |
Nick Kralevich | 9be90fb | 2017-03-06 02:49:50 +0000 | [diff] [blame] | 35 | allow untrusted_app_all asec_public_file:file { execute execmod }; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 36 | |
| 37 | # Used by Finsky / Android "Verify Apps" functionality when |
| 38 | # running "adb install foo.apk". |
| 39 | # TODO: Long term, we don't want apps probing into shell data files. |
| 40 | # Figure out a way to remove these rules. |
| 41 | allow untrusted_app_all shell_data_file:file r_file_perms; |
| 42 | allow untrusted_app_all shell_data_file:dir r_dir_perms; |
| 43 | |
Max Bires | 278147e | 2018-01-23 12:32:55 -0800 | [diff] [blame] | 44 | # Allow traceur to pass file descriptors through a content provider to untrusted apps |
| 45 | # for the purpose of sharing files through e.g. gmail |
| 46 | allow untrusted_app_all trace_data_file:file { getattr read }; |
| 47 | |
| 48 | # untrusted apps should not be able to open trace data files, they should depend |
| 49 | # upon traceur to pass a file descriptor |
| 50 | neverallow untrusted_app_all trace_data_file:dir *; |
| 51 | neverallow untrusted_app_all trace_data_file:file { no_w_file_perms open }; |
| 52 | |
Dan Cashman | 91d398d | 2017-09-26 12:58:29 -0700 | [diff] [blame] | 53 | # Allow to read staged apks. |
| 54 | allow untrusted_app_all { apk_tmp_file apk_private_tmp_file }:file {read getattr}; |
| 55 | |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 56 | # Read and write system app data files passed over Binder. |
| 57 | # Motivating case was /data/data/com.android.settings/cache/*.jpg for |
| 58 | # cropping or taking user photos. |
| 59 | allow untrusted_app_all system_app_data_file:file { read write getattr }; |
| 60 | |
| 61 | # |
| 62 | # Rules migrated from old app domains coalesced into untrusted_app. |
| 63 | # This includes what used to be media_app, shared_app, and release_app. |
| 64 | # |
| 65 | |
| 66 | # Access to /data/media. |
| 67 | allow untrusted_app_all media_rw_data_file:dir create_dir_perms; |
| 68 | allow untrusted_app_all media_rw_data_file:file create_file_perms; |
| 69 | |
| 70 | # Traverse into /mnt/media_rw for bypassing FUSE daemon |
| 71 | # TODO: narrow this to just MediaProvider |
| 72 | allow untrusted_app_all mnt_media_rw_file:dir search; |
| 73 | |
| 74 | # allow cts to query all services |
| 75 | allow untrusted_app_all servicemanager:service_manager list; |
| 76 | |
| 77 | allow untrusted_app_all audioserver_service:service_manager find; |
| 78 | allow untrusted_app_all cameraserver_service:service_manager find; |
| 79 | allow untrusted_app_all drmserver_service:service_manager find; |
| 80 | allow untrusted_app_all mediaserver_service:service_manager find; |
| 81 | allow untrusted_app_all mediaextractor_service:service_manager find; |
| 82 | allow untrusted_app_all mediacodec_service:service_manager find; |
| 83 | allow untrusted_app_all mediametrics_service:service_manager find; |
| 84 | allow untrusted_app_all mediadrmserver_service:service_manager find; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 85 | allow untrusted_app_all nfc_service:service_manager find; |
| 86 | allow untrusted_app_all radio_service:service_manager find; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 87 | allow untrusted_app_all app_api_service:service_manager find; |
| 88 | allow untrusted_app_all vr_manager_service:service_manager find; |
| 89 | |
| 90 | # Allow GMS core to access perfprofd output, which is stored |
| 91 | # in /data/misc/perfprofd/. GMS core will need to list all |
| 92 | # data stored in that directory to process them one by one. |
| 93 | userdebug_or_eng(` |
| 94 | allow untrusted_app_all perfprofd_data_file:file r_file_perms; |
| 95 | allow untrusted_app_all perfprofd_data_file:dir r_dir_perms; |
| 96 | ') |
| 97 | |
| 98 | # gdbserver for ndk-gdb ptrace attaches to app process. |
| 99 | allow untrusted_app_all self:process ptrace; |
| 100 | |
| 101 | # Cts: HwRngTest |
| 102 | allow untrusted_app_all sysfs_hwrandom:dir search; |
| 103 | allow untrusted_app_all sysfs_hwrandom:file r_file_perms; |
| 104 | |
Fyodor Kupolov | b238fe6 | 2017-03-14 11:42:03 -0700 | [diff] [blame] | 105 | # Allow apps to view preloaded media content |
| 106 | allow untrusted_app_all preloads_media_file:dir r_dir_perms; |
| 107 | allow untrusted_app_all preloads_media_file:file r_file_perms; |
| 108 | allow untrusted_app_all preloads_data_file:dir search; |
Sandeep Patil | ef7b210 | 2017-04-28 13:17:26 -0700 | [diff] [blame] | 109 | |
| 110 | # Allow untrusted apps read / execute access to /vendor/app for there can |
| 111 | # be pre-installed vendor apps that package a library within themselves. |
| 112 | # TODO (b/37784178) Consider creating a special type for /vendor/app installed |
| 113 | # apps. |
| 114 | allow untrusted_app_all vendor_app_file:dir { open getattr read search }; |
| 115 | allow untrusted_app_all vendor_app_file:file { open getattr read execute }; |
| 116 | allow untrusted_app_all vendor_app_file:lnk_file { open getattr read }; |
Primiano Tucci | c80f9e0 | 2017-12-21 03:51:15 +0100 | [diff] [blame] | 117 | |
| 118 | # Write app-specific trace data to the Perfetto traced damon. This requires |
| 119 | # connecting to its producer socket and obtaining a (per-process) tmpfs fd. |
| 120 | allow untrusted_app_all traced:fd use; |
| 121 | allow untrusted_app_all traced_tmpfs:file { read write getattr map }; |
| 122 | unix_socket_connect(untrusted_app_all, traced_producer, traced) |
Nathan Harold | ee26864 | 2017-12-14 18:20:30 -0800 | [diff] [blame] | 123 | |
| 124 | # allow untrusted apps to use UDP sockets provided by the system server but not |
| 125 | # modify them other than to connect |
Nathan Harold | 252b015 | 2018-03-27 06:34:54 -0700 | [diff] [blame] | 126 | allow untrusted_app_all system_server:udp_socket { |
| 127 | connect getattr read recvfrom sendto write getopt setopt }; |
Joel Galenson | d93ef54 | 2018-03-26 16:37:42 -0700 | [diff] [blame] | 128 | |
| 129 | # This is allowed for targetSdkVersion <= 25 but disallowed on newer versions. |
| 130 | dontaudit untrusted_app_all net_dns_prop:file read; |
| 131 | |
| 132 | # These have been disallowed since Android O. |
| 133 | # For P, we assume that apps are safely handling the denial. |
| 134 | dontaudit untrusted_app_all proc_stat:file read; |
| 135 | dontaudit untrusted_app_all proc_vmstat:file read; |
| 136 | dontaudit untrusted_app_all proc_uptime:file read; |
Jeff Vander Stoep | 3aa7ca5 | 2018-04-03 11:22:38 -0700 | [diff] [blame] | 137 | |
| 138 | # Allow the allocation and use of ptys |
| 139 | # Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm |
| 140 | create_pty(untrusted_app_all) |
Jeff Vander Stoep | 7a4af30 | 2018-04-10 12:47:48 -0700 | [diff] [blame^] | 141 | |
| 142 | # /proc/net access. |
| 143 | # TODO(b/9496886) Audit access for removal. |
| 144 | # VPN apps require access to /proc/net/{tcp,udp} so access will need to be |
| 145 | # limited through a mechanism other than SELinux. |
| 146 | r_dir_file(untrusted_app_all, proc_net_type) |
| 147 | userdebug_or_eng(` |
| 148 | auditallow untrusted_app_all { |
| 149 | proc_net_type |
| 150 | -proc_net_vpn |
| 151 | }:{ dir file lnk_file } { getattr open read }; |
| 152 | ') |