2017-01-09 23:52:59 +01:00
|
|
|
###
|
|
|
|
### Apps signed with the platform key.
|
|
|
|
###
|
|
|
|
|
2017-03-23 22:27:32 +01:00
|
|
|
typeattribute platform_app coredomain;
|
2017-01-09 23:52:59 +01:00
|
|
|
|
2016-12-10 05:14:31 +01:00
|
|
|
app_domain(platform_app)
|
2017-01-09 23:52:59 +01:00
|
|
|
|
|
|
|
# Access the network.
|
|
|
|
net_domain(platform_app)
|
|
|
|
# Access bluetooth.
|
|
|
|
bluetooth_domain(platform_app)
|
|
|
|
# Read from /data/local/tmp or /data/data/com.android.shell.
|
|
|
|
allow platform_app shell_data_file:dir search;
|
|
|
|
allow platform_app shell_data_file:file { open getattr read };
|
|
|
|
allow platform_app icon_file:file { open getattr read };
|
2017-01-25 23:55:56 +01:00
|
|
|
# Populate /data/app/vmdl*.tmp, /data/app-private/vmdl*.tmp files
|
2017-01-09 23:52:59 +01:00
|
|
|
# created by system server.
|
2017-01-25 23:55:56 +01:00
|
|
|
allow platform_app { apk_tmp_file apk_private_tmp_file }:dir rw_dir_perms;
|
|
|
|
allow platform_app { apk_tmp_file apk_private_tmp_file }:file rw_file_perms;
|
2017-01-09 23:52:59 +01:00
|
|
|
allow platform_app apk_private_data_file:dir search;
|
|
|
|
# ASEC
|
|
|
|
allow platform_app asec_apk_file:dir create_dir_perms;
|
|
|
|
allow platform_app asec_apk_file:file create_file_perms;
|
|
|
|
|
|
|
|
# Access to /data/media.
|
|
|
|
allow platform_app media_rw_data_file:dir create_dir_perms;
|
|
|
|
allow platform_app media_rw_data_file:file create_file_perms;
|
|
|
|
|
|
|
|
# Write to /cache.
|
|
|
|
allow platform_app cache_file:dir create_dir_perms;
|
|
|
|
allow platform_app cache_file:file create_file_perms;
|
|
|
|
|
|
|
|
# Direct access to vold-mounted storage under /mnt/media_rw
|
|
|
|
# This is a performance optimization that allows platform apps to bypass the FUSE layer
|
|
|
|
allow platform_app mnt_media_rw_file:dir r_dir_perms;
|
2018-03-30 20:22:54 +02:00
|
|
|
allow platform_app sdcard_type:dir create_dir_perms;
|
|
|
|
allow platform_app sdcard_type:file create_file_perms;
|
2017-01-09 23:52:59 +01:00
|
|
|
|
2017-07-11 05:39:50 +02:00
|
|
|
# com.android.systemui
|
|
|
|
allow platform_app rootfs:dir getattr;
|
2021-09-14 19:44:49 +02:00
|
|
|
get_prop(platform_app, radio_cdma_ecm_prop)
|
2022-03-02 23:13:58 +01:00
|
|
|
userdebug_or_eng(`
|
|
|
|
set_prop(platform_app, persist_wm_debug_prop)
|
|
|
|
')
|
|
|
|
neverallow { domain -init -dumpstate userdebug_or_eng(`-domain') } persist_wm_debug_prop:property_service set;
|
2017-07-11 05:39:50 +02:00
|
|
|
|
2023-03-23 03:19:22 +01:00
|
|
|
userdebug_or_eng(`
|
|
|
|
set_prop(platform_app, persist_sysui_builder_extras_prop)
|
|
|
|
')
|
|
|
|
|
2017-07-26 01:43:49 +02:00
|
|
|
# com.android.captiveportallogin reads /proc/vmstat
|
2018-01-10 21:51:51 +01:00
|
|
|
allow platform_app {
|
|
|
|
proc_vmstat
|
|
|
|
}:file r_file_perms;
|
2017-07-26 01:43:49 +02:00
|
|
|
|
Start the process of locking down proc/net
Files in /proc/net leak information. This change is the first step in
determining which files apps may use, whitelisting benign access, and
otherwise removing access while providing safe alternative APIs.
To that end, this change:
* Introduces the proc_net_type attribute which will assigned to any
new SELinux types in /proc/net to avoid removing access to privileged
processes. These processes may be evaluated later, but are lower
priority than apps.
* Labels /proc/net/{tcp,tcp6,udp,udp6} as proc_net_vpn due to existing
use by VPN apps. This may be replaced by an alternative API.
* Audits all other proc/net access for apps.
* Audits proc/net access for other processes which are currently
granted broad read access to /proc/net but should not be including
storaged, zygote, clatd, logd, preopt2cachename and vold.
Bug: 9496886
Bug: 68016944
Test: Boot Taimen-userdebug. On both wifi and cellular: stream youtube
navigate maps, send text message, make voice call, make video call.
Verify no avc "granted" messages in the logs.
Test: A few VPN apps including "VPN Monster", "Turbo VPN", and
"Freighter". Verify no logspam with the current setup.
Test: atest CtsNativeNetTestCases
Test: atest netd_integration_test
Test: atest QtaguidPermissionTest
Test: atest FileSystemPermissionTest
Change-Id: I7e49f796a25cf68bc698c6c9206e24af3ae11457
Merged-In: I7e49f796a25cf68bc698c6c9206e24af3ae11457
(cherry picked from commit 087318957f26e921d62f2e234fc14bff3c59030e)
2018-04-10 21:47:48 +02:00
|
|
|
# /proc/net access.
|
|
|
|
# TODO(b/9496886) Audit access for removal.
|
|
|
|
r_dir_file(platform_app, proc_net_type)
|
|
|
|
userdebug_or_eng(`
|
|
|
|
auditallow platform_app proc_net_type:{ dir file lnk_file } { getattr open read };
|
|
|
|
')
|
|
|
|
|
2023-01-20 21:14:31 +01:00
|
|
|
# Allow writing and removing wmshell protolog in /data/misc/wmtrace.
|
|
|
|
userdebug_or_eng(`
|
|
|
|
allow platform_app wm_trace_data_file:dir rw_dir_perms;
|
|
|
|
allow platform_app wm_trace_data_file:file { getattr setattr create unlink w_file_perms };
|
|
|
|
')
|
|
|
|
|
2017-01-09 23:52:59 +01:00
|
|
|
allow platform_app audioserver_service:service_manager find;
|
|
|
|
allow platform_app cameraserver_service:service_manager find;
|
|
|
|
allow platform_app drmserver_service:service_manager find;
|
|
|
|
allow platform_app mediaserver_service:service_manager find;
|
2017-01-24 21:53:45 +01:00
|
|
|
allow platform_app mediametrics_service:service_manager find;
|
2017-01-09 23:52:59 +01:00
|
|
|
allow platform_app mediaextractor_service:service_manager find;
|
|
|
|
allow platform_app mediadrmserver_service:service_manager find;
|
|
|
|
allow platform_app persistent_data_block_service:service_manager find;
|
|
|
|
allow platform_app radio_service:service_manager find;
|
2017-07-13 03:12:52 +02:00
|
|
|
allow platform_app thermal_service:service_manager find;
|
2017-01-09 23:52:59 +01:00
|
|
|
allow platform_app app_api_service:service_manager find;
|
|
|
|
allow platform_app system_api_service:service_manager find;
|
|
|
|
allow platform_app vr_manager_service:service_manager find;
|
2019-02-07 23:02:06 +01:00
|
|
|
allow platform_app stats_service:service_manager find;
|
2019-02-08 00:00:55 +01:00
|
|
|
|
2019-02-07 23:02:06 +01:00
|
|
|
# Allow platform apps to log via statsd.
|
2019-12-12 19:17:58 +01:00
|
|
|
binder_call(platform_app, statsd)
|
2019-02-07 23:02:06 +01:00
|
|
|
|
2021-06-07 23:20:47 +02:00
|
|
|
# Allow platform applications to find and call artd for testing
|
|
|
|
userdebug_or_eng(`
|
|
|
|
allow platform_app artd_service:service_manager find;
|
|
|
|
binder_call(platform_app, artd)
|
|
|
|
')
|
|
|
|
|
2017-01-09 23:52:59 +01:00
|
|
|
# Access to /data/preloads
|
|
|
|
allow platform_app preloads_data_file:file r_file_perms;
|
|
|
|
allow platform_app preloads_data_file:dir r_dir_perms;
|
2017-03-14 19:42:03 +01:00
|
|
|
allow platform_app preloads_media_file:file r_file_perms;
|
|
|
|
allow platform_app preloads_media_file:dir r_dir_perms;
|
2017-01-09 23:52:59 +01:00
|
|
|
|
2016-11-08 00:11:39 +01:00
|
|
|
read_runtime_log_tags(platform_app)
|
2017-04-26 20:40:48 +02:00
|
|
|
|
2017-12-15 03:20:30 +01:00
|
|
|
# allow platform apps to use UDP sockets provided by the system server but not
|
|
|
|
# modify them other than to connect
|
2018-03-27 15:34:54 +02:00
|
|
|
allow platform_app system_server:udp_socket {
|
|
|
|
connect getattr read recvfrom sendto write getopt setopt };
|
2017-12-15 03:20:30 +01:00
|
|
|
|
2015-10-25 01:20:18 +02:00
|
|
|
# allow platform apps to connect to the property service
|
|
|
|
set_prop(platform_app, test_boot_reason_prop)
|
|
|
|
|
2020-07-07 05:46:24 +02:00
|
|
|
# allow platform apps to read keyguard.no_require_sim
|
|
|
|
get_prop(platform_app, keyguard_config_prop)
|
|
|
|
|
2021-02-17 18:54:30 +01:00
|
|
|
# allow platform apps to read qemu.hw.mainkeys
|
|
|
|
get_prop(platform_app, qemu_hw_prop)
|
|
|
|
|
2019-01-30 08:44:24 +01:00
|
|
|
# allow platform apps to create symbolic link
|
|
|
|
allow platform_app app_data_file:lnk_file create_file_perms;
|
|
|
|
|
2020-12-07 09:30:29 +01:00
|
|
|
# suppress denials caused by debugfs_tracing
|
|
|
|
dontaudit platform_app debugfs_tracing:file rw_file_perms;
|
|
|
|
|
2021-09-07 13:25:38 +02:00
|
|
|
# Allow platform apps to create VMs
|
|
|
|
virtualizationservice_use(platform_app)
|
|
|
|
|
2017-04-26 20:40:48 +02:00
|
|
|
###
|
|
|
|
### Neverallow rules
|
|
|
|
###
|
|
|
|
|
2023-03-23 03:19:22 +01:00
|
|
|
neverallow { domain -init userdebug_or_eng(`-shell -platform_app') } persist_sysui_builder_extras_prop:property_service set;
|
|
|
|
|
2017-04-26 20:40:48 +02:00
|
|
|
# app domains which access /dev/fuse should not run as platform_app
|
|
|
|
neverallow platform_app fuse_device:chr_file *;
|