2018-03-02 20:27:06 +01:00
|
|
|
# Domain for atrace process.
|
|
|
|
# It is spawned either by traced_probes or by init for the boottrace service.
|
2017-02-07 19:54:20 +01:00
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
type atrace, domain, coredomain;
|
2018-09-27 19:21:37 +02:00
|
|
|
type atrace_exec, exec_type, file_type, system_file_type;
|
2017-02-07 19:54:20 +01:00
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
# boottrace services uses /data/misc/boottrace/categories
|
|
|
|
allow atrace boottrace_data_file:dir search;
|
|
|
|
allow atrace boottrace_data_file:file r_file_perms;
|
2017-02-07 19:54:20 +01:00
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
# Allow atrace to access tracefs.
|
|
|
|
allow atrace debugfs_tracing:dir r_dir_perms;
|
|
|
|
allow atrace debugfs_tracing:file rw_file_perms;
|
|
|
|
allow atrace debugfs_trace_marker:file getattr;
|
2017-02-07 19:54:20 +01:00
|
|
|
|
2018-11-16 13:17:24 +01:00
|
|
|
# Allow atrace to write data when a pipe is used for stdout/stderr
|
|
|
|
# This is used by Perfetto to capture the output on error in atrace.
|
|
|
|
allow atrace traced_probes:fd use;
|
|
|
|
allow atrace traced_probes:fifo_file write;
|
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
# atrace sets debug.atrace.* properties
|
|
|
|
set_prop(atrace, debug_prop)
|
2017-02-07 19:54:20 +01:00
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
# atrace pokes all the binder-enabled processes at startup with a
|
|
|
|
# SYSPROPS_TRANSACTION, to tell them to reload the debug.atrace.* properties.
|
|
|
|
|
|
|
|
binder_use(atrace)
|
|
|
|
allow atrace healthd:binder call;
|
|
|
|
allow atrace surfaceflinger:binder call;
|
2018-09-05 16:21:54 +02:00
|
|
|
allow atrace system_server:binder call;
|
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
get_prop(atrace, hwservicemanager_prop)
|
2017-02-07 19:54:20 +01:00
|
|
|
|
2018-09-20 01:06:28 +02:00
|
|
|
# atrace can call atrace HAL
|
|
|
|
hal_client_domain(atrace, hal_atrace)
|
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
allow atrace {
|
|
|
|
service_manager_type
|
2018-08-17 09:35:42 +02:00
|
|
|
-apex_service
|
2018-03-02 20:27:06 +01:00
|
|
|
-incident_service
|
2018-10-05 23:48:29 +02:00
|
|
|
-iorapd_service
|
2018-03-02 20:27:06 +01:00
|
|
|
-netd_service
|
|
|
|
-stats_service
|
|
|
|
-dumpstate_service
|
|
|
|
-installd_service
|
|
|
|
-vold_service
|
|
|
|
}:service_manager { find };
|
|
|
|
allow atrace servicemanager:service_manager list;
|
2017-02-07 19:54:20 +01:00
|
|
|
|
2018-03-02 20:27:06 +01:00
|
|
|
userdebug_or_eng(`
|
|
|
|
# atrace is generally invoked as a standalone binary from shell or perf
|
|
|
|
# daemons like Perfetto traced_probes. However, in userdebug builds, there is
|
|
|
|
# a further option to run atrace as an init daemon for boot tracing.
|
|
|
|
init_daemon_domain(atrace)
|
|
|
|
|
|
|
|
allow atrace debugfs_tracing_debug:dir r_dir_perms;
|
|
|
|
allow atrace debugfs_tracing_debug:file rw_file_perms;
|
2016-12-10 05:14:31 +01:00
|
|
|
')
|