2017-12-19 00:14:33 +01:00
|
|
|
type statsd, domain;
|
|
|
|
typeattribute statsd coredomain;
|
|
|
|
|
|
|
|
init_daemon_domain(statsd)
|
|
|
|
|
|
|
|
type statsd_exec, exec_type, file_type;
|
|
|
|
binder_use(statsd)
|
|
|
|
|
|
|
|
# Allow statsd to scan through /proc/pid for all processes.
|
|
|
|
r_dir_file(statsd, domain)
|
|
|
|
|
|
|
|
# Allow executing files on system, such as running a shell or running:
|
|
|
|
# /system/bin/toolbox
|
|
|
|
# /system/bin/logcat
|
|
|
|
# /system/bin/dumpsys
|
2017-12-21 01:00:54 +01:00
|
|
|
allow statsd devpts:chr_file { getattr ioctl read write };
|
2017-12-19 00:14:33 +01:00
|
|
|
allow statsd shell_exec:file rx_file_perms;
|
|
|
|
allow statsd system_file:file execute_no_trans;
|
|
|
|
allow statsd toolbox_exec:file rx_file_perms;
|
|
|
|
|
2017-12-21 01:00:54 +01:00
|
|
|
userdebug_or_eng(`
|
|
|
|
allow statsd su:fifo_file read;
|
|
|
|
')
|
|
|
|
|
2017-12-19 00:14:33 +01:00
|
|
|
# Create, read, and write into /data/misc/stats-data, /data/misc/stats-system.
|
|
|
|
allow statsd stats_data_file:dir create_dir_perms;
|
|
|
|
allow statsd stats_data_file:file create_file_perms;
|
|
|
|
|
|
|
|
# Allow statsd to make binder calls to any binder service.
|
|
|
|
binder_call(statsd, appdomain)
|
|
|
|
binder_call(statsd, incidentd)
|
|
|
|
binder_call(statsd, statscompanion_service)
|
2017-12-21 01:00:54 +01:00
|
|
|
binder_call(statsd, system_server)
|
2017-12-19 00:14:33 +01:00
|
|
|
|
|
|
|
# Allow logd access.
|
|
|
|
read_logd(statsd)
|
|
|
|
control_logd(statsd)
|
|
|
|
|
2017-12-21 03:51:15 +01:00
|
|
|
# Allow to control Perfetto traced and consume its traces.
|
|
|
|
unix_socket_connect(statsd, traced_consumer, traced)
|
|
|
|
|
2017-12-19 00:14:33 +01:00
|
|
|
# Grant statsd with permissions to register the services.
|
|
|
|
allow statsd {
|
|
|
|
statscompanion_service
|
|
|
|
app_api_service
|
|
|
|
system_api_service
|
|
|
|
}:service_manager find;
|
|
|
|
|
|
|
|
# Only statsd can publish the binder service.
|
|
|
|
add_service(statsd, stats_service)
|
|
|
|
|
|
|
|
# Allow pipes from (and only from) stats.
|
|
|
|
allow statsd stats:fd use;
|
|
|
|
allow statsd stats:fifo_file write;
|
|
|
|
|
2018-01-18 01:17:28 +01:00
|
|
|
# Allow statsd to send dump info to dumpstate
|
|
|
|
allow statsd dumpstate:fd use;
|
|
|
|
allow statsd dumpstate:fifo_file { getattr write };
|
|
|
|
|
2017-12-19 00:14:33 +01:00
|
|
|
# Allow statsd to call back to stats with status updates.
|
|
|
|
binder_call(statsd, stats)
|
|
|
|
|
2017-12-21 01:00:54 +01:00
|
|
|
# Allow access to with hardware layer and process stats.
|
|
|
|
allow statsd proc_uid_cputime_showstat:file { getattr open read };
|
|
|
|
hal_client_domain(statsd, hal_power)
|
|
|
|
|
2017-12-19 00:14:33 +01:00
|
|
|
###
|
|
|
|
### neverallow rules
|
|
|
|
###
|
|
|
|
|
2017-12-12 01:19:23 +01:00
|
|
|
# Only system_server, system_app, traceur_app, and stats command can find the stats service.
|
2017-12-19 00:14:33 +01:00
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-dumpstate
|
2018-01-09 20:27:36 +01:00
|
|
|
-priv_app
|
2017-12-19 00:14:33 +01:00
|
|
|
-shell
|
|
|
|
-stats
|
|
|
|
-statsd
|
|
|
|
-system_app
|
|
|
|
-system_server
|
2017-12-12 01:19:23 +01:00
|
|
|
userdebug_or_eng(`-traceur_app')
|
2017-12-19 00:14:33 +01:00
|
|
|
} stats_service:service_manager find;
|
|
|
|
|
|
|
|
# Only statsd and the other root services in limited circumstances.
|
|
|
|
# can get to the files in /data/misc/stats-data, /data/misc/stats-service.
|
|
|
|
# Other services are prohibitted from accessing the file.
|
|
|
|
neverallow { domain -statsd -init -vold -vendor_init } stats_data_file:file *;
|
|
|
|
|
|
|
|
# Limited access to the directory itself.
|
|
|
|
neverallow { domain -statsd -init -vold -vendor_init } stats_data_file:dir *;
|