-
Notifications
You must be signed in to change notification settings - Fork 12
/
usdt.c
475 lines (396 loc) · 12.5 KB
/
usdt.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <gelf.h>
#include <linux/string.h>
#include <linux/sdt_arg.h>
#include <api/fs/fs.h>
#include <monitor.h>
#include <uprobe_helpers.h>
extern struct env env;
#define SDT_PROBES_SCN ".probes"
#define SDT_BASE_SCN ".stapsdt.base"
#define SDT_NOTE_SCN ".note.stapsdt"
#define SDT_NOTE_TYPE 3
#define SDT_NOTE_NAME "stapsdt"
struct sdt_probe {
const char *binpath;
const char *provider;
const char *name;
uint64_t addr;
uint64_t addr_offset; // Offset from start of file
uint64_t base_addr;
uint64_t semaphore;
uint64_t semaphore_offset; // Offset from start of file
const char *arg_fmt;
};
typedef void (*sdt_probecb)(struct sdt_probe *probe, void *payload);
static const char *parse_stapsdt_note(struct sdt_probe *probe,
GElf_Shdr *probes_shdr, GElf_Off stapsdt_base_offset,
const char *desc, int elf_class)
{
if (elf_class == ELFCLASS32) {
probe->addr = *((uint32_t *)(desc));
probe->base_addr = *((uint32_t *)(desc + 4));
probe->semaphore = *((uint32_t *)(desc + 8));
desc = desc + 12;
} else {
probe->addr = *((uint64_t *)(desc));
probe->base_addr = *((uint64_t *)(desc + 8));
probe->semaphore = *((uint64_t *)(desc + 16));
desc = desc + 24;
}
// Offset from start of file
probe->addr_offset = probe->addr - probe->base_addr + stapsdt_base_offset;
// Offset from start of file
if (probe->semaphore && probes_shdr)
probe->semaphore_offset =
probe->semaphore - probes_shdr->sh_addr + probes_shdr->sh_offset;
else
probe->semaphore_offset = 0;
probe->provider = desc;
desc += strlen(desc) + 1;
probe->name = desc;
desc += strlen(desc) + 1;
probe->arg_fmt = desc;
desc += strlen(desc) + 1;
return desc;
}
static int do_note_segment(Elf_Scn *section, GElf_Shdr *probes_shdr, int elf_class,
sdt_probecb callback, const char *binpath, GElf_Off stapsdt_base_offset,
uint64_t first_inst_offset, void *payload) {
Elf_Data *data = NULL;
while ((data = elf_getdata(section, data)) != 0) {
size_t offset = 0;
GElf_Nhdr hdr;
size_t name_off, desc_off;
while ((offset = gelf_getnote(data, offset, &hdr, &name_off, &desc_off)) != 0) {
const char *desc, *desc_end;
struct sdt_probe probe = {
.binpath = binpath,
};
if (hdr.n_type != SDT_NOTE_TYPE)
continue;
if (hdr.n_namesz != 8)
continue;
if (memcmp((const char *)data->d_buf + name_off, SDT_NOTE_NAME, 8) != 0)
continue;
desc = (const char *)data->d_buf + desc_off;
desc_end = desc + hdr.n_descsz;
if (parse_stapsdt_note(&probe, probes_shdr, stapsdt_base_offset, desc, elf_class) == desc_end) {
if (probe.addr < first_inst_offset)
fprintf(stderr,
"WARNING: invalid address 0x%lx for probe (%s,%s) in binary %s\n",
probe.addr, probe.provider, probe.name, binpath);
else
callback(&probe, payload);
}
}
}
return 0;
}
static int listprobes(Elf *e, sdt_probecb callback, const char *binpath,
void *payload) {
Elf_Scn *section = NULL;
bool found_probes_shdr;
size_t stridx;
int elf_class = gelf_getclass(e);
uint64_t first_inst_offset = 0;
GElf_Shdr probes_shdr = {};
GElf_Off stapsdt_base_offset = 0;
if (elf_getshdrstrndx(e, &stridx) != 0)
return -1;
// Get the offset to the first instruction
while ((section = elf_nextscn(e, section)) != 0) {
GElf_Shdr header;
if (!gelf_getshdr(section, &header))
continue;
// The elf file section layout is based on increasing virtual address,
// getting the first section with SHF_EXECINSTR is enough.
if (header.sh_flags & SHF_EXECINSTR) {
first_inst_offset = header.sh_addr;
break;
}
}
section = NULL;
while ((section = elf_nextscn(e, section)) != 0) {
GElf_Shdr header;
char *name;
if (!gelf_getshdr(section, &header))
continue;
if (header.sh_type != SHT_PROGBITS)
continue;
name = elf_strptr(e, stridx, header.sh_name);
if (name && !strcmp(name, SDT_BASE_SCN)) {
stapsdt_base_offset = header.sh_offset;
break;
}
}
section = NULL;
found_probes_shdr = false;
while ((section = elf_nextscn(e, section)) != 0) {
char *name;
if (!gelf_getshdr(section, &probes_shdr))
continue;
name = elf_strptr(e, stridx, probes_shdr.sh_name);
if (name && !strcmp(name, SDT_PROBES_SCN)) {
found_probes_shdr = true;
break;
}
}
section = NULL;
while ((section = elf_nextscn(e, section)) != 0) {
GElf_Shdr header;
char *name;
if (!gelf_getshdr(section, &header))
continue;
if (header.sh_type != SHT_NOTE)
continue;
name = elf_strptr(e, stridx, header.sh_name);
if (name && !strcmp(name, SDT_NOTE_SCN)) {
GElf_Shdr *shdr_ptr = found_probes_shdr ? &probes_shdr : NULL;
if (do_note_segment(section, shdr_ptr, elf_class, callback, binpath,
stapsdt_base_offset, first_inst_offset, payload) < 0)
return -1;
}
}
return 0;
}
static int elf_foreach_probe(const char *binpath, sdt_probecb callback, void *payload)
{
int res = -1;
int fd = -1;
Elf *e = open_elf(binpath, &fd);;
if (e) {
res = listprobes(e, callback, binpath, payload);
close_elf(e, fd);
}
return res;
}
int __weak arch_sdt_arg_parse_op(char *old_op __maybe_unused,
char **new_op __maybe_unused)
{
return SDT_ARG_SKIP;
}
static const char * const type_to_suffix[] = {
":s64", "", "", "", ":s32", "", ":s16", ":s8",
"", ":u8", ":u16", "", ":u32", "", "", "", ":u64"
};
/*
* Isolate the string number and convert it into a decimal value;
* this will be an index to get suffix of the uprobe name (defining
* the type)
*/
static int sdt_arg_size(char *n_ptr, const char **suffix)
{
long type_idx;
type_idx = strtol(n_ptr, NULL, 10);
if (type_idx < -8 || type_idx > 8) {
fprintf(stderr, "Failed to get a valid sdt type\n");
return -1;
}
*suffix = type_to_suffix[type_idx + 8];
return 0;
}
static int sdt_probe_arg(char **pcmd, int i, const char *arg)
{
char *op, *desc = strdup(arg), *new_op = NULL;
const char *suffix = "";
int ret = -1;
if (desc == NULL)
return ret;
/*
* Argument is in N@OP format. N is size of the argument and OP is
* the actual assembly operand. N can be omitted; in that case
* argument is just OP(without @).
*/
op = strchr(desc, '@');
if (op) {
op[0] = '\0';
op++;
if (sdt_arg_size(desc, &suffix))
goto error;
} else {
op = desc;
}
ret = arch_sdt_arg_parse_op(op, &new_op);
if (ret < 0)
goto error;
if (ret == SDT_ARG_VALID) {
*pcmd = straddf(*pcmd, free, " arg%d=%s%s", i + 1, new_op, suffix);
if (!*pcmd)
goto error;
}
ret = 0;
error:
free(desc);
free(new_op);
return ret;
}
static char *sdt_probe_command(struct sdt_probe *probe, const char *prefix)
{
char *cmd = NULL;
char **args = NULL;
int i, args_count;
cmd = straddf(cmd, free, "%s%s/%s %s:0x%0*llx", prefix,
probe->provider, probe->name, probe->binpath,
(int)(sizeof(void *) * 2), probe->addr_offset);
if (!cmd)
return NULL;
if (probe->semaphore) {
cmd = straddf(cmd, free, "(0x%llx)", probe->semaphore_offset);
if (!cmd)
return NULL;
}
if (probe->arg_fmt[0] == '\0')
goto out;
args = argv_split(probe->arg_fmt, &args_count);
for (i = 0; i < args_count; ++i) {
if (sdt_probe_arg(&cmd, i, args[i]) < 0)
goto error;
}
if (args)
argv_free(args);
out:
return cmd;
error:
if (cmd)
free(cmd);
if (args)
argv_free(args);
return NULL;
}
static void uprobe_events(struct sdt_probe *probe, void *payload, const char *prefix)
{
struct sdt_probe *p = payload;
const char *uprobe_trace = "kernel/debug/tracing/uprobe_events";
char *uprobe = NULL;
int ret;
if (p->provider &&
strcmp(probe->provider, p->provider) != 0)
return ;
if (p->name &&
strcmp(probe->name, p->name) != 0)
return ;
if (p->addr && probe->addr != p->addr)
return ;
uprobe = sdt_probe_command(probe, prefix);
if (uprobe) {
printf("%s:%s@%s\n", probe->provider, probe->name, probe->binpath);
if (env.verbose)
printf(" echo '%s' > %s/%s\n", uprobe, sysfs__mountpoint(), uprobe_trace);
ret = sysfs__write_str(uprobe_trace, uprobe, strlen(uprobe));
if (ret < 0)
fprintf(stderr, " echo '%s' > %s/%s failed, %d(%s)\n", uprobe, sysfs__mountpoint(),
uprobe_trace, ret, strerror(-ret));
free(uprobe);
}
}
static void create(struct sdt_probe *probe, void *payload)
{
uprobe_events(probe, payload, "p:");
}
static void delete(struct sdt_probe *probe, void *payload)
{
uprobe_events(probe, payload, "-:");
}
static void list(struct sdt_probe *probe, void *payload)
{
struct sdt_probe *p = payload;
char *uprobe = NULL;
if (p->provider &&
strcmp(probe->provider, p->provider) != 0)
return ;
if (p->name &&
strcmp(probe->name, p->name) != 0)
return ;
if (p->addr && probe->addr != p->addr)
return ;
printf("%s:%s@%s\n", probe->provider, probe->name, probe->binpath);
if (env.verbose) {
printf(" Addr: 0x%016lx, Base: 0x%016lx, Semaphore: 0x%016lx\n", probe->addr,
probe->base_addr, probe->semaphore);
printf(" Arguments: %s\n", probe->arg_fmt);
uprobe = sdt_probe_command(probe, "p:");
printf(" Uprobe: %s\n", uprobe ? : "");
free(uprobe);
}
}
static int usdt_argc_init(int argc, char *argv[])
{
struct sdt_probe usdt = {};
char *cmd = NULL;
sdt_probecb cb = NULL;
int i;
if (argc < 1) {
fprintf(stderr, " One of {add|del|list} needs to be specified.\n");
help();
} else {
cmd = argv[0];
if (strcmp(cmd, "add") == 0)
cb = create;
else if (strcmp(cmd, "del") == 0)
cb = delete;
else if (strcmp(cmd, "list") == 0)
cb = list;
else
help();
}
if (argc < 2) {
fprintf(stderr, " 'binpath' needs to be specified.\n");
help();
}
for (i = 1; i < argc; i++) {
char *s = strdup(argv[i]);
char *f = s;
char *sep = s;
memset(&usdt, 0, sizeof(usdt));
if ((sep = strchr(s, ':'))) {
usdt.provider = s;
*sep = '\0';
s = sep + 1;
}
if ((sep = strchr(s, '@'))) {
usdt.name = s;
*sep = '\0';
s = sep + 1;
}
if (*s)
usdt.binpath = s;
else {
fprintf(stderr, " binpath is empty.\n");
help();
}
if ((sep = strchr(s, '@'))) {
*sep = '\0';
s = sep + 1;
}
if (*s)
usdt.addr = strtoll(s, NULL, 0);
elf_foreach_probe(usdt.binpath, cb, &usdt);
free(f);
}
exit(0);
}
static const char *usdt_desc[] = PROFILER_DESC("usdt",
"[OPTION...] {add|del|list} [[profider:]name@]binpath[@addr] ...",
"User Statically-Defined Tracing.", "",
"SYNOPSIS",
" Find the location of the static trace point from the .note.stapsdt section",
" of the elf file, and add the kernel uprobe event.", "",
"EXAMPLES",
" "PROGRAME" usdt list /usr/lib64/libc.so.6",
" "PROGRAME" usdt add /usr/lib64/libc.so.6",
" "PROGRAME" usdt del /usr/lib64/libc.so.6");
static const char *usdt_argv[] = PROFILER_ARGV("usdt",
"OPTION:",
"version", "verbose", "quiet", "help"
);
static profiler usdt = {
.name = "usdt",
.desc = usdt_desc,
.argv = usdt_argv,
.pages = 2,
.argc_init = usdt_argc_init,
};
PROFILER_REGISTER(usdt);