blob: 18ca22c1de5e621357efbb030f0a2b0c67e4a783 [file] [log] [blame]
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -07001#!/usr/bin/python
2# @lint-avoid-python-3-compatibility-imports
3#
Sasha Goldshteina245c792016-10-25 02:18:35 -07004# ucalls Summarize method calls in high-level languages and/or system calls.
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -07005# For Linux, uses BCC, eBPF.
6#
Marko Myllynen9f3662e2018-10-10 21:48:53 +03007# USAGE: ucalls [-l {java,perl,php,python,ruby,tcl}] [-h] [-T TOP] [-L] [-S] [-v] [-m]
Sasha Goldshteina245c792016-10-25 02:18:35 -07008# pid [interval]
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -07009#
10# Copyright 2016 Sasha Goldshtein
11# Licensed under the Apache License, Version 2.0 (the "License")
12#
13# 19-Oct-2016 Sasha Goldshtein Created this.
14
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070015from __future__ import print_function
16import argparse
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020017from bcc import BPF, USDT, utils
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070018from time import sleep
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020019import os
20
Marko Myllynen9f3662e2018-10-10 21:48:53 +030021languages = ["java", "perl", "php", "python", "ruby", "tcl"]
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070022
23examples = """examples:
Sasha Goldshteina245c792016-10-25 02:18:35 -070024 ./ucalls -l java 185 # trace Java calls and print statistics on ^C
25 ./ucalls -l python 2020 1 # trace Python calls and print every second
26 ./ucalls -l java 185 -S # trace Java calls and syscalls
27 ./ucalls 6712 -S # trace only syscall counts
28 ./ucalls -l ruby 1344 -T 10 # trace top 10 Ruby method calls
29 ./ucalls -l ruby 1344 -L # trace Ruby calls including latency
Sasha Goldshteincfb5ee72017-02-08 14:32:51 -050030 ./ucalls -l php 443 -LS # trace PHP calls and syscalls with latency
Sasha Goldshteina245c792016-10-25 02:18:35 -070031 ./ucalls -l python 2020 -mL # trace Python calls including latency in ms
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070032"""
33parser = argparse.ArgumentParser(
34 description="Summarize method calls in high-level languages.",
35 formatter_class=argparse.RawDescriptionHelpFormatter,
36 epilog=examples)
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070037parser.add_argument("pid", type=int, help="process id to attach to")
38parser.add_argument("interval", type=int, nargs='?',
39 help="print every specified number of seconds")
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020040parser.add_argument("-l", "--language", choices=languages + ["none"],
Sasha Goldshteina245c792016-10-25 02:18:35 -070041 help="language to trace (if none, trace syscalls only)")
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070042parser.add_argument("-T", "--top", type=int,
43 help="number of most frequent/slow calls to print")
44parser.add_argument("-L", "--latency", action="store_true",
45 help="record method latency from enter to exit (except recursive calls)")
Sasha Goldshteina245c792016-10-25 02:18:35 -070046parser.add_argument("-S", "--syscalls", action="store_true",
47 help="record syscall latency (adds overhead)")
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070048parser.add_argument("-v", "--verbose", action="store_true",
49 help="verbose mode: print the BPF program (for debugging purposes)")
50parser.add_argument("-m", "--milliseconds", action="store_true",
51 help="report times in milliseconds (default is microseconds)")
Marko Myllynen27e7aea2018-09-26 20:09:07 +030052parser.add_argument("--ebpf", action="store_true",
53 help=argparse.SUPPRESS)
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070054args = parser.parse_args()
55
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020056language = args.language
57if not language:
58 language = utils.detect_language(languages, args.pid)
59
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070060# We assume that the entry and return probes have the same arguments. This is
Sasha Goldshteincfb5ee72017-02-08 14:32:51 -050061# the case for Java, Python, Ruby, and PHP. If there's a language where it's
62# not the case, we will need to build a custom correlator from entry to exit.
Geneviève Bastien830c1f72017-07-14 16:04:12 -040063extra_message = ""
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020064if language == "java":
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070065 # TODO for JVM entries, we actually have the real length of the class
Sasha Goldshteina245c792016-10-25 02:18:35 -070066 # and method strings in arg3 and arg5 respectively, so we can insert
67 # the null terminator in its proper position.
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070068 entry_probe = "method__entry"
69 return_probe = "method__return"
70 read_class = "bpf_usdt_readarg(2, ctx, &clazz);"
71 read_method = "bpf_usdt_readarg(4, ctx, &method);"
Paul Chaignonc8b4f672017-10-07 11:51:45 +020072 extra_message = ("If you do not see any results, make sure you ran java"
73 " with option -XX:+ExtendedDTraceProbes")
Marko Myllynen9162be42018-09-04 19:45:16 +030074elif language == "perl":
75 entry_probe = "sub__entry"
76 return_probe = "sub__return"
77 read_class = "bpf_usdt_readarg(2, ctx, &clazz);" # filename really
78 read_method = "bpf_usdt_readarg(1, ctx, &method);"
79elif language == "php":
80 entry_probe = "function__entry"
81 return_probe = "function__return"
82 read_class = "bpf_usdt_readarg(4, ctx, &clazz);"
83 read_method = "bpf_usdt_readarg(1, ctx, &method);"
84 extra_message = ("If you do not see any results, make sure the environment"
85 " variable USE_ZEND_DTRACE is set to 1")
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020086elif language == "python":
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070087 entry_probe = "function__entry"
88 return_probe = "function__return"
89 read_class = "bpf_usdt_readarg(1, ctx, &clazz);" # filename really
90 read_method = "bpf_usdt_readarg(2, ctx, &method);"
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020091elif language == "ruby":
Sasha Goldshtein6e5c6212016-10-25 04:30:54 -070092 # TODO Also probe cmethod__entry and cmethod__return with same arguments
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -070093 entry_probe = "method__entry"
94 return_probe = "method__return"
95 read_class = "bpf_usdt_readarg(1, ctx, &clazz);"
96 read_method = "bpf_usdt_readarg(2, ctx, &method);"
Marko Myllynen9f3662e2018-10-10 21:48:53 +030097elif language == "tcl":
98 # TODO Also consider probe cmd__entry and cmd__return with same arguments
99 entry_probe = "proc__entry"
100 return_probe = "proc__return"
101 read_class = "" # no class/file info available
102 read_method = "bpf_usdt_readarg(1, ctx, &method);"
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200103elif not language or language == "none":
Sasha Goldshteina245c792016-10-25 02:18:35 -0700104 if not args.syscalls:
105 print("Nothing to do; use -S to trace syscalls.")
106 exit(1)
107 entry_probe, return_probe, read_class, read_method = ("", "", "", "")
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200108 if language:
109 language = None
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700110
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700111program = """
Sasha Goldshteina245c792016-10-25 02:18:35 -0700112#include <linux/ptrace.h>
113
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700114#define MAX_STRING_LENGTH 80
Sasha Goldshteina245c792016-10-25 02:18:35 -0700115DEFINE_NOLANG
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700116DEFINE_LATENCY
Sasha Goldshteina245c792016-10-25 02:18:35 -0700117DEFINE_SYSCALLS
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700118
119struct method_t {
120 char clazz[MAX_STRING_LENGTH];
121 char method[MAX_STRING_LENGTH];
122};
123struct entry_t {
124 u64 pid;
125 struct method_t method;
126};
127struct info_t {
128 u64 num_calls;
129 u64 total_ns;
130};
Sasha Goldshteina245c792016-10-25 02:18:35 -0700131struct syscall_entry_t {
132 u64 timestamp;
133 u64 ip;
134};
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700135
136#ifndef LATENCY
Sasha Goldshteina245c792016-10-25 02:18:35 -0700137 BPF_HASH(counts, struct method_t, u64); // number of calls
138 #ifdef SYSCALLS
139 BPF_HASH(syscounts, u64, u64); // number of calls per IP
140 #endif // SYSCALLS
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700141#else
Sasha Goldshteina245c792016-10-25 02:18:35 -0700142 BPF_HASH(times, struct method_t, struct info_t);
143 BPF_HASH(entry, struct entry_t, u64); // timestamp at entry
144 #ifdef SYSCALLS
145 BPF_HASH(systimes, u64, struct info_t); // latency per IP
146 BPF_HASH(sysentry, u64, struct syscall_entry_t); // ts + IP at entry
147 #endif // SYSCALLS
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700148#endif
149
Sasha Goldshteina245c792016-10-25 02:18:35 -0700150#ifndef NOLANG
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700151int trace_entry(struct pt_regs *ctx) {
152 u64 clazz = 0, method = 0, val = 0;
153 u64 *valp;
154 struct entry_t data = {0};
155#ifdef LATENCY
156 u64 timestamp = bpf_ktime_get_ns();
157 data.pid = bpf_get_current_pid_tgid();
158#endif
159 READ_CLASS
160 READ_METHOD
161 bpf_probe_read(&data.method.clazz, sizeof(data.method.clazz),
162 (void *)clazz);
163 bpf_probe_read(&data.method.method, sizeof(data.method.method),
164 (void *)method);
165#ifndef LATENCY
166 valp = counts.lookup_or_init(&data.method, &val);
167 ++(*valp);
168#endif
169#ifdef LATENCY
170 entry.update(&data, &timestamp);
171#endif
172 return 0;
173}
174
175#ifdef LATENCY
176int trace_return(struct pt_regs *ctx) {
177 u64 *entry_timestamp, clazz = 0, method = 0;
178 struct info_t *info, zero = {};
179 struct entry_t data = {};
180 data.pid = bpf_get_current_pid_tgid();
181 READ_CLASS
182 READ_METHOD
183 bpf_probe_read(&data.method.clazz, sizeof(data.method.clazz),
184 (void *)clazz);
185 bpf_probe_read(&data.method.method, sizeof(data.method.method),
186 (void *)method);
187 entry_timestamp = entry.lookup(&data);
188 if (!entry_timestamp) {
189 return 0; // missed the entry event
190 }
191 info = times.lookup_or_init(&data.method, &zero);
192 info->num_calls += 1;
193 info->total_ns += bpf_ktime_get_ns() - *entry_timestamp;
194 entry.delete(&data);
195 return 0;
196}
Sasha Goldshteina245c792016-10-25 02:18:35 -0700197#endif // LATENCY
198#endif // NOLANG
199
200#ifdef SYSCALLS
201int syscall_entry(struct pt_regs *ctx) {
202 u64 pid = bpf_get_current_pid_tgid();
Yonghong Songeb6ddc02017-10-26 22:33:24 -0700203 u64 *valp, ip = PT_REGS_IP(ctx), val = 0;
Sasha Goldshteina245c792016-10-25 02:18:35 -0700204 PID_FILTER
205#ifdef LATENCY
206 struct syscall_entry_t data = {};
207 data.timestamp = bpf_ktime_get_ns();
208 data.ip = ip;
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700209#endif
Sasha Goldshteina245c792016-10-25 02:18:35 -0700210#ifndef LATENCY
211 valp = syscounts.lookup_or_init(&ip, &val);
212 ++(*valp);
213#endif
214#ifdef LATENCY
215 sysentry.update(&pid, &data);
216#endif
217 return 0;
218}
219
220#ifdef LATENCY
221int syscall_return(struct pt_regs *ctx) {
222 struct syscall_entry_t *e;
223 struct info_t *info, zero = {};
224 u64 pid = bpf_get_current_pid_tgid(), ip;
225 PID_FILTER
226 e = sysentry.lookup(&pid);
227 if (!e) {
228 return 0; // missed the entry event
229 }
230 ip = e->ip;
231 info = systimes.lookup_or_init(&ip, &zero);
232 info->num_calls += 1;
233 info->total_ns += bpf_ktime_get_ns() - e->timestamp;
234 sysentry.delete(&pid);
235 return 0;
236}
237#endif // LATENCY
238#endif // SYSCALLS
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700239""".replace("READ_CLASS", read_class) \
240 .replace("READ_METHOD", read_method) \
Sasha Goldshteina245c792016-10-25 02:18:35 -0700241 .replace("PID_FILTER", "if ((pid >> 32) != %d) { return 0; }" % args.pid) \
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200242 .replace("DEFINE_NOLANG", "#define NOLANG" if not language else "") \
Sasha Goldshteina245c792016-10-25 02:18:35 -0700243 .replace("DEFINE_LATENCY", "#define LATENCY" if args.latency else "") \
244 .replace("DEFINE_SYSCALLS", "#define SYSCALLS" if args.syscalls else "")
245
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200246if language:
Sasha Goldshteina245c792016-10-25 02:18:35 -0700247 usdt = USDT(pid=args.pid)
Sasha Goldshteindc3a57c2017-02-08 16:02:11 -0500248 usdt.enable_probe_or_bail(entry_probe, "trace_entry")
Sasha Goldshteina245c792016-10-25 02:18:35 -0700249 if args.latency:
Sasha Goldshteindc3a57c2017-02-08 16:02:11 -0500250 usdt.enable_probe_or_bail(return_probe, "trace_return")
Sasha Goldshteina245c792016-10-25 02:18:35 -0700251else:
252 usdt = None
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700253
Marko Myllynen27e7aea2018-09-26 20:09:07 +0300254if args.ebpf or args.verbose:
255 if args.verbose and usdt:
Sasha Goldshteina245c792016-10-25 02:18:35 -0700256 print(usdt.get_text())
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700257 print(program)
Marko Myllynen27e7aea2018-09-26 20:09:07 +0300258 if args.ebpf:
259 exit()
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700260
Sasha Goldshteina245c792016-10-25 02:18:35 -0700261bpf = BPF(text=program, usdt_contexts=[usdt] if usdt else [])
262if args.syscalls:
263 syscall_regex = "^[Ss]y[Ss]_.*"
264 bpf.attach_kprobe(event_re=syscall_regex, fn_name="syscall_entry")
265 if args.latency:
266 bpf.attach_kretprobe(event_re=syscall_regex, fn_name="syscall_return")
267 print("Attached %d kernel probes for syscall tracing." %
268 bpf.num_open_kprobes())
269
270def get_data():
271 # Will be empty when no language was specified for tracing
272 if args.latency:
jeromemarchand4e4c9e02018-07-19 22:20:54 +0200273 data = list(map(lambda kv: (kv[0].clazz.decode('utf-8', 'replace') \
274 + "." + \
275 kv[0].method.decode('utf-8', 'replace'),
Rafael Fonseca0d669062017-02-13 15:52:04 +0100276 (kv[1].num_calls, kv[1].total_ns)),
Rafael Fonseca42900ae2017-02-13 15:46:54 +0100277 bpf["times"].items()))
Sasha Goldshteina245c792016-10-25 02:18:35 -0700278 else:
jeromemarchand4e4c9e02018-07-19 22:20:54 +0200279 data = list(map(lambda kv: (kv[0].clazz.decode('utf-8', 'replace') \
280 + "." + \
281 kv[0].method.decode('utf-8', 'replace'),
Rafael Fonseca0d669062017-02-13 15:52:04 +0100282 (kv[1].value, 0)),
Rafael Fonseca42900ae2017-02-13 15:46:54 +0100283 bpf["counts"].items()))
Sasha Goldshteina245c792016-10-25 02:18:35 -0700284
285 if args.syscalls:
286 if args.latency:
Rafael Fonseca0d669062017-02-13 15:52:04 +0100287 syscalls = map(lambda kv: (bpf.ksym(kv[0].value),
288 (kv[1].num_calls, kv[1].total_ns)),
Sasha Goldshteina245c792016-10-25 02:18:35 -0700289 bpf["systimes"].items())
290 data.extend(syscalls)
291 else:
Paul Chaignon956ca1c2017-03-04 20:07:56 +0100292 syscalls = map(lambda kv: (bpf.ksym(kv[0].value),
293 (kv[1].value, 0)),
Sasha Goldshteina245c792016-10-25 02:18:35 -0700294 bpf["syscounts"].items())
295 data.extend(syscalls)
296
Rafael Fonseca0d669062017-02-13 15:52:04 +0100297 return sorted(data, key=lambda kv: kv[1][1 if args.latency else 0])
Sasha Goldshteina245c792016-10-25 02:18:35 -0700298
299def clear_data():
300 if args.latency:
301 bpf["times"].clear()
302 else:
303 bpf["counts"].clear()
304
305 if args.syscalls:
306 if args.latency:
307 bpf["systimes"].clear()
308 else:
309 bpf["syscounts"].clear()
310
311exit_signaled = False
312print("Tracing calls in process %d (language: %s)... Ctrl-C to quit." %
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200313 (args.pid, language or "none"))
Geneviève Bastien830c1f72017-07-14 16:04:12 -0400314if extra_message:
315 print(extra_message)
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700316while True:
317 try:
318 sleep(args.interval or 99999999)
319 except KeyboardInterrupt:
Sasha Goldshteina245c792016-10-25 02:18:35 -0700320 exit_signaled = True
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700321 print()
Sasha Goldshteina245c792016-10-25 02:18:35 -0700322 data = get_data() # [(function, (num calls, latency in ns))]
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700323 if args.latency:
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700324 time_col = "TIME (ms)" if args.milliseconds else "TIME (us)"
325 print("%-50s %8s %8s" % ("METHOD", "# CALLS", time_col))
326 else:
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700327 print("%-50s %8s" % ("METHOD", "# CALLS"))
328 if args.top:
329 data = data[-args.top:]
330 for key, value in data:
331 if args.latency:
Paul Chaignon956ca1c2017-03-04 20:07:56 +0100332 time = value[1] / 1000000.0 if args.milliseconds else \
333 value[1] / 1000.0
Sasha Goldshteina245c792016-10-25 02:18:35 -0700334 print("%-50s %8d %6.2f" % (key, value[0], time))
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700335 else:
Sasha Goldshteina245c792016-10-25 02:18:35 -0700336 print("%-50s %8d" % (key, value[0]))
337 if args.interval and not exit_signaled:
338 clear_data()
339 else:
340 if args.syscalls:
341 print("Detaching kernel probes, please wait...")
Sasha Goldshteinc13d14f2016-10-17 04:13:48 -0700342 exit()