Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 1 | ### |
| 2 | ### Untrusted_app_all. |
| 3 | ### |
| 4 | ### This file defines the rules shared by all untrusted app domains. |
| 5 | ### Apps are labeled based on mac_permissions.xml (maps signer and |
| 6 | ### optionally package name to seinfo value) and seapp_contexts (maps UID |
| 7 | ### and optionally seinfo value to domain for process and type for data |
| 8 | ### directory). The untrusted_app_all attribute is assigned to all default |
| 9 | ### seapp_contexts for any app with UID between APP_AID (10000) |
| 10 | ### and AID_ISOLATED_START (99000) if the app has no specific seinfo |
| 11 | ### value as determined from mac_permissions.xml. In current AOSP, this |
| 12 | ### attribute is assigned to all non-system apps as well as to any system apps |
| 13 | ### that are not signed by the platform key. To move |
| 14 | ### a system app into a specific domain, add a signer entry for it to |
| 15 | ### mac_permissions.xml and assign it one of the pre-existing seinfo values |
| 16 | ### or define and use a new seinfo value in both mac_permissions.xml and |
| 17 | ### seapp_contexts. |
| 18 | ### |
| 19 | |
Nick Kralevich | 9be90fb | 2017-03-06 02:49:50 +0000 | [diff] [blame] | 20 | # Legacy text relocations |
| 21 | allow untrusted_app_all apk_data_file:file execmod; |
| 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 | 9be90fb | 2017-03-06 02:49:50 +0000 | [diff] [blame] | 25 | 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] | 26 | |
| 27 | # ASEC |
| 28 | allow untrusted_app_all asec_apk_file:file r_file_perms; |
| 29 | allow untrusted_app_all asec_apk_file:dir r_dir_perms; |
| 30 | # Execute libs in asec containers. |
Nick Kralevich | 9be90fb | 2017-03-06 02:49:50 +0000 | [diff] [blame] | 31 | allow untrusted_app_all asec_public_file:file { execute execmod }; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 32 | |
| 33 | # Used by Finsky / Android "Verify Apps" functionality when |
| 34 | # running "adb install foo.apk". |
| 35 | # TODO: Long term, we don't want apps probing into shell data files. |
| 36 | # Figure out a way to remove these rules. |
| 37 | allow untrusted_app_all shell_data_file:file r_file_perms; |
| 38 | allow untrusted_app_all shell_data_file:dir r_dir_perms; |
| 39 | |
| 40 | # Read and write system app data files passed over Binder. |
| 41 | # Motivating case was /data/data/com.android.settings/cache/*.jpg for |
| 42 | # cropping or taking user photos. |
| 43 | allow untrusted_app_all system_app_data_file:file { read write getattr }; |
| 44 | |
| 45 | # |
| 46 | # Rules migrated from old app domains coalesced into untrusted_app. |
| 47 | # This includes what used to be media_app, shared_app, and release_app. |
| 48 | # |
| 49 | |
| 50 | # Access to /data/media. |
| 51 | allow untrusted_app_all media_rw_data_file:dir create_dir_perms; |
| 52 | allow untrusted_app_all media_rw_data_file:file create_file_perms; |
| 53 | |
| 54 | # Traverse into /mnt/media_rw for bypassing FUSE daemon |
| 55 | # TODO: narrow this to just MediaProvider |
| 56 | allow untrusted_app_all mnt_media_rw_file:dir search; |
| 57 | |
| 58 | # allow cts to query all services |
| 59 | allow untrusted_app_all servicemanager:service_manager list; |
| 60 | |
| 61 | allow untrusted_app_all audioserver_service:service_manager find; |
| 62 | allow untrusted_app_all cameraserver_service:service_manager find; |
| 63 | allow untrusted_app_all drmserver_service:service_manager find; |
| 64 | allow untrusted_app_all mediaserver_service:service_manager find; |
| 65 | allow untrusted_app_all mediaextractor_service:service_manager find; |
| 66 | allow untrusted_app_all mediacodec_service:service_manager find; |
| 67 | allow untrusted_app_all mediametrics_service:service_manager find; |
| 68 | allow untrusted_app_all mediadrmserver_service:service_manager find; |
Chong Zhang | 7291641 | 2016-10-31 17:02:32 -0700 | [diff] [blame] | 69 | allow untrusted_app_all mediacasserver_service:service_manager find; |
Jeff Vander Stoep | bacb6d7 | 2017-02-13 13:33:27 -0800 | [diff] [blame] | 70 | allow untrusted_app_all nfc_service:service_manager find; |
| 71 | allow untrusted_app_all radio_service:service_manager find; |
| 72 | allow untrusted_app_all surfaceflinger_service:service_manager find; |
| 73 | allow untrusted_app_all app_api_service:service_manager find; |
| 74 | allow untrusted_app_all vr_manager_service:service_manager find; |
| 75 | |
| 76 | # Allow GMS core to access perfprofd output, which is stored |
| 77 | # in /data/misc/perfprofd/. GMS core will need to list all |
| 78 | # data stored in that directory to process them one by one. |
| 79 | userdebug_or_eng(` |
| 80 | allow untrusted_app_all perfprofd_data_file:file r_file_perms; |
| 81 | allow untrusted_app_all perfprofd_data_file:dir r_dir_perms; |
| 82 | ') |
| 83 | |
| 84 | # gdbserver for ndk-gdb ptrace attaches to app process. |
| 85 | allow untrusted_app_all self:process ptrace; |
| 86 | |
| 87 | # Cts: HwRngTest |
| 88 | allow untrusted_app_all sysfs_hwrandom:dir search; |
| 89 | allow untrusted_app_all sysfs_hwrandom:file r_file_perms; |
| 90 | |
| 91 | # Allow apps to view preloaded content |
| 92 | allow untrusted_app_all preloads_data_file:dir r_dir_perms; |
| 93 | allow untrusted_app_all preloads_data_file:file r_file_perms; |