blob: 85f576812f14a4aee4657d3ae80ebcae97316fcb [file] [log] [blame]
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -07001#!/usr/bin/python
2# @lint-avoid-python-3-compatibility-imports
3#
4# uobjnew Summarize object allocations in high-level languages.
5# For Linux, uses BCC, eBPF.
6#
Marko Myllynen9f3662e2018-10-10 21:48:53 +03007# USAGE: uobjnew [-h] [-T TOP] [-v] {c,java,ruby,tcl} pid [interval]
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -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 Goldshtein2e7e2402016-10-25 05:28:29 -070017from time import sleep
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020018import os
19
20# C needs to be the last language.
Marko Myllynen9f3662e2018-10-10 21:48:53 +030021languages = ["c", "java", "ruby", "tcl"]
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -070022
23examples = """examples:
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020024 ./uobjnew -l java 145 # summarize Java allocations in process 145
25 ./uobjnew -l c 2020 1 # grab malloc() sizes and print every second
26 ./uobjnew -l ruby 6712 -C 10 # top 10 Ruby types by number of allocations
27 ./uobjnew -l ruby 6712 -S 10 # top 10 Ruby types by total size
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -070028"""
29parser = argparse.ArgumentParser(
30 description="Summarize object allocations in high-level languages.",
31 formatter_class=argparse.RawDescriptionHelpFormatter,
32 epilog=examples)
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020033parser.add_argument("-l", "--language", choices=languages,
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -070034 help="language to trace")
35parser.add_argument("pid", type=int, help="process id to attach to")
36parser.add_argument("interval", type=int, nargs='?',
37 help="print every specified number of seconds")
38parser.add_argument("-C", "--top-count", type=int,
39 help="number of most frequently allocated types to print")
40parser.add_argument("-S", "--top-size", type=int,
41 help="number of largest types by allocated bytes to print")
42parser.add_argument("-v", "--verbose", action="store_true",
43 help="verbose mode: print the BPF program (for debugging purposes)")
Marko Myllynen27e7aea2018-09-26 20:09:07 +030044parser.add_argument("--ebpf", action="store_true",
45 help=argparse.SUPPRESS)
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -070046args = parser.parse_args()
47
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020048language = args.language
49if not language:
50 language = utils.detect_language(languages, args.pid)
51
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -070052program = """
53#include <linux/ptrace.h>
54
55struct key_t {
56#if MALLOC_TRACING
57 u64 size;
58#else
59 char name[50];
60#endif
61};
62
63struct val_t {
64 u64 total_size;
65 u64 num_allocs;
66};
67
68BPF_HASH(allocs, struct key_t, struct val_t);
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +020069""".replace("MALLOC_TRACING", "1" if language == "c" else "0")
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -070070
71usdt = USDT(pid=args.pid)
72
Sasha Goldshteinbee71b22016-10-26 06:34:06 -070073#
Marko Myllynen27e7aea2018-09-26 20:09:07 +030074# C
75#
76if language == "c":
77 program += """
78int alloc_entry(struct pt_regs *ctx, size_t size) {
79 struct key_t key = {};
80 struct val_t *valp, zero = {};
81 key.size = size;
82 valp = allocs.lookup_or_init(&key, &zero);
83 valp->total_size += size;
84 valp->num_allocs += 1;
85 return 0;
86}
87 """
88#
Sasha Goldshteinbee71b22016-10-26 06:34:06 -070089# Java
90#
Marko Myllynen27e7aea2018-09-26 20:09:07 +030091elif language == "java":
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -070092 program += """
93int alloc_entry(struct pt_regs *ctx) {
94 struct key_t key = {};
95 struct val_t *valp, zero = {};
96 u64 classptr = 0, size = 0;
97 bpf_usdt_readarg(2, ctx, &classptr);
98 bpf_usdt_readarg(4, ctx, &size);
99 bpf_probe_read(&key.name, sizeof(key.name), (void *)classptr);
100 valp = allocs.lookup_or_init(&key, &zero);
101 valp->total_size += size;
102 valp->num_allocs += 1;
103 return 0;
104}
105 """
Sasha Goldshteindc3a57c2017-02-08 16:02:11 -0500106 usdt.enable_probe_or_bail("object__alloc", "alloc_entry")
Sasha Goldshteinbee71b22016-10-26 06:34:06 -0700107#
108# Ruby
109#
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200110elif language == "ruby":
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700111 create_template = """
112int THETHING_alloc_entry(struct pt_regs *ctx) {
113 struct key_t key = { .name = "THETHING" };
114 struct val_t *valp, zero = {};
115 u64 size = 0;
116 bpf_usdt_readarg(1, ctx, &size);
117 valp = allocs.lookup_or_init(&key, &zero);
118 valp->total_size += size;
119 valp->num_allocs += 1;
120 return 0;
121}
122 """
123 program += """
124int object_alloc_entry(struct pt_regs *ctx) {
125 struct key_t key = {};
126 struct val_t *valp, zero = {};
127 u64 classptr = 0;
128 bpf_usdt_readarg(1, ctx, &classptr);
129 bpf_probe_read(&key.name, sizeof(key.name), (void *)classptr);
130 valp = allocs.lookup_or_init(&key, &zero);
131 valp->num_allocs += 1; // We don't know the size, unfortunately
132 return 0;
133}
134 """
Sasha Goldshteindc3a57c2017-02-08 16:02:11 -0500135 usdt.enable_probe_or_bail("object__create", "object_alloc_entry")
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700136 for thing in ["string", "hash", "array"]:
137 program += create_template.replace("THETHING", thing)
Paul Chaignon956ca1c2017-03-04 20:07:56 +0100138 usdt.enable_probe_or_bail("%s__create" % thing,
139 "%s_alloc_entry" % thing)
Marko Myllynen9f3662e2018-10-10 21:48:53 +0300140#
141# Tcl
142#
143elif language == "tcl":
144 program += """
145int alloc_entry(struct pt_regs *ctx) {
146 struct key_t key = { .name = "<ALL>" };
147 struct val_t *valp, zero = {};
148 valp = allocs.lookup_or_init(&key, &zero);
149 valp->num_allocs += 1;
150 return 0;
151}
152 """
153 usdt.enable_probe_or_bail("obj__create", "alloc_entry")
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200154else:
155 print("No language detected; use -l to trace a language.")
156 exit(1)
157
158
Marko Myllynen27e7aea2018-09-26 20:09:07 +0300159if args.ebpf or args.verbose:
160 if args.verbose:
161 print(usdt.get_text())
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700162 print(program)
Marko Myllynen27e7aea2018-09-26 20:09:07 +0300163 if args.ebpf:
164 exit()
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700165
166bpf = BPF(text=program, usdt_contexts=[usdt])
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200167if language == "c":
Sasha Goldshtein39ace6f2016-12-19 09:52:34 +0000168 bpf.attach_uprobe(name="c", sym="malloc", fn_name="alloc_entry",
169 pid=args.pid)
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700170
171exit_signaled = False
172print("Tracing allocations in process %d (language: %s)... Ctrl-C to quit." %
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200173 (args.pid, language or "none"))
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700174while True:
175 try:
176 sleep(args.interval or 99999999)
177 except KeyboardInterrupt:
178 exit_signaled = True
179 print()
180 data = bpf["allocs"]
181 if args.top_count:
Rafael Fonsecac465a242017-02-13 16:04:33 +0100182 data = sorted(data.items(), key=lambda kv: kv[1].num_allocs)
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700183 data = data[-args.top_count:]
184 elif args.top_size:
Rafael Fonsecac465a242017-02-13 16:04:33 +0100185 data = sorted(data.items(), key=lambda kv: kv[1].total_size)
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700186 data = data[-args.top_size:]
187 else:
Rafael Fonsecac465a242017-02-13 16:04:33 +0100188 data = sorted(data.items(), key=lambda kv: kv[1].total_size)
Marko Myllynen9f3662e2018-10-10 21:48:53 +0300189 print("%-30s %8s %12s" % ("NAME/TYPE", "# ALLOCS", "# BYTES"))
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700190 for key, value in data:
Paul Chaignon4bb6d7f2017-03-30 19:05:40 +0200191 if language == "c":
Sasha Goldshtein2e7e2402016-10-25 05:28:29 -0700192 obj_type = "block size %d" % key.size
193 else:
194 obj_type = key.name
195 print("%-30s %8d %12d" %
196 (obj_type, value.num_allocs, value.total_size))
197 if args.interval and not exit_signaled:
198 bpf["allocs"].clear()
199 else:
200 exit()