blob: 29965580770d0c6f90207a4149951135f42eb870 [file] [log] [blame]
Ryan Savitski29082bf2020-02-12 15:13:51 +00001# Copyright (C) 2020 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Ryan87227fa2020-03-24 16:16:30 +000015# Notes:
16# * socket used for receiving /proc/pid/{maps,mem} file descriptors
17# * readproc group to stat(/proc/pid) to find out UID of processes, and read
18# /proc/pid/cmdline.
19# * KILL capability for sending BIONIC_SIGNAL_PROFILER.
20# * DAC_READ_SEARCH capability for stack unwinding and on-device symbolization (requires
21# opening libraries/executables for sections not already mapped in).
22# * foreground task group as unwinding based on minidebug info is a heavyweight action.
Ryan Savitski29082bf2020-02-12 15:13:51 +000023service traced_perf /system/bin/traced_perf
24 class late_start
Ryan Savitski29082bf2020-02-12 15:13:51 +000025 socket traced_perf stream 0666 root root
26 user nobody
Ryan Savitski29082bf2020-02-12 15:13:51 +000027 group nobody readproc
Ryan Savitski29082bf2020-02-12 15:13:51 +000028 capabilities KILL DAC_READ_SEARCH
29 writepid /dev/cpuset/foreground/tasks
30
Ryan87227fa2020-03-24 16:16:30 +000031# Daemon run state:
32# * initially off (no clauses match by default)
33# * |persist.traced_perf.enable| forces daemon to run unconditionally
34# * if kernel doesn't have perf_event_open LSM hooks, daemon is stopped
35# * otherwise, follow |traced.lazy.traced_perf| as an on-demand service
Ryan Savitski29082bf2020-02-12 15:13:51 +000036on property:persist.traced_perf.enable=1
37 start traced_perf
Ryan87227fa2020-03-24 16:16:30 +000038on property:persist.traced_perf.enable=0 && property:sys.init.perf_lsm_hooks=""
39 stop traced_perf
40on property:persist.traced_perf.enable=0 && property:sys.init.perf_lsm_hooks=1 && property:traced.lazy.traced_perf=1
41 start traced_perf
42on property:persist.traced_perf.enable=0 && property:sys.init.perf_lsm_hooks=1 && property:traced.lazy.traced_perf=""
Ryan Savitski29082bf2020-02-12 15:13:51 +000043 stop traced_perf
44