blob: 91cb46ac6e63f324b3b11ddabf1d978d9ff7c871 [file] [log] [blame]
Nick Kralevich748fdef2013-07-12 16:33:29 -07001###
2### Untrusted apps.
3###
Stephen Smalleyd823f832014-02-21 13:26:20 -05004### 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 Smalley9ba844f2014-04-04 09:09:25 -040013### that are not signed by the platform key. To move
Stephen Smalleyd823f832014-02-21 13:26:20 -050014### 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 Kralevich748fdef2013-07-12 16:33:29 -070018###
19### untrusted_app includes all the appdomain rules, plus the
20### additional following rules:
21###
22
23type untrusted_app, domain;
Nick Kralevich748fdef2013-07-12 16:33:29 -070024app_domain(untrusted_app)
25net_domain(untrusted_app)
26bluetooth_domain(untrusted_app)
Nick Kralevich6634a102013-07-12 18:45:56 -070027
Stephen Smalley65317122013-12-11 09:08:09 -050028# Some apps ship with shared libraries and binaries that they write out
29# to their sandbox directory and then execute.
Nick Kralevich78706f92014-06-02 14:49:10 -070030allow untrusted_app app_data_file:file { rx_file_perms execmod };
Stephen Smalley65317122013-12-11 09:08:09 -050031
Nick Kralevich6634a102013-07-12 18:45:56 -070032allow untrusted_app tun_device:chr_file rw_file_perms;
33
Nick Kralevich6634a102013-07-12 18:45:56 -070034# ASEC
Nick Kralevich6634a102013-07-12 18:45:56 -070035allow untrusted_app asec_apk_file:file r_file_perms;
Robert Craig48b18832014-02-04 11:36:41 -050036# Execute libs in asec containers.
Nick Kralevich78706f92014-06-02 14:49:10 -070037allow untrusted_app asec_public_file:file { execute execmod };
Nick Kralevich6634a102013-07-12 18:45:56 -070038
Nick Kralevich6634a102013-07-12 18:45:56 -070039# Allow the allocation and use of ptys
40# Used by: https://play.google.com/store/apps/details?id=jackpal.androidterm
Stephen Smalley2dc4acf2013-09-27 09:44:32 -040041create_pty(untrusted_app)
Nick Kralevich8a2ebe32013-07-15 15:48:34 -070042
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 Kralevich2f40a172013-09-04 16:12:33 -070047allow untrusted_app shell_data_file:file r_file_perms;
Nick Kralevich8a2ebe32013-07-15 15:48:34 -070048allow untrusted_app shell_data_file:dir r_dir_perms;
Stephen Smalley9ba844f2014-04-04 09:09:25 -040049
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.
56allow untrusted_app mtp_device:chr_file rw_file_perms;
57
58# Access to /data/media.
59allow untrusted_app media_rw_data_file:dir create_dir_perms;
60allow untrusted_app media_rw_data_file:file create_file_perms;
61
62# Write to /cache.
63allow untrusted_app cache_file:dir create_dir_perms;
64allow untrusted_app cache_file:file create_file_perms;
Nick Kralevich4bdd13e2014-05-13 14:45:00 -070065
dcashmancd825572014-12-11 16:01:27 -080066allow untrusted_app drmserver_service:service_manager find;
dcashmancd825572014-12-11 16:01:27 -080067allow untrusted_app mediaserver_service:service_manager find;
68allow untrusted_app nfc_service:service_manager find;
69allow untrusted_app radio_service:service_manager find;
70allow untrusted_app surfaceflinger_service:service_manager find;
71allow untrusted_app system_server_service:service_manager find;
dcashman4a89cdf2014-12-16 15:45:26 -080072allow untrusted_app tmp_system_server_service:service_manager find;
73
dcashman4a89cdf2014-12-16 15:45:26 -080074service_manager_local_audit_domain(untrusted_app)
75auditallow 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
dcashmanc631ede2015-01-15 15:12:18 -080084 -backup_service
dcashman23f33612015-03-03 11:20:15 -080085 -battery_service
dcashmanc631ede2015-01-15 15:12:18 -080086 -batterystats_service
dcashman4a89cdf2014-12-16 15:45:26 -080087 -bluetooth_manager_service
88 -connectivity_service
89 -content_service
dcashman23f33612015-03-03 11:20:15 -080090 -country_detector_service
91 -default_android_service
dcashman4a89cdf2014-12-16 15:45:26 -080092 -device_policy_service
93 -display_service
94 -dropbox_service
95 -input_method_service
96 -input_service
97 -jobscheduler_service
dcashman23f33612015-03-03 11:20:15 -080098 -launcherapps_service
dcashmanc631ede2015-01-15 15:12:18 -080099 -location_service
dcashman23f33612015-03-03 11:20:15 -0800100 -lock_settings_service
101 -media_router_service
102 -media_session_service
103 -meminfo_service
dcashmanc631ede2015-01-15 15:12:18 -0800104 -mount_service
dcashman23f33612015-03-03 11:20:15 -0800105 -netpolicy_service
dcashmanc631ede2015-01-15 15:12:18 -0800106 -netstats_service
dcashman566e8fe2015-01-16 17:27:25 -0800107 -network_management_service
dcashmanc631ede2015-01-15 15:12:18 -0800108 -network_score_service
dcashman4a89cdf2014-12-16 15:45:26 -0800109 -notification_service
110 -persistent_data_block_service
111 -power_service
112 -registry_service
dcashman23f33612015-03-03 11:20:15 -0800113 -search_service
114 -sensorservice_service
dcashman4a89cdf2014-12-16 15:45:26 -0800115 -textservices_service
116 -trust_service
dcashmanc631ede2015-01-15 15:12:18 -0800117 -uimode_service
dcashman4a89cdf2014-12-16 15:45:26 -0800118 -user_service
dcashman566e8fe2015-01-16 17:27:25 -0800119 -vibrator_service
dcashman23f33612015-03-03 11:20:15 -0800120 -voiceinteraction_service
121 -wallpaper_service
dcashman4a89cdf2014-12-16 15:45:26 -0800122 -webviewupdate_service
123 -wifi_service
dcashman23f33612015-03-03 11:20:15 -0800124 -wifip2p_service
dcashman4a89cdf2014-12-16 15:45:26 -0800125}:service_manager find;
Riley Spahnb8511e02014-07-07 13:56:27 -0700126
Nick Kralevich4bdd13e2014-05-13 14:45:00 -0700127###
128### neverallow rules
129###
130
Nick Kralevich642b8042014-09-21 23:35:24 -0700131# Receive or send uevent messages.
Nick Kralevichd31936f2015-01-28 17:46:30 -0800132neverallow untrusted_app domain:netlink_kobject_uevent_socket *;
133
134# Receive or send generic netlink messages
135neverallow untrusted_app domain:netlink_socket *;
Nick Kralevich642b8042014-09-21 23:35:24 -0700136
Nick Kralevich4bdd13e2014-05-13 14:45:00 -0700137# Too much leaky information in debugfs. It's a security
138# best practice to ensure these files aren't readable.
139neverallow untrusted_app debugfs:file read;
Riley Spahn76206ab2014-07-07 09:27:53 -0700140
141# Do not allow untrusted apps to register services.
142# Only trusted components of Android should be registering
143# services.
144neverallow untrusted_app service_manager_type:service_manager add;
Nick Kralevich99d86c72014-07-09 18:58:04 -0700145
Nick Kralevichf5835662014-07-09 19:03:08 -0700146# Do not allow untrusted_apps to connect to the property service
Nick Kralevich99d86c72014-07-09 18:58:04 -0700147# or set properties. b/10243159
148neverallow untrusted_app property_socket:sock_file write;
149neverallow untrusted_app init:unix_stream_socket connectto;
150neverallow untrusted_app property_type:property_service set;
dcashmanfbbe9e92014-08-06 18:09:35 -0700151
152# Allow verifier to access staged apks.
153allow untrusted_app { apk_tmp_file apk_private_tmp_file }:dir r_dir_perms;
Nick Kralevich8c6dba92014-10-14 15:07:49 -0700154allow untrusted_app { apk_tmp_file apk_private_tmp_file }:file r_file_perms;