blob: f923c7f7a53334156489a52c841ad867414aa96f [file] [log] [blame]
Florian Mayer801349e2018-11-29 10:15:25 +00001#!/usr/bin/env python
2
3# Copyright (C) 2017 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17from __future__ import absolute_import
18from __future__ import division
19from __future__ import print_function
20
21import argparse
22import atexit
23import hashlib
24import os
25import signal
26import subprocess
27import sys
28import tempfile
29import time
30import urllib
31
32TRACE_TO_TEXT_SHAS = {
Florian Mayer854d22f2019-04-17 15:39:47 +010033 'linux': 'a8171d85c5964ccafe457142dbb7df68ca8da543',
34 'mac': '268c2fc096039566979d16c1a7a99eabef0d9682',
Florian Mayer801349e2018-11-29 10:15:25 +000035}
36TRACE_TO_TEXT_PATH = tempfile.gettempdir()
37TRACE_TO_TEXT_BASE_URL = (
38 'https://storage.googleapis.com/perfetto/')
39
Florian Mayerbd0a62a2019-04-10 11:09:21 +010040NULL = open(os.devnull)
41NOOUT = {
42 'stdout': NULL,
43 'stderr': NULL,
44}
45
46
Florian Mayer801349e2018-11-29 10:15:25 +000047def check_hash(file_name, sha_value):
48 with open(file_name, 'rb') as fd:
49 # TODO(fmayer): Chunking.
50 file_hash = hashlib.sha1(fd.read()).hexdigest()
51 return file_hash == sha_value
52
53
54def load_trace_to_text(platform):
55 sha_value = TRACE_TO_TEXT_SHAS[platform]
56 file_name = 'trace_to_text-' + platform + '-' + sha_value
57 local_file = os.path.join(TRACE_TO_TEXT_PATH, file_name)
58
59 if os.path.exists(local_file):
60 if not check_hash(local_file, sha_value):
61 os.remove(local_file)
62 else:
63 return local_file
64
65 url = TRACE_TO_TEXT_BASE_URL + file_name
66 urllib.urlretrieve(url, local_file)
67 if not check_hash(local_file, sha_value):
68 os.remove(local_file)
69 raise ValueError("Invalid signature.")
70 os.chmod(local_file, 0o755)
71 return local_file
72
73
Florian Mayer801349e2018-11-29 10:15:25 +000074CFG_IDENT = ' '
75CFG='''buffers {{
76 size_kb: 32768
77}}
78
79data_sources {{
80 config {{
Florian Mayere21646d2019-04-02 16:39:16 +010081 name: "android.packages_list"
82 }}
83}}
84
85data_sources {{
86 config {{
Florian Mayer801349e2018-11-29 10:15:25 +000087 name: "android.heapprofd"
88 heapprofd_config {{
89
Florian Mayer91b3c6d2019-04-10 13:44:37 -070090 shmem_size_bytes: {shmem_size}
Florian Mayer801349e2018-11-29 10:15:25 +000091 sampling_interval_bytes: {interval}
92{target_cfg}
Florian Mayera8312c72019-01-31 13:50:22 +000093{continuous_dump_cfg}
Florian Mayer801349e2018-11-29 10:15:25 +000094 }}
95 }}
96}}
97
98duration_ms: {duration}
Florian Mayer2aab3162019-05-03 16:02:30 +010099write_into_file: true
Florian Mayer82610462019-04-16 10:26:07 +0100100flush_timeout_ms: 30000
Florian Mayer801349e2018-11-29 10:15:25 +0000101'''
102
Florian Mayera8312c72019-01-31 13:50:22 +0000103CONTINUOUS_DUMP = """
104 continuous_dump_config {{
105 dump_phase_ms: 0
106 dump_interval_ms: {dump_interval}
107 }}
108"""
109
Florian Mayerbb3b6822019-03-08 17:08:59 +0000110PERFETTO_CMD=('CFG=\'{cfg}\'; echo ${{CFG}} | '
111 'perfetto --txt -c - -o '
112 '/data/misc/perfetto-traces/profile-{user} -d')
Florian Mayer801349e2018-11-29 10:15:25 +0000113IS_INTERRUPTED = False
114def sigint_handler(sig, frame):
115 global IS_INTERRUPTED
116 IS_INTERRUPTED = True
117
118
Florian Mayer801349e2018-11-29 10:15:25 +0000119def main(argv):
120 parser = argparse.ArgumentParser()
121 parser.add_argument("-i", "--interval", help="Sampling interval. "
Florian Mayer607c1bc2019-02-01 11:04:58 +0000122 "Default 4096 (4KiB)", type=int, default=4096)
Florian Mayer801349e2018-11-29 10:15:25 +0000123 parser.add_argument("-d", "--duration", help="Duration of profile (ms). "
Florian Mayer0eee91b2019-05-10 10:36:16 +0100124 "Default 7 days.", type=int, default=604800000)
125 parser.add_argument("--no-start", help="Do not start heapprofd.",
Florian Mayer33ceb8d2019-01-11 14:51:28 +0000126 action='store_true')
Florian Mayer0eee91b2019-05-10 10:36:16 +0100127 parser.add_argument("-p", "--pid", help="Comma-separated list of PIDs to "
128 "profile.", metavar="PIDS")
129 parser.add_argument("-n", "--name", help="Comma-separated list of process "
130 "names to profile.", metavar="NAMES")
Florian Mayera8312c72019-01-31 13:50:22 +0000131 parser.add_argument("-c", "--continuous-dump",
132 help="Dump interval in ms. 0 to disable continuous dump.",
133 type=int, default=0)
Florian Mayer6ae95262018-12-06 16:10:29 +0000134 parser.add_argument("--disable-selinux", action="store_true",
135 help="Disable SELinux enforcement for duration of "
Florian Mayer0eee91b2019-05-10 10:36:16 +0100136 "profile.")
Florian Mayer91b3c6d2019-04-10 13:44:37 -0700137 parser.add_argument("--shmem-size", help="Size of buffer between client and "
138 "heapprofd. Default 8MiB. Needs to be a power of two "
139 "multiple of 4096, at least 8192.", type=int,
140 default=8 * 1048576)
Florian Mayerd6bdb6f2019-05-03 17:53:58 +0100141 parser.add_argument("--block-client", help="When buffer is full, block the "
Florian Mayer1a17b682019-05-09 12:02:45 +0100142 "client to wait for buffer space. Use with caution as "
Florian Mayer0eee91b2019-05-10 10:36:16 +0100143 "this can significantly slow down the client.",
Florian Mayerd6bdb6f2019-05-03 17:53:58 +0100144 action="store_true")
Florian Mayer2b8a3b22019-05-02 18:35:38 +0100145 parser.add_argument("--simpleperf", action="store_true",
146 help="Get simpleperf profile of heapprofd. This is "
147 "only for heapprofd development.")
Florian Mayer0eee91b2019-05-10 10:36:16 +0100148 parser.add_argument("--trace-to-text-binary",
149 help="Path to local trace to text. For debugging.")
150
Florian Mayer801349e2018-11-29 10:15:25 +0000151 args = parser.parse_args()
152
153 fail = False
Florian Mayera774cb72019-04-29 14:20:43 +0100154 if args.pid is None and args.name is None:
155 print("FATAL: Neither PID nor NAME given.", file=sys.stderr)
Florian Mayer801349e2018-11-29 10:15:25 +0000156 fail = True
157 if args.duration is None:
158 print("FATAL: No duration given.", file=sys.stderr)
159 fail = True
160 if args.interval is None:
161 print("FATAL: No interval given.", file=sys.stderr)
162 fail = True
Florian Mayer91b3c6d2019-04-10 13:44:37 -0700163 if args.shmem_size % 4096:
164 print("FATAL: shmem-size is not a multiple of 4096.", file=sys.stderr)
165 fail = True
166 if args.shmem_size < 8192:
167 print("FATAL: shmem-size is less than 8192.", file=sys.stderr)
168 fail = True
169 if args.shmem_size & (args.shmem_size - 1):
170 print("FATAL: shmem-size is not a power of two.", file=sys.stderr)
171 fail = True
Florian Mayer0eee91b2019-05-10 10:36:16 +0100172
Florian Mayer801349e2018-11-29 10:15:25 +0000173 target_cfg = ""
Florian Mayerd6bdb6f2019-05-03 17:53:58 +0100174 if args.block_client:
175 target_cfg += "block_client: true\n"
Florian Mayer801349e2018-11-29 10:15:25 +0000176 if args.pid:
Florian Mayer0eee91b2019-05-10 10:36:16 +0100177 for pid in args.pid.split(','):
178 try:
179 pid = int(pid)
180 except ValueError:
181 print("FATAL: invalid PID %s" % pid, file=sys.stderr)
182 fail = True
Florian Mayer801349e2018-11-29 10:15:25 +0000183 target_cfg += '{}pid: {}\n'.format(CFG_IDENT, pid)
184 if args.name:
Florian Mayer0eee91b2019-05-10 10:36:16 +0100185 for name in args.name.split(','):
Florian Mayer801349e2018-11-29 10:15:25 +0000186 target_cfg += '{}process_cmdline: "{}"\n'.format(CFG_IDENT, name)
187
Florian Mayer0eee91b2019-05-10 10:36:16 +0100188 if fail:
189 parser.print_help()
190 return 1
191
Florian Mayer801349e2018-11-29 10:15:25 +0000192 trace_to_text_binary = args.trace_to_text_binary
193 if trace_to_text_binary is None:
194 platform = None
195 if sys.platform.startswith('linux'):
196 platform = 'linux'
197 elif sys.platform.startswith('darwin'):
198 platform = 'mac'
199 else:
200 print("Invalid platform: {}".format(sys.platform), file=sys.stderr)
Florian Mayerb6279632018-11-29 13:31:49 +0000201 return 1
Florian Mayer801349e2018-11-29 10:15:25 +0000202
203 trace_to_text_binary = load_trace_to_text(platform)
204
Florian Mayera8312c72019-01-31 13:50:22 +0000205 continuous_dump_cfg = ""
206 if args.continuous_dump:
207 continuous_dump_cfg = CONTINUOUS_DUMP.format(
208 dump_interval=args.continuous_dump)
Florian Mayera774cb72019-04-29 14:20:43 +0100209 cfg = CFG.format(interval=args.interval,
Florian Mayera8312c72019-01-31 13:50:22 +0000210 duration=args.duration, target_cfg=target_cfg,
Florian Mayer91b3c6d2019-04-10 13:44:37 -0700211 continuous_dump_cfg=continuous_dump_cfg,
212 shmem_size=args.shmem_size)
Florian Mayer801349e2018-11-29 10:15:25 +0000213
Florian Mayer6ae95262018-12-06 16:10:29 +0000214 if args.disable_selinux:
215 enforcing = subprocess.check_output(['adb', 'shell', 'getenforce'])
216 atexit.register(subprocess.check_call,
217 ['adb', 'shell', 'su root setenforce %s' % enforcing])
218 subprocess.check_call(['adb', 'shell', 'su root setenforce 0'])
Florian Mayer801349e2018-11-29 10:15:25 +0000219
Florian Mayer33ceb8d2019-01-11 14:51:28 +0000220 if not args.no_start:
Florian Mayer75266d52019-02-01 18:09:43 +0000221 heapprofd_prop = subprocess.check_output(
222 ['adb', 'shell', 'getprop persist.heapprofd.enable'])
223 if heapprofd_prop.strip() != '1':
224 subprocess.check_call(
225 ['adb', 'shell', 'setprop persist.heapprofd.enable 1'])
226 atexit.register(subprocess.check_call,
227 ['adb', 'shell', 'setprop persist.heapprofd.enable 0'])
Florian Mayer801349e2018-11-29 10:15:25 +0000228
Florian Mayerbb3b6822019-03-08 17:08:59 +0000229 user = subprocess.check_output(['adb', 'shell', 'whoami']).strip()
Florian Mayer2b8a3b22019-05-02 18:35:38 +0100230
231 if args.simpleperf:
232 subprocess.check_call(
233 ['adb', 'shell',
234 'mkdir -p /data/local/tmp/heapprofd_profile && '
235 'cd /data/local/tmp/heapprofd_profile &&'
236 '(nohup simpleperf record -g -p $(pgrep heapprofd) 2>&1 &) '
237 '> /dev/null'])
238
Florian Mayer801349e2018-11-29 10:15:25 +0000239 perfetto_pid = subprocess.check_output(
Florian Mayerbb3b6822019-03-08 17:08:59 +0000240 ['adb', 'exec-out', PERFETTO_CMD.format(cfg=cfg, user=user)]).strip()
Florian Mayer35647422019-03-07 16:28:10 +0000241 try:
242 int(perfetto_pid.strip())
243 except ValueError:
244 print("Failed to invoke perfetto: {}".format(perfetto_pid),
245 file=sys.stderr)
246 return 1
Florian Mayer801349e2018-11-29 10:15:25 +0000247
248 old_handler = signal.signal(signal.SIGINT, sigint_handler)
249 print("Profiling active. Press Ctrl+C to terminate.")
Florian Mayerbd0a62a2019-04-10 11:09:21 +0100250 print("You may disconnect your device.")
Florian Mayer801349e2018-11-29 10:15:25 +0000251 exists = True
Florian Mayerbd0a62a2019-04-10 11:09:21 +0100252 device_connected = True
253 while not device_connected or (exists and not IS_INTERRUPTED):
Florian Mayer801349e2018-11-29 10:15:25 +0000254 exists = subprocess.call(
Florian Mayerbd0a62a2019-04-10 11:09:21 +0100255 ['adb', 'shell', '[ -d /proc/{} ]'.format(perfetto_pid)],
256 **NOOUT) == 0
257 device_connected = subprocess.call(['adb', 'shell', 'true'], **NOOUT) == 0
Florian Mayer801349e2018-11-29 10:15:25 +0000258 time.sleep(1)
259 signal.signal(signal.SIGINT, old_handler)
260 if IS_INTERRUPTED:
261 # Not check_call because it could have existed in the meantime.
Florian Mayer85969b92019-01-23 17:23:16 +0000262 subprocess.call(['adb', 'shell', 'kill', '-INT', perfetto_pid])
Florian Mayer2b8a3b22019-05-02 18:35:38 +0100263 if args.simpleperf:
264 subprocess.check_call(['adb', 'shell', 'killall', '-INT', 'simpleperf'])
265 print("Waiting for simpleperf to exit.")
266 while subprocess.call(
267 ['adb', 'shell', '[ -f /proc/$(pgrep simpleperf)/exe ]'],
268 **NOOUT) == 0:
269 time.sleep(1)
270 subprocess.check_call(['adb', 'pull', '/data/local/tmp/heapprofd_profile',
271 '/tmp'])
272 print("Pulled simpleperf profile to /tmp/heapprofd_profile")
Florian Mayer801349e2018-11-29 10:15:25 +0000273
Florian Mayerddbe31e2018-11-30 14:49:30 +0000274 # Wait for perfetto cmd to return.
275 while exists:
276 exists = subprocess.call(
277 ['adb', 'shell', '[ -d /proc/{} ]'.format(perfetto_pid)]) == 0
278 time.sleep(1)
279
Florian Mayerbb3b6822019-03-08 17:08:59 +0000280 subprocess.check_call(['adb', 'pull',
281 '/data/misc/perfetto-traces/profile-{}'.format(user),
Florian Mayer801349e2018-11-29 10:15:25 +0000282 '/tmp/profile'], stdout=NULL)
283 trace_to_text_output = subprocess.check_output(
Florian Mayer6fc484e2019-04-10 16:07:54 +0100284 [trace_to_text_binary, 'profile', '/tmp/profile'])
Florian Mayer801349e2018-11-29 10:15:25 +0000285 profile_path = None
286 for word in trace_to_text_output.split():
287 if 'heap_profile-' in word:
288 profile_path = word
289 if profile_path is None:
290 print("Could not find trace_to_text output path.", file=sys.stderr)
291 return 1
292
293 profile_files = os.listdir(profile_path)
294 if not profile_files:
295 print("No profiles generated", file=sys.stderr)
296 return 1
297
298 subprocess.check_call(['gzip'] + [os.path.join(profile_path, x) for x in
299 os.listdir(profile_path)])
Florian Mayer82f43d12019-01-17 14:37:45 +0000300
301 symlink_path = os.path.join(os.path.dirname(profile_path),
302 "heap_profile-latest")
Florian Mayer31305512019-01-21 17:37:02 +0000303 if os.path.exists(symlink_path):
304 os.unlink(symlink_path)
Florian Mayer82f43d12019-01-17 14:37:45 +0000305 os.symlink(profile_path, symlink_path)
306
307 print("Wrote profiles to {} (symlink {})".format(profile_path, symlink_path))
Florian Mayer801349e2018-11-29 10:15:25 +0000308 print("These can be viewed using pprof. Googlers: head to pprof/ and "
309 "upload them.")
310
311
312if __name__ == '__main__':
313 sys.exit(main(sys.argv))