forked from iovisor/bcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
funclatency.c
341 lines (299 loc) · 7.82 KB
/
funclatency.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
/* Copyright (c) 2021 Google LLC.
*
* Based on funclatency from BCC by Brendan Gregg and others
* 2021-02-26 Barret Rhoden Created this.
*
* TODO:
* - support uprobes on libraries without -p PID. (parse ld.so.cache)
* - support regexp pattern matching and per-function histograms
*/
#include <argp.h>
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <bpf/libbpf.h>
#include <bpf/bpf.h>
#include "funclatency.h"
#include "funclatency.skel.h"
#include "trace_helpers.h"
#include "map_helpers.h"
#include "uprobe_helpers.h"
#define warn(...) fprintf(stderr, __VA_ARGS__)
static struct prog_env {
int units;
pid_t pid;
unsigned int duration;
unsigned int interval;
unsigned int iterations;
bool timestamp;
char *funcname;
} env = {
.interval = 99999999,
.iterations = 99999999,
};
const char *argp_program_version = "funclatency 0.1";
const char *argp_program_bug_address =
"https://github.com/iovisor/bcc/tree/master/libbpf-tools";
static const char args_doc[] = "FUNCTION";
static const char program_doc[] =
"Time functions and print latency as a histogram\n"
"\n"
"Usage: funclatency [-h] [-m|-u] [-p PID] [-d DURATION] [ -i INTERVAL ]\n"
" [-T] FUNCTION\n"
" Choices for FUNCTION: FUNCTION (kprobe)\n"
" LIBRARY:FUNCTION (uprobe a library in -p PID)\n"
" :FUNCTION (uprobe the binary of -p PID)\n"
" PROGRAM:FUNCTION (uprobe the binary PROGRAM)\n"
"\v"
"Examples:\n"
" ./funclatency do_sys_open # time the do_sys_open() kernel function\n"
" ./funclatency -m do_nanosleep # time do_nanosleep(), in milliseconds\n"
" ./funclatency -u vfs_read # time vfs_read(), in microseconds\n"
" ./funclatency -p 181 vfs_read # time process 181 only\n"
" ./funclatency -p 181 c:read # time the read() C library function\n"
" ./funclatency -p 181 :foo # time foo() from pid 181's userspace\n"
" ./funclatency -i 2 -d 10 vfs_read # output every 2 seconds, for 10s\n"
" ./funclatency -mTi 5 vfs_read # output every 5 seconds, with timestamps\n"
;
static const struct argp_option opts[] = {
{ "milliseconds", 'm', NULL, 0, "Output in milliseconds"},
{ "microseconds", 'u', NULL, 0, "Output in microseconds"},
{0, 0, 0, 0, ""},
{ "pid", 'p', "PID", 0, "Process ID to trace"},
{0, 0, 0, 0, ""},
{ "interval", 'i', "INTERVAL", 0, "Summary interval in seconds"},
{ "duration", 'd', "DURATION", 0, "Duration to trace"},
{ "timestamp", 'T', NULL, 0, "Print timestamp"},
{ NULL, 'h', NULL, OPTION_HIDDEN, "Show the full help"},
{},
};
static error_t parse_arg(int key, char *arg, struct argp_state *state)
{
struct prog_env *env = state->input;
long duration, interval, pid;
switch (key) {
case 'p':
errno = 0;
pid = strtol(arg, NULL, 10);
if (errno || pid <= 0) {
warn("Invalid PID: %s\n", arg);
argp_usage(state);
}
env->pid = pid;
break;
case 'm':
if (env->units != NSEC) {
warn("only set one of -m or -u\n");
argp_usage(state);
}
env->units = MSEC;
break;
case 'u':
if (env->units != NSEC) {
warn("only set one of -m or -u\n");
argp_usage(state);
}
env->units = USEC;
break;
case 'd':
errno = 0;
duration = strtol(arg, NULL, 10);
if (errno || duration <= 0) {
warn("Invalid duration: %s\n", arg);
argp_usage(state);
}
env->duration = duration;
break;
case 'i':
errno = 0;
interval = strtol(arg, NULL, 10);
if (errno || interval <= 0) {
warn("Invalid interval: %s\n", arg);
argp_usage(state);
}
env->interval = interval;
break;
case 'T':
env->timestamp = true;
break;
case 'h':
argp_state_help(state, stderr, ARGP_HELP_STD_HELP);
break;
case ARGP_KEY_ARG:
if (env->funcname) {
warn("Too many function names: %s\n", arg);
argp_usage(state);
}
env->funcname = arg;
break;
case ARGP_KEY_END:
if (!env->funcname) {
warn("Need a function to trace\n");
argp_usage(state);
}
if (env->duration) {
if (env->interval > env->duration)
env->interval = env->duration;
env->iterations = env->duration / env->interval;
}
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static const char *unit_str(void)
{
switch (env.units) {
case NSEC:
return "nsec";
case USEC:
return "usec";
case MSEC:
return "msec";
};
return "bad units";
}
static int attach_kprobes(struct funclatency_bpf *obj)
{
long err;
obj->links.dummy_kprobe =
bpf_program__attach_kprobe(obj->progs.dummy_kprobe, false,
env.funcname);
err = libbpf_get_error(obj->links.dummy_kprobe);
if (err) {
warn("failed to attach kprobe: %ld\n", err);
return -1;
}
obj->links.dummy_kretprobe =
bpf_program__attach_kprobe(obj->progs.dummy_kretprobe, true,
env.funcname);
err = libbpf_get_error(obj->links.dummy_kretprobe);
if (err) {
warn("failed to attach kretprobe: %ld\n", err);
return -1;
}
return 0;
}
static int attach_uprobes(struct funclatency_bpf *obj)
{
char *binary, *function;
char bin_path[PATH_MAX];
off_t func_off;
int ret = -1;
long err;
binary = strdup(env.funcname);
if (!binary) {
warn("strdup failed");
return -1;
}
function = strchr(binary, ':');
if (!function) {
warn("Binary should have contained ':' (internal bug!)\n");
return -1;
}
*function = '\0';
function++;
if (resolve_binary_path(binary, env.pid, bin_path, sizeof(bin_path)))
goto out_binary;
func_off = get_elf_func_offset(bin_path, function);
if (func_off < 0) {
warn("Could not find %s in %s\n", function, bin_path);
goto out_binary;
}
obj->links.dummy_kprobe =
bpf_program__attach_uprobe(obj->progs.dummy_kprobe, false,
env.pid ?: -1, bin_path, func_off);
err = libbpf_get_error(obj->links.dummy_kprobe);
if (err) {
warn("Failed to attach uprobe: %ld\n", err);
goto out_binary;
}
obj->links.dummy_kretprobe =
bpf_program__attach_uprobe(obj->progs.dummy_kretprobe, true,
env.pid ?: -1, bin_path, func_off);
err = libbpf_get_error(obj->links.dummy_kretprobe);
if (err) {
warn("Failed to attach uretprobe: %ld\n", err);
goto out_binary;
}
ret = 0;
out_binary:
free(binary);
return ret;
}
static int attach_probes(struct funclatency_bpf *obj)
{
if (strchr(env.funcname, ':'))
return attach_uprobes(obj);
return attach_kprobes(obj);
}
static volatile bool exiting;
static void sig_hand(int signr)
{
exiting = true;
}
static struct sigaction sigact = {.sa_handler = sig_hand};
int main(int argc, char **argv)
{
static const struct argp argp = {
.options = opts,
.parser = parse_arg,
.args_doc = args_doc,
.doc = program_doc,
};
struct funclatency_bpf *obj;
int i, err;
struct tm *tm;
char ts[32];
time_t t;
err = argp_parse(&argp, argc, argv, 0, NULL, &env);
if (err)
return err;
sigaction(SIGINT, &sigact, 0);
err = bump_memlock_rlimit();
if (err) {
warn("failed to increase rlimit: %d\n", err);
return 1;
}
obj = funclatency_bpf__open();
if (!obj) {
warn("failed to open BPF object\n");
return 1;
}
obj->rodata->units = env.units;
obj->rodata->targ_tgid = env.pid;
err = funclatency_bpf__load(obj);
if (err) {
warn("failed to load BPF object\n");
return 1;
}
if (!obj->bss) {
warn("Memory-mapping BPF maps is supported starting from Linux 5.7, please upgrade.\n");
goto cleanup;
}
err = attach_probes(obj);
if (err)
goto cleanup;
printf("Tracing %s. Hit Ctrl-C to exit\n", env.funcname);
for (i = 0; i < env.iterations && !exiting; i++) {
sleep(env.interval);
printf("\n");
if (env.timestamp) {
time(&t);
tm = localtime(&t);
strftime(ts, sizeof(ts), "%H:%M:%S", tm);
printf("%-8s\n", ts);
}
print_log2_hist(obj->bss->hist, MAX_SLOTS, unit_str());
}
printf("Exiting trace of %s\n", env.funcname);
cleanup:
funclatency_bpf__destroy(obj);
return err != 0;
}