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 |
Nick Kralevich | 41b21ee | 2018-08-06 12:36:20 -0700 | [diff] [blame] | 5 | ### ephemeral_app for instant apps. |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 6 | ### 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 Brubaker | eda4b88 | 2017-04-26 12:32:51 -0700 | [diff] [blame] | 20 | ### Note that rules that should apply to all untrusted apps must be in app.te or also |
Nick Kralevich | 41b21ee | 2018-08-06 12:36:20 -0700 | [diff] [blame] | 21 | ### added to ephemeral_app.te. |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 22 | |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 23 | # Some apps ship with shared libraries and binaries that they write out |
| 24 | # to their sandbox directory and then execute. |
Nick Kralevich | 0eb0a16 | 2018-12-12 09:06:05 -0800 | [diff] [blame] | 25 | allow untrusted_app_all privapp_data_file:file { r_file_perms execute }; |
Nick Kralevich | 65a89c1 | 2018-12-21 10:03:50 -0800 | [diff] [blame] | 26 | allow untrusted_app_all app_data_file:file { r_file_perms execute }; |
Alan Stokes | 931623e | 2019-02-27 18:07:09 +0000 | [diff] [blame] | 27 | auditallow untrusted_app_all app_data_file:file execute; |
Nick Kralevich | 0eb0a16 | 2018-12-12 09:06:05 -0800 | [diff] [blame] | 28 | |
Nick Kralevich | 9ea8c07 | 2019-02-06 13:19:19 -0800 | [diff] [blame] | 29 | # Chrome Crashpad uses the the dynamic linker to load native executables |
| 30 | # from an APK (b/112050209, crbug.com/928422) |
| 31 | allow untrusted_app_all system_linker_exec:file execute_no_trans; |
| 32 | |
Nick Kralevich | 87e9123 | 2019-01-24 13:05:03 -0800 | [diff] [blame] | 33 | # Follow priv-app symlinks. This is used for dynamite functionality. |
| 34 | allow untrusted_app_all privapp_data_file:lnk_file r_file_perms; |
| 35 | |
| 36 | # Allow handling of less common filesystem objects |
| 37 | allow untrusted_app_all app_data_file:{ lnk_file sock_file fifo_file } create_file_perms; |
| 38 | |
Nick Kralevich | fb66c6f | 2019-01-11 09:37:46 -0800 | [diff] [blame] | 39 | # Allow loading and deleting executable shared libraries |
| 40 | # within an application home directory. Such shared libraries would be |
| 41 | # created by things like renderscript or via other mechanisms. |
| 42 | allow untrusted_app_all app_exec_data_file:file { r_file_perms execute unlink }; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 43 | |
| 44 | # ASEC |
| 45 | allow untrusted_app_all asec_apk_file:file r_file_perms; |
| 46 | allow untrusted_app_all asec_apk_file:dir r_dir_perms; |
| 47 | # Execute libs in asec containers. |
Nick Kralevich | f3eb985 | 2018-08-07 15:14:34 -0700 | [diff] [blame] | 48 | allow untrusted_app_all asec_public_file:file { execute }; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 49 | |
| 50 | # Used by Finsky / Android "Verify Apps" functionality when |
| 51 | # running "adb install foo.apk". |
| 52 | # TODO: Long term, we don't want apps probing into shell data files. |
| 53 | # Figure out a way to remove these rules. |
| 54 | allow untrusted_app_all shell_data_file:file r_file_perms; |
| 55 | allow untrusted_app_all shell_data_file:dir r_dir_perms; |
| 56 | |
Max Bires | 278147e | 2018-01-23 12:32:55 -0800 | [diff] [blame] | 57 | # Allow traceur to pass file descriptors through a content provider to untrusted apps |
| 58 | # for the purpose of sharing files through e.g. gmail |
| 59 | allow untrusted_app_all trace_data_file:file { getattr read }; |
| 60 | |
| 61 | # untrusted apps should not be able to open trace data files, they should depend |
| 62 | # upon traceur to pass a file descriptor |
| 63 | neverallow untrusted_app_all trace_data_file:dir *; |
| 64 | neverallow untrusted_app_all trace_data_file:file { no_w_file_perms open }; |
| 65 | |
Dan Cashman | 91d398d | 2017-09-26 12:58:29 -0700 | [diff] [blame] | 66 | # Allow to read staged apks. |
| 67 | allow untrusted_app_all { apk_tmp_file apk_private_tmp_file }:file {read getattr}; |
| 68 | |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 69 | # Read and write system app data files passed over Binder. |
| 70 | # Motivating case was /data/data/com.android.settings/cache/*.jpg for |
| 71 | # cropping or taking user photos. |
| 72 | allow untrusted_app_all system_app_data_file:file { read write getattr }; |
| 73 | |
| 74 | # |
| 75 | # Rules migrated from old app domains coalesced into untrusted_app. |
| 76 | # This includes what used to be media_app, shared_app, and release_app. |
| 77 | # |
| 78 | |
| 79 | # Access to /data/media. |
| 80 | allow untrusted_app_all media_rw_data_file:dir create_dir_perms; |
| 81 | allow untrusted_app_all media_rw_data_file:file create_file_perms; |
| 82 | |
| 83 | # Traverse into /mnt/media_rw for bypassing FUSE daemon |
| 84 | # TODO: narrow this to just MediaProvider |
| 85 | allow untrusted_app_all mnt_media_rw_file:dir search; |
| 86 | |
| 87 | # allow cts to query all services |
| 88 | allow untrusted_app_all servicemanager:service_manager list; |
| 89 | |
| 90 | allow untrusted_app_all audioserver_service:service_manager find; |
| 91 | allow untrusted_app_all cameraserver_service:service_manager find; |
| 92 | allow untrusted_app_all drmserver_service:service_manager find; |
| 93 | allow untrusted_app_all mediaserver_service:service_manager find; |
| 94 | allow untrusted_app_all mediaextractor_service:service_manager find; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 95 | allow untrusted_app_all mediametrics_service:service_manager find; |
| 96 | allow untrusted_app_all mediadrmserver_service:service_manager find; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 97 | allow untrusted_app_all nfc_service:service_manager find; |
| 98 | allow untrusted_app_all radio_service:service_manager find; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 99 | allow untrusted_app_all app_api_service:service_manager find; |
| 100 | allow untrusted_app_all vr_manager_service:service_manager find; |
Yiwei Zhang | 544d6b3 | 2019-02-07 15:00:55 -0800 | [diff] [blame] | 101 | allow untrusted_app_all gpu_service:service_manager find; |
| 102 | |
| 103 | # Allow untrusted apps to interact with gpuservice |
| 104 | binder_call(untrusted_app_all, gpuservice) |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 105 | |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 106 | # gdbserver for ndk-gdb ptrace attaches to app process. |
| 107 | allow untrusted_app_all self:process ptrace; |
| 108 | |
Nick Kralevich | 3e5668f | 2019-01-23 14:39:43 -0800 | [diff] [blame] | 109 | # Android Studio Instant Run has the application connect to a |
| 110 | # runas_app socket listening in the abstract namespace. |
| 111 | # https://developer.android.com/studio/run/ |
| 112 | # b/123297648 |
| 113 | allow untrusted_app_all runas_app:unix_stream_socket connectto; |
| 114 | |
Nick Kralevich | 337f564 | 2019-01-30 13:19:36 -0800 | [diff] [blame] | 115 | # Untrusted apps need to be able to send a SIGCHLD to runas_app |
| 116 | # when running under a debugger (b/123612207) |
| 117 | allow untrusted_app_all runas_app:process sigchld; |
| 118 | |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 119 | # Cts: HwRngTest |
| 120 | allow untrusted_app_all sysfs_hwrandom:dir search; |
| 121 | allow untrusted_app_all sysfs_hwrandom:file r_file_perms; |
| 122 | |
Fyodor Kupolov | b238fe6 | 2017-03-14 11:42:03 -0700 | [diff] [blame] | 123 | # Allow apps to view preloaded media content |
| 124 | allow untrusted_app_all preloads_media_file:dir r_dir_perms; |
| 125 | allow untrusted_app_all preloads_media_file:file r_file_perms; |
| 126 | allow untrusted_app_all preloads_data_file:dir search; |
Sandeep Patil | ef7b210 | 2017-04-28 13:17:26 -0700 | [diff] [blame] | 127 | |
| 128 | # Allow untrusted apps read / execute access to /vendor/app for there can |
| 129 | # be pre-installed vendor apps that package a library within themselves. |
| 130 | # TODO (b/37784178) Consider creating a special type for /vendor/app installed |
| 131 | # apps. |
| 132 | allow untrusted_app_all vendor_app_file:dir { open getattr read search }; |
Nick Kralevich | 0bfa7b5 | 2018-10-26 13:11:52 -0700 | [diff] [blame] | 133 | allow untrusted_app_all vendor_app_file:file { r_file_perms execute }; |
Sandeep Patil | ef7b210 | 2017-04-28 13:17:26 -0700 | [diff] [blame] | 134 | allow untrusted_app_all vendor_app_file:lnk_file { open getattr read }; |
Primiano Tucci | c80f9e0 | 2017-12-21 03:51:15 +0100 | [diff] [blame] | 135 | |
| 136 | # Write app-specific trace data to the Perfetto traced damon. This requires |
| 137 | # connecting to its producer socket and obtaining a (per-process) tmpfs fd. |
| 138 | allow untrusted_app_all traced:fd use; |
| 139 | allow untrusted_app_all traced_tmpfs:file { read write getattr map }; |
| 140 | unix_socket_connect(untrusted_app_all, traced_producer, traced) |
Nathan Harold | ee26864 | 2017-12-14 18:20:30 -0800 | [diff] [blame] | 141 | |
Ryan Savitski | ca0690e | 2019-01-16 16:29:43 +0000 | [diff] [blame] | 142 | # Allow heap profiling if the app opts in by being marked |
| 143 | # profileable/debuggable. |
| 144 | can_profile_heap(untrusted_app_all) |
| 145 | |
Nathan Harold | ee26864 | 2017-12-14 18:20:30 -0800 | [diff] [blame] | 146 | # allow untrusted apps to use UDP sockets provided by the system server but not |
| 147 | # modify them other than to connect |
Nathan Harold | 252b015 | 2018-03-27 06:34:54 -0700 | [diff] [blame] | 148 | allow untrusted_app_all system_server:udp_socket { |
| 149 | connect getattr read recvfrom sendto write getopt setopt }; |
Joel Galenson | d93ef54 | 2018-03-26 16:37:42 -0700 | [diff] [blame] | 150 | |
Nick Kralevich | 0eb0a16 | 2018-12-12 09:06:05 -0800 | [diff] [blame] | 151 | # Allow the renderscript compiler to be run. |
| 152 | domain_auto_trans(untrusted_app_all, rs_exec, rs) |
| 153 | |
Joel Galenson | d93ef54 | 2018-03-26 16:37:42 -0700 | [diff] [blame] | 154 | # This is allowed for targetSdkVersion <= 25 but disallowed on newer versions. |
| 155 | dontaudit untrusted_app_all net_dns_prop:file read; |
| 156 | |
| 157 | # These have been disallowed since Android O. |
| 158 | # For P, we assume that apps are safely handling the denial. |
| 159 | dontaudit untrusted_app_all proc_stat:file read; |
| 160 | dontaudit untrusted_app_all proc_vmstat:file read; |
| 161 | dontaudit untrusted_app_all proc_uptime:file read; |
Jeff Vander Stoep | 3aa7ca5 | 2018-04-03 11:22:38 -0700 | [diff] [blame] | 162 | |
| 163 | # Allow the allocation and use of ptys |
| 164 | # Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm |
| 165 | create_pty(untrusted_app_all) |
Jeff Vander Stoep | 7a4af30 | 2018-04-10 12:47:48 -0700 | [diff] [blame] | 166 | |
Jeff Vander Stoep | 9c7396d | 2018-06-01 12:12:11 -0700 | [diff] [blame] | 167 | # Attempts to write to system_data_file is generally a sign |
| 168 | # that apps are attempting to access encrypted storage before |
| 169 | # the ACTION_USER_UNLOCKED intent is delivered. Suppress this |
| 170 | # denial to prevent third party apps from spamming the logs. |
| 171 | dontaudit untrusted_app_all system_data_file:dir write; |
Dan Austin | 55d9096 | 2018-11-29 10:37:18 -0800 | [diff] [blame] | 172 | |
| 173 | # Allow access to kcov via its ioctl interface for coverage |
| 174 | # guided kernel fuzzing. |
| 175 | userdebug_or_eng(` |
| 176 | allow untrusted_app_all debugfs_kcov:file rw_file_perms; |
| 177 | allowxperm untrusted_app_all debugfs_kcov:file ioctl { KCOV_INIT_TRACE KCOV_ENABLE KCOV_DISABLE }; |
| 178 | ') |
Tri Vo | 73d0a67 | 2019-01-27 13:39:19 -0800 | [diff] [blame] | 179 | |
Tri Vo | bfcddbe | 2019-09-25 11:20:01 -0700 | [diff] [blame^] | 180 | # Allow (rw_file_perms - open) access to /dev/ashmem. |
Tri Vo | 9fbc87c | 2019-02-28 10:46:57 -0800 | [diff] [blame] | 181 | allow untrusted_app_all ashmem_device:chr_file { getattr read ioctl lock map append write }; |