Nick Kralevich | 748fdef | 2013-07-12 16:33:29 -0700 | [diff] [blame] | 1 | ### |
| 2 | ### Untrusted apps. |
| 3 | ### |
Stephen Smalley | d823f83 | 2014-02-21 13:26:20 -0500 | [diff] [blame] | 4 | ### This file defines the rules for untrusted apps. |
| 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 domain is the default assignment in |
| 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 | ### domain is assigned to all non-system apps as well as to any system apps |
Stephen Smalley | 9ba844f | 2014-04-04 09:09:25 -0400 | [diff] [blame] | 13 | ### that are not signed by the platform key. To move |
Stephen Smalley | d823f83 | 2014-02-21 13:26:20 -0500 | [diff] [blame] | 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. |
Nick Kralevich | 748fdef | 2013-07-12 16:33:29 -0700 | [diff] [blame] | 18 | ### |
| 19 | ### untrusted_app includes all the appdomain rules, plus the |
| 20 | ### additional following rules: |
| 21 | ### |
| 22 | |
| 23 | type untrusted_app, domain; |
Nick Kralevich | 748fdef | 2013-07-12 16:33:29 -0700 | [diff] [blame] | 24 | app_domain(untrusted_app) |
| 25 | net_domain(untrusted_app) |
| 26 | bluetooth_domain(untrusted_app) |
Nick Kralevich | 6634a10 | 2013-07-12 18:45:56 -0700 | [diff] [blame] | 27 | |
Stephen Smalley | 6531712 | 2013-12-11 09:08:09 -0500 | [diff] [blame] | 28 | # Some apps ship with shared libraries and binaries that they write out |
| 29 | # to their sandbox directory and then execute. |
Nick Kralevich | 78706f9 | 2014-06-02 14:49:10 -0700 | [diff] [blame] | 30 | allow untrusted_app app_data_file:file { rx_file_perms execmod }; |
Stephen Smalley | 6531712 | 2013-12-11 09:08:09 -0500 | [diff] [blame] | 31 | |
Nick Kralevich | 6634a10 | 2013-07-12 18:45:56 -0700 | [diff] [blame] | 32 | allow untrusted_app tun_device:chr_file rw_file_perms; |
| 33 | |
Nick Kralevich | 6634a10 | 2013-07-12 18:45:56 -0700 | [diff] [blame] | 34 | # ASEC |
Nick Kralevich | 6634a10 | 2013-07-12 18:45:56 -0700 | [diff] [blame] | 35 | allow untrusted_app asec_apk_file:file r_file_perms; |
Robert Craig | 48b1883 | 2014-02-04 11:36:41 -0500 | [diff] [blame] | 36 | # Execute libs in asec containers. |
Nick Kralevich | 78706f9 | 2014-06-02 14:49:10 -0700 | [diff] [blame] | 37 | allow untrusted_app asec_public_file:file { execute execmod }; |
Nick Kralevich | 6634a10 | 2013-07-12 18:45:56 -0700 | [diff] [blame] | 38 | |
Nick Kralevich | 6634a10 | 2013-07-12 18:45:56 -0700 | [diff] [blame] | 39 | # Allow the allocation and use of ptys |
| 40 | # Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm |
Stephen Smalley | 2dc4acf | 2013-09-27 09:44:32 -0400 | [diff] [blame] | 41 | create_pty(untrusted_app) |
Nick Kralevich | 8a2ebe3 | 2013-07-15 15:48:34 -0700 | [diff] [blame] | 42 | |
| 43 | # Used by Finsky / Android "Verify Apps" functionality when |
| 44 | # running "adb install foo.apk". |
| 45 | # TODO: Long term, we don't want apps probing into shell data files. |
| 46 | # Figure out a way to remove these rules. |
Nick Kralevich | 2f40a17 | 2013-09-04 16:12:33 -0700 | [diff] [blame] | 47 | allow untrusted_app shell_data_file:file r_file_perms; |
Nick Kralevich | 8a2ebe3 | 2013-07-15 15:48:34 -0700 | [diff] [blame] | 48 | allow untrusted_app shell_data_file:dir r_dir_perms; |
Stephen Smalley | 9ba844f | 2014-04-04 09:09:25 -0400 | [diff] [blame] | 49 | |
| 50 | # |
| 51 | # Rules migrated from old app domains coalesced into untrusted_app. |
| 52 | # This includes what used to be media_app, shared_app, and release_app. |
| 53 | # |
| 54 | |
| 55 | # Access /dev/mtp_usb. |
| 56 | allow untrusted_app mtp_device:chr_file rw_file_perms; |
| 57 | |
| 58 | # Access to /data/media. |
| 59 | allow untrusted_app media_rw_data_file:dir create_dir_perms; |
| 60 | allow untrusted_app media_rw_data_file:file create_file_perms; |
| 61 | |
| 62 | # Write to /cache. |
| 63 | allow untrusted_app cache_file:dir create_dir_perms; |
| 64 | allow untrusted_app cache_file:file create_file_perms; |
Nick Kralevich | 4bdd13e | 2014-05-13 14:45:00 -0700 | [diff] [blame] | 65 | |
dcashman | cd82557 | 2014-12-11 16:01:27 -0800 | [diff] [blame] | 66 | allow untrusted_app drmserver_service:service_manager find; |
dcashman | cd82557 | 2014-12-11 16:01:27 -0800 | [diff] [blame] | 67 | allow untrusted_app mediaserver_service:service_manager find; |
| 68 | allow untrusted_app nfc_service:service_manager find; |
| 69 | allow untrusted_app radio_service:service_manager find; |
| 70 | allow untrusted_app surfaceflinger_service:service_manager find; |
| 71 | allow untrusted_app system_server_service:service_manager find; |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 72 | allow untrusted_app tmp_system_server_service:service_manager find; |
| 73 | |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 74 | service_manager_local_audit_domain(untrusted_app) |
| 75 | auditallow untrusted_app { |
| 76 | tmp_system_server_service |
| 77 | -accessibility_service |
| 78 | -account_service |
| 79 | -activity_service |
| 80 | -appops_service |
| 81 | -appwidget_service |
| 82 | -assetatlas_service |
| 83 | -audio_service |
dcashman | c631ede | 2015-01-15 15:12:18 -0800 | [diff] [blame] | 84 | -backup_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 85 | -battery_service |
dcashman | c631ede | 2015-01-15 15:12:18 -0800 | [diff] [blame] | 86 | -batterystats_service |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 87 | -bluetooth_manager_service |
| 88 | -connectivity_service |
| 89 | -content_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 90 | -country_detector_service |
| 91 | -default_android_service |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 92 | -device_policy_service |
| 93 | -display_service |
| 94 | -dropbox_service |
| 95 | -input_method_service |
| 96 | -input_service |
| 97 | -jobscheduler_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 98 | -launcherapps_service |
dcashman | c631ede | 2015-01-15 15:12:18 -0800 | [diff] [blame] | 99 | -location_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 100 | -lock_settings_service |
| 101 | -media_router_service |
| 102 | -media_session_service |
| 103 | -meminfo_service |
dcashman | c631ede | 2015-01-15 15:12:18 -0800 | [diff] [blame] | 104 | -mount_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 105 | -netpolicy_service |
dcashman | c631ede | 2015-01-15 15:12:18 -0800 | [diff] [blame] | 106 | -netstats_service |
dcashman | 566e8fe | 2015-01-16 17:27:25 -0800 | [diff] [blame] | 107 | -network_management_service |
dcashman | c631ede | 2015-01-15 15:12:18 -0800 | [diff] [blame] | 108 | -network_score_service |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 109 | -notification_service |
| 110 | -persistent_data_block_service |
| 111 | -power_service |
| 112 | -registry_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 113 | -search_service |
| 114 | -sensorservice_service |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 115 | -textservices_service |
| 116 | -trust_service |
dcashman | c631ede | 2015-01-15 15:12:18 -0800 | [diff] [blame] | 117 | -uimode_service |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 118 | -user_service |
dcashman | 566e8fe | 2015-01-16 17:27:25 -0800 | [diff] [blame] | 119 | -vibrator_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 120 | -voiceinteraction_service |
| 121 | -wallpaper_service |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 122 | -webviewupdate_service |
| 123 | -wifi_service |
dcashman | 23f3361 | 2015-03-03 11:20:15 -0800 | [diff] [blame] | 124 | -wifip2p_service |
dcashman | 4a89cdf | 2014-12-16 15:45:26 -0800 | [diff] [blame] | 125 | }:service_manager find; |
Riley Spahn | b8511e0 | 2014-07-07 13:56:27 -0700 | [diff] [blame] | 126 | |
Nick Kralevich | 4bdd13e | 2014-05-13 14:45:00 -0700 | [diff] [blame] | 127 | ### |
| 128 | ### neverallow rules |
| 129 | ### |
| 130 | |
Nick Kralevich | 642b804 | 2014-09-21 23:35:24 -0700 | [diff] [blame] | 131 | # Receive or send uevent messages. |
Nick Kralevich | d31936f | 2015-01-28 17:46:30 -0800 | [diff] [blame] | 132 | neverallow untrusted_app domain:netlink_kobject_uevent_socket *; |
| 133 | |
| 134 | # Receive or send generic netlink messages |
| 135 | neverallow untrusted_app domain:netlink_socket *; |
Nick Kralevich | 642b804 | 2014-09-21 23:35:24 -0700 | [diff] [blame] | 136 | |
Nick Kralevich | 4bdd13e | 2014-05-13 14:45:00 -0700 | [diff] [blame] | 137 | # Too much leaky information in debugfs. It's a security |
| 138 | # best practice to ensure these files aren't readable. |
| 139 | neverallow untrusted_app debugfs:file read; |
Riley Spahn | 76206ab | 2014-07-07 09:27:53 -0700 | [diff] [blame] | 140 | |
| 141 | # Do not allow untrusted apps to register services. |
| 142 | # Only trusted components of Android should be registering |
| 143 | # services. |
| 144 | neverallow untrusted_app service_manager_type:service_manager add; |
Nick Kralevich | 99d86c7 | 2014-07-09 18:58:04 -0700 | [diff] [blame] | 145 | |
Nick Kralevich | f583566 | 2014-07-09 19:03:08 -0700 | [diff] [blame] | 146 | # Do not allow untrusted_apps to connect to the property service |
Nick Kralevich | 99d86c7 | 2014-07-09 18:58:04 -0700 | [diff] [blame] | 147 | # or set properties. b/10243159 |
| 148 | neverallow untrusted_app property_socket:sock_file write; |
| 149 | neverallow untrusted_app init:unix_stream_socket connectto; |
| 150 | neverallow untrusted_app property_type:property_service set; |
dcashman | fbbe9e9 | 2014-08-06 18:09:35 -0700 | [diff] [blame] | 151 | |
| 152 | # Allow verifier to access staged apks. |
| 153 | allow untrusted_app { apk_tmp_file apk_private_tmp_file }:dir r_dir_perms; |
Nick Kralevich | 8c6dba9 | 2014-10-14 15:07:49 -0700 | [diff] [blame] | 154 | allow untrusted_app { apk_tmp_file apk_private_tmp_file }:file r_file_perms; |