]>
Commit | Line | Data |
---|---|---|
50656eec | 1 | /* |
0e60836b | 2 | * probe-event.c : perf-probe definition to probe_events format converter |
50656eec MH |
3 | * |
4 | * Written by Masami Hiramatsu <[email protected]> | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; either version 2 of the License, or | |
9 | * (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, write to the Free Software | |
18 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
19 | * | |
20 | */ | |
21 | ||
50656eec MH |
22 | #include <sys/utsname.h> |
23 | #include <sys/types.h> | |
24 | #include <sys/stat.h> | |
25 | #include <fcntl.h> | |
26 | #include <errno.h> | |
27 | #include <stdio.h> | |
28 | #include <unistd.h> | |
29 | #include <stdlib.h> | |
30 | #include <string.h> | |
4de189fe MH |
31 | #include <stdarg.h> |
32 | #include <limits.h> | |
e80711ca | 33 | #include <elf.h> |
50656eec | 34 | |
31facc5f | 35 | #include "util.h" |
50656eec | 36 | #include "event.h" |
4de189fe | 37 | #include "strlist.h" |
50656eec | 38 | #include "debug.h" |
72041334 | 39 | #include "cache.h" |
631c9def | 40 | #include "color.h" |
e0faa8d3 MH |
41 | #include "symbol.h" |
42 | #include "thread.h" | |
553873e1 | 43 | #include <api/fs/debugfs.h> |
23773ca1 | 44 | #include <api/fs/tracefs.h> |
1d037ca1 | 45 | #include "trace-event.h" /* For __maybe_unused */ |
50656eec | 46 | #include "probe-event.h" |
4235b045 | 47 | #include "probe-finder.h" |
225466f1 | 48 | #include "session.h" |
50656eec MH |
49 | |
50 | #define MAX_CMDLEN 256 | |
50656eec MH |
51 | #define PERFPROBE_GROUP "probe" |
52 | ||
f4d7da49 | 53 | bool probe_event_dry_run; /* Dry run flag */ |
ddb2f58f | 54 | struct probe_conf probe_conf; |
f4d7da49 | 55 | |
146a1439 | 56 | #define semantic_error(msg ...) pr_err("Semantic error :" msg) |
50656eec | 57 | |
4de189fe | 58 | /* If there is no space to write, returns -E2BIG. */ |
84988450 MH |
59 | static int e_snprintf(char *str, size_t size, const char *format, ...) |
60 | __attribute__((format(printf, 3, 4))); | |
61 | ||
4de189fe MH |
62 | static int e_snprintf(char *str, size_t size, const char *format, ...) |
63 | { | |
64 | int ret; | |
65 | va_list ap; | |
66 | va_start(ap, format); | |
67 | ret = vsnprintf(str, size, format, ap); | |
68 | va_end(ap); | |
69 | if (ret >= (int)size) | |
70 | ret = -E2BIG; | |
71 | return ret; | |
72 | } | |
73 | ||
4b4da7f7 | 74 | static char *synthesize_perf_probe_point(struct perf_probe_point *pp); |
981d05ad | 75 | static void clear_probe_trace_event(struct probe_trace_event *tev); |
ee45b6c2 | 76 | static struct machine *host_machine; |
e0faa8d3 | 77 | |
469b9b88 | 78 | /* Initialize symbol maps and path of vmlinux/modules */ |
ee45b6c2 | 79 | static int init_symbol_maps(bool user_only) |
e0faa8d3 | 80 | { |
146a1439 MH |
81 | int ret; |
82 | ||
e0faa8d3 | 83 | symbol_conf.sort_by_name = true; |
680d926a | 84 | symbol_conf.allow_aliases = true; |
0a7e6d1b | 85 | ret = symbol__init(NULL); |
146a1439 MH |
86 | if (ret < 0) { |
87 | pr_debug("Failed to init symbol map.\n"); | |
88 | goto out; | |
89 | } | |
e0faa8d3 | 90 | |
ee45b6c2 MH |
91 | if (host_machine || user_only) /* already initialized */ |
92 | return 0; | |
d28c6223 | 93 | |
ee45b6c2 MH |
94 | if (symbol_conf.vmlinux_name) |
95 | pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name); | |
96 | ||
97 | host_machine = machine__new_host(); | |
98 | if (!host_machine) { | |
99 | pr_debug("machine__new_host() failed.\n"); | |
100 | symbol__exit(); | |
101 | ret = -1; | |
469b9b88 | 102 | } |
146a1439 MH |
103 | out: |
104 | if (ret < 0) | |
105 | pr_warning("Failed to init vmlinux path.\n"); | |
106 | return ret; | |
e0faa8d3 MH |
107 | } |
108 | ||
ee45b6c2 MH |
109 | static void exit_symbol_maps(void) |
110 | { | |
111 | if (host_machine) { | |
112 | machine__delete(host_machine); | |
113 | host_machine = NULL; | |
114 | } | |
115 | symbol__exit(); | |
116 | } | |
117 | ||
469b9b88 MH |
118 | static struct symbol *__find_kernel_function_by_name(const char *name, |
119 | struct map **mapp) | |
120 | { | |
ee45b6c2 | 121 | return machine__find_kernel_function_by_name(host_machine, name, mapp, |
469b9b88 MH |
122 | NULL); |
123 | } | |
124 | ||
8f33f7de MH |
125 | static struct symbol *__find_kernel_function(u64 addr, struct map **mapp) |
126 | { | |
127 | return machine__find_kernel_function(host_machine, addr, mapp, NULL); | |
128 | } | |
129 | ||
130 | static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void) | |
131 | { | |
132 | /* kmap->ref_reloc_sym should be set if host_machine is initialized */ | |
133 | struct kmap *kmap; | |
134 | ||
135 | if (map__load(host_machine->vmlinux_maps[MAP__FUNCTION], NULL) < 0) | |
136 | return NULL; | |
137 | ||
138 | kmap = map__kmap(host_machine->vmlinux_maps[MAP__FUNCTION]); | |
ba92732e WN |
139 | if (!kmap) |
140 | return NULL; | |
8f33f7de MH |
141 | return kmap->ref_reloc_sym; |
142 | } | |
143 | ||
144 | static u64 kernel_get_symbol_address_by_name(const char *name, bool reloc) | |
145 | { | |
146 | struct ref_reloc_sym *reloc_sym; | |
147 | struct symbol *sym; | |
148 | struct map *map; | |
149 | ||
150 | /* ref_reloc_sym is just a label. Need a special fix*/ | |
151 | reloc_sym = kernel_get_ref_reloc_sym(); | |
152 | if (reloc_sym && strcmp(name, reloc_sym->name) == 0) | |
153 | return (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr; | |
154 | else { | |
155 | sym = __find_kernel_function_by_name(name, &map); | |
156 | if (sym) | |
157 | return map->unmap_ip(map, sym->start) - | |
f56847c2 | 158 | ((reloc) ? 0 : map->reloc); |
8f33f7de MH |
159 | } |
160 | return 0; | |
161 | } | |
162 | ||
e80711ca MH |
163 | static struct map *kernel_get_module_map(const char *module) |
164 | { | |
ee45b6c2 | 165 | struct map_groups *grp = &host_machine->kmaps; |
1eee78ae | 166 | struct maps *maps = &grp->maps[MAP__FUNCTION]; |
4bb7123d | 167 | struct map *pos; |
e80711ca | 168 | |
14a8fd7c MH |
169 | /* A file path -- this is an offline module */ |
170 | if (module && strchr(module, '/')) | |
9f2de315 | 171 | return machine__findnew_module_map(host_machine, 0, module); |
14a8fd7c | 172 | |
e80711ca MH |
173 | if (!module) |
174 | module = "kernel"; | |
175 | ||
4bb7123d | 176 | for (pos = maps__first(maps); pos; pos = map__next(pos)) { |
e80711ca MH |
177 | if (strncmp(pos->dso->short_name + 1, module, |
178 | pos->dso->short_name_len - 2) == 0) { | |
179 | return pos; | |
180 | } | |
181 | } | |
182 | return NULL; | |
183 | } | |
184 | ||
9b118aca MH |
185 | static struct map *get_target_map(const char *target, bool user) |
186 | { | |
187 | /* Init maps of given executable or kernel */ | |
188 | if (user) | |
189 | return dso__new_map(target); | |
190 | else | |
191 | return kernel_get_module_map(target); | |
192 | } | |
193 | ||
194 | static void put_target_map(struct map *map, bool user) | |
195 | { | |
196 | if (map && user) { | |
197 | /* Only the user map needs to be released */ | |
84c2cafa | 198 | map__put(map); |
9b118aca MH |
199 | } |
200 | } | |
201 | ||
202 | ||
fb7345bb MH |
203 | static int convert_exec_to_group(const char *exec, char **result) |
204 | { | |
205 | char *ptr1, *ptr2, *exec_copy; | |
206 | char buf[64]; | |
207 | int ret; | |
208 | ||
209 | exec_copy = strdup(exec); | |
210 | if (!exec_copy) | |
211 | return -ENOMEM; | |
212 | ||
213 | ptr1 = basename(exec_copy); | |
214 | if (!ptr1) { | |
215 | ret = -EINVAL; | |
216 | goto out; | |
217 | } | |
218 | ||
219 | ptr2 = strpbrk(ptr1, "-._"); | |
220 | if (ptr2) | |
221 | *ptr2 = '\0'; | |
222 | ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1); | |
223 | if (ret < 0) | |
224 | goto out; | |
225 | ||
226 | *result = strdup(buf); | |
227 | ret = *result ? 0 : -ENOMEM; | |
228 | ||
229 | out: | |
230 | free(exec_copy); | |
231 | return ret; | |
232 | } | |
233 | ||
9b118aca MH |
234 | static void clear_perf_probe_point(struct perf_probe_point *pp) |
235 | { | |
236 | free(pp->file); | |
237 | free(pp->function); | |
238 | free(pp->lazy_line); | |
239 | } | |
240 | ||
eb948e50 MH |
241 | static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs) |
242 | { | |
243 | int i; | |
244 | ||
245 | for (i = 0; i < ntevs; i++) | |
246 | clear_probe_trace_event(tevs + i); | |
247 | } | |
248 | ||
b031220d MH |
249 | static bool kprobe_blacklist__listed(unsigned long address); |
250 | static bool kprobe_warn_out_range(const char *symbol, unsigned long address) | |
251 | { | |
252 | /* Get the address of _etext for checking non-probable text symbol */ | |
253 | if (kernel_get_symbol_address_by_name("_etext", false) < address) | |
254 | pr_warning("%s is out of .text, skip it.\n", symbol); | |
255 | else if (kprobe_blacklist__listed(address)) | |
256 | pr_warning("%s is blacklisted function, skip it.\n", symbol); | |
257 | else | |
258 | return false; | |
259 | ||
260 | return true; | |
261 | } | |
262 | ||
89fe808a | 263 | #ifdef HAVE_DWARF_SUPPORT |
60fb7742 WN |
264 | |
265 | static int kernel_get_module_dso(const char *module, struct dso **pdso) | |
266 | { | |
267 | struct dso *dso; | |
268 | struct map *map; | |
269 | const char *vmlinux_name; | |
270 | int ret = 0; | |
271 | ||
272 | if (module) { | |
3d39ac53 ACM |
273 | list_for_each_entry(dso, &host_machine->dsos.head, node) { |
274 | if (!dso->kernel) | |
275 | continue; | |
60fb7742 WN |
276 | if (strncmp(dso->short_name + 1, module, |
277 | dso->short_name_len - 2) == 0) | |
278 | goto found; | |
279 | } | |
280 | pr_debug("Failed to find module %s.\n", module); | |
281 | return -ENOENT; | |
282 | } | |
283 | ||
284 | map = host_machine->vmlinux_maps[MAP__FUNCTION]; | |
285 | dso = map->dso; | |
286 | ||
287 | vmlinux_name = symbol_conf.vmlinux_name; | |
288 | dso->load_errno = 0; | |
289 | if (vmlinux_name) | |
290 | ret = dso__load_vmlinux(dso, map, vmlinux_name, false, NULL); | |
291 | else | |
292 | ret = dso__load_vmlinux_path(dso, map, NULL); | |
293 | found: | |
294 | *pdso = dso; | |
295 | return ret; | |
296 | } | |
297 | ||
9b118aca MH |
298 | /* |
299 | * Some binaries like glibc have special symbols which are on the symbol | |
300 | * table, but not in the debuginfo. If we can find the address of the | |
301 | * symbol from map, we can translate the address back to the probe point. | |
302 | */ | |
303 | static int find_alternative_probe_point(struct debuginfo *dinfo, | |
304 | struct perf_probe_point *pp, | |
305 | struct perf_probe_point *result, | |
306 | const char *target, bool uprobes) | |
307 | { | |
308 | struct map *map = NULL; | |
309 | struct symbol *sym; | |
310 | u64 address = 0; | |
311 | int ret = -ENOENT; | |
312 | ||
313 | /* This can work only for function-name based one */ | |
314 | if (!pp->function || pp->file) | |
315 | return -ENOTSUP; | |
316 | ||
317 | map = get_target_map(target, uprobes); | |
318 | if (!map) | |
319 | return -EINVAL; | |
320 | ||
321 | /* Find the address of given function */ | |
322 | map__for_each_symbol_by_name(map, pp->function, sym) { | |
e6d7c91c MH |
323 | if (uprobes) |
324 | address = sym->start; | |
325 | else | |
326 | address = map->unmap_ip(map, sym->start); | |
e578da3b | 327 | break; |
9b118aca MH |
328 | } |
329 | if (!address) { | |
330 | ret = -ENOENT; | |
331 | goto out; | |
332 | } | |
f6c15621 WN |
333 | pr_debug("Symbol %s address found : %" PRIx64 "\n", |
334 | pp->function, address); | |
9b118aca MH |
335 | |
336 | ret = debuginfo__find_probe_point(dinfo, (unsigned long)address, | |
337 | result); | |
338 | if (ret <= 0) | |
339 | ret = (!ret) ? -ENOENT : ret; | |
340 | else { | |
341 | result->offset += pp->offset; | |
342 | result->line += pp->line; | |
9d7b45c5 | 343 | result->retprobe = pp->retprobe; |
9b118aca MH |
344 | ret = 0; |
345 | } | |
346 | ||
347 | out: | |
348 | put_target_map(map, uprobes); | |
349 | return ret; | |
350 | ||
351 | } | |
352 | ||
353 | static int get_alternative_probe_event(struct debuginfo *dinfo, | |
354 | struct perf_probe_event *pev, | |
44225521 | 355 | struct perf_probe_point *tmp) |
9b118aca MH |
356 | { |
357 | int ret; | |
358 | ||
359 | memcpy(tmp, &pev->point, sizeof(*tmp)); | |
360 | memset(&pev->point, 0, sizeof(pev->point)); | |
361 | ret = find_alternative_probe_point(dinfo, tmp, &pev->point, | |
44225521 | 362 | pev->target, pev->uprobes); |
9b118aca MH |
363 | if (ret < 0) |
364 | memcpy(&pev->point, tmp, sizeof(*tmp)); | |
365 | ||
366 | return ret; | |
367 | } | |
a15ad2f5 | 368 | |
811dd2ae MH |
369 | static int get_alternative_line_range(struct debuginfo *dinfo, |
370 | struct line_range *lr, | |
371 | const char *target, bool user) | |
372 | { | |
6d4a4896 DA |
373 | struct perf_probe_point pp = { .function = lr->function, |
374 | .file = lr->file, | |
375 | .line = lr->start }; | |
376 | struct perf_probe_point result; | |
811dd2ae MH |
377 | int ret, len = 0; |
378 | ||
6d4a4896 DA |
379 | memset(&result, 0, sizeof(result)); |
380 | ||
811dd2ae MH |
381 | if (lr->end != INT_MAX) |
382 | len = lr->end - lr->start; | |
383 | ret = find_alternative_probe_point(dinfo, &pp, &result, | |
384 | target, user); | |
385 | if (!ret) { | |
386 | lr->function = result.function; | |
387 | lr->file = result.file; | |
388 | lr->start = result.line; | |
389 | if (lr->end != INT_MAX) | |
390 | lr->end = lr->start + len; | |
391 | clear_perf_probe_point(&pp); | |
392 | } | |
393 | return ret; | |
394 | } | |
395 | ||
ff741783 | 396 | /* Open new debuginfo of given module */ |
92561cb7 | 397 | static struct debuginfo *open_debuginfo(const char *module, bool silent) |
e0faa8d3 | 398 | { |
a15ad2f5 | 399 | const char *path = module; |
419e8738 MH |
400 | char reason[STRERR_BUFSIZE]; |
401 | struct debuginfo *ret = NULL; | |
402 | struct dso *dso = NULL; | |
403 | int err; | |
ff741783 | 404 | |
a15ad2f5 | 405 | if (!module || !strchr(module, '/')) { |
419e8738 MH |
406 | err = kernel_get_module_dso(module, &dso); |
407 | if (err < 0) { | |
408 | if (!dso || dso->load_errno == 0) { | |
409 | if (!strerror_r(-err, reason, STRERR_BUFSIZE)) | |
410 | strcpy(reason, "(unknown)"); | |
411 | } else | |
412 | dso__strerror_load(dso, reason, STRERR_BUFSIZE); | |
92561cb7 | 413 | if (!silent) |
419e8738 MH |
414 | pr_err("Failed to find the path for %s: %s\n", |
415 | module ?: "kernel", reason); | |
14a8fd7c MH |
416 | return NULL; |
417 | } | |
419e8738 | 418 | path = dso->long_name; |
e0faa8d3 | 419 | } |
92561cb7 MH |
420 | ret = debuginfo__new(path); |
421 | if (!ret && !silent) { | |
422 | pr_warning("The %s file has no debug information.\n", path); | |
423 | if (!module || !strtailcmp(path, ".ko")) | |
424 | pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, "); | |
425 | else | |
426 | pr_warning("Rebuild with -g, "); | |
427 | pr_warning("or install an appropriate debuginfo package.\n"); | |
428 | } | |
429 | return ret; | |
e0faa8d3 | 430 | } |
4b4da7f7 | 431 | |
92561cb7 | 432 | |
99ca4233 MH |
433 | static int get_text_start_address(const char *exec, unsigned long *address) |
434 | { | |
435 | Elf *elf; | |
436 | GElf_Ehdr ehdr; | |
437 | GElf_Shdr shdr; | |
438 | int fd, ret = -ENOENT; | |
439 | ||
440 | fd = open(exec, O_RDONLY); | |
441 | if (fd < 0) | |
442 | return -errno; | |
443 | ||
444 | elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL); | |
445 | if (elf == NULL) | |
446 | return -EINVAL; | |
447 | ||
448 | if (gelf_getehdr(elf, &ehdr) == NULL) | |
449 | goto out; | |
450 | ||
451 | if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL)) | |
452 | goto out; | |
453 | ||
454 | *address = shdr.sh_addr - shdr.sh_offset; | |
455 | ret = 0; | |
456 | out: | |
457 | elf_end(elf); | |
458 | return ret; | |
459 | } | |
460 | ||
5a6f6314 MH |
461 | /* |
462 | * Convert trace point to probe point with debuginfo | |
463 | */ | |
464 | static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp, | |
465 | struct perf_probe_point *pp, | |
466 | bool is_kprobe) | |
467 | { | |
468 | struct debuginfo *dinfo = NULL; | |
469 | unsigned long stext = 0; | |
470 | u64 addr = tp->address; | |
471 | int ret = -ENOENT; | |
472 | ||
473 | /* convert the address to dwarf address */ | |
474 | if (!is_kprobe) { | |
475 | if (!addr) { | |
476 | ret = -EINVAL; | |
477 | goto error; | |
478 | } | |
479 | ret = get_text_start_address(tp->module, &stext); | |
480 | if (ret < 0) | |
481 | goto error; | |
482 | addr += stext; | |
483 | } else { | |
484 | addr = kernel_get_symbol_address_by_name(tp->symbol, false); | |
485 | if (addr == 0) | |
486 | goto error; | |
487 | addr += tp->offset; | |
488 | } | |
489 | ||
490 | pr_debug("try to find information at %" PRIx64 " in %s\n", addr, | |
491 | tp->module ? : "kernel"); | |
492 | ||
92561cb7 | 493 | dinfo = open_debuginfo(tp->module, verbose == 0); |
5a6f6314 MH |
494 | if (dinfo) { |
495 | ret = debuginfo__find_probe_point(dinfo, | |
496 | (unsigned long)addr, pp); | |
497 | debuginfo__delete(dinfo); | |
92561cb7 | 498 | } else |
5a6f6314 | 499 | ret = -ENOENT; |
5a6f6314 MH |
500 | |
501 | if (ret > 0) { | |
502 | pp->retprobe = tp->retprobe; | |
503 | return 0; | |
504 | } | |
505 | error: | |
506 | pr_debug("Failed to find corresponding probes from debuginfo.\n"); | |
507 | return ret ? : -ENOENT; | |
508 | } | |
509 | ||
fb7345bb MH |
510 | static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs, |
511 | int ntevs, const char *exec) | |
512 | { | |
513 | int i, ret = 0; | |
eb948e50 | 514 | unsigned long stext = 0; |
fb7345bb MH |
515 | |
516 | if (!exec) | |
517 | return 0; | |
518 | ||
519 | ret = get_text_start_address(exec, &stext); | |
520 | if (ret < 0) | |
521 | return ret; | |
522 | ||
523 | for (i = 0; i < ntevs && ret >= 0; i++) { | |
981a2379 | 524 | /* point.address is the addres of point.symbol + point.offset */ |
eb948e50 | 525 | tevs[i].point.address -= stext; |
fb7345bb | 526 | tevs[i].point.module = strdup(exec); |
eb948e50 | 527 | if (!tevs[i].point.module) { |
fb7345bb MH |
528 | ret = -ENOMEM; |
529 | break; | |
530 | } | |
531 | tevs[i].uprobes = true; | |
532 | } | |
533 | ||
534 | return ret; | |
535 | } | |
536 | ||
190b57fc MH |
537 | static int add_module_to_probe_trace_events(struct probe_trace_event *tevs, |
538 | int ntevs, const char *module) | |
539 | { | |
14a8fd7c MH |
540 | int i, ret = 0; |
541 | char *tmp; | |
542 | ||
543 | if (!module) | |
544 | return 0; | |
545 | ||
546 | tmp = strrchr(module, '/'); | |
547 | if (tmp) { | |
548 | /* This is a module path -- get the module name */ | |
549 | module = strdup(tmp + 1); | |
550 | if (!module) | |
551 | return -ENOMEM; | |
552 | tmp = strchr(module, '.'); | |
553 | if (tmp) | |
554 | *tmp = '\0'; | |
555 | tmp = (char *)module; /* For free() */ | |
556 | } | |
557 | ||
190b57fc MH |
558 | for (i = 0; i < ntevs; i++) { |
559 | tevs[i].point.module = strdup(module); | |
14a8fd7c MH |
560 | if (!tevs[i].point.module) { |
561 | ret = -ENOMEM; | |
562 | break; | |
563 | } | |
190b57fc | 564 | } |
14a8fd7c | 565 | |
f5385650 | 566 | free(tmp); |
14a8fd7c | 567 | return ret; |
190b57fc MH |
568 | } |
569 | ||
dfef99cd MH |
570 | /* Post processing the probe events */ |
571 | static int post_process_probe_trace_events(struct probe_trace_event *tevs, | |
572 | int ntevs, const char *module, | |
573 | bool uprobe) | |
574 | { | |
575 | struct ref_reloc_sym *reloc_sym; | |
576 | char *tmp; | |
5a51fcd1 | 577 | int i, skipped = 0; |
dfef99cd MH |
578 | |
579 | if (uprobe) | |
580 | return add_exec_to_probe_trace_events(tevs, ntevs, module); | |
581 | ||
582 | /* Note that currently ref_reloc_sym based probe is not for drivers */ | |
583 | if (module) | |
584 | return add_module_to_probe_trace_events(tevs, ntevs, module); | |
585 | ||
8f33f7de | 586 | reloc_sym = kernel_get_ref_reloc_sym(); |
dfef99cd MH |
587 | if (!reloc_sym) { |
588 | pr_warning("Relocated base symbol is not found!\n"); | |
589 | return -EINVAL; | |
590 | } | |
591 | ||
592 | for (i = 0; i < ntevs; i++) { | |
b031220d MH |
593 | if (!tevs[i].point.address || tevs[i].point.retprobe) |
594 | continue; | |
595 | /* If we found a wrong one, mark it by NULL symbol */ | |
596 | if (kprobe_warn_out_range(tevs[i].point.symbol, | |
597 | tevs[i].point.address)) { | |
598 | tmp = NULL; | |
599 | skipped++; | |
600 | } else { | |
601 | tmp = strdup(reloc_sym->name); | |
602 | if (!tmp) | |
603 | return -ENOMEM; | |
dfef99cd | 604 | } |
b031220d MH |
605 | /* If we have no realname, use symbol for it */ |
606 | if (!tevs[i].point.realname) | |
607 | tevs[i].point.realname = tevs[i].point.symbol; | |
608 | else | |
609 | free(tevs[i].point.symbol); | |
610 | tevs[i].point.symbol = tmp; | |
611 | tevs[i].point.offset = tevs[i].point.address - | |
612 | reloc_sym->unrelocated_addr; | |
dfef99cd | 613 | } |
5a51fcd1 | 614 | return skipped; |
dfef99cd MH |
615 | } |
616 | ||
4b4da7f7 | 617 | /* Try to find perf_probe_event with debuginfo */ |
0e60836b | 618 | static int try_to_find_probe_trace_events(struct perf_probe_event *pev, |
ddb2f58f | 619 | struct probe_trace_event **tevs) |
4b4da7f7 MH |
620 | { |
621 | bool need_dwarf = perf_probe_event_need_dwarf(pev); | |
9b118aca | 622 | struct perf_probe_point tmp; |
225466f1 | 623 | struct debuginfo *dinfo; |
190b57fc | 624 | int ntevs, ret = 0; |
4b4da7f7 | 625 | |
44225521 | 626 | dinfo = open_debuginfo(pev->target, !need_dwarf); |
ff741783 | 627 | if (!dinfo) { |
92561cb7 | 628 | if (need_dwarf) |
ff741783 | 629 | return -ENOENT; |
ff741783 | 630 | pr_debug("Could not open debuginfo. Try to use symbols.\n"); |
4b4da7f7 MH |
631 | return 0; |
632 | } | |
633 | ||
dfef99cd | 634 | pr_debug("Try to find probe point from debuginfo.\n"); |
ff741783 | 635 | /* Searching trace events corresponding to a probe event */ |
ddb2f58f | 636 | ntevs = debuginfo__find_trace_events(dinfo, pev, tevs); |
ff741783 | 637 | |
9b118aca | 638 | if (ntevs == 0) { /* Not found, retry with an alternative */ |
44225521 | 639 | ret = get_alternative_probe_event(dinfo, pev, &tmp); |
9b118aca | 640 | if (!ret) { |
ddb2f58f | 641 | ntevs = debuginfo__find_trace_events(dinfo, pev, tevs); |
9b118aca MH |
642 | /* |
643 | * Write back to the original probe_event for | |
644 | * setting appropriate (user given) event name | |
645 | */ | |
646 | clear_perf_probe_point(&pev->point); | |
647 | memcpy(&pev->point, &tmp, sizeof(tmp)); | |
648 | } | |
649 | } | |
650 | ||
ff741783 | 651 | debuginfo__delete(dinfo); |
4b4da7f7 | 652 | |
146a1439 | 653 | if (ntevs > 0) { /* Succeeded to find trace events */ |
dfef99cd MH |
654 | pr_debug("Found %d probe_trace_events.\n", ntevs); |
655 | ret = post_process_probe_trace_events(*tevs, ntevs, | |
44225521 | 656 | pev->target, pev->uprobes); |
5a51fcd1 | 657 | if (ret < 0 || ret == ntevs) { |
981d05ad MH |
658 | clear_probe_trace_events(*tevs, ntevs); |
659 | zfree(tevs); | |
660 | } | |
5a51fcd1 MH |
661 | if (ret != ntevs) |
662 | return ret < 0 ? ret : ntevs; | |
663 | ntevs = 0; | |
664 | /* Fall through */ | |
146a1439 | 665 | } |
4b4da7f7 | 666 | |
146a1439 | 667 | if (ntevs == 0) { /* No error but failed to find probe point. */ |
0687eba7 | 668 | pr_warning("Probe point '%s' not found.\n", |
146a1439 | 669 | synthesize_perf_probe_point(&pev->point)); |
0687eba7 | 670 | return -ENOENT; |
146a1439 MH |
671 | } |
672 | /* Error path : ntevs < 0 */ | |
15eca306 MH |
673 | pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs); |
674 | if (ntevs == -EBADF) { | |
675 | pr_warning("Warning: No dwarf info found in the vmlinux - " | |
676 | "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n"); | |
677 | if (!need_dwarf) { | |
0e43e5d2 | 678 | pr_debug("Trying to use symbols.\n"); |
15eca306 MH |
679 | return 0; |
680 | } | |
4b4da7f7 | 681 | } |
15eca306 | 682 | return ntevs; |
4b4da7f7 MH |
683 | } |
684 | ||
685 | #define LINEBUF_SIZE 256 | |
686 | #define NR_ADDITIONAL_LINES 2 | |
687 | ||
fde52dbd | 688 | static int __show_one_line(FILE *fp, int l, bool skip, bool show_num) |
4b4da7f7 | 689 | { |
5f03cba4 | 690 | char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE]; |
befe3414 FBH |
691 | const char *color = show_num ? "" : PERF_COLOR_BLUE; |
692 | const char *prefix = NULL; | |
4b4da7f7 | 693 | |
befe3414 | 694 | do { |
4b4da7f7 MH |
695 | if (fgets(buf, LINEBUF_SIZE, fp) == NULL) |
696 | goto error; | |
befe3414 FBH |
697 | if (skip) |
698 | continue; | |
699 | if (!prefix) { | |
700 | prefix = show_num ? "%7d " : " "; | |
701 | color_fprintf(stdout, color, prefix, l); | |
4b4da7f7 | 702 | } |
befe3414 FBH |
703 | color_fprintf(stdout, color, "%s", buf); |
704 | ||
705 | } while (strchr(buf, '\n') == NULL); | |
146a1439 | 706 | |
fde52dbd | 707 | return 1; |
4b4da7f7 | 708 | error: |
fde52dbd | 709 | if (ferror(fp)) { |
5f03cba4 MH |
710 | pr_warning("File read error: %s\n", |
711 | strerror_r(errno, sbuf, sizeof(sbuf))); | |
fde52dbd FBH |
712 | return -1; |
713 | } | |
714 | return 0; | |
715 | } | |
146a1439 | 716 | |
fde52dbd FBH |
717 | static int _show_one_line(FILE *fp, int l, bool skip, bool show_num) |
718 | { | |
719 | int rv = __show_one_line(fp, l, skip, show_num); | |
720 | if (rv == 0) { | |
721 | pr_warning("Source file is shorter than expected.\n"); | |
722 | rv = -1; | |
723 | } | |
724 | return rv; | |
4b4da7f7 MH |
725 | } |
726 | ||
fde52dbd FBH |
727 | #define show_one_line_with_num(f,l) _show_one_line(f,l,false,true) |
728 | #define show_one_line(f,l) _show_one_line(f,l,false,false) | |
729 | #define skip_one_line(f,l) _show_one_line(f,l,true,false) | |
730 | #define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false) | |
731 | ||
4b4da7f7 MH |
732 | /* |
733 | * Show line-range always requires debuginfo to find source file and | |
734 | * line number. | |
735 | */ | |
811dd2ae MH |
736 | static int __show_line_range(struct line_range *lr, const char *module, |
737 | bool user) | |
4b4da7f7 | 738 | { |
d3b63d7a | 739 | int l = 1; |
5a62257a | 740 | struct int_node *ln; |
ff741783 | 741 | struct debuginfo *dinfo; |
4b4da7f7 | 742 | FILE *fp; |
ff741783 | 743 | int ret; |
7cf0b79e | 744 | char *tmp; |
5f03cba4 | 745 | char sbuf[STRERR_BUFSIZE]; |
4b4da7f7 MH |
746 | |
747 | /* Search a line range */ | |
92561cb7 MH |
748 | dinfo = open_debuginfo(module, false); |
749 | if (!dinfo) | |
ff741783 | 750 | return -ENOENT; |
146a1439 | 751 | |
ff741783 | 752 | ret = debuginfo__find_line_range(dinfo, lr); |
811dd2ae MH |
753 | if (!ret) { /* Not found, retry with an alternative */ |
754 | ret = get_alternative_line_range(dinfo, lr, module, user); | |
755 | if (!ret) | |
756 | ret = debuginfo__find_line_range(dinfo, lr); | |
757 | } | |
ff741783 | 758 | debuginfo__delete(dinfo); |
5ee05b88 | 759 | if (ret == 0 || ret == -ENOENT) { |
146a1439 MH |
760 | pr_warning("Specified source line is not found.\n"); |
761 | return -ENOENT; | |
762 | } else if (ret < 0) { | |
5ee05b88 | 763 | pr_warning("Debuginfo analysis failed.\n"); |
146a1439 MH |
764 | return ret; |
765 | } | |
4b4da7f7 | 766 | |
7cf0b79e MH |
767 | /* Convert source file path */ |
768 | tmp = lr->path; | |
6a330a3c | 769 | ret = get_real_path(tmp, lr->comp_dir, &lr->path); |
a78604de HK |
770 | |
771 | /* Free old path when new path is assigned */ | |
772 | if (tmp != lr->path) | |
773 | free(tmp); | |
774 | ||
7cf0b79e | 775 | if (ret < 0) { |
5ee05b88 | 776 | pr_warning("Failed to find source file path.\n"); |
7cf0b79e MH |
777 | return ret; |
778 | } | |
779 | ||
4b4da7f7 MH |
780 | setup_pager(); |
781 | ||
782 | if (lr->function) | |
8737ebde | 783 | fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path, |
4b4da7f7 MH |
784 | lr->start - lr->offset); |
785 | else | |
62c15fc4 | 786 | fprintf(stdout, "<%s:%d>\n", lr->path, lr->start); |
4b4da7f7 MH |
787 | |
788 | fp = fopen(lr->path, "r"); | |
146a1439 MH |
789 | if (fp == NULL) { |
790 | pr_warning("Failed to open %s: %s\n", lr->path, | |
5f03cba4 | 791 | strerror_r(errno, sbuf, sizeof(sbuf))); |
146a1439 MH |
792 | return -errno; |
793 | } | |
4b4da7f7 | 794 | /* Skip to starting line number */ |
44b81e92 | 795 | while (l < lr->start) { |
fde52dbd | 796 | ret = skip_one_line(fp, l++); |
44b81e92 FBH |
797 | if (ret < 0) |
798 | goto end; | |
799 | } | |
4b4da7f7 | 800 | |
5a62257a MH |
801 | intlist__for_each(ln, lr->line_list) { |
802 | for (; ln->i > l; l++) { | |
fde52dbd | 803 | ret = show_one_line(fp, l - lr->offset); |
44b81e92 FBH |
804 | if (ret < 0) |
805 | goto end; | |
806 | } | |
fde52dbd | 807 | ret = show_one_line_with_num(fp, l++ - lr->offset); |
146a1439 MH |
808 | if (ret < 0) |
809 | goto end; | |
4b4da7f7 MH |
810 | } |
811 | ||
812 | if (lr->end == INT_MAX) | |
813 | lr->end = l + NR_ADDITIONAL_LINES; | |
fde52dbd FBH |
814 | while (l <= lr->end) { |
815 | ret = show_one_line_or_eof(fp, l++ - lr->offset); | |
816 | if (ret <= 0) | |
44b81e92 FBH |
817 | break; |
818 | } | |
146a1439 | 819 | end: |
4b4da7f7 | 820 | fclose(fp); |
146a1439 | 821 | return ret; |
4b4da7f7 MH |
822 | } |
823 | ||
2b394bc4 | 824 | int show_line_range(struct line_range *lr, const char *module, bool user) |
ee45b6c2 MH |
825 | { |
826 | int ret; | |
827 | ||
2b394bc4 | 828 | ret = init_symbol_maps(user); |
ee45b6c2 MH |
829 | if (ret < 0) |
830 | return ret; | |
811dd2ae | 831 | ret = __show_line_range(lr, module, user); |
ee45b6c2 MH |
832 | exit_symbol_maps(); |
833 | ||
834 | return ret; | |
835 | } | |
836 | ||
ff741783 MH |
837 | static int show_available_vars_at(struct debuginfo *dinfo, |
838 | struct perf_probe_event *pev, | |
ddb2f58f | 839 | struct strfilter *_filter) |
cf6eb489 MH |
840 | { |
841 | char *buf; | |
bd09d7b5 | 842 | int ret, i, nvars; |
cf6eb489 MH |
843 | struct str_node *node; |
844 | struct variable_list *vls = NULL, *vl; | |
9b118aca | 845 | struct perf_probe_point tmp; |
bd09d7b5 | 846 | const char *var; |
cf6eb489 MH |
847 | |
848 | buf = synthesize_perf_probe_point(&pev->point); | |
849 | if (!buf) | |
850 | return -EINVAL; | |
851 | pr_debug("Searching variables at %s\n", buf); | |
852 | ||
ddb2f58f | 853 | ret = debuginfo__find_available_vars_at(dinfo, pev, &vls); |
9b118aca | 854 | if (!ret) { /* Not found, retry with an alternative */ |
44225521 | 855 | ret = get_alternative_probe_event(dinfo, pev, &tmp); |
9b118aca MH |
856 | if (!ret) { |
857 | ret = debuginfo__find_available_vars_at(dinfo, pev, | |
ddb2f58f | 858 | &vls); |
9b118aca MH |
859 | /* Release the old probe_point */ |
860 | clear_perf_probe_point(&tmp); | |
861 | } | |
862 | } | |
bd09d7b5 | 863 | if (ret <= 0) { |
69e96eaa MH |
864 | if (ret == 0 || ret == -ENOENT) { |
865 | pr_err("Failed to find the address of %s\n", buf); | |
866 | ret = -ENOENT; | |
867 | } else | |
868 | pr_warning("Debuginfo analysis failed.\n"); | |
bd09d7b5 MH |
869 | goto end; |
870 | } | |
69e96eaa | 871 | |
bd09d7b5 MH |
872 | /* Some variables are found */ |
873 | fprintf(stdout, "Available variables at %s\n", buf); | |
874 | for (i = 0; i < ret; i++) { | |
875 | vl = &vls[i]; | |
876 | /* | |
877 | * A probe point might be converted to | |
878 | * several trace points. | |
879 | */ | |
880 | fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol, | |
881 | vl->point.offset); | |
74cf249d | 882 | zfree(&vl->point.symbol); |
bd09d7b5 MH |
883 | nvars = 0; |
884 | if (vl->vars) { | |
885 | strlist__for_each(node, vl->vars) { | |
886 | var = strchr(node->s, '\t') + 1; | |
887 | if (strfilter__compare(_filter, var)) { | |
cf6eb489 | 888 | fprintf(stdout, "\t\t%s\n", node->s); |
bd09d7b5 MH |
889 | nvars++; |
890 | } | |
891 | } | |
892 | strlist__delete(vl->vars); | |
cf6eb489 | 893 | } |
bd09d7b5 MH |
894 | if (nvars == 0) |
895 | fprintf(stdout, "\t\t(No matched variables)\n"); | |
896 | } | |
897 | free(vls); | |
898 | end: | |
cf6eb489 MH |
899 | free(buf); |
900 | return ret; | |
901 | } | |
902 | ||
903 | /* Show available variables on given probe point */ | |
904 | int show_available_vars(struct perf_probe_event *pevs, int npevs, | |
ddb2f58f | 905 | struct strfilter *_filter) |
cf6eb489 | 906 | { |
ff741783 MH |
907 | int i, ret = 0; |
908 | struct debuginfo *dinfo; | |
cf6eb489 | 909 | |
2b394bc4 | 910 | ret = init_symbol_maps(pevs->uprobes); |
cf6eb489 MH |
911 | if (ret < 0) |
912 | return ret; | |
913 | ||
44225521 | 914 | dinfo = open_debuginfo(pevs->target, false); |
ff741783 | 915 | if (!dinfo) { |
ee45b6c2 MH |
916 | ret = -ENOENT; |
917 | goto out; | |
ff741783 MH |
918 | } |
919 | ||
cf6eb489 MH |
920 | setup_pager(); |
921 | ||
ff741783 | 922 | for (i = 0; i < npevs && ret >= 0; i++) |
ddb2f58f | 923 | ret = show_available_vars_at(dinfo, &pevs[i], _filter); |
ff741783 MH |
924 | |
925 | debuginfo__delete(dinfo); | |
ee45b6c2 MH |
926 | out: |
927 | exit_symbol_maps(); | |
cf6eb489 MH |
928 | return ret; |
929 | } | |
930 | ||
89fe808a | 931 | #else /* !HAVE_DWARF_SUPPORT */ |
4b4da7f7 | 932 | |
5a6f6314 MH |
933 | static int |
934 | find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused, | |
935 | struct perf_probe_point *pp __maybe_unused, | |
936 | bool is_kprobe __maybe_unused) | |
4b4da7f7 | 937 | { |
5a6f6314 | 938 | return -ENOSYS; |
4b4da7f7 MH |
939 | } |
940 | ||
0e60836b | 941 | static int try_to_find_probe_trace_events(struct perf_probe_event *pev, |
ddb2f58f | 942 | struct probe_trace_event **tevs __maybe_unused) |
4b4da7f7 | 943 | { |
146a1439 MH |
944 | if (perf_probe_event_need_dwarf(pev)) { |
945 | pr_warning("Debuginfo-analysis is not supported.\n"); | |
946 | return -ENOSYS; | |
947 | } | |
225466f1 | 948 | |
4b4da7f7 MH |
949 | return 0; |
950 | } | |
951 | ||
1d037ca1 | 952 | int show_line_range(struct line_range *lr __maybe_unused, |
2b394bc4 MH |
953 | const char *module __maybe_unused, |
954 | bool user __maybe_unused) | |
4b4da7f7 | 955 | { |
146a1439 MH |
956 | pr_warning("Debuginfo-analysis is not supported.\n"); |
957 | return -ENOSYS; | |
4b4da7f7 MH |
958 | } |
959 | ||
1d037ca1 | 960 | int show_available_vars(struct perf_probe_event *pevs __maybe_unused, |
ddb2f58f MH |
961 | int npevs __maybe_unused, |
962 | struct strfilter *filter __maybe_unused) | |
cf6eb489 MH |
963 | { |
964 | pr_warning("Debuginfo-analysis is not supported.\n"); | |
965 | return -ENOSYS; | |
966 | } | |
e0faa8d3 MH |
967 | #endif |
968 | ||
e53b00d3 MH |
969 | void line_range__clear(struct line_range *lr) |
970 | { | |
e53b00d3 MH |
971 | free(lr->function); |
972 | free(lr->file); | |
973 | free(lr->path); | |
974 | free(lr->comp_dir); | |
5a62257a | 975 | intlist__delete(lr->line_list); |
e53b00d3 MH |
976 | memset(lr, 0, sizeof(*lr)); |
977 | } | |
978 | ||
5a62257a | 979 | int line_range__init(struct line_range *lr) |
e53b00d3 MH |
980 | { |
981 | memset(lr, 0, sizeof(*lr)); | |
5a62257a MH |
982 | lr->line_list = intlist__new(NULL); |
983 | if (!lr->line_list) | |
984 | return -ENOMEM; | |
985 | else | |
986 | return 0; | |
e53b00d3 MH |
987 | } |
988 | ||
21dd9ae5 FBH |
989 | static int parse_line_num(char **ptr, int *val, const char *what) |
990 | { | |
991 | const char *start = *ptr; | |
992 | ||
993 | errno = 0; | |
994 | *val = strtol(*ptr, ptr, 0); | |
995 | if (errno || *ptr == start) { | |
996 | semantic_error("'%s' is not a valid number.\n", what); | |
997 | return -EINVAL; | |
998 | } | |
999 | return 0; | |
1000 | } | |
1001 | ||
573709fd MH |
1002 | /* Check the name is good for event, group or function */ |
1003 | static bool is_c_func_name(const char *name) | |
1004 | { | |
1005 | if (!isalpha(*name) && *name != '_') | |
1006 | return false; | |
1007 | while (*++name != '\0') { | |
1008 | if (!isalpha(*name) && !isdigit(*name) && *name != '_') | |
1009 | return false; | |
1010 | } | |
1011 | return true; | |
1012 | } | |
1013 | ||
9d95b580 FBH |
1014 | /* |
1015 | * Stuff 'lr' according to the line range described by 'arg'. | |
1016 | * The line range syntax is described by: | |
1017 | * | |
1018 | * SRC[:SLN[+NUM|-ELN]] | |
e116dfa1 | 1019 | * FNC[@SRC][:SLN[+NUM|-ELN]] |
9d95b580 | 1020 | */ |
146a1439 | 1021 | int parse_line_range_desc(const char *arg, struct line_range *lr) |
631c9def | 1022 | { |
e116dfa1 | 1023 | char *range, *file, *name = strdup(arg); |
21dd9ae5 FBH |
1024 | int err; |
1025 | ||
1026 | if (!name) | |
1027 | return -ENOMEM; | |
1028 | ||
1029 | lr->start = 0; | |
1030 | lr->end = INT_MAX; | |
1031 | ||
1032 | range = strchr(name, ':'); | |
1033 | if (range) { | |
1034 | *range++ = '\0'; | |
1035 | ||
1036 | err = parse_line_num(&range, &lr->start, "start line"); | |
1037 | if (err) | |
1038 | goto err; | |
1039 | ||
1040 | if (*range == '+' || *range == '-') { | |
1041 | const char c = *range++; | |
1042 | ||
1043 | err = parse_line_num(&range, &lr->end, "end line"); | |
1044 | if (err) | |
1045 | goto err; | |
1046 | ||
1047 | if (c == '+') { | |
1048 | lr->end += lr->start; | |
1049 | /* | |
1050 | * Adjust the number of lines here. | |
1051 | * If the number of lines == 1, the | |
1052 | * the end of line should be equal to | |
1053 | * the start of line. | |
1054 | */ | |
1055 | lr->end--; | |
1056 | } | |
1057 | } | |
9d95b580 | 1058 | |
d3b63d7a | 1059 | pr_debug("Line range is %d to %d\n", lr->start, lr->end); |
21dd9ae5 FBH |
1060 | |
1061 | err = -EINVAL; | |
d3b63d7a | 1062 | if (lr->start > lr->end) { |
631c9def | 1063 | semantic_error("Start line must be smaller" |
146a1439 | 1064 | " than end line.\n"); |
21dd9ae5 | 1065 | goto err; |
146a1439 | 1066 | } |
21dd9ae5 FBH |
1067 | if (*range != '\0') { |
1068 | semantic_error("Tailing with invalid str '%s'.\n", range); | |
1069 | goto err; | |
146a1439 | 1070 | } |
d3b63d7a | 1071 | } |
02b95dad | 1072 | |
e116dfa1 MH |
1073 | file = strchr(name, '@'); |
1074 | if (file) { | |
1075 | *file = '\0'; | |
1076 | lr->file = strdup(++file); | |
1077 | if (lr->file == NULL) { | |
1078 | err = -ENOMEM; | |
1079 | goto err; | |
1080 | } | |
1081 | lr->function = name; | |
573709fd | 1082 | } else if (strchr(name, '/') || strchr(name, '.')) |
21dd9ae5 | 1083 | lr->file = name; |
573709fd | 1084 | else if (is_c_func_name(name))/* We reuse it for checking funcname */ |
21dd9ae5 | 1085 | lr->function = name; |
573709fd MH |
1086 | else { /* Invalid name */ |
1087 | semantic_error("'%s' is not a valid function name.\n", name); | |
1088 | err = -EINVAL; | |
1089 | goto err; | |
1090 | } | |
146a1439 MH |
1091 | |
1092 | return 0; | |
21dd9ae5 FBH |
1093 | err: |
1094 | free(name); | |
1095 | return err; | |
631c9def MH |
1096 | } |
1097 | ||
50656eec | 1098 | /* Parse probepoint definition. */ |
146a1439 | 1099 | static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev) |
50656eec | 1100 | { |
4235b045 | 1101 | struct perf_probe_point *pp = &pev->point; |
50656eec MH |
1102 | char *ptr, *tmp; |
1103 | char c, nc = 0; | |
3099c026 | 1104 | bool file_spec = false; |
50656eec MH |
1105 | /* |
1106 | * <Syntax> | |
2a9c8c36 MH |
1107 | * perf probe [EVENT=]SRC[:LN|;PTN] |
1108 | * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT] | |
af663d75 MH |
1109 | * |
1110 | * TODO:Group name support | |
50656eec | 1111 | */ |
e59d29e8 WN |
1112 | if (!arg) |
1113 | return -EINVAL; | |
50656eec | 1114 | |
2a9c8c36 MH |
1115 | ptr = strpbrk(arg, ";=@+%"); |
1116 | if (ptr && *ptr == '=') { /* Event name */ | |
af663d75 MH |
1117 | *ptr = '\0'; |
1118 | tmp = ptr + 1; | |
146a1439 MH |
1119 | if (strchr(arg, ':')) { |
1120 | semantic_error("Group name is not supported yet.\n"); | |
1121 | return -ENOTSUP; | |
1122 | } | |
573709fd | 1123 | if (!is_c_func_name(arg)) { |
b7702a21 | 1124 | semantic_error("%s is bad for event name -it must " |
146a1439 MH |
1125 | "follow C symbol-naming rule.\n", arg); |
1126 | return -EINVAL; | |
1127 | } | |
02b95dad MH |
1128 | pev->event = strdup(arg); |
1129 | if (pev->event == NULL) | |
1130 | return -ENOMEM; | |
4235b045 | 1131 | pev->group = NULL; |
af663d75 MH |
1132 | arg = tmp; |
1133 | } | |
1134 | ||
3099c026 NR |
1135 | /* |
1136 | * Check arg is function or file name and copy it. | |
1137 | * | |
1138 | * We consider arg to be a file spec if and only if it satisfies | |
1139 | * all of the below criteria:: | |
1140 | * - it does not include any of "+@%", | |
1141 | * - it includes one of ":;", and | |
1142 | * - it has a period '.' in the name. | |
1143 | * | |
1144 | * Otherwise, we consider arg to be a function specification. | |
1145 | */ | |
1146 | if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) { | |
1147 | /* This is a file spec if it includes a '.' before ; or : */ | |
1148 | if (memchr(arg, '.', ptr - arg)) | |
1149 | file_spec = true; | |
1150 | } | |
1151 | ||
2a9c8c36 | 1152 | ptr = strpbrk(arg, ";:+@%"); |
50656eec MH |
1153 | if (ptr) { |
1154 | nc = *ptr; | |
1155 | *ptr++ = '\0'; | |
1156 | } | |
1157 | ||
02b95dad MH |
1158 | tmp = strdup(arg); |
1159 | if (tmp == NULL) | |
1160 | return -ENOMEM; | |
1161 | ||
3099c026 | 1162 | if (file_spec) |
02b95dad | 1163 | pp->file = tmp; |
3099c026 | 1164 | else |
02b95dad | 1165 | pp->function = tmp; |
50656eec MH |
1166 | |
1167 | /* Parse other options */ | |
1168 | while (ptr) { | |
1169 | arg = ptr; | |
1170 | c = nc; | |
2a9c8c36 | 1171 | if (c == ';') { /* Lazy pattern must be the last part */ |
02b95dad MH |
1172 | pp->lazy_line = strdup(arg); |
1173 | if (pp->lazy_line == NULL) | |
1174 | return -ENOMEM; | |
2a9c8c36 MH |
1175 | break; |
1176 | } | |
1177 | ptr = strpbrk(arg, ";:+@%"); | |
50656eec MH |
1178 | if (ptr) { |
1179 | nc = *ptr; | |
1180 | *ptr++ = '\0'; | |
1181 | } | |
1182 | switch (c) { | |
1183 | case ':': /* Line number */ | |
1184 | pp->line = strtoul(arg, &tmp, 0); | |
146a1439 | 1185 | if (*tmp != '\0') { |
2a9c8c36 | 1186 | semantic_error("There is non-digit char" |
146a1439 MH |
1187 | " in line number.\n"); |
1188 | return -EINVAL; | |
1189 | } | |
50656eec MH |
1190 | break; |
1191 | case '+': /* Byte offset from a symbol */ | |
1192 | pp->offset = strtoul(arg, &tmp, 0); | |
146a1439 | 1193 | if (*tmp != '\0') { |
2a9c8c36 | 1194 | semantic_error("There is non-digit character" |
146a1439 MH |
1195 | " in offset.\n"); |
1196 | return -EINVAL; | |
1197 | } | |
50656eec MH |
1198 | break; |
1199 | case '@': /* File name */ | |
146a1439 MH |
1200 | if (pp->file) { |
1201 | semantic_error("SRC@SRC is not allowed.\n"); | |
1202 | return -EINVAL; | |
1203 | } | |
02b95dad MH |
1204 | pp->file = strdup(arg); |
1205 | if (pp->file == NULL) | |
1206 | return -ENOMEM; | |
50656eec MH |
1207 | break; |
1208 | case '%': /* Probe places */ | |
1209 | if (strcmp(arg, "return") == 0) { | |
1210 | pp->retprobe = 1; | |
146a1439 MH |
1211 | } else { /* Others not supported yet */ |
1212 | semantic_error("%%%s is not supported.\n", arg); | |
1213 | return -ENOTSUP; | |
1214 | } | |
50656eec | 1215 | break; |
146a1439 MH |
1216 | default: /* Buggy case */ |
1217 | pr_err("This program has a bug at %s:%d.\n", | |
1218 | __FILE__, __LINE__); | |
1219 | return -ENOTSUP; | |
50656eec MH |
1220 | break; |
1221 | } | |
1222 | } | |
1223 | ||
1224 | /* Exclusion check */ | |
146a1439 | 1225 | if (pp->lazy_line && pp->line) { |
0e43e5d2 MH |
1226 | semantic_error("Lazy pattern can't be used with" |
1227 | " line number.\n"); | |
146a1439 MH |
1228 | return -EINVAL; |
1229 | } | |
2a9c8c36 | 1230 | |
146a1439 | 1231 | if (pp->lazy_line && pp->offset) { |
0e43e5d2 | 1232 | semantic_error("Lazy pattern can't be used with offset.\n"); |
146a1439 MH |
1233 | return -EINVAL; |
1234 | } | |
2a9c8c36 | 1235 | |
146a1439 | 1236 | if (pp->line && pp->offset) { |
0e43e5d2 | 1237 | semantic_error("Offset can't be used with line number.\n"); |
146a1439 MH |
1238 | return -EINVAL; |
1239 | } | |
50656eec | 1240 | |
146a1439 | 1241 | if (!pp->line && !pp->lazy_line && pp->file && !pp->function) { |
2a9c8c36 | 1242 | semantic_error("File always requires line number or " |
0e43e5d2 | 1243 | "lazy pattern.\n"); |
146a1439 MH |
1244 | return -EINVAL; |
1245 | } | |
50656eec | 1246 | |
146a1439 | 1247 | if (pp->offset && !pp->function) { |
0e43e5d2 | 1248 | semantic_error("Offset requires an entry function.\n"); |
146a1439 MH |
1249 | return -EINVAL; |
1250 | } | |
50656eec | 1251 | |
146a1439 | 1252 | if (pp->retprobe && !pp->function) { |
0e43e5d2 | 1253 | semantic_error("Return probe requires an entry function.\n"); |
146a1439 MH |
1254 | return -EINVAL; |
1255 | } | |
50656eec | 1256 | |
146a1439 | 1257 | if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) { |
2a9c8c36 | 1258 | semantic_error("Offset/Line/Lazy pattern can't be used with " |
0e43e5d2 | 1259 | "return probe.\n"); |
146a1439 MH |
1260 | return -EINVAL; |
1261 | } | |
50656eec | 1262 | |
4235b045 | 1263 | pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n", |
2a9c8c36 MH |
1264 | pp->function, pp->file, pp->line, pp->offset, pp->retprobe, |
1265 | pp->lazy_line); | |
146a1439 | 1266 | return 0; |
50656eec MH |
1267 | } |
1268 | ||
7df2f329 | 1269 | /* Parse perf-probe event argument */ |
146a1439 | 1270 | static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg) |
7df2f329 | 1271 | { |
b2a3c12b | 1272 | char *tmp, *goodname; |
7df2f329 MH |
1273 | struct perf_probe_arg_field **fieldp; |
1274 | ||
1275 | pr_debug("parsing arg: %s into ", str); | |
1276 | ||
48481938 MH |
1277 | tmp = strchr(str, '='); |
1278 | if (tmp) { | |
02b95dad MH |
1279 | arg->name = strndup(str, tmp - str); |
1280 | if (arg->name == NULL) | |
1281 | return -ENOMEM; | |
11a1ca35 | 1282 | pr_debug("name:%s ", arg->name); |
48481938 MH |
1283 | str = tmp + 1; |
1284 | } | |
1285 | ||
11a1ca35 MH |
1286 | tmp = strchr(str, ':'); |
1287 | if (tmp) { /* Type setting */ | |
1288 | *tmp = '\0'; | |
02b95dad MH |
1289 | arg->type = strdup(tmp + 1); |
1290 | if (arg->type == NULL) | |
1291 | return -ENOMEM; | |
11a1ca35 MH |
1292 | pr_debug("type:%s ", arg->type); |
1293 | } | |
1294 | ||
b2a3c12b | 1295 | tmp = strpbrk(str, "-.["); |
7df2f329 MH |
1296 | if (!is_c_varname(str) || !tmp) { |
1297 | /* A variable, register, symbol or special value */ | |
02b95dad MH |
1298 | arg->var = strdup(str); |
1299 | if (arg->var == NULL) | |
1300 | return -ENOMEM; | |
48481938 | 1301 | pr_debug("%s\n", arg->var); |
146a1439 | 1302 | return 0; |
7df2f329 MH |
1303 | } |
1304 | ||
b2a3c12b | 1305 | /* Structure fields or array element */ |
02b95dad MH |
1306 | arg->var = strndup(str, tmp - str); |
1307 | if (arg->var == NULL) | |
1308 | return -ENOMEM; | |
b2a3c12b | 1309 | goodname = arg->var; |
48481938 | 1310 | pr_debug("%s, ", arg->var); |
7df2f329 MH |
1311 | fieldp = &arg->field; |
1312 | ||
1313 | do { | |
e334016f MH |
1314 | *fieldp = zalloc(sizeof(struct perf_probe_arg_field)); |
1315 | if (*fieldp == NULL) | |
1316 | return -ENOMEM; | |
b2a3c12b MH |
1317 | if (*tmp == '[') { /* Array */ |
1318 | str = tmp; | |
1319 | (*fieldp)->index = strtol(str + 1, &tmp, 0); | |
7df2f329 | 1320 | (*fieldp)->ref = true; |
b2a3c12b MH |
1321 | if (*tmp != ']' || tmp == str + 1) { |
1322 | semantic_error("Array index must be a" | |
1323 | " number.\n"); | |
1324 | return -EINVAL; | |
1325 | } | |
1326 | tmp++; | |
1327 | if (*tmp == '\0') | |
1328 | tmp = NULL; | |
1329 | } else { /* Structure */ | |
1330 | if (*tmp == '.') { | |
1331 | str = tmp + 1; | |
1332 | (*fieldp)->ref = false; | |
1333 | } else if (tmp[1] == '>') { | |
1334 | str = tmp + 2; | |
1335 | (*fieldp)->ref = true; | |
1336 | } else { | |
1337 | semantic_error("Argument parse error: %s\n", | |
1338 | str); | |
1339 | return -EINVAL; | |
1340 | } | |
1341 | tmp = strpbrk(str, "-.["); | |
146a1439 | 1342 | } |
7df2f329 | 1343 | if (tmp) { |
02b95dad MH |
1344 | (*fieldp)->name = strndup(str, tmp - str); |
1345 | if ((*fieldp)->name == NULL) | |
1346 | return -ENOMEM; | |
b2a3c12b MH |
1347 | if (*str != '[') |
1348 | goodname = (*fieldp)->name; | |
7df2f329 MH |
1349 | pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref); |
1350 | fieldp = &(*fieldp)->next; | |
1351 | } | |
1352 | } while (tmp); | |
02b95dad MH |
1353 | (*fieldp)->name = strdup(str); |
1354 | if ((*fieldp)->name == NULL) | |
1355 | return -ENOMEM; | |
b2a3c12b MH |
1356 | if (*str != '[') |
1357 | goodname = (*fieldp)->name; | |
7df2f329 | 1358 | pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref); |
df0faf4b | 1359 | |
b2a3c12b | 1360 | /* If no name is specified, set the last field name (not array index)*/ |
02b95dad | 1361 | if (!arg->name) { |
b2a3c12b | 1362 | arg->name = strdup(goodname); |
02b95dad MH |
1363 | if (arg->name == NULL) |
1364 | return -ENOMEM; | |
1365 | } | |
146a1439 | 1366 | return 0; |
7df2f329 MH |
1367 | } |
1368 | ||
4235b045 | 1369 | /* Parse perf-probe event command */ |
146a1439 | 1370 | int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev) |
50656eec | 1371 | { |
e1c01d61 | 1372 | char **argv; |
146a1439 | 1373 | int argc, i, ret = 0; |
fac13fd5 | 1374 | |
4235b045 | 1375 | argv = argv_split(cmd, &argc); |
146a1439 MH |
1376 | if (!argv) { |
1377 | pr_debug("Failed to split arguments.\n"); | |
1378 | return -ENOMEM; | |
1379 | } | |
1380 | if (argc - 1 > MAX_PROBE_ARGS) { | |
1381 | semantic_error("Too many probe arguments (%d).\n", argc - 1); | |
1382 | ret = -ERANGE; | |
1383 | goto out; | |
1384 | } | |
50656eec | 1385 | /* Parse probe point */ |
146a1439 MH |
1386 | ret = parse_perf_probe_point(argv[0], pev); |
1387 | if (ret < 0) | |
1388 | goto out; | |
50656eec | 1389 | |
e1c01d61 | 1390 | /* Copy arguments and ensure return probe has no C argument */ |
4235b045 | 1391 | pev->nargs = argc - 1; |
e334016f MH |
1392 | pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs); |
1393 | if (pev->args == NULL) { | |
1394 | ret = -ENOMEM; | |
1395 | goto out; | |
1396 | } | |
146a1439 MH |
1397 | for (i = 0; i < pev->nargs && ret >= 0; i++) { |
1398 | ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]); | |
1399 | if (ret >= 0 && | |
1400 | is_c_varname(pev->args[i].var) && pev->point.retprobe) { | |
4235b045 | 1401 | semantic_error("You can't specify local variable for" |
146a1439 MH |
1402 | " kretprobe.\n"); |
1403 | ret = -EINVAL; | |
1404 | } | |
e1c01d61 | 1405 | } |
146a1439 | 1406 | out: |
e1c01d61 | 1407 | argv_free(argv); |
146a1439 MH |
1408 | |
1409 | return ret; | |
50656eec MH |
1410 | } |
1411 | ||
4235b045 MH |
1412 | /* Return true if this perf_probe_event requires debuginfo */ |
1413 | bool perf_probe_event_need_dwarf(struct perf_probe_event *pev) | |
1414 | { | |
1415 | int i; | |
1416 | ||
1417 | if (pev->point.file || pev->point.line || pev->point.lazy_line) | |
1418 | return true; | |
1419 | ||
1420 | for (i = 0; i < pev->nargs; i++) | |
48481938 | 1421 | if (is_c_varname(pev->args[i].var)) |
4235b045 MH |
1422 | return true; |
1423 | ||
1424 | return false; | |
1425 | } | |
1426 | ||
0e60836b SD |
1427 | /* Parse probe_events event into struct probe_point */ |
1428 | static int parse_probe_trace_command(const char *cmd, | |
190b57fc | 1429 | struct probe_trace_event *tev) |
4de189fe | 1430 | { |
0e60836b | 1431 | struct probe_trace_point *tp = &tev->point; |
4de189fe MH |
1432 | char pr; |
1433 | char *p; | |
bcbd0040 | 1434 | char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str; |
4de189fe MH |
1435 | int ret, i, argc; |
1436 | char **argv; | |
1437 | ||
0e60836b | 1438 | pr_debug("Parsing probe_events: %s\n", cmd); |
4235b045 | 1439 | argv = argv_split(cmd, &argc); |
146a1439 MH |
1440 | if (!argv) { |
1441 | pr_debug("Failed to split arguments.\n"); | |
1442 | return -ENOMEM; | |
1443 | } | |
1444 | if (argc < 2) { | |
1445 | semantic_error("Too few probe arguments.\n"); | |
1446 | ret = -ERANGE; | |
1447 | goto out; | |
1448 | } | |
4de189fe MH |
1449 | |
1450 | /* Scan event and group name. */ | |
bcbd0040 IT |
1451 | argv0_str = strdup(argv[0]); |
1452 | if (argv0_str == NULL) { | |
1453 | ret = -ENOMEM; | |
1454 | goto out; | |
1455 | } | |
1456 | fmt1_str = strtok_r(argv0_str, ":", &fmt); | |
1457 | fmt2_str = strtok_r(NULL, "/", &fmt); | |
1458 | fmt3_str = strtok_r(NULL, " \t", &fmt); | |
1459 | if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL | |
1460 | || fmt3_str == NULL) { | |
146a1439 MH |
1461 | semantic_error("Failed to parse event name: %s\n", argv[0]); |
1462 | ret = -EINVAL; | |
1463 | goto out; | |
1464 | } | |
bcbd0040 IT |
1465 | pr = fmt1_str[0]; |
1466 | tev->group = strdup(fmt2_str); | |
1467 | tev->event = strdup(fmt3_str); | |
1468 | if (tev->group == NULL || tev->event == NULL) { | |
1469 | ret = -ENOMEM; | |
1470 | goto out; | |
1471 | } | |
4235b045 | 1472 | pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr); |
4de189fe | 1473 | |
4235b045 | 1474 | tp->retprobe = (pr == 'r'); |
4de189fe | 1475 | |
190b57fc MH |
1476 | /* Scan module name(if there), function name and offset */ |
1477 | p = strchr(argv[1], ':'); | |
1478 | if (p) { | |
1479 | tp->module = strndup(argv[1], p - argv[1]); | |
1480 | p++; | |
1481 | } else | |
1482 | p = argv[1]; | |
bcbd0040 | 1483 | fmt1_str = strtok_r(p, "+", &fmt); |
5a6f6314 MH |
1484 | if (fmt1_str[0] == '0') /* only the address started with 0x */ |
1485 | tp->address = strtoul(fmt1_str, NULL, 0); | |
1486 | else { | |
1487 | /* Only the symbol-based probe has offset */ | |
1488 | tp->symbol = strdup(fmt1_str); | |
1489 | if (tp->symbol == NULL) { | |
1490 | ret = -ENOMEM; | |
1491 | goto out; | |
1492 | } | |
1493 | fmt2_str = strtok_r(NULL, "", &fmt); | |
1494 | if (fmt2_str == NULL) | |
1495 | tp->offset = 0; | |
1496 | else | |
1497 | tp->offset = strtoul(fmt2_str, NULL, 10); | |
bcbd0040 | 1498 | } |
4de189fe | 1499 | |
4235b045 | 1500 | tev->nargs = argc - 2; |
0e60836b | 1501 | tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs); |
e334016f MH |
1502 | if (tev->args == NULL) { |
1503 | ret = -ENOMEM; | |
1504 | goto out; | |
1505 | } | |
4235b045 | 1506 | for (i = 0; i < tev->nargs; i++) { |
4de189fe MH |
1507 | p = strchr(argv[i + 2], '='); |
1508 | if (p) /* We don't need which register is assigned. */ | |
4235b045 MH |
1509 | *p++ = '\0'; |
1510 | else | |
1511 | p = argv[i + 2]; | |
02b95dad | 1512 | tev->args[i].name = strdup(argv[i + 2]); |
4235b045 | 1513 | /* TODO: parse regs and offset */ |
02b95dad MH |
1514 | tev->args[i].value = strdup(p); |
1515 | if (tev->args[i].name == NULL || tev->args[i].value == NULL) { | |
1516 | ret = -ENOMEM; | |
1517 | goto out; | |
1518 | } | |
4de189fe | 1519 | } |
146a1439 MH |
1520 | ret = 0; |
1521 | out: | |
bcbd0040 | 1522 | free(argv0_str); |
4de189fe | 1523 | argv_free(argv); |
146a1439 | 1524 | return ret; |
4de189fe MH |
1525 | } |
1526 | ||
7df2f329 MH |
1527 | /* Compose only probe arg */ |
1528 | int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len) | |
1529 | { | |
1530 | struct perf_probe_arg_field *field = pa->field; | |
1531 | int ret; | |
1532 | char *tmp = buf; | |
1533 | ||
48481938 MH |
1534 | if (pa->name && pa->var) |
1535 | ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var); | |
1536 | else | |
1537 | ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var); | |
7df2f329 MH |
1538 | if (ret <= 0) |
1539 | goto error; | |
1540 | tmp += ret; | |
1541 | len -= ret; | |
1542 | ||
1543 | while (field) { | |
b2a3c12b MH |
1544 | if (field->name[0] == '[') |
1545 | ret = e_snprintf(tmp, len, "%s", field->name); | |
1546 | else | |
1547 | ret = e_snprintf(tmp, len, "%s%s", | |
1548 | field->ref ? "->" : ".", field->name); | |
7df2f329 MH |
1549 | if (ret <= 0) |
1550 | goto error; | |
1551 | tmp += ret; | |
1552 | len -= ret; | |
1553 | field = field->next; | |
1554 | } | |
11a1ca35 MH |
1555 | |
1556 | if (pa->type) { | |
1557 | ret = e_snprintf(tmp, len, ":%s", pa->type); | |
1558 | if (ret <= 0) | |
1559 | goto error; | |
1560 | tmp += ret; | |
1561 | len -= ret; | |
1562 | } | |
1563 | ||
7df2f329 MH |
1564 | return tmp - buf; |
1565 | error: | |
5f03cba4 | 1566 | pr_debug("Failed to synthesize perf probe argument: %d\n", ret); |
146a1439 | 1567 | return ret; |
7df2f329 MH |
1568 | } |
1569 | ||
4235b045 MH |
1570 | /* Compose only probe point (not argument) */ |
1571 | static char *synthesize_perf_probe_point(struct perf_probe_point *pp) | |
4de189fe | 1572 | { |
fb1587d8 MH |
1573 | char *buf, *tmp; |
1574 | char offs[32] = "", line[32] = "", file[32] = ""; | |
1575 | int ret, len; | |
4de189fe | 1576 | |
e334016f MH |
1577 | buf = zalloc(MAX_CMDLEN); |
1578 | if (buf == NULL) { | |
1579 | ret = -ENOMEM; | |
1580 | goto error; | |
1581 | } | |
4de189fe | 1582 | if (pp->offset) { |
fb1587d8 | 1583 | ret = e_snprintf(offs, 32, "+%lu", pp->offset); |
4de189fe MH |
1584 | if (ret <= 0) |
1585 | goto error; | |
1586 | } | |
1587 | if (pp->line) { | |
fb1587d8 MH |
1588 | ret = e_snprintf(line, 32, ":%d", pp->line); |
1589 | if (ret <= 0) | |
1590 | goto error; | |
1591 | } | |
1592 | if (pp->file) { | |
32ae2ade FBH |
1593 | tmp = pp->file; |
1594 | len = strlen(tmp); | |
1595 | if (len > 30) { | |
1596 | tmp = strchr(pp->file + len - 30, '/'); | |
1597 | tmp = tmp ? tmp + 1 : pp->file + len - 30; | |
1598 | } | |
1599 | ret = e_snprintf(file, 32, "@%s", tmp); | |
4de189fe MH |
1600 | if (ret <= 0) |
1601 | goto error; | |
1602 | } | |
1603 | ||
1604 | if (pp->function) | |
fb1587d8 MH |
1605 | ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function, |
1606 | offs, pp->retprobe ? "%return" : "", line, | |
1607 | file); | |
4de189fe | 1608 | else |
fb1587d8 | 1609 | ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line); |
4235b045 MH |
1610 | if (ret <= 0) |
1611 | goto error; | |
1612 | ||
1613 | return buf; | |
7ef17aaf | 1614 | error: |
5f03cba4 | 1615 | pr_debug("Failed to synthesize perf probe point: %d\n", ret); |
f5385650 | 1616 | free(buf); |
146a1439 | 1617 | return NULL; |
7ef17aaf MH |
1618 | } |
1619 | ||
4235b045 MH |
1620 | #if 0 |
1621 | char *synthesize_perf_probe_command(struct perf_probe_event *pev) | |
7ef17aaf MH |
1622 | { |
1623 | char *buf; | |
1624 | int i, len, ret; | |
1625 | ||
4235b045 MH |
1626 | buf = synthesize_perf_probe_point(&pev->point); |
1627 | if (!buf) | |
1628 | return NULL; | |
4de189fe | 1629 | |
4235b045 MH |
1630 | len = strlen(buf); |
1631 | for (i = 0; i < pev->nargs; i++) { | |
4de189fe | 1632 | ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s", |
4235b045 MH |
1633 | pev->args[i].name); |
1634 | if (ret <= 0) { | |
1635 | free(buf); | |
1636 | return NULL; | |
1637 | } | |
4de189fe MH |
1638 | len += ret; |
1639 | } | |
4de189fe | 1640 | |
4235b045 MH |
1641 | return buf; |
1642 | } | |
1643 | #endif | |
1644 | ||
0e60836b | 1645 | static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref, |
4235b045 MH |
1646 | char **buf, size_t *buflen, |
1647 | int depth) | |
1648 | { | |
1649 | int ret; | |
1650 | if (ref->next) { | |
0e60836b | 1651 | depth = __synthesize_probe_trace_arg_ref(ref->next, buf, |
4235b045 MH |
1652 | buflen, depth + 1); |
1653 | if (depth < 0) | |
1654 | goto out; | |
1655 | } | |
1656 | ||
1657 | ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset); | |
1658 | if (ret < 0) | |
1659 | depth = ret; | |
1660 | else { | |
1661 | *buf += ret; | |
1662 | *buflen -= ret; | |
1663 | } | |
1664 | out: | |
1665 | return depth; | |
4de189fe | 1666 | |
4de189fe MH |
1667 | } |
1668 | ||
0e60836b | 1669 | static int synthesize_probe_trace_arg(struct probe_trace_arg *arg, |
4235b045 | 1670 | char *buf, size_t buflen) |
50656eec | 1671 | { |
0e60836b | 1672 | struct probe_trace_arg_ref *ref = arg->ref; |
4235b045 MH |
1673 | int ret, depth = 0; |
1674 | char *tmp = buf; | |
1675 | ||
1676 | /* Argument name or separator */ | |
1677 | if (arg->name) | |
1678 | ret = e_snprintf(buf, buflen, " %s=", arg->name); | |
1679 | else | |
1680 | ret = e_snprintf(buf, buflen, " "); | |
1681 | if (ret < 0) | |
1682 | return ret; | |
1683 | buf += ret; | |
1684 | buflen -= ret; | |
1685 | ||
b7dcb857 MH |
1686 | /* Special case: @XXX */ |
1687 | if (arg->value[0] == '@' && arg->ref) | |
1688 | ref = ref->next; | |
1689 | ||
4235b045 | 1690 | /* Dereferencing arguments */ |
b7dcb857 | 1691 | if (ref) { |
0e60836b | 1692 | depth = __synthesize_probe_trace_arg_ref(ref, &buf, |
4235b045 MH |
1693 | &buflen, 1); |
1694 | if (depth < 0) | |
1695 | return depth; | |
1696 | } | |
1697 | ||
1698 | /* Print argument value */ | |
b7dcb857 MH |
1699 | if (arg->value[0] == '@' && arg->ref) |
1700 | ret = e_snprintf(buf, buflen, "%s%+ld", arg->value, | |
1701 | arg->ref->offset); | |
1702 | else | |
1703 | ret = e_snprintf(buf, buflen, "%s", arg->value); | |
4235b045 MH |
1704 | if (ret < 0) |
1705 | return ret; | |
1706 | buf += ret; | |
1707 | buflen -= ret; | |
1708 | ||
1709 | /* Closing */ | |
1710 | while (depth--) { | |
1711 | ret = e_snprintf(buf, buflen, ")"); | |
1712 | if (ret < 0) | |
1713 | return ret; | |
1714 | buf += ret; | |
1715 | buflen -= ret; | |
1716 | } | |
4984912e MH |
1717 | /* Print argument type */ |
1718 | if (arg->type) { | |
1719 | ret = e_snprintf(buf, buflen, ":%s", arg->type); | |
1720 | if (ret <= 0) | |
1721 | return ret; | |
1722 | buf += ret; | |
1723 | } | |
4235b045 MH |
1724 | |
1725 | return buf - tmp; | |
1726 | } | |
1727 | ||
0e60836b | 1728 | char *synthesize_probe_trace_command(struct probe_trace_event *tev) |
4235b045 | 1729 | { |
0e60836b | 1730 | struct probe_trace_point *tp = &tev->point; |
50656eec MH |
1731 | char *buf; |
1732 | int i, len, ret; | |
1733 | ||
e334016f MH |
1734 | buf = zalloc(MAX_CMDLEN); |
1735 | if (buf == NULL) | |
1736 | return NULL; | |
1737 | ||
eb948e50 MH |
1738 | len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s ", tp->retprobe ? 'r' : 'p', |
1739 | tev->group, tev->event); | |
1740 | if (len <= 0) | |
1741 | goto error; | |
1742 | ||
1743 | /* Uprobes must have tp->address and tp->module */ | |
1744 | if (tev->uprobes && (!tp->address || !tp->module)) | |
1745 | goto error; | |
1746 | ||
1747 | /* Use the tp->address for uprobes */ | |
225466f1 | 1748 | if (tev->uprobes) |
eb948e50 MH |
1749 | ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s:0x%lx", |
1750 | tp->module, tp->address); | |
225466f1 | 1751 | else |
eb948e50 | 1752 | ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s%s+%lu", |
225466f1 SD |
1753 | tp->module ?: "", tp->module ? ":" : "", |
1754 | tp->symbol, tp->offset); | |
1755 | ||
eb948e50 | 1756 | if (ret <= 0) |
50656eec | 1757 | goto error; |
eb948e50 | 1758 | len += ret; |
50656eec | 1759 | |
4235b045 | 1760 | for (i = 0; i < tev->nargs; i++) { |
0e60836b | 1761 | ret = synthesize_probe_trace_arg(&tev->args[i], buf + len, |
4235b045 | 1762 | MAX_CMDLEN - len); |
4de189fe | 1763 | if (ret <= 0) |
50656eec MH |
1764 | goto error; |
1765 | len += ret; | |
1766 | } | |
50656eec | 1767 | |
4235b045 | 1768 | return buf; |
50656eec | 1769 | error: |
4235b045 MH |
1770 | free(buf); |
1771 | return NULL; | |
1772 | } | |
50656eec | 1773 | |
5a6f6314 MH |
1774 | static int find_perf_probe_point_from_map(struct probe_trace_point *tp, |
1775 | struct perf_probe_point *pp, | |
1776 | bool is_kprobe) | |
1777 | { | |
1778 | struct symbol *sym = NULL; | |
1779 | struct map *map; | |
1780 | u64 addr; | |
1781 | int ret = -ENOENT; | |
1782 | ||
1783 | if (!is_kprobe) { | |
1784 | map = dso__new_map(tp->module); | |
1785 | if (!map) | |
1786 | goto out; | |
1787 | addr = tp->address; | |
1788 | sym = map__find_symbol(map, addr, NULL); | |
1789 | } else { | |
1790 | addr = kernel_get_symbol_address_by_name(tp->symbol, true); | |
1791 | if (addr) { | |
1792 | addr += tp->offset; | |
1793 | sym = __find_kernel_function(addr, &map); | |
1794 | } | |
1795 | } | |
1796 | if (!sym) | |
1797 | goto out; | |
1798 | ||
1799 | pp->retprobe = tp->retprobe; | |
1800 | pp->offset = addr - map->unmap_ip(map, sym->start); | |
1801 | pp->function = strdup(sym->name); | |
1802 | ret = pp->function ? 0 : -ENOMEM; | |
1803 | ||
1804 | out: | |
1805 | if (map && !is_kprobe) { | |
84c2cafa | 1806 | map__put(map); |
5a6f6314 MH |
1807 | } |
1808 | ||
1809 | return ret; | |
1810 | } | |
1811 | ||
1812 | static int convert_to_perf_probe_point(struct probe_trace_point *tp, | |
1813 | struct perf_probe_point *pp, | |
1814 | bool is_kprobe) | |
1815 | { | |
1816 | char buf[128]; | |
1817 | int ret; | |
1818 | ||
1819 | ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe); | |
1820 | if (!ret) | |
1821 | return 0; | |
1822 | ret = find_perf_probe_point_from_map(tp, pp, is_kprobe); | |
1823 | if (!ret) | |
1824 | return 0; | |
1825 | ||
1826 | pr_debug("Failed to find probe point from both of dwarf and map.\n"); | |
1827 | ||
1828 | if (tp->symbol) { | |
1829 | pp->function = strdup(tp->symbol); | |
1830 | pp->offset = tp->offset; | |
1831 | } else if (!tp->module && !is_kprobe) { | |
1832 | ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address); | |
1833 | if (ret < 0) | |
1834 | return ret; | |
1835 | pp->function = strdup(buf); | |
1836 | pp->offset = 0; | |
1837 | } | |
1838 | if (pp->function == NULL) | |
1839 | return -ENOMEM; | |
1840 | ||
1841 | pp->retprobe = tp->retprobe; | |
1842 | ||
1843 | return 0; | |
1844 | } | |
1845 | ||
0e60836b | 1846 | static int convert_to_perf_probe_event(struct probe_trace_event *tev, |
225466f1 | 1847 | struct perf_probe_event *pev, bool is_kprobe) |
4235b045 | 1848 | { |
02b95dad | 1849 | char buf[64] = ""; |
146a1439 | 1850 | int i, ret; |
4235b045 | 1851 | |
4b4da7f7 | 1852 | /* Convert event/group name */ |
02b95dad MH |
1853 | pev->event = strdup(tev->event); |
1854 | pev->group = strdup(tev->group); | |
1855 | if (pev->event == NULL || pev->group == NULL) | |
1856 | return -ENOMEM; | |
fb1587d8 | 1857 | |
4b4da7f7 | 1858 | /* Convert trace_point to probe_point */ |
5a6f6314 | 1859 | ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe); |
146a1439 MH |
1860 | if (ret < 0) |
1861 | return ret; | |
4b4da7f7 | 1862 | |
4235b045 MH |
1863 | /* Convert trace_arg to probe_arg */ |
1864 | pev->nargs = tev->nargs; | |
e334016f MH |
1865 | pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs); |
1866 | if (pev->args == NULL) | |
1867 | return -ENOMEM; | |
02b95dad | 1868 | for (i = 0; i < tev->nargs && ret >= 0; i++) { |
4235b045 | 1869 | if (tev->args[i].name) |
02b95dad | 1870 | pev->args[i].name = strdup(tev->args[i].name); |
4235b045 | 1871 | else { |
0e60836b | 1872 | ret = synthesize_probe_trace_arg(&tev->args[i], |
146a1439 | 1873 | buf, 64); |
02b95dad | 1874 | pev->args[i].name = strdup(buf); |
4235b045 | 1875 | } |
02b95dad MH |
1876 | if (pev->args[i].name == NULL && ret >= 0) |
1877 | ret = -ENOMEM; | |
1878 | } | |
146a1439 MH |
1879 | |
1880 | if (ret < 0) | |
1881 | clear_perf_probe_event(pev); | |
1882 | ||
1883 | return ret; | |
4235b045 MH |
1884 | } |
1885 | ||
1886 | void clear_perf_probe_event(struct perf_probe_event *pev) | |
1887 | { | |
7df2f329 | 1888 | struct perf_probe_arg_field *field, *next; |
4235b045 MH |
1889 | int i; |
1890 | ||
f5385650 ACM |
1891 | free(pev->event); |
1892 | free(pev->group); | |
7afb3fab | 1893 | free(pev->target); |
9b118aca | 1894 | clear_perf_probe_point(&pev->point); |
f5385650 | 1895 | |
7df2f329 | 1896 | for (i = 0; i < pev->nargs; i++) { |
f5385650 ACM |
1897 | free(pev->args[i].name); |
1898 | free(pev->args[i].var); | |
1899 | free(pev->args[i].type); | |
7df2f329 MH |
1900 | field = pev->args[i].field; |
1901 | while (field) { | |
1902 | next = field->next; | |
74cf249d | 1903 | zfree(&field->name); |
7df2f329 MH |
1904 | free(field); |
1905 | field = next; | |
1906 | } | |
1907 | } | |
f5385650 | 1908 | free(pev->args); |
4235b045 MH |
1909 | memset(pev, 0, sizeof(*pev)); |
1910 | } | |
1911 | ||
0e60836b | 1912 | static void clear_probe_trace_event(struct probe_trace_event *tev) |
4235b045 | 1913 | { |
0e60836b | 1914 | struct probe_trace_arg_ref *ref, *next; |
4235b045 MH |
1915 | int i; |
1916 | ||
f5385650 ACM |
1917 | free(tev->event); |
1918 | free(tev->group); | |
1919 | free(tev->point.symbol); | |
4c859351 | 1920 | free(tev->point.realname); |
f5385650 | 1921 | free(tev->point.module); |
4235b045 | 1922 | for (i = 0; i < tev->nargs; i++) { |
f5385650 ACM |
1923 | free(tev->args[i].name); |
1924 | free(tev->args[i].value); | |
1925 | free(tev->args[i].type); | |
4235b045 MH |
1926 | ref = tev->args[i].ref; |
1927 | while (ref) { | |
1928 | next = ref->next; | |
1929 | free(ref); | |
1930 | ref = next; | |
1931 | } | |
1932 | } | |
f5385650 | 1933 | free(tev->args); |
4235b045 | 1934 | memset(tev, 0, sizeof(*tev)); |
50656eec MH |
1935 | } |
1936 | ||
5e45187c | 1937 | static void print_open_warning(int err, bool is_kprobe) |
225466f1 | 1938 | { |
5f03cba4 | 1939 | char sbuf[STRERR_BUFSIZE]; |
225466f1 | 1940 | |
5e45187c | 1941 | if (err == -ENOENT) { |
225466f1 SD |
1942 | const char *config; |
1943 | ||
1944 | if (!is_kprobe) | |
1945 | config = "CONFIG_UPROBE_EVENTS"; | |
1946 | else | |
1947 | config = "CONFIG_KPROBE_EVENTS"; | |
1948 | ||
5e45187c MH |
1949 | pr_warning("%cprobe_events file does not exist" |
1950 | " - please rebuild kernel with %s.\n", | |
1951 | is_kprobe ? 'k' : 'u', config); | |
1952 | } else if (err == -ENOTSUP) | |
23773ca1 | 1953 | pr_warning("Tracefs or debugfs is not mounted.\n"); |
5e45187c MH |
1954 | else |
1955 | pr_warning("Failed to open %cprobe_events: %s\n", | |
1956 | is_kprobe ? 'k' : 'u', | |
1957 | strerror_r(-err, sbuf, sizeof(sbuf))); | |
225466f1 SD |
1958 | } |
1959 | ||
467ec085 MH |
1960 | static void print_both_open_warning(int kerr, int uerr) |
1961 | { | |
1962 | /* Both kprobes and uprobes are disabled, warn it. */ | |
1963 | if (kerr == -ENOTSUP && uerr == -ENOTSUP) | |
23773ca1 | 1964 | pr_warning("Tracefs or debugfs is not mounted.\n"); |
467ec085 MH |
1965 | else if (kerr == -ENOENT && uerr == -ENOENT) |
1966 | pr_warning("Please rebuild kernel with CONFIG_KPROBE_EVENTS " | |
1967 | "or/and CONFIG_UPROBE_EVENTS.\n"); | |
1968 | else { | |
5f03cba4 | 1969 | char sbuf[STRERR_BUFSIZE]; |
467ec085 MH |
1970 | pr_warning("Failed to open kprobe events: %s.\n", |
1971 | strerror_r(-kerr, sbuf, sizeof(sbuf))); | |
1972 | pr_warning("Failed to open uprobe events: %s.\n", | |
1973 | strerror_r(-uerr, sbuf, sizeof(sbuf))); | |
1974 | } | |
1975 | } | |
1976 | ||
5e45187c | 1977 | static int open_probe_events(const char *trace_file, bool readwrite) |
4de189fe MH |
1978 | { |
1979 | char buf[PATH_MAX]; | |
7ca5989d | 1980 | const char *__debugfs; |
23773ca1 | 1981 | const char *tracing_dir = ""; |
4de189fe MH |
1982 | int ret; |
1983 | ||
23773ca1 SRRH |
1984 | __debugfs = tracefs_find_mountpoint(); |
1985 | if (__debugfs == NULL) { | |
1986 | tracing_dir = "tracing/"; | |
7ca5989d | 1987 | |
23773ca1 SRRH |
1988 | __debugfs = debugfs_find_mountpoint(); |
1989 | if (__debugfs == NULL) | |
1990 | return -ENOTSUP; | |
1991 | } | |
1992 | ||
1993 | ret = e_snprintf(buf, PATH_MAX, "%s/%s%s", | |
1994 | __debugfs, tracing_dir, trace_file); | |
146a1439 | 1995 | if (ret >= 0) { |
7ca5989d | 1996 | pr_debug("Opening %s write=%d\n", buf, readwrite); |
146a1439 | 1997 | if (readwrite && !probe_event_dry_run) |
b8dc3984 | 1998 | ret = open(buf, O_RDWR | O_APPEND, 0); |
146a1439 MH |
1999 | else |
2000 | ret = open(buf, O_RDONLY, 0); | |
f4d7da49 | 2001 | |
225466f1 | 2002 | if (ret < 0) |
5e45187c | 2003 | ret = -errno; |
4de189fe MH |
2004 | } |
2005 | return ret; | |
2006 | } | |
2007 | ||
225466f1 SD |
2008 | static int open_kprobe_events(bool readwrite) |
2009 | { | |
23773ca1 | 2010 | return open_probe_events("kprobe_events", readwrite); |
225466f1 SD |
2011 | } |
2012 | ||
2013 | static int open_uprobe_events(bool readwrite) | |
2014 | { | |
23773ca1 | 2015 | return open_probe_events("uprobe_events", readwrite); |
225466f1 SD |
2016 | } |
2017 | ||
2018 | /* Get raw string list of current kprobe_events or uprobe_events */ | |
0e60836b | 2019 | static struct strlist *get_probe_trace_command_rawlist(int fd) |
4de189fe MH |
2020 | { |
2021 | int ret, idx; | |
2022 | FILE *fp; | |
2023 | char buf[MAX_CMDLEN]; | |
2024 | char *p; | |
2025 | struct strlist *sl; | |
2026 | ||
2027 | sl = strlist__new(true, NULL); | |
2028 | ||
2029 | fp = fdopen(dup(fd), "r"); | |
2030 | while (!feof(fp)) { | |
2031 | p = fgets(buf, MAX_CMDLEN, fp); | |
2032 | if (!p) | |
2033 | break; | |
2034 | ||
2035 | idx = strlen(p) - 1; | |
2036 | if (p[idx] == '\n') | |
2037 | p[idx] = '\0'; | |
2038 | ret = strlist__add(sl, buf); | |
146a1439 | 2039 | if (ret < 0) { |
6eb08660 | 2040 | pr_debug("strlist__add failed (%d)\n", ret); |
146a1439 MH |
2041 | strlist__delete(sl); |
2042 | return NULL; | |
2043 | } | |
4de189fe MH |
2044 | } |
2045 | fclose(fp); | |
2046 | ||
2047 | return sl; | |
2048 | } | |
2049 | ||
9aaf5a5f MH |
2050 | struct kprobe_blacklist_node { |
2051 | struct list_head list; | |
2052 | unsigned long start; | |
2053 | unsigned long end; | |
2054 | char *symbol; | |
2055 | }; | |
2056 | ||
2057 | static void kprobe_blacklist__delete(struct list_head *blacklist) | |
2058 | { | |
2059 | struct kprobe_blacklist_node *node; | |
2060 | ||
2061 | while (!list_empty(blacklist)) { | |
2062 | node = list_first_entry(blacklist, | |
2063 | struct kprobe_blacklist_node, list); | |
2064 | list_del(&node->list); | |
2065 | free(node->symbol); | |
2066 | free(node); | |
2067 | } | |
2068 | } | |
2069 | ||
2070 | static int kprobe_blacklist__load(struct list_head *blacklist) | |
2071 | { | |
2072 | struct kprobe_blacklist_node *node; | |
2073 | const char *__debugfs = debugfs_find_mountpoint(); | |
2074 | char buf[PATH_MAX], *p; | |
2075 | FILE *fp; | |
2076 | int ret; | |
2077 | ||
2078 | if (__debugfs == NULL) | |
2079 | return -ENOTSUP; | |
2080 | ||
2081 | ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs); | |
2082 | if (ret < 0) | |
2083 | return ret; | |
2084 | ||
2085 | fp = fopen(buf, "r"); | |
2086 | if (!fp) | |
2087 | return -errno; | |
2088 | ||
2089 | ret = 0; | |
2090 | while (fgets(buf, PATH_MAX, fp)) { | |
2091 | node = zalloc(sizeof(*node)); | |
2092 | if (!node) { | |
2093 | ret = -ENOMEM; | |
2094 | break; | |
2095 | } | |
2096 | INIT_LIST_HEAD(&node->list); | |
2097 | list_add_tail(&node->list, blacklist); | |
2098 | if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) { | |
2099 | ret = -EINVAL; | |
2100 | break; | |
2101 | } | |
2102 | p = strchr(buf, '\t'); | |
2103 | if (p) { | |
2104 | p++; | |
2105 | if (p[strlen(p) - 1] == '\n') | |
2106 | p[strlen(p) - 1] = '\0'; | |
2107 | } else | |
2108 | p = (char *)"unknown"; | |
2109 | node->symbol = strdup(p); | |
2110 | if (!node->symbol) { | |
2111 | ret = -ENOMEM; | |
2112 | break; | |
2113 | } | |
2114 | pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n", | |
2115 | node->start, node->end, node->symbol); | |
2116 | ret++; | |
2117 | } | |
2118 | if (ret < 0) | |
2119 | kprobe_blacklist__delete(blacklist); | |
2120 | fclose(fp); | |
2121 | ||
2122 | return ret; | |
2123 | } | |
2124 | ||
2125 | static struct kprobe_blacklist_node * | |
2126 | kprobe_blacklist__find_by_address(struct list_head *blacklist, | |
2127 | unsigned long address) | |
2128 | { | |
2129 | struct kprobe_blacklist_node *node; | |
2130 | ||
2131 | list_for_each_entry(node, blacklist, list) { | |
2132 | if (node->start <= address && address <= node->end) | |
2133 | return node; | |
2134 | } | |
2135 | ||
2136 | return NULL; | |
2137 | } | |
2138 | ||
b031220d MH |
2139 | static LIST_HEAD(kprobe_blacklist); |
2140 | ||
2141 | static void kprobe_blacklist__init(void) | |
2142 | { | |
2143 | if (!list_empty(&kprobe_blacklist)) | |
2144 | return; | |
2145 | ||
2146 | if (kprobe_blacklist__load(&kprobe_blacklist) < 0) | |
2147 | pr_debug("No kprobe blacklist support, ignored\n"); | |
2148 | } | |
2149 | ||
2150 | static void kprobe_blacklist__release(void) | |
2151 | { | |
2152 | kprobe_blacklist__delete(&kprobe_blacklist); | |
2153 | } | |
2154 | ||
2155 | static bool kprobe_blacklist__listed(unsigned long address) | |
2156 | { | |
2157 | return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address); | |
2158 | } | |
2159 | ||
ba7ecb02 MH |
2160 | static int perf_probe_event__sprintf(struct perf_probe_event *pev, |
2161 | const char *module, | |
2162 | struct strbuf *result) | |
278498d4 | 2163 | { |
7e990a51 | 2164 | int i, ret; |
278498d4 | 2165 | char buf[128]; |
4235b045 | 2166 | char *place; |
278498d4 | 2167 | |
4235b045 MH |
2168 | /* Synthesize only event probe point */ |
2169 | place = synthesize_perf_probe_point(&pev->point); | |
146a1439 MH |
2170 | if (!place) |
2171 | return -EINVAL; | |
4235b045 MH |
2172 | |
2173 | ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event); | |
7e990a51 | 2174 | if (ret < 0) |
ba7ecb02 | 2175 | goto out; |
146a1439 | 2176 | |
ba7ecb02 | 2177 | strbuf_addf(result, " %-20s (on %s", buf, place); |
fb226ccd | 2178 | if (module) |
ba7ecb02 | 2179 | strbuf_addf(result, " in %s", module); |
278498d4 | 2180 | |
4235b045 | 2181 | if (pev->nargs > 0) { |
ba7ecb02 | 2182 | strbuf_addstr(result, " with"); |
7df2f329 | 2183 | for (i = 0; i < pev->nargs; i++) { |
146a1439 MH |
2184 | ret = synthesize_perf_probe_arg(&pev->args[i], |
2185 | buf, 128); | |
2186 | if (ret < 0) | |
ba7ecb02 MH |
2187 | goto out; |
2188 | strbuf_addf(result, " %s", buf); | |
7df2f329 | 2189 | } |
278498d4 | 2190 | } |
ba7ecb02 MH |
2191 | strbuf_addch(result, ')'); |
2192 | out: | |
4235b045 | 2193 | free(place); |
146a1439 | 2194 | return ret; |
278498d4 MH |
2195 | } |
2196 | ||
ba7ecb02 MH |
2197 | /* Show an event */ |
2198 | static int show_perf_probe_event(struct perf_probe_event *pev, | |
2199 | const char *module, bool use_stdout) | |
2200 | { | |
2201 | struct strbuf buf = STRBUF_INIT; | |
2202 | int ret; | |
2203 | ||
2204 | ret = perf_probe_event__sprintf(pev, module, &buf); | |
2205 | if (ret >= 0) { | |
2206 | if (use_stdout) | |
2207 | printf("%s\n", buf.buf); | |
2208 | else | |
2209 | pr_info("%s\n", buf.buf); | |
2210 | } | |
2211 | strbuf_release(&buf); | |
2212 | ||
2213 | return ret; | |
2214 | } | |
2215 | ||
b6a89643 MH |
2216 | static bool filter_probe_trace_event(struct probe_trace_event *tev, |
2217 | struct strfilter *filter) | |
2218 | { | |
2219 | char tmp[128]; | |
2220 | ||
2221 | /* At first, check the event name itself */ | |
2222 | if (strfilter__compare(filter, tev->event)) | |
2223 | return true; | |
2224 | ||
2225 | /* Next, check the combination of name and group */ | |
2226 | if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0) | |
2227 | return false; | |
2228 | return strfilter__compare(filter, tmp); | |
2229 | } | |
2230 | ||
2231 | static int __show_perf_probe_events(int fd, bool is_kprobe, | |
2232 | struct strfilter *filter) | |
4de189fe | 2233 | { |
225466f1 | 2234 | int ret = 0; |
0e60836b | 2235 | struct probe_trace_event tev; |
4235b045 | 2236 | struct perf_probe_event pev; |
4de189fe MH |
2237 | struct strlist *rawlist; |
2238 | struct str_node *ent; | |
2239 | ||
4235b045 MH |
2240 | memset(&tev, 0, sizeof(tev)); |
2241 | memset(&pev, 0, sizeof(pev)); | |
72041334 | 2242 | |
0e60836b | 2243 | rawlist = get_probe_trace_command_rawlist(fd); |
146a1439 | 2244 | if (!rawlist) |
6eb08660 | 2245 | return -ENOMEM; |
4de189fe | 2246 | |
adf365f4 | 2247 | strlist__for_each(ent, rawlist) { |
0e60836b | 2248 | ret = parse_probe_trace_command(ent->s, &tev); |
146a1439 | 2249 | if (ret >= 0) { |
b6a89643 MH |
2250 | if (!filter_probe_trace_event(&tev, filter)) |
2251 | goto next; | |
225466f1 SD |
2252 | ret = convert_to_perf_probe_event(&tev, &pev, |
2253 | is_kprobe); | |
ba7ecb02 MH |
2254 | if (ret < 0) |
2255 | goto next; | |
2256 | ret = show_perf_probe_event(&pev, tev.point.module, | |
2257 | true); | |
146a1439 | 2258 | } |
b6a89643 | 2259 | next: |
4235b045 | 2260 | clear_perf_probe_event(&pev); |
0e60836b | 2261 | clear_probe_trace_event(&tev); |
146a1439 MH |
2262 | if (ret < 0) |
2263 | break; | |
4de189fe | 2264 | } |
4de189fe | 2265 | strlist__delete(rawlist); |
146a1439 MH |
2266 | |
2267 | return ret; | |
4de189fe MH |
2268 | } |
2269 | ||
225466f1 | 2270 | /* List up current perf-probe events */ |
b6a89643 | 2271 | int show_perf_probe_events(struct strfilter *filter) |
225466f1 | 2272 | { |
5e45187c | 2273 | int kp_fd, up_fd, ret; |
225466f1 SD |
2274 | |
2275 | setup_pager(); | |
225466f1 | 2276 | |
ee45b6c2 | 2277 | ret = init_symbol_maps(false); |
225466f1 SD |
2278 | if (ret < 0) |
2279 | return ret; | |
2280 | ||
5e45187c MH |
2281 | kp_fd = open_kprobe_events(false); |
2282 | if (kp_fd >= 0) { | |
b6a89643 | 2283 | ret = __show_perf_probe_events(kp_fd, true, filter); |
5e45187c MH |
2284 | close(kp_fd); |
2285 | if (ret < 0) | |
2286 | goto out; | |
2287 | } | |
225466f1 | 2288 | |
5e45187c MH |
2289 | up_fd = open_uprobe_events(false); |
2290 | if (kp_fd < 0 && up_fd < 0) { | |
467ec085 | 2291 | print_both_open_warning(kp_fd, up_fd); |
5e45187c MH |
2292 | ret = kp_fd; |
2293 | goto out; | |
225466f1 SD |
2294 | } |
2295 | ||
5e45187c | 2296 | if (up_fd >= 0) { |
b6a89643 | 2297 | ret = __show_perf_probe_events(up_fd, false, filter); |
5e45187c MH |
2298 | close(up_fd); |
2299 | } | |
2300 | out: | |
ee45b6c2 | 2301 | exit_symbol_maps(); |
225466f1 SD |
2302 | return ret; |
2303 | } | |
2304 | ||
b498ce1f | 2305 | /* Get current perf-probe event names */ |
0e60836b | 2306 | static struct strlist *get_probe_trace_event_names(int fd, bool include_group) |
b498ce1f | 2307 | { |
fa28244d | 2308 | char buf[128]; |
b498ce1f MH |
2309 | struct strlist *sl, *rawlist; |
2310 | struct str_node *ent; | |
0e60836b | 2311 | struct probe_trace_event tev; |
146a1439 | 2312 | int ret = 0; |
b498ce1f | 2313 | |
4235b045 | 2314 | memset(&tev, 0, sizeof(tev)); |
0e60836b | 2315 | rawlist = get_probe_trace_command_rawlist(fd); |
6eb08660 MH |
2316 | if (!rawlist) |
2317 | return NULL; | |
e1d2017b | 2318 | sl = strlist__new(true, NULL); |
adf365f4 | 2319 | strlist__for_each(ent, rawlist) { |
0e60836b | 2320 | ret = parse_probe_trace_command(ent->s, &tev); |
146a1439 MH |
2321 | if (ret < 0) |
2322 | break; | |
fa28244d | 2323 | if (include_group) { |
146a1439 MH |
2324 | ret = e_snprintf(buf, 128, "%s:%s", tev.group, |
2325 | tev.event); | |
2326 | if (ret >= 0) | |
2327 | ret = strlist__add(sl, buf); | |
fa28244d | 2328 | } else |
146a1439 | 2329 | ret = strlist__add(sl, tev.event); |
0e60836b | 2330 | clear_probe_trace_event(&tev); |
146a1439 MH |
2331 | if (ret < 0) |
2332 | break; | |
b498ce1f | 2333 | } |
b498ce1f MH |
2334 | strlist__delete(rawlist); |
2335 | ||
146a1439 MH |
2336 | if (ret < 0) { |
2337 | strlist__delete(sl); | |
2338 | return NULL; | |
2339 | } | |
b498ce1f MH |
2340 | return sl; |
2341 | } | |
2342 | ||
0e60836b | 2343 | static int write_probe_trace_event(int fd, struct probe_trace_event *tev) |
50656eec | 2344 | { |
6eca8cc3 | 2345 | int ret = 0; |
0e60836b | 2346 | char *buf = synthesize_probe_trace_command(tev); |
5f03cba4 | 2347 | char sbuf[STRERR_BUFSIZE]; |
50656eec | 2348 | |
146a1439 | 2349 | if (!buf) { |
0e60836b | 2350 | pr_debug("Failed to synthesize probe trace event.\n"); |
146a1439 MH |
2351 | return -EINVAL; |
2352 | } | |
2353 | ||
fa28244d | 2354 | pr_debug("Writing event: %s\n", buf); |
f4d7da49 MH |
2355 | if (!probe_event_dry_run) { |
2356 | ret = write(fd, buf, strlen(buf)); | |
7949ba1f NK |
2357 | if (ret <= 0) { |
2358 | ret = -errno; | |
146a1439 | 2359 | pr_warning("Failed to write event: %s\n", |
5f03cba4 | 2360 | strerror_r(errno, sbuf, sizeof(sbuf))); |
7949ba1f | 2361 | } |
f4d7da49 | 2362 | } |
4235b045 | 2363 | free(buf); |
146a1439 | 2364 | return ret; |
50656eec MH |
2365 | } |
2366 | ||
146a1439 MH |
2367 | static int get_new_event_name(char *buf, size_t len, const char *base, |
2368 | struct strlist *namelist, bool allow_suffix) | |
b498ce1f MH |
2369 | { |
2370 | int i, ret; | |
35a23ff9 | 2371 | char *p; |
17f88fcd | 2372 | |
3099c026 NR |
2373 | if (*base == '.') |
2374 | base++; | |
2375 | ||
17f88fcd MH |
2376 | /* Try no suffix */ |
2377 | ret = e_snprintf(buf, len, "%s", base); | |
146a1439 | 2378 | if (ret < 0) { |
5f03cba4 | 2379 | pr_debug("snprintf() failed: %d\n", ret); |
146a1439 MH |
2380 | return ret; |
2381 | } | |
35a23ff9 MH |
2382 | /* Cut off the postfixes (e.g. .const, .isra)*/ |
2383 | p = strchr(buf, '.'); | |
2384 | if (p && p != buf) | |
2385 | *p = '\0'; | |
17f88fcd | 2386 | if (!strlist__has_entry(namelist, buf)) |
146a1439 | 2387 | return 0; |
17f88fcd | 2388 | |
d761b08b MH |
2389 | if (!allow_suffix) { |
2390 | pr_warning("Error: event \"%s\" already exists. " | |
2391 | "(Use -f to force duplicates.)\n", base); | |
146a1439 | 2392 | return -EEXIST; |
d761b08b MH |
2393 | } |
2394 | ||
17f88fcd MH |
2395 | /* Try to add suffix */ |
2396 | for (i = 1; i < MAX_EVENT_INDEX; i++) { | |
b498ce1f | 2397 | ret = e_snprintf(buf, len, "%s_%d", base, i); |
146a1439 | 2398 | if (ret < 0) { |
5f03cba4 | 2399 | pr_debug("snprintf() failed: %d\n", ret); |
146a1439 MH |
2400 | return ret; |
2401 | } | |
b498ce1f MH |
2402 | if (!strlist__has_entry(namelist, buf)) |
2403 | break; | |
2404 | } | |
146a1439 MH |
2405 | if (i == MAX_EVENT_INDEX) { |
2406 | pr_warning("Too many events are on the same function.\n"); | |
2407 | ret = -ERANGE; | |
2408 | } | |
2409 | ||
2410 | return ret; | |
b498ce1f MH |
2411 | } |
2412 | ||
79702f61 MH |
2413 | /* Warn if the current kernel's uprobe implementation is old */ |
2414 | static void warn_uprobe_event_compat(struct probe_trace_event *tev) | |
2415 | { | |
2416 | int i; | |
2417 | char *buf = synthesize_probe_trace_command(tev); | |
2418 | ||
2419 | /* Old uprobe event doesn't support memory dereference */ | |
2420 | if (!tev->uprobes || tev->nargs == 0 || !buf) | |
2421 | goto out; | |
2422 | ||
2423 | for (i = 0; i < tev->nargs; i++) | |
2424 | if (strglobmatch(tev->args[i].value, "[$@+-]*")) { | |
2425 | pr_warning("Please upgrade your kernel to at least " | |
2426 | "3.14 to have access to feature %s\n", | |
2427 | tev->args[i].value); | |
2428 | break; | |
2429 | } | |
2430 | out: | |
2431 | free(buf); | |
2432 | } | |
2433 | ||
0e60836b SD |
2434 | static int __add_probe_trace_events(struct perf_probe_event *pev, |
2435 | struct probe_trace_event *tevs, | |
146a1439 | 2436 | int ntevs, bool allow_suffix) |
50656eec | 2437 | { |
146a1439 | 2438 | int i, fd, ret; |
0e60836b | 2439 | struct probe_trace_event *tev = NULL; |
4235b045 MH |
2440 | char buf[64]; |
2441 | const char *event, *group; | |
b498ce1f | 2442 | struct strlist *namelist; |
4c859351 | 2443 | bool safename; |
50656eec | 2444 | |
225466f1 SD |
2445 | if (pev->uprobes) |
2446 | fd = open_uprobe_events(true); | |
2447 | else | |
2448 | fd = open_kprobe_events(true); | |
2449 | ||
5e45187c MH |
2450 | if (fd < 0) { |
2451 | print_open_warning(fd, !pev->uprobes); | |
146a1439 | 2452 | return fd; |
5e45187c MH |
2453 | } |
2454 | ||
b498ce1f | 2455 | /* Get current event names */ |
0e60836b | 2456 | namelist = get_probe_trace_event_names(fd, false); |
146a1439 MH |
2457 | if (!namelist) { |
2458 | pr_debug("Failed to get current event list.\n"); | |
ae2cb1ac MH |
2459 | ret = -ENOMEM; |
2460 | goto close_out; | |
146a1439 | 2461 | } |
4235b045 | 2462 | |
4c859351 | 2463 | safename = (pev->point.function && !strisglob(pev->point.function)); |
146a1439 | 2464 | ret = 0; |
5e17b28f | 2465 | pr_info("Added new event%s\n", (ntevs > 1) ? "s:" : ":"); |
02b95dad | 2466 | for (i = 0; i < ntevs; i++) { |
4235b045 | 2467 | tev = &tevs[i]; |
b031220d | 2468 | /* Skip if the symbol is out of .text or blacklisted */ |
5a51fcd1 MH |
2469 | if (!tev->point.symbol) |
2470 | continue; | |
9aaf5a5f | 2471 | |
4235b045 MH |
2472 | if (pev->event) |
2473 | event = pev->event; | |
2474 | else | |
4c859351 | 2475 | if (safename) |
4235b045 MH |
2476 | event = pev->point.function; |
2477 | else | |
4c859351 | 2478 | event = tev->point.realname; |
4235b045 MH |
2479 | if (pev->group) |
2480 | group = pev->group; | |
2481 | else | |
2482 | group = PERFPROBE_GROUP; | |
2483 | ||
2484 | /* Get an unused new event name */ | |
146a1439 MH |
2485 | ret = get_new_event_name(buf, 64, event, |
2486 | namelist, allow_suffix); | |
2487 | if (ret < 0) | |
2488 | break; | |
4235b045 MH |
2489 | event = buf; |
2490 | ||
02b95dad MH |
2491 | tev->event = strdup(event); |
2492 | tev->group = strdup(group); | |
2493 | if (tev->event == NULL || tev->group == NULL) { | |
2494 | ret = -ENOMEM; | |
2495 | break; | |
2496 | } | |
0e60836b | 2497 | ret = write_probe_trace_event(fd, tev); |
146a1439 MH |
2498 | if (ret < 0) |
2499 | break; | |
4235b045 MH |
2500 | /* Add added event name to namelist */ |
2501 | strlist__add(namelist, event); | |
2502 | ||
2503 | /* Trick here - save current event/group */ | |
2504 | event = pev->event; | |
2505 | group = pev->group; | |
2506 | pev->event = tev->event; | |
2507 | pev->group = tev->group; | |
ba7ecb02 | 2508 | show_perf_probe_event(pev, tev->point.module, false); |
4235b045 MH |
2509 | /* Trick here - restore current event/group */ |
2510 | pev->event = (char *)event; | |
2511 | pev->group = (char *)group; | |
2512 | ||
2513 | /* | |
2514 | * Probes after the first probe which comes from same | |
2515 | * user input are always allowed to add suffix, because | |
2516 | * there might be several addresses corresponding to | |
2517 | * one code line. | |
2518 | */ | |
2519 | allow_suffix = true; | |
50656eec | 2520 | } |
79702f61 MH |
2521 | if (ret == -EINVAL && pev->uprobes) |
2522 | warn_uprobe_event_compat(tev); | |
146a1439 | 2523 | |
9aaf5a5f MH |
2524 | /* Note that it is possible to skip all events because of blacklist */ |
2525 | if (ret >= 0 && tev->event) { | |
146a1439 | 2526 | /* Show how to use the event. */ |
5e17b28f MH |
2527 | pr_info("\nYou can now use it in all perf tools, such as:\n\n"); |
2528 | pr_info("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group, | |
146a1439 MH |
2529 | tev->event); |
2530 | } | |
a9b495b0 | 2531 | |
e1d2017b | 2532 | strlist__delete(namelist); |
ae2cb1ac | 2533 | close_out: |
50656eec | 2534 | close(fd); |
146a1439 | 2535 | return ret; |
50656eec | 2536 | } |
fa28244d | 2537 | |
6bb536cc WN |
2538 | static int find_probe_functions(struct map *map, char *name, |
2539 | struct symbol **syms) | |
eb948e50 | 2540 | { |
564c62a4 | 2541 | int found = 0; |
0a3873a8 | 2542 | struct symbol *sym; |
4c859351 | 2543 | struct rb_node *tmp; |
564c62a4 | 2544 | |
75e4a2a6 WN |
2545 | if (map__load(map, NULL) < 0) |
2546 | return 0; | |
2547 | ||
4c859351 | 2548 | map__for_each_symbol(map, sym, tmp) { |
6bb536cc | 2549 | if (strglobmatch(sym->name, name)) { |
4c859351 | 2550 | found++; |
6bb536cc WN |
2551 | if (syms && found < probe_conf.max_probes) |
2552 | syms[found - 1] = sym; | |
2553 | } | |
eb948e50 | 2554 | } |
564c62a4 NK |
2555 | |
2556 | return found; | |
eb948e50 MH |
2557 | } |
2558 | ||
2559 | #define strdup_or_goto(str, label) \ | |
2560 | ({ char *__p = strdup(str); if (!__p) goto label; __p; }) | |
2561 | ||
7b6ff0bd NR |
2562 | void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused, |
2563 | struct probe_trace_event *tev __maybe_unused, | |
2564 | struct map *map __maybe_unused) { } | |
2565 | ||
eb948e50 MH |
2566 | /* |
2567 | * Find probe function addresses from map. | |
2568 | * Return an error or the number of found probe_trace_event | |
2569 | */ | |
2570 | static int find_probe_trace_events_from_map(struct perf_probe_event *pev, | |
ddb2f58f | 2571 | struct probe_trace_event **tevs) |
e0faa8d3 | 2572 | { |
eb948e50 | 2573 | struct map *map = NULL; |
eb948e50 | 2574 | struct ref_reloc_sym *reloc_sym = NULL; |
e0faa8d3 | 2575 | struct symbol *sym; |
6bb536cc | 2576 | struct symbol **syms = NULL; |
0e60836b | 2577 | struct probe_trace_event *tev; |
eb948e50 MH |
2578 | struct perf_probe_point *pp = &pev->point; |
2579 | struct probe_trace_point *tp; | |
564c62a4 | 2580 | int num_matched_functions; |
b031220d | 2581 | int ret, i, j, skipped = 0; |
4235b045 | 2582 | |
44225521 | 2583 | map = get_target_map(pev->target, pev->uprobes); |
eb948e50 MH |
2584 | if (!map) { |
2585 | ret = -EINVAL; | |
2586 | goto out; | |
fb7345bb MH |
2587 | } |
2588 | ||
6bb536cc WN |
2589 | syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes); |
2590 | if (!syms) { | |
2591 | ret = -ENOMEM; | |
2592 | goto out; | |
2593 | } | |
2594 | ||
eb948e50 MH |
2595 | /* |
2596 | * Load matched symbols: Since the different local symbols may have | |
2597 | * same name but different addresses, this lists all the symbols. | |
2598 | */ | |
6bb536cc | 2599 | num_matched_functions = find_probe_functions(map, pp->function, syms); |
564c62a4 | 2600 | if (num_matched_functions == 0) { |
eb948e50 | 2601 | pr_err("Failed to find symbol %s in %s\n", pp->function, |
44225521 | 2602 | pev->target ? : "kernel"); |
eb948e50 MH |
2603 | ret = -ENOENT; |
2604 | goto out; | |
ddb2f58f | 2605 | } else if (num_matched_functions > probe_conf.max_probes) { |
eb948e50 | 2606 | pr_err("Too many functions matched in %s\n", |
44225521 | 2607 | pev->target ? : "kernel"); |
eb948e50 MH |
2608 | ret = -E2BIG; |
2609 | goto out; | |
fb7345bb MH |
2610 | } |
2611 | ||
25dd9171 | 2612 | if (!pev->uprobes && !pp->retprobe) { |
0560a0c4 | 2613 | reloc_sym = kernel_get_ref_reloc_sym(); |
eb948e50 MH |
2614 | if (!reloc_sym) { |
2615 | pr_warning("Relocated base symbol is not found!\n"); | |
2616 | ret = -EINVAL; | |
2617 | goto out; | |
2618 | } | |
2619 | } | |
4235b045 | 2620 | |
eb948e50 MH |
2621 | /* Setup result trace-probe-events */ |
2622 | *tevs = zalloc(sizeof(*tev) * num_matched_functions); | |
2623 | if (!*tevs) { | |
02b95dad | 2624 | ret = -ENOMEM; |
eb948e50 | 2625 | goto out; |
02b95dad | 2626 | } |
ce27a443 | 2627 | |
eb948e50 | 2628 | ret = 0; |
564c62a4 | 2629 | |
6bb536cc WN |
2630 | for (j = 0; j < num_matched_functions; j++) { |
2631 | sym = syms[j]; | |
2632 | ||
eb948e50 MH |
2633 | tev = (*tevs) + ret; |
2634 | tp = &tev->point; | |
2635 | if (ret == num_matched_functions) { | |
2636 | pr_warning("Too many symbols are listed. Skip it.\n"); | |
2637 | break; | |
ce27a443 | 2638 | } |
eb948e50 | 2639 | ret++; |
ce27a443 | 2640 | |
eb948e50 MH |
2641 | if (pp->offset > sym->end - sym->start) { |
2642 | pr_warning("Offset %ld is bigger than the size of %s\n", | |
2643 | pp->offset, sym->name); | |
2644 | ret = -ENOENT; | |
2645 | goto err_out; | |
2646 | } | |
2647 | /* Add one probe point */ | |
2648 | tp->address = map->unmap_ip(map, sym->start) + pp->offset; | |
b031220d MH |
2649 | /* If we found a wrong one, mark it by NULL symbol */ |
2650 | if (!pev->uprobes && | |
2651 | kprobe_warn_out_range(sym->name, tp->address)) { | |
2652 | tp->symbol = NULL; /* Skip it */ | |
2653 | skipped++; | |
2654 | } else if (reloc_sym) { | |
eb948e50 MH |
2655 | tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out); |
2656 | tp->offset = tp->address - reloc_sym->addr; | |
2657 | } else { | |
2658 | tp->symbol = strdup_or_goto(sym->name, nomem_out); | |
2659 | tp->offset = pp->offset; | |
2660 | } | |
6bb536cc WN |
2661 | tp->realname = strdup_or_goto(sym->name, nomem_out); |
2662 | ||
eb948e50 | 2663 | tp->retprobe = pp->retprobe; |
44225521 MH |
2664 | if (pev->target) |
2665 | tev->point.module = strdup_or_goto(pev->target, | |
2666 | nomem_out); | |
eb948e50 MH |
2667 | tev->uprobes = pev->uprobes; |
2668 | tev->nargs = pev->nargs; | |
2669 | if (tev->nargs) { | |
2670 | tev->args = zalloc(sizeof(struct probe_trace_arg) * | |
2671 | tev->nargs); | |
2672 | if (tev->args == NULL) | |
2673 | goto nomem_out; | |
e334016f | 2674 | } |
48481938 | 2675 | for (i = 0; i < tev->nargs; i++) { |
eb948e50 MH |
2676 | if (pev->args[i].name) |
2677 | tev->args[i].name = | |
2678 | strdup_or_goto(pev->args[i].name, | |
2679 | nomem_out); | |
2680 | ||
2681 | tev->args[i].value = strdup_or_goto(pev->args[i].var, | |
2682 | nomem_out); | |
2683 | if (pev->args[i].type) | |
2684 | tev->args[i].type = | |
2685 | strdup_or_goto(pev->args[i].type, | |
2686 | nomem_out); | |
48481938 | 2687 | } |
7b6ff0bd | 2688 | arch__fix_tev_from_maps(pev, tev, map); |
4235b045 | 2689 | } |
b031220d MH |
2690 | if (ret == skipped) { |
2691 | ret = -ENOENT; | |
2692 | goto err_out; | |
2693 | } | |
4235b045 | 2694 | |
eb948e50 | 2695 | out: |
9b118aca | 2696 | put_target_map(map, pev->uprobes); |
6bb536cc | 2697 | free(syms); |
eb948e50 | 2698 | return ret; |
225466f1 | 2699 | |
eb948e50 MH |
2700 | nomem_out: |
2701 | ret = -ENOMEM; | |
2702 | err_out: | |
2703 | clear_probe_trace_events(*tevs, num_matched_functions); | |
2704 | zfree(tevs); | |
2705 | goto out; | |
2706 | } | |
1c1bc922 | 2707 | |
d5c2e2c1 NR |
2708 | bool __weak arch__prefers_symtab(void) { return false; } |
2709 | ||
eb948e50 | 2710 | static int convert_to_probe_trace_events(struct perf_probe_event *pev, |
ddb2f58f | 2711 | struct probe_trace_event **tevs) |
eb948e50 MH |
2712 | { |
2713 | int ret; | |
2714 | ||
2715 | if (pev->uprobes && !pev->group) { | |
2716 | /* Replace group name if not given */ | |
44225521 | 2717 | ret = convert_exec_to_group(pev->target, &pev->group); |
eb948e50 MH |
2718 | if (ret != 0) { |
2719 | pr_warning("Failed to make a group name.\n"); | |
2720 | return ret; | |
2721 | } | |
02b95dad | 2722 | } |
e334016f | 2723 | |
d5c2e2c1 | 2724 | if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) { |
ddb2f58f | 2725 | ret = find_probe_trace_events_from_map(pev, tevs); |
d5c2e2c1 NR |
2726 | if (ret > 0) |
2727 | return ret; /* Found in symbol table */ | |
2728 | } | |
2729 | ||
eb948e50 | 2730 | /* Convert perf_probe_event with debuginfo */ |
ddb2f58f | 2731 | ret = try_to_find_probe_trace_events(pev, tevs); |
eb948e50 MH |
2732 | if (ret != 0) |
2733 | return ret; /* Found in debuginfo or got an error */ | |
2734 | ||
ddb2f58f | 2735 | return find_probe_trace_events_from_map(pev, tevs); |
4235b045 MH |
2736 | } |
2737 | ||
2738 | struct __event_package { | |
2739 | struct perf_probe_event *pev; | |
0e60836b | 2740 | struct probe_trace_event *tevs; |
4235b045 MH |
2741 | int ntevs; |
2742 | }; | |
2743 | ||
ddb2f58f | 2744 | int add_perf_probe_events(struct perf_probe_event *pevs, int npevs) |
4235b045 | 2745 | { |
146a1439 | 2746 | int i, j, ret; |
4235b045 MH |
2747 | struct __event_package *pkgs; |
2748 | ||
225466f1 | 2749 | ret = 0; |
e334016f | 2750 | pkgs = zalloc(sizeof(struct __event_package) * npevs); |
225466f1 | 2751 | |
e334016f MH |
2752 | if (pkgs == NULL) |
2753 | return -ENOMEM; | |
4235b045 | 2754 | |
ee45b6c2 | 2755 | ret = init_symbol_maps(pevs->uprobes); |
449e5b24 MH |
2756 | if (ret < 0) { |
2757 | free(pkgs); | |
146a1439 | 2758 | return ret; |
449e5b24 | 2759 | } |
4235b045 MH |
2760 | |
2761 | /* Loop 1: convert all events */ | |
2762 | for (i = 0; i < npevs; i++) { | |
2763 | pkgs[i].pev = &pevs[i]; | |
b031220d MH |
2764 | /* Init kprobe blacklist if needed */ |
2765 | if (!pkgs[i].pev->uprobes) | |
2766 | kprobe_blacklist__init(); | |
4235b045 | 2767 | /* Convert with or without debuginfo */ |
0e60836b | 2768 | ret = convert_to_probe_trace_events(pkgs[i].pev, |
ddb2f58f | 2769 | &pkgs[i].tevs); |
146a1439 MH |
2770 | if (ret < 0) |
2771 | goto end; | |
2772 | pkgs[i].ntevs = ret; | |
e0faa8d3 | 2773 | } |
b031220d MH |
2774 | /* This just release blacklist only if allocated */ |
2775 | kprobe_blacklist__release(); | |
e0faa8d3 | 2776 | |
4235b045 | 2777 | /* Loop 2: add all events */ |
8635bf6e | 2778 | for (i = 0; i < npevs; i++) { |
0e60836b | 2779 | ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs, |
ddb2f58f MH |
2780 | pkgs[i].ntevs, |
2781 | probe_conf.force_add); | |
fbee632d ACM |
2782 | if (ret < 0) |
2783 | break; | |
2784 | } | |
146a1439 | 2785 | end: |
449e5b24 MH |
2786 | /* Loop 3: cleanup and free trace events */ |
2787 | for (i = 0; i < npevs; i++) { | |
146a1439 | 2788 | for (j = 0; j < pkgs[i].ntevs; j++) |
0e60836b | 2789 | clear_probe_trace_event(&pkgs[i].tevs[j]); |
74cf249d | 2790 | zfree(&pkgs[i].tevs); |
449e5b24 MH |
2791 | } |
2792 | free(pkgs); | |
ee45b6c2 | 2793 | exit_symbol_maps(); |
146a1439 MH |
2794 | |
2795 | return ret; | |
e0faa8d3 MH |
2796 | } |
2797 | ||
0e60836b | 2798 | static int __del_trace_probe_event(int fd, struct str_node *ent) |
bbbb521b MH |
2799 | { |
2800 | char *p; | |
2801 | char buf[128]; | |
4235b045 | 2802 | int ret; |
bbbb521b | 2803 | |
0e60836b | 2804 | /* Convert from perf-probe event to trace-probe event */ |
146a1439 MH |
2805 | ret = e_snprintf(buf, 128, "-:%s", ent->s); |
2806 | if (ret < 0) | |
2807 | goto error; | |
2808 | ||
bbbb521b | 2809 | p = strchr(buf + 2, ':'); |
146a1439 MH |
2810 | if (!p) { |
2811 | pr_debug("Internal error: %s should have ':' but not.\n", | |
2812 | ent->s); | |
2813 | ret = -ENOTSUP; | |
2814 | goto error; | |
2815 | } | |
bbbb521b MH |
2816 | *p = '/'; |
2817 | ||
4235b045 MH |
2818 | pr_debug("Writing event: %s\n", buf); |
2819 | ret = write(fd, buf, strlen(buf)); | |
44a56040 MH |
2820 | if (ret < 0) { |
2821 | ret = -errno; | |
146a1439 | 2822 | goto error; |
44a56040 | 2823 | } |
146a1439 | 2824 | |
5e17b28f | 2825 | pr_info("Removed event: %s\n", ent->s); |
146a1439 MH |
2826 | return 0; |
2827 | error: | |
5f03cba4 MH |
2828 | pr_warning("Failed to delete event: %s\n", |
2829 | strerror_r(-ret, buf, sizeof(buf))); | |
146a1439 | 2830 | return ret; |
bbbb521b MH |
2831 | } |
2832 | ||
307a464b MH |
2833 | static int del_trace_probe_events(int fd, struct strfilter *filter, |
2834 | struct strlist *namelist) | |
fa28244d | 2835 | { |
307a464b MH |
2836 | struct str_node *ent; |
2837 | const char *p; | |
6dbe31f7 | 2838 | int ret = -ENOENT; |
fa28244d | 2839 | |
307a464b MH |
2840 | if (!namelist) |
2841 | return -ENOENT; | |
2842 | ||
2843 | strlist__for_each(ent, namelist) { | |
2844 | p = strchr(ent->s, ':'); | |
2845 | if ((p && strfilter__compare(filter, p + 1)) || | |
2846 | strfilter__compare(filter, ent->s)) { | |
0e60836b | 2847 | ret = __del_trace_probe_event(fd, ent); |
307a464b MH |
2848 | if (ret < 0) |
2849 | break; | |
bbbb521b MH |
2850 | } |
2851 | } | |
146a1439 MH |
2852 | |
2853 | return ret; | |
fa28244d MH |
2854 | } |
2855 | ||
307a464b | 2856 | int del_perf_probe_events(struct strfilter *filter) |
fa28244d | 2857 | { |
307a464b | 2858 | int ret, ret2, ufd = -1, kfd = -1; |
225466f1 | 2859 | struct strlist *namelist = NULL, *unamelist = NULL; |
307a464b MH |
2860 | char *str = strfilter__string(filter); |
2861 | ||
2862 | if (!str) | |
2863 | return -EINVAL; | |
2864 | ||
2865 | pr_debug("Delete filter: \'%s\'\n", str); | |
146a1439 | 2866 | |
fa28244d | 2867 | /* Get current event names */ |
225466f1 | 2868 | kfd = open_kprobe_events(true); |
467ec085 MH |
2869 | if (kfd >= 0) |
2870 | namelist = get_probe_trace_event_names(kfd, true); | |
225466f1 | 2871 | |
225466f1 | 2872 | ufd = open_uprobe_events(true); |
467ec085 | 2873 | if (ufd >= 0) |
225466f1 SD |
2874 | unamelist = get_probe_trace_event_names(ufd, true); |
2875 | ||
467ec085 MH |
2876 | if (kfd < 0 && ufd < 0) { |
2877 | print_both_open_warning(kfd, ufd); | |
307a464b | 2878 | ret = kfd; |
467ec085 MH |
2879 | goto error; |
2880 | } | |
2881 | ||
307a464b MH |
2882 | ret = del_trace_probe_events(kfd, filter, namelist); |
2883 | if (ret < 0 && ret != -ENOENT) | |
225466f1 | 2884 | goto error; |
225466f1 | 2885 | |
307a464b | 2886 | ret2 = del_trace_probe_events(ufd, filter, unamelist); |
dddc7ee3 | 2887 | if (ret2 < 0 && ret2 != -ENOENT) { |
307a464b | 2888 | ret = ret2; |
dddc7ee3 MH |
2889 | goto error; |
2890 | } | |
2891 | if (ret == -ENOENT && ret2 == -ENOENT) | |
307a464b MH |
2892 | pr_debug("\"%s\" does not hit any event.\n", str); |
2893 | /* Note that this is silently ignored */ | |
dddc7ee3 | 2894 | ret = 0; |
225466f1 SD |
2895 | |
2896 | error: | |
2897 | if (kfd >= 0) { | |
a23c4dc4 | 2898 | strlist__delete(namelist); |
225466f1 SD |
2899 | close(kfd); |
2900 | } | |
2901 | ||
2902 | if (ufd >= 0) { | |
a23c4dc4 | 2903 | strlist__delete(unamelist); |
225466f1 SD |
2904 | close(ufd); |
2905 | } | |
307a464b | 2906 | free(str); |
146a1439 MH |
2907 | |
2908 | return ret; | |
fa28244d | 2909 | } |
225466f1 | 2910 | |
3c42258c MH |
2911 | /* TODO: don't use a global variable for filter ... */ |
2912 | static struct strfilter *available_func_filter; | |
fa28244d | 2913 | |
e80711ca | 2914 | /* |
3c42258c MH |
2915 | * If a symbol corresponds to a function with global binding and |
2916 | * matches filter return 0. For all others return 1. | |
e80711ca | 2917 | */ |
1d037ca1 | 2918 | static int filter_available_functions(struct map *map __maybe_unused, |
3c42258c | 2919 | struct symbol *sym) |
e80711ca | 2920 | { |
e578da3b | 2921 | if (strfilter__compare(available_func_filter, sym->name)) |
3c42258c MH |
2922 | return 0; |
2923 | return 1; | |
e80711ca MH |
2924 | } |
2925 | ||
2df58634 MH |
2926 | int show_available_funcs(const char *target, struct strfilter *_filter, |
2927 | bool user) | |
e80711ca MH |
2928 | { |
2929 | struct map *map; | |
2930 | int ret; | |
2931 | ||
2df58634 | 2932 | ret = init_symbol_maps(user); |
e80711ca MH |
2933 | if (ret < 0) |
2934 | return ret; | |
2935 | ||
2df58634 MH |
2936 | /* Get a symbol map */ |
2937 | if (user) | |
2938 | map = dso__new_map(target); | |
2939 | else | |
2940 | map = kernel_get_module_map(target); | |
e80711ca | 2941 | if (!map) { |
2df58634 | 2942 | pr_err("Failed to get a map for %s\n", (target) ? : "kernel"); |
e80711ca MH |
2943 | return -EINVAL; |
2944 | } | |
225466f1 | 2945 | |
2df58634 | 2946 | /* Load symbols with given filter */ |
3c42258c | 2947 | available_func_filter = _filter; |
2df58634 MH |
2948 | if (map__load(map, filter_available_functions)) { |
2949 | pr_err("Failed to load symbols in %s\n", (target) ? : "kernel"); | |
2950 | goto end; | |
2951 | } | |
2952 | if (!dso__sorted_by_name(map->dso, map->type)) | |
2953 | dso__sort_by_name(map->dso, map->type); | |
225466f1 | 2954 | |
2df58634 MH |
2955 | /* Show all (filtered) symbols */ |
2956 | setup_pager(); | |
2957 | dso__fprintf_symbols_by_name(map->dso, map->type, stdout); | |
2958 | end: | |
2959 | if (user) { | |
84c2cafa | 2960 | map__put(map); |
2df58634 MH |
2961 | } |
2962 | exit_symbol_maps(); | |
225466f1 | 2963 | |
2df58634 | 2964 | return ret; |
225466f1 SD |
2965 | } |
2966 |