traced_perf: add to android build by default (initially disabled)

Will separately check whether packageinfo
group is necessary (or effectively covered by DAC_READ_SEARCH).

Bug: 144281346
Change-Id: If84d91a4c31ec04df6617da9374bf5087e991bd7
diff --git a/traced_perf.rc b/traced_perf.rc
new file mode 100644
index 0000000..b38b7c4
--- /dev/null
+++ b/traced_perf.rc
@@ -0,0 +1,34 @@
+# Copyright (C) 2020 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+service traced_perf /system/bin/traced_perf
+    class late_start
+    disabled
+    # socket for receiving /proc/pid/{maps,mem} file descriptors
+    socket traced_perf stream 0666 root root
+    user nobody
+    # readproc to stat(/proc/pid) to find out UID of processes, and read
+    # /proc/pid/cmdline.
+    group nobody readproc
+    # KILL for sending BIONIC_SIGNAL_PROFILER.
+    # DAC_READ_SEARCH for stack unwinding and on-device symbolization (requires
+    # opening libraries/executables for sections not already mapped in).
+    capabilities KILL DAC_READ_SEARCH
+    writepid /dev/cpuset/foreground/tasks
+
+on property:persist.traced_perf.enable=1
+    start traced_perf
+on property:persist.traced_perf.enable=0
+    stop traced_perf
+