blob: a96750fdd896165ec658a51f7f253b9ecbfad0d1 [file] [log] [blame]
Sasha Goldshtein989057d2016-10-25 04:08:10 -07001#!/usr/bin/python
2# @lint-avoid-python-3-compatibility-imports
3#
4# uthreads Trace thread creation/destruction events in high-level languages.
5# For Linux, uses BCC, eBPF.
6#
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -07007# USAGE: uthreads [-l {java}] [-v] pid
Sasha Goldshtein989057d2016-10-25 04:08:10 -07008#
9# Copyright 2016 Sasha Goldshtein
10# Licensed under the Apache License, Version 2.0 (the "License")
11#
12# 25-Oct-2016 Sasha Goldshtein Created this.
13
14from __future__ import print_function
15import argparse
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020016from bcc import BPF, USDT, utils
Sasha Goldshtein989057d2016-10-25 04:08:10 -070017import ctypes as ct
18import time
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020019import os
20
21languages = ["java"]
Sasha Goldshtein989057d2016-10-25 04:08:10 -070022
23examples = """examples:
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -070024 ./uthreads -l java 185 # trace Java threads in process 185
25 ./uthreads 12245 # trace only pthreads in process 12245
Sasha Goldshtein989057d2016-10-25 04:08:10 -070026"""
27parser = argparse.ArgumentParser(
28 description="Trace thread creation/destruction events in " +
29 "high-level languages.",
30 formatter_class=argparse.RawDescriptionHelpFormatter,
31 epilog=examples)
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020032parser.add_argument("-l", "--language", choices=languages + ["none"],
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -070033 help="language to trace (none for pthreads only)")
Sasha Goldshtein989057d2016-10-25 04:08:10 -070034parser.add_argument("pid", type=int, help="process id to attach to")
35parser.add_argument("-v", "--verbose", action="store_true",
36 help="verbose mode: print the BPF program (for debugging purposes)")
37args = parser.parse_args()
38
39usdt = USDT(pid=args.pid)
40
41program = """
42struct thread_event_t {
43 u64 runtime_id;
44 u64 native_id;
45 char type[8];
46 char name[80];
47};
48
49BPF_PERF_OUTPUT(threads);
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -070050
51int trace_pthread(struct pt_regs *ctx) {
52 struct thread_event_t te = {};
53 u64 start_routine = 0;
54 char type[] = "pthread";
55 te.native_id = bpf_get_current_pid_tgid() & 0xFFFFFFFF;
56 bpf_usdt_readarg(2, ctx, &start_routine);
57 te.runtime_id = start_routine; // This is really a function pointer
58 __builtin_memcpy(&te.type, type, sizeof(te.type));
59 threads.perf_submit(ctx, &te, sizeof(te));
60 return 0;
61}
Sasha Goldshtein989057d2016-10-25 04:08:10 -070062"""
Sasha Goldshteindc3a57c2017-02-08 16:02:11 -050063usdt.enable_probe_or_bail("pthread_start", "trace_pthread")
Sasha Goldshtein989057d2016-10-25 04:08:10 -070064
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020065language = args.language
66if not language:
67 language = utils.detect_language(languages, args.pid)
68
69if language == "java":
Sasha Goldshtein989057d2016-10-25 04:08:10 -070070 template = """
71int %s(struct pt_regs *ctx) {
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -070072 char type[] = "%s";
Sasha Goldshtein989057d2016-10-25 04:08:10 -070073 struct thread_event_t te = {};
74 u64 nameptr = 0, id = 0, native_id = 0;
75 bpf_usdt_readarg(1, ctx, &nameptr);
76 bpf_usdt_readarg(3, ctx, &id);
77 bpf_usdt_readarg(4, ctx, &native_id);
78 bpf_probe_read(&te.name, sizeof(te.name), (void *)nameptr);
79 te.runtime_id = id;
80 te.native_id = native_id;
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -070081 __builtin_memcpy(&te.type, type, sizeof(te.type));
Sasha Goldshtein989057d2016-10-25 04:08:10 -070082 threads.perf_submit(ctx, &te, sizeof(te));
83 return 0;
84}
85 """
86 program += template % ("trace_start", "start")
87 program += template % ("trace_stop", "stop")
Sasha Goldshteindc3a57c2017-02-08 16:02:11 -050088 usdt.enable_probe_or_bail("thread__start", "trace_start")
89 usdt.enable_probe_or_bail("thread__stop", "trace_stop")
Sasha Goldshtein989057d2016-10-25 04:08:10 -070090
91if args.verbose:
92 print(usdt.get_text())
93 print(program)
94
95bpf = BPF(text=program, usdt_contexts=[usdt])
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -070096print("Tracing thread events in process %d (language: %s)... Ctrl-C to quit." %
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020097 (args.pid, language or "none"))
Sasha Goldshtein989057d2016-10-25 04:08:10 -070098print("%-8s %-16s %-8s %-30s" % ("TIME", "ID", "TYPE", "DESCRIPTION"))
99
100class ThreadEvent(ct.Structure):
101 _fields_ = [
102 ("runtime_id", ct.c_ulonglong),
103 ("native_id", ct.c_ulonglong),
104 ("type", ct.c_char * 8),
105 ("name", ct.c_char * 80),
106 ]
107
108start_ts = time.time()
109
110def print_event(cpu, data, size):
111 event = ct.cast(data, ct.POINTER(ThreadEvent)).contents
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -0700112 name = event.name
113 if event.type == "pthread":
Sasha Goldshteinb1bff012017-02-08 23:25:28 -0500114 name = bpf.sym(event.runtime_id, args.pid, show_module=True)
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -0700115 tid = event.native_id
116 else:
117 tid = "R=%s/N=%s" % (event.runtime_id, event.native_id)
Sasha Goldshtein989057d2016-10-25 04:08:10 -0700118 print("%-8.3f %-16s %-8s %-30s" % (
Sasha Goldshteinbf0cf122016-10-25 04:28:06 -0700119 time.time() - start_ts, tid, event.type, name))
Sasha Goldshtein989057d2016-10-25 04:08:10 -0700120
121bpf["threads"].open_perf_buffer(print_event)
122while 1:
Teng Qindbf00292018-02-28 21:47:50 -0800123 bpf.perf_buffer_poll()