Primiano Tucci | 5a30453 | 2018-01-09 14:15:43 +0000 | [diff] [blame] | 1 | # Copyright (C) 2017 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 | |
| 15 | service traced /system/bin/traced |
| 16 | class late_start |
| 17 | disabled |
| 18 | socket traced_consumer stream 0666 root root |
| 19 | socket traced_producer stream 0666 root root |
| 20 | user nobody |
| 21 | group nobody |
| 22 | writepid /dev/cpuset/system-background/tasks |
| 23 | |
| 24 | service traced_probes /system/bin/traced_probes |
| 25 | class late_start |
| 26 | disabled |
| 27 | user nobody |
Hector Dearman | 44fb640 | 2018-02-23 10:10:05 +0000 | [diff] [blame] | 28 | group nobody readproc |
Primiano Tucci | 5a30453 | 2018-01-09 14:15:43 +0000 | [diff] [blame] | 29 | writepid /dev/cpuset/system-background/tasks |
Florian Mayer | 7d1a9a2 | 2018-02-14 15:17:58 +0000 | [diff] [blame] | 30 | # Clean up procfs configuration even if traced_probes crashes |
| 31 | # unexpectedly. |
| 32 | onrestart exec_background - nobody shell -- /system/bin/traced_probes --cleanup-after-crash |
Florian Mayer | a98c6f5 | 2018-02-19 13:56:07 +0000 | [diff] [blame] | 33 | file /dev/kmsg w |
Primiano Tucci | d6e8485 | 2018-03-29 20:26:57 +0000 | [diff] [blame] | 34 | capabilities DAC_READ_SEARCH |
Primiano Tucci | 5a30453 | 2018-01-09 14:15:43 +0000 | [diff] [blame] | 35 | |
Hector Dearman | e9bdfe5 | 2018-03-21 13:24:28 +0000 | [diff] [blame] | 36 | on property:sys.traced.enable_override=1 |
| 37 | setprop persist.traced.enable 1 |
| 38 | |
| 39 | on property:sys.traced.enable_override=0 |
| 40 | setprop persist.traced.enable 0 |
| 41 | |
Lalit Maganti | dabc529 | 2018-05-23 19:18:55 +0100 | [diff] [blame] | 42 | on property:debug.atrace.user_initiated=1 |
| 43 | stop traced_probes |
| 44 | |
| 45 | on property:persist.traced.enable=1 && property:debug.atrace.user_initiated="" |
| 46 | start traced_probes |
| 47 | |
Primiano Tucci | 7175882 | 2018-01-25 12:51:45 +0000 | [diff] [blame] | 48 | on property:persist.traced.enable=1 |
Primiano Tucci | 7e2b67a | 2018-01-16 16:38:49 +0000 | [diff] [blame] | 49 | # Trace files need to be: |
| 50 | # - Written by either uid:shell or uid:statsd. |
Primiano Tucci | 7175882 | 2018-01-25 12:51:45 +0000 | [diff] [blame] | 51 | # - Read by shell and dropbox (dropbox is part of system_server). |
Primiano Tucci | 7e2b67a | 2018-01-16 16:38:49 +0000 | [diff] [blame] | 52 | # When written to dropbox, they are persistet in the perfetto-traces folder |
| 53 | # only for the time it takes to make a dropbox call, and unlinked |
| 54 | # immediately in any case. |
| 55 | mkdir /data/misc/perfetto-traces 0773 root shell |
| 56 | |
Primiano Tucci | 5a30453 | 2018-01-09 14:15:43 +0000 | [diff] [blame] | 57 | start traced |
| 58 | start traced_probes |
Hector Dearman | 7549fff | 2018-02-09 17:25:30 +0000 | [diff] [blame] | 59 | |
| 60 | on property:persist.traced.enable=0 |
| 61 | stop traced |
| 62 | stop traced_probes |