blob: 5aea0b6597c520340d2b612607cd26cc35b66c01 [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 = {
33 'linux': 'c704cf765b9c5445c16a8e7ec5757cad364a8d92',
34 'mac': 'aed4ad02da526a3f1e4f9df47d4989ae9305b30e',
35}
36TRACE_TO_TEXT_PATH = tempfile.gettempdir()
37TRACE_TO_TEXT_BASE_URL = (
38 'https://storage.googleapis.com/perfetto/')
39
40def check_hash(file_name, sha_value):
41 with open(file_name, 'rb') as fd:
42 # TODO(fmayer): Chunking.
43 file_hash = hashlib.sha1(fd.read()).hexdigest()
44 return file_hash == sha_value
45
46
47def load_trace_to_text(platform):
48 sha_value = TRACE_TO_TEXT_SHAS[platform]
49 file_name = 'trace_to_text-' + platform + '-' + sha_value
50 local_file = os.path.join(TRACE_TO_TEXT_PATH, file_name)
51
52 if os.path.exists(local_file):
53 if not check_hash(local_file, sha_value):
54 os.remove(local_file)
55 else:
56 return local_file
57
58 url = TRACE_TO_TEXT_BASE_URL + file_name
59 urllib.urlretrieve(url, local_file)
60 if not check_hash(local_file, sha_value):
61 os.remove(local_file)
62 raise ValueError("Invalid signature.")
63 os.chmod(local_file, 0o755)
64 return local_file
65
66
67NULL = open('/dev/null', 'r')
68
69CFG_IDENT = ' '
70CFG='''buffers {{
71 size_kb: 32768
72}}
73
74data_sources {{
75 config {{
76 name: "android.heapprofd"
77 heapprofd_config {{
78
79 all: {all}
80 sampling_interval_bytes: {interval}
81{target_cfg}
82 continuous_dump_config {{
83 dump_phase_ms: 0
84 dump_interval_ms: 1000
85 }}
86 }}
87 }}
88}}
89
90duration_ms: {duration}
91'''
92
93PERFETTO_CMD=('CFG=\'{}\'; echo ${{CFG}} | '
Florian Mayereed89742018-12-05 10:56:22 +000094 'perfetto --txt -c - -o /data/misc/perfetto-traces/profile -d')
Florian Mayer801349e2018-11-29 10:15:25 +000095IS_INTERRUPTED = False
96def sigint_handler(sig, frame):
97 global IS_INTERRUPTED
98 IS_INTERRUPTED = True
99
100
Florian Mayer801349e2018-11-29 10:15:25 +0000101def main(argv):
102 parser = argparse.ArgumentParser()
103 parser.add_argument("-i", "--interval", help="Sampling interval. "
104 "Default 128000 (128kB)", type=int, default=128000)
105 parser.add_argument("-d", "--duration", help="Duration of profile (ms). "
106 "Default 1 minute", type=int, default=60000)
107 parser.add_argument("-a", "--all", help="Profile the whole system",
108 action='store_true')
109 parser.add_argument("-p", "--pid", help="PIDs to profile", nargs='+',
110 type=int)
111 parser.add_argument("-n", "--name", help="Process names to profile",
112 nargs='+')
113 parser.add_argument("-t", "--trace-to-text-binary",
114 help="Path to local trace to text. For debugging.")
Florian Mayer6ae95262018-12-06 16:10:29 +0000115 parser.add_argument("--disable-selinux", action="store_true",
116 help="Disable SELinux enforcement for duration of "
117 "profile")
Florian Mayer801349e2018-11-29 10:15:25 +0000118
119 args = parser.parse_args()
120
121 fail = False
122 if args.all is None and args.pid is None and args.name is None:
123 print("FATAL: Neither --all nor PID nor NAME given.", file=sys.stderr)
124 fail = True
125 if args.duration is None:
126 print("FATAL: No duration given.", file=sys.stderr)
127 fail = True
128 if args.interval is None:
129 print("FATAL: No interval given.", file=sys.stderr)
130 fail = True
131 if fail:
132 parser.print_help()
133 return 1
134 target_cfg = ""
135 if args.pid:
136 for pid in args.pid:
137 target_cfg += '{}pid: {}\n'.format(CFG_IDENT, pid)
138 if args.name:
139 for name in args.name:
140 target_cfg += '{}process_cmdline: "{}"\n'.format(CFG_IDENT, name)
141
142 trace_to_text_binary = args.trace_to_text_binary
143 if trace_to_text_binary is None:
144 platform = None
145 if sys.platform.startswith('linux'):
146 platform = 'linux'
147 elif sys.platform.startswith('darwin'):
148 platform = 'mac'
149 else:
150 print("Invalid platform: {}".format(sys.platform), file=sys.stderr)
Florian Mayerb6279632018-11-29 13:31:49 +0000151 return 1
Florian Mayer801349e2018-11-29 10:15:25 +0000152
153 trace_to_text_binary = load_trace_to_text(platform)
154
155 cfg = CFG.format(all=str(args.all == True).lower(), interval=args.interval,
156 duration=args.duration, target_cfg=target_cfg)
157
Florian Mayer6ae95262018-12-06 16:10:29 +0000158 if args.disable_selinux:
159 enforcing = subprocess.check_output(['adb', 'shell', 'getenforce'])
160 atexit.register(subprocess.check_call,
161 ['adb', 'shell', 'su root setenforce %s' % enforcing])
162 subprocess.check_call(['adb', 'shell', 'su root setenforce 0'])
Florian Mayer801349e2018-11-29 10:15:25 +0000163
Florian Mayer6ae95262018-12-06 16:10:29 +0000164 atexit.register(subprocess.check_call,
165 ['adb', 'shell', 'su root stop heapprofd'])
Florian Mayer801349e2018-11-29 10:15:25 +0000166 subprocess.check_call(['adb', 'shell', 'su root start heapprofd'])
167
168 perfetto_pid = subprocess.check_output(
169 ['adb', 'exec-out', PERFETTO_CMD.format(cfg)]).strip()
170
171 old_handler = signal.signal(signal.SIGINT, sigint_handler)
172 print("Profiling active. Press Ctrl+C to terminate.")
173 exists = True
174 while exists and not IS_INTERRUPTED:
175 exists = subprocess.call(
176 ['adb', 'shell', '[ -d /proc/{} ]'.format(perfetto_pid)]) == 0
177 time.sleep(1)
178 signal.signal(signal.SIGINT, old_handler)
179 if IS_INTERRUPTED:
180 # Not check_call because it could have existed in the meantime.
Florian Mayer6ae95262018-12-06 16:10:29 +0000181 subprocess.call(['adb', 'shell', 'su', 'root', 'kill', '-INT',
182 perfetto_pid])
Florian Mayer801349e2018-11-29 10:15:25 +0000183
Florian Mayerddbe31e2018-11-30 14:49:30 +0000184 # Wait for perfetto cmd to return.
185 while exists:
186 exists = subprocess.call(
187 ['adb', 'shell', '[ -d /proc/{} ]'.format(perfetto_pid)]) == 0
188 time.sleep(1)
189
Florian Mayer801349e2018-11-29 10:15:25 +0000190 subprocess.check_call(['adb', 'pull', '/data/misc/perfetto-traces/profile',
191 '/tmp/profile'], stdout=NULL)
192 trace_to_text_output = subprocess.check_output(
193 [trace_to_text_binary, 'profile', '/tmp/profile'],
194 stderr=NULL)
195 profile_path = None
196 for word in trace_to_text_output.split():
197 if 'heap_profile-' in word:
198 profile_path = word
199 if profile_path is None:
200 print("Could not find trace_to_text output path.", file=sys.stderr)
201 return 1
202
203 profile_files = os.listdir(profile_path)
204 if not profile_files:
205 print("No profiles generated", file=sys.stderr)
206 return 1
207
208 subprocess.check_call(['gzip'] + [os.path.join(profile_path, x) for x in
209 os.listdir(profile_path)])
210 print("Wrote profiles to {}".format(profile_path))
211 print("These can be viewed using pprof. Googlers: head to pprof/ and "
212 "upload them.")
213
214
215if __name__ == '__main__':
216 sys.exit(main(sys.argv))