perf probe: Fix module probe issue if no dwarf support
[linux/fpc-iii.git] / tools / perf / util / probe-event.c
bloba9774628c6f6a98109df78f0fd64ce2ea2bac5d1
1 /*
2 * probe-event.c : perf-probe definition to probe_events format converter
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
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.
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.
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.
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>
31 #include <stdarg.h>
32 #include <limits.h>
33 #include <elf.h>
35 #include "util.h"
36 #include "event.h"
37 #include "strlist.h"
38 #include "debug.h"
39 #include "cache.h"
40 #include "color.h"
41 #include "symbol.h"
42 #include "thread.h"
43 #include <api/fs/fs.h>
44 #include "trace-event.h" /* For __maybe_unused */
45 #include "probe-event.h"
46 #include "probe-finder.h"
47 #include "probe-file.h"
48 #include "session.h"
50 #define MAX_CMDLEN 256
51 #define PERFPROBE_GROUP "probe"
53 bool probe_event_dry_run; /* Dry run flag */
54 struct probe_conf probe_conf;
56 #define semantic_error(msg ...) pr_err("Semantic error :" msg)
58 int e_snprintf(char *str, size_t size, const char *format, ...)
60 int ret;
61 va_list ap;
62 va_start(ap, format);
63 ret = vsnprintf(str, size, format, ap);
64 va_end(ap);
65 if (ret >= (int)size)
66 ret = -E2BIG;
67 return ret;
70 static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
71 static struct machine *host_machine;
73 /* Initialize symbol maps and path of vmlinux/modules */
74 int init_probe_symbol_maps(bool user_only)
76 int ret;
78 symbol_conf.sort_by_name = true;
79 symbol_conf.allow_aliases = true;
80 ret = symbol__init(NULL);
81 if (ret < 0) {
82 pr_debug("Failed to init symbol map.\n");
83 goto out;
86 if (host_machine || user_only) /* already initialized */
87 return 0;
89 if (symbol_conf.vmlinux_name)
90 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
92 host_machine = machine__new_host();
93 if (!host_machine) {
94 pr_debug("machine__new_host() failed.\n");
95 symbol__exit();
96 ret = -1;
98 out:
99 if (ret < 0)
100 pr_warning("Failed to init vmlinux path.\n");
101 return ret;
104 void exit_probe_symbol_maps(void)
106 if (host_machine) {
107 machine__delete(host_machine);
108 host_machine = NULL;
110 symbol__exit();
113 static struct symbol *__find_kernel_function_by_name(const char *name,
114 struct map **mapp)
116 return machine__find_kernel_function_by_name(host_machine, name, mapp,
117 NULL);
120 static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
122 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
125 static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
127 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
128 struct kmap *kmap;
129 struct map *map = machine__kernel_map(host_machine);
131 if (map__load(map, NULL) < 0)
132 return NULL;
134 kmap = map__kmap(map);
135 if (!kmap)
136 return NULL;
137 return kmap->ref_reloc_sym;
140 static int kernel_get_symbol_address_by_name(const char *name, u64 *addr,
141 bool reloc, bool reladdr)
143 struct ref_reloc_sym *reloc_sym;
144 struct symbol *sym;
145 struct map *map;
147 /* ref_reloc_sym is just a label. Need a special fix*/
148 reloc_sym = kernel_get_ref_reloc_sym();
149 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
150 *addr = (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
151 else {
152 sym = __find_kernel_function_by_name(name, &map);
153 if (!sym)
154 return -ENOENT;
155 *addr = map->unmap_ip(map, sym->start) -
156 ((reloc) ? 0 : map->reloc) -
157 ((reladdr) ? map->start : 0);
159 return 0;
162 static struct map *kernel_get_module_map(const char *module)
164 struct map_groups *grp = &host_machine->kmaps;
165 struct maps *maps = &grp->maps[MAP__FUNCTION];
166 struct map *pos;
168 /* A file path -- this is an offline module */
169 if (module && strchr(module, '/'))
170 return machine__findnew_module_map(host_machine, 0, module);
172 if (!module)
173 module = "kernel";
175 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
176 if (strncmp(pos->dso->short_name + 1, module,
177 pos->dso->short_name_len - 2) == 0) {
178 return pos;
181 return NULL;
184 static struct map *get_target_map(const char *target, bool user)
186 /* Init maps of given executable or kernel */
187 if (user)
188 return dso__new_map(target);
189 else
190 return kernel_get_module_map(target);
193 static void put_target_map(struct map *map, bool user)
195 if (map && user) {
196 /* Only the user map needs to be released */
197 map__put(map);
202 static int convert_exec_to_group(const char *exec, char **result)
204 char *ptr1, *ptr2, *exec_copy;
205 char buf[64];
206 int ret;
208 exec_copy = strdup(exec);
209 if (!exec_copy)
210 return -ENOMEM;
212 ptr1 = basename(exec_copy);
213 if (!ptr1) {
214 ret = -EINVAL;
215 goto out;
218 ptr2 = strpbrk(ptr1, "-._");
219 if (ptr2)
220 *ptr2 = '\0';
221 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
222 if (ret < 0)
223 goto out;
225 *result = strdup(buf);
226 ret = *result ? 0 : -ENOMEM;
228 out:
229 free(exec_copy);
230 return ret;
233 static void clear_perf_probe_point(struct perf_probe_point *pp)
235 free(pp->file);
236 free(pp->function);
237 free(pp->lazy_line);
240 static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
242 int i;
244 for (i = 0; i < ntevs; i++)
245 clear_probe_trace_event(tevs + i);
248 static bool kprobe_blacklist__listed(unsigned long address);
249 static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
251 u64 etext_addr = 0;
252 int ret;
254 /* Get the address of _etext for checking non-probable text symbol */
255 ret = kernel_get_symbol_address_by_name("_etext", &etext_addr,
256 false, false);
258 if (ret == 0 && etext_addr < address)
259 pr_warning("%s is out of .text, skip it.\n", symbol);
260 else if (kprobe_blacklist__listed(address))
261 pr_warning("%s is blacklisted function, skip it.\n", symbol);
262 else
263 return false;
265 return true;
269 * NOTE:
270 * '.gnu.linkonce.this_module' section of kernel module elf directly
271 * maps to 'struct module' from linux/module.h. This section contains
272 * actual module name which will be used by kernel after loading it.
273 * But, we cannot use 'struct module' here since linux/module.h is not
274 * exposed to user-space. Offset of 'name' has remained same from long
275 * time, so hardcoding it here.
277 #ifdef __LP64__
278 #define MOD_NAME_OFFSET 24
279 #else
280 #define MOD_NAME_OFFSET 12
281 #endif
284 * @module can be module name of module file path. In case of path,
285 * inspect elf and find out what is actual module name.
286 * Caller has to free mod_name after using it.
288 static char *find_module_name(const char *module)
290 int fd;
291 Elf *elf;
292 GElf_Ehdr ehdr;
293 GElf_Shdr shdr;
294 Elf_Data *data;
295 Elf_Scn *sec;
296 char *mod_name = NULL;
298 fd = open(module, O_RDONLY);
299 if (fd < 0)
300 return NULL;
302 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
303 if (elf == NULL)
304 goto elf_err;
306 if (gelf_getehdr(elf, &ehdr) == NULL)
307 goto ret_err;
309 sec = elf_section_by_name(elf, &ehdr, &shdr,
310 ".gnu.linkonce.this_module", NULL);
311 if (!sec)
312 goto ret_err;
314 data = elf_getdata(sec, NULL);
315 if (!data || !data->d_buf)
316 goto ret_err;
318 mod_name = strdup((char *)data->d_buf + MOD_NAME_OFFSET);
320 ret_err:
321 elf_end(elf);
322 elf_err:
323 close(fd);
324 return mod_name;
327 #ifdef HAVE_DWARF_SUPPORT
329 static int kernel_get_module_dso(const char *module, struct dso **pdso)
331 struct dso *dso;
332 struct map *map;
333 const char *vmlinux_name;
334 int ret = 0;
336 if (module) {
337 char module_name[128];
339 snprintf(module_name, sizeof(module_name), "[%s]", module);
340 map = map_groups__find_by_name(&host_machine->kmaps, MAP__FUNCTION, module_name);
341 if (map) {
342 dso = map->dso;
343 goto found;
345 pr_debug("Failed to find module %s.\n", module);
346 return -ENOENT;
349 map = machine__kernel_map(host_machine);
350 dso = map->dso;
352 vmlinux_name = symbol_conf.vmlinux_name;
353 dso->load_errno = 0;
354 if (vmlinux_name)
355 ret = dso__load_vmlinux(dso, map, vmlinux_name, false, NULL);
356 else
357 ret = dso__load_vmlinux_path(dso, map, NULL);
358 found:
359 *pdso = dso;
360 return ret;
364 * Some binaries like glibc have special symbols which are on the symbol
365 * table, but not in the debuginfo. If we can find the address of the
366 * symbol from map, we can translate the address back to the probe point.
368 static int find_alternative_probe_point(struct debuginfo *dinfo,
369 struct perf_probe_point *pp,
370 struct perf_probe_point *result,
371 const char *target, bool uprobes)
373 struct map *map = NULL;
374 struct symbol *sym;
375 u64 address = 0;
376 int ret = -ENOENT;
378 /* This can work only for function-name based one */
379 if (!pp->function || pp->file)
380 return -ENOTSUP;
382 map = get_target_map(target, uprobes);
383 if (!map)
384 return -EINVAL;
386 /* Find the address of given function */
387 map__for_each_symbol_by_name(map, pp->function, sym) {
388 if (uprobes)
389 address = sym->start;
390 else
391 address = map->unmap_ip(map, sym->start);
392 break;
394 if (!address) {
395 ret = -ENOENT;
396 goto out;
398 pr_debug("Symbol %s address found : %" PRIx64 "\n",
399 pp->function, address);
401 ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
402 result);
403 if (ret <= 0)
404 ret = (!ret) ? -ENOENT : ret;
405 else {
406 result->offset += pp->offset;
407 result->line += pp->line;
408 result->retprobe = pp->retprobe;
409 ret = 0;
412 out:
413 put_target_map(map, uprobes);
414 return ret;
418 static int get_alternative_probe_event(struct debuginfo *dinfo,
419 struct perf_probe_event *pev,
420 struct perf_probe_point *tmp)
422 int ret;
424 memcpy(tmp, &pev->point, sizeof(*tmp));
425 memset(&pev->point, 0, sizeof(pev->point));
426 ret = find_alternative_probe_point(dinfo, tmp, &pev->point,
427 pev->target, pev->uprobes);
428 if (ret < 0)
429 memcpy(&pev->point, tmp, sizeof(*tmp));
431 return ret;
434 static int get_alternative_line_range(struct debuginfo *dinfo,
435 struct line_range *lr,
436 const char *target, bool user)
438 struct perf_probe_point pp = { .function = lr->function,
439 .file = lr->file,
440 .line = lr->start };
441 struct perf_probe_point result;
442 int ret, len = 0;
444 memset(&result, 0, sizeof(result));
446 if (lr->end != INT_MAX)
447 len = lr->end - lr->start;
448 ret = find_alternative_probe_point(dinfo, &pp, &result,
449 target, user);
450 if (!ret) {
451 lr->function = result.function;
452 lr->file = result.file;
453 lr->start = result.line;
454 if (lr->end != INT_MAX)
455 lr->end = lr->start + len;
456 clear_perf_probe_point(&pp);
458 return ret;
461 /* Open new debuginfo of given module */
462 static struct debuginfo *open_debuginfo(const char *module, bool silent)
464 const char *path = module;
465 char reason[STRERR_BUFSIZE];
466 struct debuginfo *ret = NULL;
467 struct dso *dso = NULL;
468 int err;
470 if (!module || !strchr(module, '/')) {
471 err = kernel_get_module_dso(module, &dso);
472 if (err < 0) {
473 if (!dso || dso->load_errno == 0) {
474 if (!strerror_r(-err, reason, STRERR_BUFSIZE))
475 strcpy(reason, "(unknown)");
476 } else
477 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
478 if (!silent)
479 pr_err("Failed to find the path for %s: %s\n",
480 module ?: "kernel", reason);
481 return NULL;
483 path = dso->long_name;
485 ret = debuginfo__new(path);
486 if (!ret && !silent) {
487 pr_warning("The %s file has no debug information.\n", path);
488 if (!module || !strtailcmp(path, ".ko"))
489 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
490 else
491 pr_warning("Rebuild with -g, ");
492 pr_warning("or install an appropriate debuginfo package.\n");
494 return ret;
497 /* For caching the last debuginfo */
498 static struct debuginfo *debuginfo_cache;
499 static char *debuginfo_cache_path;
501 static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
503 const char *path = module;
505 /* If the module is NULL, it should be the kernel. */
506 if (!module)
507 path = "kernel";
509 if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
510 goto out;
512 /* Copy module path */
513 free(debuginfo_cache_path);
514 debuginfo_cache_path = strdup(path);
515 if (!debuginfo_cache_path) {
516 debuginfo__delete(debuginfo_cache);
517 debuginfo_cache = NULL;
518 goto out;
521 debuginfo_cache = open_debuginfo(module, silent);
522 if (!debuginfo_cache)
523 zfree(&debuginfo_cache_path);
524 out:
525 return debuginfo_cache;
528 static void debuginfo_cache__exit(void)
530 debuginfo__delete(debuginfo_cache);
531 debuginfo_cache = NULL;
532 zfree(&debuginfo_cache_path);
536 static int get_text_start_address(const char *exec, unsigned long *address)
538 Elf *elf;
539 GElf_Ehdr ehdr;
540 GElf_Shdr shdr;
541 int fd, ret = -ENOENT;
543 fd = open(exec, O_RDONLY);
544 if (fd < 0)
545 return -errno;
547 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
548 if (elf == NULL) {
549 ret = -EINVAL;
550 goto out_close;
553 if (gelf_getehdr(elf, &ehdr) == NULL)
554 goto out;
556 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
557 goto out;
559 *address = shdr.sh_addr - shdr.sh_offset;
560 ret = 0;
561 out:
562 elf_end(elf);
563 out_close:
564 close(fd);
566 return ret;
570 * Convert trace point to probe point with debuginfo
572 static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
573 struct perf_probe_point *pp,
574 bool is_kprobe)
576 struct debuginfo *dinfo = NULL;
577 unsigned long stext = 0;
578 u64 addr = tp->address;
579 int ret = -ENOENT;
581 /* convert the address to dwarf address */
582 if (!is_kprobe) {
583 if (!addr) {
584 ret = -EINVAL;
585 goto error;
587 ret = get_text_start_address(tp->module, &stext);
588 if (ret < 0)
589 goto error;
590 addr += stext;
591 } else if (tp->symbol) {
592 /* If the module is given, this returns relative address */
593 ret = kernel_get_symbol_address_by_name(tp->symbol, &addr,
594 false, !!tp->module);
595 if (ret != 0)
596 goto error;
597 addr += tp->offset;
600 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
601 tp->module ? : "kernel");
603 dinfo = debuginfo_cache__open(tp->module, verbose == 0);
604 if (dinfo)
605 ret = debuginfo__find_probe_point(dinfo,
606 (unsigned long)addr, pp);
607 else
608 ret = -ENOENT;
610 if (ret > 0) {
611 pp->retprobe = tp->retprobe;
612 return 0;
614 error:
615 pr_debug("Failed to find corresponding probes from debuginfo.\n");
616 return ret ? : -ENOENT;
619 static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
620 int ntevs, const char *exec)
622 int i, ret = 0;
623 unsigned long stext = 0;
625 if (!exec)
626 return 0;
628 ret = get_text_start_address(exec, &stext);
629 if (ret < 0)
630 return ret;
632 for (i = 0; i < ntevs && ret >= 0; i++) {
633 /* point.address is the addres of point.symbol + point.offset */
634 tevs[i].point.address -= stext;
635 tevs[i].point.module = strdup(exec);
636 if (!tevs[i].point.module) {
637 ret = -ENOMEM;
638 break;
640 tevs[i].uprobes = true;
643 return ret;
646 static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
647 int ntevs, const char *module)
649 int i, ret = 0;
650 char *mod_name = NULL;
652 if (!module)
653 return 0;
655 mod_name = find_module_name(module);
657 for (i = 0; i < ntevs; i++) {
658 tevs[i].point.module =
659 strdup(mod_name ? mod_name : module);
660 if (!tevs[i].point.module) {
661 ret = -ENOMEM;
662 break;
666 free(mod_name);
667 return ret;
670 /* Post processing the probe events */
671 static int post_process_probe_trace_events(struct probe_trace_event *tevs,
672 int ntevs, const char *module,
673 bool uprobe)
675 struct ref_reloc_sym *reloc_sym;
676 char *tmp;
677 int i, skipped = 0;
679 if (uprobe)
680 return add_exec_to_probe_trace_events(tevs, ntevs, module);
682 /* Note that currently ref_reloc_sym based probe is not for drivers */
683 if (module)
684 return add_module_to_probe_trace_events(tevs, ntevs, module);
686 reloc_sym = kernel_get_ref_reloc_sym();
687 if (!reloc_sym) {
688 pr_warning("Relocated base symbol is not found!\n");
689 return -EINVAL;
692 for (i = 0; i < ntevs; i++) {
693 if (!tevs[i].point.address || tevs[i].point.retprobe)
694 continue;
695 /* If we found a wrong one, mark it by NULL symbol */
696 if (kprobe_warn_out_range(tevs[i].point.symbol,
697 tevs[i].point.address)) {
698 tmp = NULL;
699 skipped++;
700 } else {
701 tmp = strdup(reloc_sym->name);
702 if (!tmp)
703 return -ENOMEM;
705 /* If we have no realname, use symbol for it */
706 if (!tevs[i].point.realname)
707 tevs[i].point.realname = tevs[i].point.symbol;
708 else
709 free(tevs[i].point.symbol);
710 tevs[i].point.symbol = tmp;
711 tevs[i].point.offset = tevs[i].point.address -
712 reloc_sym->unrelocated_addr;
714 return skipped;
717 /* Try to find perf_probe_event with debuginfo */
718 static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
719 struct probe_trace_event **tevs)
721 bool need_dwarf = perf_probe_event_need_dwarf(pev);
722 struct perf_probe_point tmp;
723 struct debuginfo *dinfo;
724 int ntevs, ret = 0;
726 dinfo = open_debuginfo(pev->target, !need_dwarf);
727 if (!dinfo) {
728 if (need_dwarf)
729 return -ENOENT;
730 pr_debug("Could not open debuginfo. Try to use symbols.\n");
731 return 0;
734 pr_debug("Try to find probe point from debuginfo.\n");
735 /* Searching trace events corresponding to a probe event */
736 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
738 if (ntevs == 0) { /* Not found, retry with an alternative */
739 ret = get_alternative_probe_event(dinfo, pev, &tmp);
740 if (!ret) {
741 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
743 * Write back to the original probe_event for
744 * setting appropriate (user given) event name
746 clear_perf_probe_point(&pev->point);
747 memcpy(&pev->point, &tmp, sizeof(tmp));
751 debuginfo__delete(dinfo);
753 if (ntevs > 0) { /* Succeeded to find trace events */
754 pr_debug("Found %d probe_trace_events.\n", ntevs);
755 ret = post_process_probe_trace_events(*tevs, ntevs,
756 pev->target, pev->uprobes);
757 if (ret < 0 || ret == ntevs) {
758 clear_probe_trace_events(*tevs, ntevs);
759 zfree(tevs);
761 if (ret != ntevs)
762 return ret < 0 ? ret : ntevs;
763 ntevs = 0;
764 /* Fall through */
767 if (ntevs == 0) { /* No error but failed to find probe point. */
768 pr_warning("Probe point '%s' not found.\n",
769 synthesize_perf_probe_point(&pev->point));
770 return -ENOENT;
772 /* Error path : ntevs < 0 */
773 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
774 if (ntevs < 0) {
775 if (ntevs == -EBADF)
776 pr_warning("Warning: No dwarf info found in the vmlinux - "
777 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
778 if (!need_dwarf) {
779 pr_debug("Trying to use symbols.\n");
780 return 0;
783 return ntevs;
786 #define LINEBUF_SIZE 256
787 #define NR_ADDITIONAL_LINES 2
789 static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
791 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
792 const char *color = show_num ? "" : PERF_COLOR_BLUE;
793 const char *prefix = NULL;
795 do {
796 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
797 goto error;
798 if (skip)
799 continue;
800 if (!prefix) {
801 prefix = show_num ? "%7d " : " ";
802 color_fprintf(stdout, color, prefix, l);
804 color_fprintf(stdout, color, "%s", buf);
806 } while (strchr(buf, '\n') == NULL);
808 return 1;
809 error:
810 if (ferror(fp)) {
811 pr_warning("File read error: %s\n",
812 strerror_r(errno, sbuf, sizeof(sbuf)));
813 return -1;
815 return 0;
818 static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
820 int rv = __show_one_line(fp, l, skip, show_num);
821 if (rv == 0) {
822 pr_warning("Source file is shorter than expected.\n");
823 rv = -1;
825 return rv;
828 #define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
829 #define show_one_line(f,l) _show_one_line(f,l,false,false)
830 #define skip_one_line(f,l) _show_one_line(f,l,true,false)
831 #define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
834 * Show line-range always requires debuginfo to find source file and
835 * line number.
837 static int __show_line_range(struct line_range *lr, const char *module,
838 bool user)
840 int l = 1;
841 struct int_node *ln;
842 struct debuginfo *dinfo;
843 FILE *fp;
844 int ret;
845 char *tmp;
846 char sbuf[STRERR_BUFSIZE];
848 /* Search a line range */
849 dinfo = open_debuginfo(module, false);
850 if (!dinfo)
851 return -ENOENT;
853 ret = debuginfo__find_line_range(dinfo, lr);
854 if (!ret) { /* Not found, retry with an alternative */
855 ret = get_alternative_line_range(dinfo, lr, module, user);
856 if (!ret)
857 ret = debuginfo__find_line_range(dinfo, lr);
859 debuginfo__delete(dinfo);
860 if (ret == 0 || ret == -ENOENT) {
861 pr_warning("Specified source line is not found.\n");
862 return -ENOENT;
863 } else if (ret < 0) {
864 pr_warning("Debuginfo analysis failed.\n");
865 return ret;
868 /* Convert source file path */
869 tmp = lr->path;
870 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
872 /* Free old path when new path is assigned */
873 if (tmp != lr->path)
874 free(tmp);
876 if (ret < 0) {
877 pr_warning("Failed to find source file path.\n");
878 return ret;
881 setup_pager();
883 if (lr->function)
884 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
885 lr->start - lr->offset);
886 else
887 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
889 fp = fopen(lr->path, "r");
890 if (fp == NULL) {
891 pr_warning("Failed to open %s: %s\n", lr->path,
892 strerror_r(errno, sbuf, sizeof(sbuf)));
893 return -errno;
895 /* Skip to starting line number */
896 while (l < lr->start) {
897 ret = skip_one_line(fp, l++);
898 if (ret < 0)
899 goto end;
902 intlist__for_each(ln, lr->line_list) {
903 for (; ln->i > l; l++) {
904 ret = show_one_line(fp, l - lr->offset);
905 if (ret < 0)
906 goto end;
908 ret = show_one_line_with_num(fp, l++ - lr->offset);
909 if (ret < 0)
910 goto end;
913 if (lr->end == INT_MAX)
914 lr->end = l + NR_ADDITIONAL_LINES;
915 while (l <= lr->end) {
916 ret = show_one_line_or_eof(fp, l++ - lr->offset);
917 if (ret <= 0)
918 break;
920 end:
921 fclose(fp);
922 return ret;
925 int show_line_range(struct line_range *lr, const char *module, bool user)
927 int ret;
929 ret = init_probe_symbol_maps(user);
930 if (ret < 0)
931 return ret;
932 ret = __show_line_range(lr, module, user);
933 exit_probe_symbol_maps();
935 return ret;
938 static int show_available_vars_at(struct debuginfo *dinfo,
939 struct perf_probe_event *pev,
940 struct strfilter *_filter)
942 char *buf;
943 int ret, i, nvars;
944 struct str_node *node;
945 struct variable_list *vls = NULL, *vl;
946 struct perf_probe_point tmp;
947 const char *var;
949 buf = synthesize_perf_probe_point(&pev->point);
950 if (!buf)
951 return -EINVAL;
952 pr_debug("Searching variables at %s\n", buf);
954 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
955 if (!ret) { /* Not found, retry with an alternative */
956 ret = get_alternative_probe_event(dinfo, pev, &tmp);
957 if (!ret) {
958 ret = debuginfo__find_available_vars_at(dinfo, pev,
959 &vls);
960 /* Release the old probe_point */
961 clear_perf_probe_point(&tmp);
964 if (ret <= 0) {
965 if (ret == 0 || ret == -ENOENT) {
966 pr_err("Failed to find the address of %s\n", buf);
967 ret = -ENOENT;
968 } else
969 pr_warning("Debuginfo analysis failed.\n");
970 goto end;
973 /* Some variables are found */
974 fprintf(stdout, "Available variables at %s\n", buf);
975 for (i = 0; i < ret; i++) {
976 vl = &vls[i];
978 * A probe point might be converted to
979 * several trace points.
981 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
982 vl->point.offset);
983 zfree(&vl->point.symbol);
984 nvars = 0;
985 if (vl->vars) {
986 strlist__for_each(node, vl->vars) {
987 var = strchr(node->s, '\t') + 1;
988 if (strfilter__compare(_filter, var)) {
989 fprintf(stdout, "\t\t%s\n", node->s);
990 nvars++;
993 strlist__delete(vl->vars);
995 if (nvars == 0)
996 fprintf(stdout, "\t\t(No matched variables)\n");
998 free(vls);
999 end:
1000 free(buf);
1001 return ret;
1004 /* Show available variables on given probe point */
1005 int show_available_vars(struct perf_probe_event *pevs, int npevs,
1006 struct strfilter *_filter)
1008 int i, ret = 0;
1009 struct debuginfo *dinfo;
1011 ret = init_probe_symbol_maps(pevs->uprobes);
1012 if (ret < 0)
1013 return ret;
1015 dinfo = open_debuginfo(pevs->target, false);
1016 if (!dinfo) {
1017 ret = -ENOENT;
1018 goto out;
1021 setup_pager();
1023 for (i = 0; i < npevs && ret >= 0; i++)
1024 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
1026 debuginfo__delete(dinfo);
1027 out:
1028 exit_probe_symbol_maps();
1029 return ret;
1032 #else /* !HAVE_DWARF_SUPPORT */
1034 static void debuginfo_cache__exit(void)
1038 static int
1039 find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
1040 struct perf_probe_point *pp __maybe_unused,
1041 bool is_kprobe __maybe_unused)
1043 return -ENOSYS;
1046 static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
1047 struct probe_trace_event **tevs __maybe_unused)
1049 if (perf_probe_event_need_dwarf(pev)) {
1050 pr_warning("Debuginfo-analysis is not supported.\n");
1051 return -ENOSYS;
1054 return 0;
1057 int show_line_range(struct line_range *lr __maybe_unused,
1058 const char *module __maybe_unused,
1059 bool user __maybe_unused)
1061 pr_warning("Debuginfo-analysis is not supported.\n");
1062 return -ENOSYS;
1065 int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
1066 int npevs __maybe_unused,
1067 struct strfilter *filter __maybe_unused)
1069 pr_warning("Debuginfo-analysis is not supported.\n");
1070 return -ENOSYS;
1072 #endif
1074 void line_range__clear(struct line_range *lr)
1076 free(lr->function);
1077 free(lr->file);
1078 free(lr->path);
1079 free(lr->comp_dir);
1080 intlist__delete(lr->line_list);
1081 memset(lr, 0, sizeof(*lr));
1084 int line_range__init(struct line_range *lr)
1086 memset(lr, 0, sizeof(*lr));
1087 lr->line_list = intlist__new(NULL);
1088 if (!lr->line_list)
1089 return -ENOMEM;
1090 else
1091 return 0;
1094 static int parse_line_num(char **ptr, int *val, const char *what)
1096 const char *start = *ptr;
1098 errno = 0;
1099 *val = strtol(*ptr, ptr, 0);
1100 if (errno || *ptr == start) {
1101 semantic_error("'%s' is not a valid number.\n", what);
1102 return -EINVAL;
1104 return 0;
1107 /* Check the name is good for event, group or function */
1108 static bool is_c_func_name(const char *name)
1110 if (!isalpha(*name) && *name != '_')
1111 return false;
1112 while (*++name != '\0') {
1113 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1114 return false;
1116 return true;
1120 * Stuff 'lr' according to the line range described by 'arg'.
1121 * The line range syntax is described by:
1123 * SRC[:SLN[+NUM|-ELN]]
1124 * FNC[@SRC][:SLN[+NUM|-ELN]]
1126 int parse_line_range_desc(const char *arg, struct line_range *lr)
1128 char *range, *file, *name = strdup(arg);
1129 int err;
1131 if (!name)
1132 return -ENOMEM;
1134 lr->start = 0;
1135 lr->end = INT_MAX;
1137 range = strchr(name, ':');
1138 if (range) {
1139 *range++ = '\0';
1141 err = parse_line_num(&range, &lr->start, "start line");
1142 if (err)
1143 goto err;
1145 if (*range == '+' || *range == '-') {
1146 const char c = *range++;
1148 err = parse_line_num(&range, &lr->end, "end line");
1149 if (err)
1150 goto err;
1152 if (c == '+') {
1153 lr->end += lr->start;
1155 * Adjust the number of lines here.
1156 * If the number of lines == 1, the
1157 * the end of line should be equal to
1158 * the start of line.
1160 lr->end--;
1164 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
1166 err = -EINVAL;
1167 if (lr->start > lr->end) {
1168 semantic_error("Start line must be smaller"
1169 " than end line.\n");
1170 goto err;
1172 if (*range != '\0') {
1173 semantic_error("Tailing with invalid str '%s'.\n", range);
1174 goto err;
1178 file = strchr(name, '@');
1179 if (file) {
1180 *file = '\0';
1181 lr->file = strdup(++file);
1182 if (lr->file == NULL) {
1183 err = -ENOMEM;
1184 goto err;
1186 lr->function = name;
1187 } else if (strchr(name, '/') || strchr(name, '.'))
1188 lr->file = name;
1189 else if (is_c_func_name(name))/* We reuse it for checking funcname */
1190 lr->function = name;
1191 else { /* Invalid name */
1192 semantic_error("'%s' is not a valid function name.\n", name);
1193 err = -EINVAL;
1194 goto err;
1197 return 0;
1198 err:
1199 free(name);
1200 return err;
1203 /* Parse probepoint definition. */
1204 static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
1206 struct perf_probe_point *pp = &pev->point;
1207 char *ptr, *tmp;
1208 char c, nc = 0;
1209 bool file_spec = false;
1211 * <Syntax>
1212 * perf probe [EVENT=]SRC[:LN|;PTN]
1213 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
1215 * TODO:Group name support
1217 if (!arg)
1218 return -EINVAL;
1220 ptr = strpbrk(arg, ";=@+%");
1221 if (ptr && *ptr == '=') { /* Event name */
1222 *ptr = '\0';
1223 tmp = ptr + 1;
1224 if (strchr(arg, ':')) {
1225 semantic_error("Group name is not supported yet.\n");
1226 return -ENOTSUP;
1228 if (!is_c_func_name(arg)) {
1229 semantic_error("%s is bad for event name -it must "
1230 "follow C symbol-naming rule.\n", arg);
1231 return -EINVAL;
1233 pev->event = strdup(arg);
1234 if (pev->event == NULL)
1235 return -ENOMEM;
1236 pev->group = NULL;
1237 arg = tmp;
1241 * Check arg is function or file name and copy it.
1243 * We consider arg to be a file spec if and only if it satisfies
1244 * all of the below criteria::
1245 * - it does not include any of "+@%",
1246 * - it includes one of ":;", and
1247 * - it has a period '.' in the name.
1249 * Otherwise, we consider arg to be a function specification.
1251 if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) {
1252 /* This is a file spec if it includes a '.' before ; or : */
1253 if (memchr(arg, '.', ptr - arg))
1254 file_spec = true;
1257 ptr = strpbrk(arg, ";:+@%");
1258 if (ptr) {
1259 nc = *ptr;
1260 *ptr++ = '\0';
1263 if (arg[0] == '\0')
1264 tmp = NULL;
1265 else {
1266 tmp = strdup(arg);
1267 if (tmp == NULL)
1268 return -ENOMEM;
1271 if (file_spec)
1272 pp->file = tmp;
1273 else {
1274 pp->function = tmp;
1277 * Keep pp->function even if this is absolute address,
1278 * so it can mark whether abs_address is valid.
1279 * Which make 'perf probe lib.bin 0x0' possible.
1281 * Note that checking length of tmp is not needed
1282 * because when we access tmp[1] we know tmp[0] is '0',
1283 * so tmp[1] should always valid (but could be '\0').
1285 if (tmp && !strncmp(tmp, "0x", 2)) {
1286 pp->abs_address = strtoul(pp->function, &tmp, 0);
1287 if (*tmp != '\0') {
1288 semantic_error("Invalid absolute address.\n");
1289 return -EINVAL;
1294 /* Parse other options */
1295 while (ptr) {
1296 arg = ptr;
1297 c = nc;
1298 if (c == ';') { /* Lazy pattern must be the last part */
1299 pp->lazy_line = strdup(arg);
1300 if (pp->lazy_line == NULL)
1301 return -ENOMEM;
1302 break;
1304 ptr = strpbrk(arg, ";:+@%");
1305 if (ptr) {
1306 nc = *ptr;
1307 *ptr++ = '\0';
1309 switch (c) {
1310 case ':': /* Line number */
1311 pp->line = strtoul(arg, &tmp, 0);
1312 if (*tmp != '\0') {
1313 semantic_error("There is non-digit char"
1314 " in line number.\n");
1315 return -EINVAL;
1317 break;
1318 case '+': /* Byte offset from a symbol */
1319 pp->offset = strtoul(arg, &tmp, 0);
1320 if (*tmp != '\0') {
1321 semantic_error("There is non-digit character"
1322 " in offset.\n");
1323 return -EINVAL;
1325 break;
1326 case '@': /* File name */
1327 if (pp->file) {
1328 semantic_error("SRC@SRC is not allowed.\n");
1329 return -EINVAL;
1331 pp->file = strdup(arg);
1332 if (pp->file == NULL)
1333 return -ENOMEM;
1334 break;
1335 case '%': /* Probe places */
1336 if (strcmp(arg, "return") == 0) {
1337 pp->retprobe = 1;
1338 } else { /* Others not supported yet */
1339 semantic_error("%%%s is not supported.\n", arg);
1340 return -ENOTSUP;
1342 break;
1343 default: /* Buggy case */
1344 pr_err("This program has a bug at %s:%d.\n",
1345 __FILE__, __LINE__);
1346 return -ENOTSUP;
1347 break;
1351 /* Exclusion check */
1352 if (pp->lazy_line && pp->line) {
1353 semantic_error("Lazy pattern can't be used with"
1354 " line number.\n");
1355 return -EINVAL;
1358 if (pp->lazy_line && pp->offset) {
1359 semantic_error("Lazy pattern can't be used with offset.\n");
1360 return -EINVAL;
1363 if (pp->line && pp->offset) {
1364 semantic_error("Offset can't be used with line number.\n");
1365 return -EINVAL;
1368 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
1369 semantic_error("File always requires line number or "
1370 "lazy pattern.\n");
1371 return -EINVAL;
1374 if (pp->offset && !pp->function) {
1375 semantic_error("Offset requires an entry function.\n");
1376 return -EINVAL;
1379 if (pp->retprobe && !pp->function) {
1380 semantic_error("Return probe requires an entry function.\n");
1381 return -EINVAL;
1384 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
1385 semantic_error("Offset/Line/Lazy pattern can't be used with "
1386 "return probe.\n");
1387 return -EINVAL;
1390 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
1391 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1392 pp->lazy_line);
1393 return 0;
1396 /* Parse perf-probe event argument */
1397 static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
1399 char *tmp, *goodname;
1400 struct perf_probe_arg_field **fieldp;
1402 pr_debug("parsing arg: %s into ", str);
1404 tmp = strchr(str, '=');
1405 if (tmp) {
1406 arg->name = strndup(str, tmp - str);
1407 if (arg->name == NULL)
1408 return -ENOMEM;
1409 pr_debug("name:%s ", arg->name);
1410 str = tmp + 1;
1413 tmp = strchr(str, ':');
1414 if (tmp) { /* Type setting */
1415 *tmp = '\0';
1416 arg->type = strdup(tmp + 1);
1417 if (arg->type == NULL)
1418 return -ENOMEM;
1419 pr_debug("type:%s ", arg->type);
1422 tmp = strpbrk(str, "-.[");
1423 if (!is_c_varname(str) || !tmp) {
1424 /* A variable, register, symbol or special value */
1425 arg->var = strdup(str);
1426 if (arg->var == NULL)
1427 return -ENOMEM;
1428 pr_debug("%s\n", arg->var);
1429 return 0;
1432 /* Structure fields or array element */
1433 arg->var = strndup(str, tmp - str);
1434 if (arg->var == NULL)
1435 return -ENOMEM;
1436 goodname = arg->var;
1437 pr_debug("%s, ", arg->var);
1438 fieldp = &arg->field;
1440 do {
1441 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1442 if (*fieldp == NULL)
1443 return -ENOMEM;
1444 if (*tmp == '[') { /* Array */
1445 str = tmp;
1446 (*fieldp)->index = strtol(str + 1, &tmp, 0);
1447 (*fieldp)->ref = true;
1448 if (*tmp != ']' || tmp == str + 1) {
1449 semantic_error("Array index must be a"
1450 " number.\n");
1451 return -EINVAL;
1453 tmp++;
1454 if (*tmp == '\0')
1455 tmp = NULL;
1456 } else { /* Structure */
1457 if (*tmp == '.') {
1458 str = tmp + 1;
1459 (*fieldp)->ref = false;
1460 } else if (tmp[1] == '>') {
1461 str = tmp + 2;
1462 (*fieldp)->ref = true;
1463 } else {
1464 semantic_error("Argument parse error: %s\n",
1465 str);
1466 return -EINVAL;
1468 tmp = strpbrk(str, "-.[");
1470 if (tmp) {
1471 (*fieldp)->name = strndup(str, tmp - str);
1472 if ((*fieldp)->name == NULL)
1473 return -ENOMEM;
1474 if (*str != '[')
1475 goodname = (*fieldp)->name;
1476 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1477 fieldp = &(*fieldp)->next;
1479 } while (tmp);
1480 (*fieldp)->name = strdup(str);
1481 if ((*fieldp)->name == NULL)
1482 return -ENOMEM;
1483 if (*str != '[')
1484 goodname = (*fieldp)->name;
1485 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
1487 /* If no name is specified, set the last field name (not array index)*/
1488 if (!arg->name) {
1489 arg->name = strdup(goodname);
1490 if (arg->name == NULL)
1491 return -ENOMEM;
1493 return 0;
1496 /* Parse perf-probe event command */
1497 int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
1499 char **argv;
1500 int argc, i, ret = 0;
1502 argv = argv_split(cmd, &argc);
1503 if (!argv) {
1504 pr_debug("Failed to split arguments.\n");
1505 return -ENOMEM;
1507 if (argc - 1 > MAX_PROBE_ARGS) {
1508 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1509 ret = -ERANGE;
1510 goto out;
1512 /* Parse probe point */
1513 ret = parse_perf_probe_point(argv[0], pev);
1514 if (ret < 0)
1515 goto out;
1517 /* Copy arguments and ensure return probe has no C argument */
1518 pev->nargs = argc - 1;
1519 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1520 if (pev->args == NULL) {
1521 ret = -ENOMEM;
1522 goto out;
1524 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1525 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1526 if (ret >= 0 &&
1527 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
1528 semantic_error("You can't specify local variable for"
1529 " kretprobe.\n");
1530 ret = -EINVAL;
1533 out:
1534 argv_free(argv);
1536 return ret;
1539 /* Return true if this perf_probe_event requires debuginfo */
1540 bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
1542 int i;
1544 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1545 return true;
1547 for (i = 0; i < pev->nargs; i++)
1548 if (is_c_varname(pev->args[i].var))
1549 return true;
1551 return false;
1554 /* Parse probe_events event into struct probe_point */
1555 int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
1557 struct probe_trace_point *tp = &tev->point;
1558 char pr;
1559 char *p;
1560 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
1561 int ret, i, argc;
1562 char **argv;
1564 pr_debug("Parsing probe_events: %s\n", cmd);
1565 argv = argv_split(cmd, &argc);
1566 if (!argv) {
1567 pr_debug("Failed to split arguments.\n");
1568 return -ENOMEM;
1570 if (argc < 2) {
1571 semantic_error("Too few probe arguments.\n");
1572 ret = -ERANGE;
1573 goto out;
1576 /* Scan event and group name. */
1577 argv0_str = strdup(argv[0]);
1578 if (argv0_str == NULL) {
1579 ret = -ENOMEM;
1580 goto out;
1582 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1583 fmt2_str = strtok_r(NULL, "/", &fmt);
1584 fmt3_str = strtok_r(NULL, " \t", &fmt);
1585 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1586 || fmt3_str == NULL) {
1587 semantic_error("Failed to parse event name: %s\n", argv[0]);
1588 ret = -EINVAL;
1589 goto out;
1591 pr = fmt1_str[0];
1592 tev->group = strdup(fmt2_str);
1593 tev->event = strdup(fmt3_str);
1594 if (tev->group == NULL || tev->event == NULL) {
1595 ret = -ENOMEM;
1596 goto out;
1598 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
1600 tp->retprobe = (pr == 'r');
1602 /* Scan module name(if there), function name and offset */
1603 p = strchr(argv[1], ':');
1604 if (p) {
1605 tp->module = strndup(argv[1], p - argv[1]);
1606 p++;
1607 } else
1608 p = argv[1];
1609 fmt1_str = strtok_r(p, "+", &fmt);
1610 /* only the address started with 0x */
1611 if (fmt1_str[0] == '0') {
1613 * Fix a special case:
1614 * if address == 0, kernel reports something like:
1615 * p:probe_libc/abs_0 /lib/libc-2.18.so:0x (null) arg1=%ax
1616 * Newer kernel may fix that, but we want to
1617 * support old kernel also.
1619 if (strcmp(fmt1_str, "0x") == 0) {
1620 if (!argv[2] || strcmp(argv[2], "(null)")) {
1621 ret = -EINVAL;
1622 goto out;
1624 tp->address = 0;
1626 free(argv[2]);
1627 for (i = 2; argv[i + 1] != NULL; i++)
1628 argv[i] = argv[i + 1];
1630 argv[i] = NULL;
1631 argc -= 1;
1632 } else
1633 tp->address = strtoul(fmt1_str, NULL, 0);
1634 } else {
1635 /* Only the symbol-based probe has offset */
1636 tp->symbol = strdup(fmt1_str);
1637 if (tp->symbol == NULL) {
1638 ret = -ENOMEM;
1639 goto out;
1641 fmt2_str = strtok_r(NULL, "", &fmt);
1642 if (fmt2_str == NULL)
1643 tp->offset = 0;
1644 else
1645 tp->offset = strtoul(fmt2_str, NULL, 10);
1648 tev->nargs = argc - 2;
1649 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1650 if (tev->args == NULL) {
1651 ret = -ENOMEM;
1652 goto out;
1654 for (i = 0; i < tev->nargs; i++) {
1655 p = strchr(argv[i + 2], '=');
1656 if (p) /* We don't need which register is assigned. */
1657 *p++ = '\0';
1658 else
1659 p = argv[i + 2];
1660 tev->args[i].name = strdup(argv[i + 2]);
1661 /* TODO: parse regs and offset */
1662 tev->args[i].value = strdup(p);
1663 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1664 ret = -ENOMEM;
1665 goto out;
1668 ret = 0;
1669 out:
1670 free(argv0_str);
1671 argv_free(argv);
1672 return ret;
1675 /* Compose only probe arg */
1676 int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1678 struct perf_probe_arg_field *field = pa->field;
1679 int ret;
1680 char *tmp = buf;
1682 if (pa->name && pa->var)
1683 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1684 else
1685 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
1686 if (ret <= 0)
1687 goto error;
1688 tmp += ret;
1689 len -= ret;
1691 while (field) {
1692 if (field->name[0] == '[')
1693 ret = e_snprintf(tmp, len, "%s", field->name);
1694 else
1695 ret = e_snprintf(tmp, len, "%s%s",
1696 field->ref ? "->" : ".", field->name);
1697 if (ret <= 0)
1698 goto error;
1699 tmp += ret;
1700 len -= ret;
1701 field = field->next;
1704 if (pa->type) {
1705 ret = e_snprintf(tmp, len, ":%s", pa->type);
1706 if (ret <= 0)
1707 goto error;
1708 tmp += ret;
1709 len -= ret;
1712 return tmp - buf;
1713 error:
1714 pr_debug("Failed to synthesize perf probe argument: %d\n", ret);
1715 return ret;
1718 /* Compose only probe point (not argument) */
1719 static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
1721 char *buf, *tmp;
1722 char offs[32] = "", line[32] = "", file[32] = "";
1723 int ret, len;
1725 buf = zalloc(MAX_CMDLEN);
1726 if (buf == NULL) {
1727 ret = -ENOMEM;
1728 goto error;
1730 if (pp->offset) {
1731 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
1732 if (ret <= 0)
1733 goto error;
1735 if (pp->line) {
1736 ret = e_snprintf(line, 32, ":%d", pp->line);
1737 if (ret <= 0)
1738 goto error;
1740 if (pp->file) {
1741 tmp = pp->file;
1742 len = strlen(tmp);
1743 if (len > 30) {
1744 tmp = strchr(pp->file + len - 30, '/');
1745 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1747 ret = e_snprintf(file, 32, "@%s", tmp);
1748 if (ret <= 0)
1749 goto error;
1752 if (pp->function)
1753 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1754 offs, pp->retprobe ? "%return" : "", line,
1755 file);
1756 else
1757 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
1758 if (ret <= 0)
1759 goto error;
1761 return buf;
1762 error:
1763 pr_debug("Failed to synthesize perf probe point: %d\n", ret);
1764 free(buf);
1765 return NULL;
1768 #if 0
1769 char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1771 char *buf;
1772 int i, len, ret;
1774 buf = synthesize_perf_probe_point(&pev->point);
1775 if (!buf)
1776 return NULL;
1778 len = strlen(buf);
1779 for (i = 0; i < pev->nargs; i++) {
1780 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
1781 pev->args[i].name);
1782 if (ret <= 0) {
1783 free(buf);
1784 return NULL;
1786 len += ret;
1789 return buf;
1791 #endif
1793 static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
1794 char **buf, size_t *buflen,
1795 int depth)
1797 int ret;
1798 if (ref->next) {
1799 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
1800 buflen, depth + 1);
1801 if (depth < 0)
1802 goto out;
1805 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1806 if (ret < 0)
1807 depth = ret;
1808 else {
1809 *buf += ret;
1810 *buflen -= ret;
1812 out:
1813 return depth;
1817 static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
1818 char *buf, size_t buflen)
1820 struct probe_trace_arg_ref *ref = arg->ref;
1821 int ret, depth = 0;
1822 char *tmp = buf;
1824 /* Argument name or separator */
1825 if (arg->name)
1826 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1827 else
1828 ret = e_snprintf(buf, buflen, " ");
1829 if (ret < 0)
1830 return ret;
1831 buf += ret;
1832 buflen -= ret;
1834 /* Special case: @XXX */
1835 if (arg->value[0] == '@' && arg->ref)
1836 ref = ref->next;
1838 /* Dereferencing arguments */
1839 if (ref) {
1840 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
1841 &buflen, 1);
1842 if (depth < 0)
1843 return depth;
1846 /* Print argument value */
1847 if (arg->value[0] == '@' && arg->ref)
1848 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1849 arg->ref->offset);
1850 else
1851 ret = e_snprintf(buf, buflen, "%s", arg->value);
1852 if (ret < 0)
1853 return ret;
1854 buf += ret;
1855 buflen -= ret;
1857 /* Closing */
1858 while (depth--) {
1859 ret = e_snprintf(buf, buflen, ")");
1860 if (ret < 0)
1861 return ret;
1862 buf += ret;
1863 buflen -= ret;
1865 /* Print argument type */
1866 if (arg->type) {
1867 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1868 if (ret <= 0)
1869 return ret;
1870 buf += ret;
1873 return buf - tmp;
1876 char *synthesize_probe_trace_command(struct probe_trace_event *tev)
1878 struct probe_trace_point *tp = &tev->point;
1879 char *buf;
1880 int i, len, ret;
1882 buf = zalloc(MAX_CMDLEN);
1883 if (buf == NULL)
1884 return NULL;
1886 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1887 tev->group, tev->event);
1888 if (len <= 0)
1889 goto error;
1891 /* Uprobes must have tp->module */
1892 if (tev->uprobes && !tp->module)
1893 goto error;
1895 * If tp->address == 0, then this point must be a
1896 * absolute address uprobe.
1897 * try_to_find_absolute_address() should have made
1898 * tp->symbol to "0x0".
1900 if (tev->uprobes && !tp->address) {
1901 if (!tp->symbol || strcmp(tp->symbol, "0x0"))
1902 goto error;
1905 /* Use the tp->address for uprobes */
1906 if (tev->uprobes)
1907 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s:0x%lx",
1908 tp->module, tp->address);
1909 else if (!strncmp(tp->symbol, "0x", 2))
1910 /* Absolute address. See try_to_find_absolute_address() */
1911 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s0x%lx",
1912 tp->module ?: "", tp->module ? ":" : "",
1913 tp->address);
1914 else
1915 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s%s+%lu",
1916 tp->module ?: "", tp->module ? ":" : "",
1917 tp->symbol, tp->offset);
1919 if (ret <= 0)
1920 goto error;
1921 len += ret;
1923 for (i = 0; i < tev->nargs; i++) {
1924 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
1925 MAX_CMDLEN - len);
1926 if (ret <= 0)
1927 goto error;
1928 len += ret;
1931 return buf;
1932 error:
1933 free(buf);
1934 return NULL;
1937 static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1938 struct perf_probe_point *pp,
1939 bool is_kprobe)
1941 struct symbol *sym = NULL;
1942 struct map *map;
1943 u64 addr = tp->address;
1944 int ret = -ENOENT;
1946 if (!is_kprobe) {
1947 map = dso__new_map(tp->module);
1948 if (!map)
1949 goto out;
1950 sym = map__find_symbol(map, addr, NULL);
1951 } else {
1952 if (tp->symbol && !addr) {
1953 if (kernel_get_symbol_address_by_name(tp->symbol,
1954 &addr, true, false) < 0)
1955 goto out;
1957 if (addr) {
1958 addr += tp->offset;
1959 sym = __find_kernel_function(addr, &map);
1963 if (!sym)
1964 goto out;
1966 pp->retprobe = tp->retprobe;
1967 pp->offset = addr - map->unmap_ip(map, sym->start);
1968 pp->function = strdup(sym->name);
1969 ret = pp->function ? 0 : -ENOMEM;
1971 out:
1972 if (map && !is_kprobe) {
1973 map__put(map);
1976 return ret;
1979 static int convert_to_perf_probe_point(struct probe_trace_point *tp,
1980 struct perf_probe_point *pp,
1981 bool is_kprobe)
1983 char buf[128];
1984 int ret;
1986 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1987 if (!ret)
1988 return 0;
1989 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1990 if (!ret)
1991 return 0;
1993 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1995 if (tp->symbol) {
1996 pp->function = strdup(tp->symbol);
1997 pp->offset = tp->offset;
1998 } else {
1999 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
2000 if (ret < 0)
2001 return ret;
2002 pp->function = strdup(buf);
2003 pp->offset = 0;
2005 if (pp->function == NULL)
2006 return -ENOMEM;
2008 pp->retprobe = tp->retprobe;
2010 return 0;
2013 static int convert_to_perf_probe_event(struct probe_trace_event *tev,
2014 struct perf_probe_event *pev, bool is_kprobe)
2016 char buf[64] = "";
2017 int i, ret;
2019 /* Convert event/group name */
2020 pev->event = strdup(tev->event);
2021 pev->group = strdup(tev->group);
2022 if (pev->event == NULL || pev->group == NULL)
2023 return -ENOMEM;
2025 /* Convert trace_point to probe_point */
2026 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
2027 if (ret < 0)
2028 return ret;
2030 /* Convert trace_arg to probe_arg */
2031 pev->nargs = tev->nargs;
2032 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
2033 if (pev->args == NULL)
2034 return -ENOMEM;
2035 for (i = 0; i < tev->nargs && ret >= 0; i++) {
2036 if (tev->args[i].name)
2037 pev->args[i].name = strdup(tev->args[i].name);
2038 else {
2039 ret = synthesize_probe_trace_arg(&tev->args[i],
2040 buf, 64);
2041 pev->args[i].name = strdup(buf);
2043 if (pev->args[i].name == NULL && ret >= 0)
2044 ret = -ENOMEM;
2047 if (ret < 0)
2048 clear_perf_probe_event(pev);
2050 return ret;
2053 void clear_perf_probe_event(struct perf_probe_event *pev)
2055 struct perf_probe_arg_field *field, *next;
2056 int i;
2058 free(pev->event);
2059 free(pev->group);
2060 free(pev->target);
2061 clear_perf_probe_point(&pev->point);
2063 for (i = 0; i < pev->nargs; i++) {
2064 free(pev->args[i].name);
2065 free(pev->args[i].var);
2066 free(pev->args[i].type);
2067 field = pev->args[i].field;
2068 while (field) {
2069 next = field->next;
2070 zfree(&field->name);
2071 free(field);
2072 field = next;
2075 free(pev->args);
2076 memset(pev, 0, sizeof(*pev));
2079 void clear_probe_trace_event(struct probe_trace_event *tev)
2081 struct probe_trace_arg_ref *ref, *next;
2082 int i;
2084 free(tev->event);
2085 free(tev->group);
2086 free(tev->point.symbol);
2087 free(tev->point.realname);
2088 free(tev->point.module);
2089 for (i = 0; i < tev->nargs; i++) {
2090 free(tev->args[i].name);
2091 free(tev->args[i].value);
2092 free(tev->args[i].type);
2093 ref = tev->args[i].ref;
2094 while (ref) {
2095 next = ref->next;
2096 free(ref);
2097 ref = next;
2100 free(tev->args);
2101 memset(tev, 0, sizeof(*tev));
2104 struct kprobe_blacklist_node {
2105 struct list_head list;
2106 unsigned long start;
2107 unsigned long end;
2108 char *symbol;
2111 static void kprobe_blacklist__delete(struct list_head *blacklist)
2113 struct kprobe_blacklist_node *node;
2115 while (!list_empty(blacklist)) {
2116 node = list_first_entry(blacklist,
2117 struct kprobe_blacklist_node, list);
2118 list_del(&node->list);
2119 free(node->symbol);
2120 free(node);
2124 static int kprobe_blacklist__load(struct list_head *blacklist)
2126 struct kprobe_blacklist_node *node;
2127 const char *__debugfs = debugfs__mountpoint();
2128 char buf[PATH_MAX], *p;
2129 FILE *fp;
2130 int ret;
2132 if (__debugfs == NULL)
2133 return -ENOTSUP;
2135 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2136 if (ret < 0)
2137 return ret;
2139 fp = fopen(buf, "r");
2140 if (!fp)
2141 return -errno;
2143 ret = 0;
2144 while (fgets(buf, PATH_MAX, fp)) {
2145 node = zalloc(sizeof(*node));
2146 if (!node) {
2147 ret = -ENOMEM;
2148 break;
2150 INIT_LIST_HEAD(&node->list);
2151 list_add_tail(&node->list, blacklist);
2152 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2153 ret = -EINVAL;
2154 break;
2156 p = strchr(buf, '\t');
2157 if (p) {
2158 p++;
2159 if (p[strlen(p) - 1] == '\n')
2160 p[strlen(p) - 1] = '\0';
2161 } else
2162 p = (char *)"unknown";
2163 node->symbol = strdup(p);
2164 if (!node->symbol) {
2165 ret = -ENOMEM;
2166 break;
2168 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2169 node->start, node->end, node->symbol);
2170 ret++;
2172 if (ret < 0)
2173 kprobe_blacklist__delete(blacklist);
2174 fclose(fp);
2176 return ret;
2179 static struct kprobe_blacklist_node *
2180 kprobe_blacklist__find_by_address(struct list_head *blacklist,
2181 unsigned long address)
2183 struct kprobe_blacklist_node *node;
2185 list_for_each_entry(node, blacklist, list) {
2186 if (node->start <= address && address <= node->end)
2187 return node;
2190 return NULL;
2193 static LIST_HEAD(kprobe_blacklist);
2195 static void kprobe_blacklist__init(void)
2197 if (!list_empty(&kprobe_blacklist))
2198 return;
2200 if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2201 pr_debug("No kprobe blacklist support, ignored\n");
2204 static void kprobe_blacklist__release(void)
2206 kprobe_blacklist__delete(&kprobe_blacklist);
2209 static bool kprobe_blacklist__listed(unsigned long address)
2211 return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2214 static int perf_probe_event__sprintf(const char *group, const char *event,
2215 struct perf_probe_event *pev,
2216 const char *module,
2217 struct strbuf *result)
2219 int i, ret;
2220 char buf[128];
2221 char *place;
2223 /* Synthesize only event probe point */
2224 place = synthesize_perf_probe_point(&pev->point);
2225 if (!place)
2226 return -EINVAL;
2228 ret = e_snprintf(buf, 128, "%s:%s", group, event);
2229 if (ret < 0)
2230 goto out;
2232 strbuf_addf(result, " %-20s (on %s", buf, place);
2233 if (module)
2234 strbuf_addf(result, " in %s", module);
2236 if (pev->nargs > 0) {
2237 strbuf_add(result, " with", 5);
2238 for (i = 0; i < pev->nargs; i++) {
2239 ret = synthesize_perf_probe_arg(&pev->args[i],
2240 buf, 128);
2241 if (ret < 0)
2242 goto out;
2243 strbuf_addf(result, " %s", buf);
2246 strbuf_addch(result, ')');
2247 out:
2248 free(place);
2249 return ret;
2252 /* Show an event */
2253 int show_perf_probe_event(const char *group, const char *event,
2254 struct perf_probe_event *pev,
2255 const char *module, bool use_stdout)
2257 struct strbuf buf = STRBUF_INIT;
2258 int ret;
2260 ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
2261 if (ret >= 0) {
2262 if (use_stdout)
2263 printf("%s\n", buf.buf);
2264 else
2265 pr_info("%s\n", buf.buf);
2267 strbuf_release(&buf);
2269 return ret;
2272 static bool filter_probe_trace_event(struct probe_trace_event *tev,
2273 struct strfilter *filter)
2275 char tmp[128];
2277 /* At first, check the event name itself */
2278 if (strfilter__compare(filter, tev->event))
2279 return true;
2281 /* Next, check the combination of name and group */
2282 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2283 return false;
2284 return strfilter__compare(filter, tmp);
2287 static int __show_perf_probe_events(int fd, bool is_kprobe,
2288 struct strfilter *filter)
2290 int ret = 0;
2291 struct probe_trace_event tev;
2292 struct perf_probe_event pev;
2293 struct strlist *rawlist;
2294 struct str_node *ent;
2296 memset(&tev, 0, sizeof(tev));
2297 memset(&pev, 0, sizeof(pev));
2299 rawlist = probe_file__get_rawlist(fd);
2300 if (!rawlist)
2301 return -ENOMEM;
2303 strlist__for_each(ent, rawlist) {
2304 ret = parse_probe_trace_command(ent->s, &tev);
2305 if (ret >= 0) {
2306 if (!filter_probe_trace_event(&tev, filter))
2307 goto next;
2308 ret = convert_to_perf_probe_event(&tev, &pev,
2309 is_kprobe);
2310 if (ret < 0)
2311 goto next;
2312 ret = show_perf_probe_event(pev.group, pev.event,
2313 &pev, tev.point.module,
2314 true);
2316 next:
2317 clear_perf_probe_event(&pev);
2318 clear_probe_trace_event(&tev);
2319 if (ret < 0)
2320 break;
2322 strlist__delete(rawlist);
2323 /* Cleanup cached debuginfo if needed */
2324 debuginfo_cache__exit();
2326 return ret;
2329 /* List up current perf-probe events */
2330 int show_perf_probe_events(struct strfilter *filter)
2332 int kp_fd, up_fd, ret;
2334 setup_pager();
2336 ret = init_probe_symbol_maps(false);
2337 if (ret < 0)
2338 return ret;
2340 ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2341 if (ret < 0)
2342 return ret;
2344 if (kp_fd >= 0)
2345 ret = __show_perf_probe_events(kp_fd, true, filter);
2346 if (up_fd >= 0 && ret >= 0)
2347 ret = __show_perf_probe_events(up_fd, false, filter);
2348 if (kp_fd > 0)
2349 close(kp_fd);
2350 if (up_fd > 0)
2351 close(up_fd);
2352 exit_probe_symbol_maps();
2354 return ret;
2357 static int get_new_event_name(char *buf, size_t len, const char *base,
2358 struct strlist *namelist, bool allow_suffix)
2360 int i, ret;
2361 char *p, *nbase;
2363 if (*base == '.')
2364 base++;
2365 nbase = strdup(base);
2366 if (!nbase)
2367 return -ENOMEM;
2369 /* Cut off the dot suffixes (e.g. .const, .isra)*/
2370 p = strchr(nbase, '.');
2371 if (p && p != nbase)
2372 *p = '\0';
2374 /* Try no suffix number */
2375 ret = e_snprintf(buf, len, "%s", nbase);
2376 if (ret < 0) {
2377 pr_debug("snprintf() failed: %d\n", ret);
2378 goto out;
2380 if (!strlist__has_entry(namelist, buf))
2381 goto out;
2383 if (!allow_suffix) {
2384 pr_warning("Error: event \"%s\" already exists.\n"
2385 " Hint: Remove existing event by 'perf probe -d'\n"
2386 " or force duplicates by 'perf probe -f'\n"
2387 " or set 'force=yes' in BPF source.\n",
2388 buf);
2389 ret = -EEXIST;
2390 goto out;
2393 /* Try to add suffix */
2394 for (i = 1; i < MAX_EVENT_INDEX; i++) {
2395 ret = e_snprintf(buf, len, "%s_%d", nbase, i);
2396 if (ret < 0) {
2397 pr_debug("snprintf() failed: %d\n", ret);
2398 goto out;
2400 if (!strlist__has_entry(namelist, buf))
2401 break;
2403 if (i == MAX_EVENT_INDEX) {
2404 pr_warning("Too many events are on the same function.\n");
2405 ret = -ERANGE;
2408 out:
2409 free(nbase);
2410 return ret;
2413 /* Warn if the current kernel's uprobe implementation is old */
2414 static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2416 int i;
2417 char *buf = synthesize_probe_trace_command(tev);
2419 /* Old uprobe event doesn't support memory dereference */
2420 if (!tev->uprobes || tev->nargs == 0 || !buf)
2421 goto out;
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;
2430 out:
2431 free(buf);
2434 /* Set new name from original perf_probe_event and namelist */
2435 static int probe_trace_event__set_name(struct probe_trace_event *tev,
2436 struct perf_probe_event *pev,
2437 struct strlist *namelist,
2438 bool allow_suffix)
2440 const char *event, *group;
2441 char buf[64];
2442 int ret;
2444 if (pev->event)
2445 event = pev->event;
2446 else
2447 if (pev->point.function &&
2448 (strncmp(pev->point.function, "0x", 2) != 0) &&
2449 !strisglob(pev->point.function))
2450 event = pev->point.function;
2451 else
2452 event = tev->point.realname;
2453 if (pev->group)
2454 group = pev->group;
2455 else
2456 group = PERFPROBE_GROUP;
2458 /* Get an unused new event name */
2459 ret = get_new_event_name(buf, 64, event,
2460 namelist, allow_suffix);
2461 if (ret < 0)
2462 return ret;
2464 event = buf;
2466 tev->event = strdup(event);
2467 tev->group = strdup(group);
2468 if (tev->event == NULL || tev->group == NULL)
2469 return -ENOMEM;
2471 /* Add added event name to namelist */
2472 strlist__add(namelist, event);
2473 return 0;
2476 static int __add_probe_trace_events(struct perf_probe_event *pev,
2477 struct probe_trace_event *tevs,
2478 int ntevs, bool allow_suffix)
2480 int i, fd, ret;
2481 struct probe_trace_event *tev = NULL;
2482 struct strlist *namelist;
2484 fd = probe_file__open(PF_FL_RW | (pev->uprobes ? PF_FL_UPROBE : 0));
2485 if (fd < 0)
2486 return fd;
2488 /* Get current event names */
2489 namelist = probe_file__get_namelist(fd);
2490 if (!namelist) {
2491 pr_debug("Failed to get current event list.\n");
2492 ret = -ENOMEM;
2493 goto close_out;
2496 ret = 0;
2497 for (i = 0; i < ntevs; i++) {
2498 tev = &tevs[i];
2499 /* Skip if the symbol is out of .text or blacklisted */
2500 if (!tev->point.symbol)
2501 continue;
2503 /* Set new name for tev (and update namelist) */
2504 ret = probe_trace_event__set_name(tev, pev, namelist,
2505 allow_suffix);
2506 if (ret < 0)
2507 break;
2509 ret = probe_file__add_event(fd, tev);
2510 if (ret < 0)
2511 break;
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.
2519 allow_suffix = true;
2521 if (ret == -EINVAL && pev->uprobes)
2522 warn_uprobe_event_compat(tev);
2524 strlist__delete(namelist);
2525 close_out:
2526 close(fd);
2527 return ret;
2530 static int find_probe_functions(struct map *map, char *name,
2531 struct symbol **syms)
2533 int found = 0;
2534 struct symbol *sym;
2535 struct rb_node *tmp;
2537 if (map__load(map, NULL) < 0)
2538 return 0;
2540 map__for_each_symbol(map, sym, tmp) {
2541 if (strglobmatch(sym->name, name)) {
2542 found++;
2543 if (syms && found < probe_conf.max_probes)
2544 syms[found - 1] = sym;
2548 return found;
2551 #define strdup_or_goto(str, label) \
2552 ({ char *__p = strdup(str); if (!__p) goto label; __p; })
2554 void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2555 struct probe_trace_event *tev __maybe_unused,
2556 struct map *map __maybe_unused) { }
2559 * Find probe function addresses from map.
2560 * Return an error or the number of found probe_trace_event
2562 static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
2563 struct probe_trace_event **tevs)
2565 struct map *map = NULL;
2566 struct ref_reloc_sym *reloc_sym = NULL;
2567 struct symbol *sym;
2568 struct symbol **syms = NULL;
2569 struct probe_trace_event *tev;
2570 struct perf_probe_point *pp = &pev->point;
2571 struct probe_trace_point *tp;
2572 int num_matched_functions;
2573 int ret, i, j, skipped = 0;
2574 char *mod_name;
2576 map = get_target_map(pev->target, pev->uprobes);
2577 if (!map) {
2578 ret = -EINVAL;
2579 goto out;
2582 syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2583 if (!syms) {
2584 ret = -ENOMEM;
2585 goto out;
2589 * Load matched symbols: Since the different local symbols may have
2590 * same name but different addresses, this lists all the symbols.
2592 num_matched_functions = find_probe_functions(map, pp->function, syms);
2593 if (num_matched_functions == 0) {
2594 pr_err("Failed to find symbol %s in %s\n", pp->function,
2595 pev->target ? : "kernel");
2596 ret = -ENOENT;
2597 goto out;
2598 } else if (num_matched_functions > probe_conf.max_probes) {
2599 pr_err("Too many functions matched in %s\n",
2600 pev->target ? : "kernel");
2601 ret = -E2BIG;
2602 goto out;
2605 /* Note that the symbols in the kmodule are not relocated */
2606 if (!pev->uprobes && !pp->retprobe && !pev->target) {
2607 reloc_sym = kernel_get_ref_reloc_sym();
2608 if (!reloc_sym) {
2609 pr_warning("Relocated base symbol is not found!\n");
2610 ret = -EINVAL;
2611 goto out;
2615 /* Setup result trace-probe-events */
2616 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2617 if (!*tevs) {
2618 ret = -ENOMEM;
2619 goto out;
2622 ret = 0;
2624 for (j = 0; j < num_matched_functions; j++) {
2625 sym = syms[j];
2627 tev = (*tevs) + ret;
2628 tp = &tev->point;
2629 if (ret == num_matched_functions) {
2630 pr_warning("Too many symbols are listed. Skip it.\n");
2631 break;
2633 ret++;
2635 if (pp->offset > sym->end - sym->start) {
2636 pr_warning("Offset %ld is bigger than the size of %s\n",
2637 pp->offset, sym->name);
2638 ret = -ENOENT;
2639 goto err_out;
2641 /* Add one probe point */
2642 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
2644 /* Check the kprobe (not in module) is within .text */
2645 if (!pev->uprobes && !pev->target &&
2646 kprobe_warn_out_range(sym->name, tp->address)) {
2647 tp->symbol = NULL; /* Skip it */
2648 skipped++;
2649 } else if (reloc_sym) {
2650 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2651 tp->offset = tp->address - reloc_sym->addr;
2652 } else {
2653 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2654 tp->offset = pp->offset;
2656 tp->realname = strdup_or_goto(sym->name, nomem_out);
2658 tp->retprobe = pp->retprobe;
2659 if (pev->target) {
2660 if (pev->uprobes) {
2661 tev->point.module = strdup_or_goto(pev->target,
2662 nomem_out);
2663 } else {
2664 mod_name = find_module_name(pev->target);
2665 tev->point.module =
2666 strdup(mod_name ? mod_name : pev->target);
2667 free(mod_name);
2668 if (!tev->point.module)
2669 goto nomem_out;
2672 tev->uprobes = pev->uprobes;
2673 tev->nargs = pev->nargs;
2674 if (tev->nargs) {
2675 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2676 tev->nargs);
2677 if (tev->args == NULL)
2678 goto nomem_out;
2680 for (i = 0; i < tev->nargs; i++) {
2681 if (pev->args[i].name)
2682 tev->args[i].name =
2683 strdup_or_goto(pev->args[i].name,
2684 nomem_out);
2686 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2687 nomem_out);
2688 if (pev->args[i].type)
2689 tev->args[i].type =
2690 strdup_or_goto(pev->args[i].type,
2691 nomem_out);
2693 arch__fix_tev_from_maps(pev, tev, map);
2695 if (ret == skipped) {
2696 ret = -ENOENT;
2697 goto err_out;
2700 out:
2701 put_target_map(map, pev->uprobes);
2702 free(syms);
2703 return ret;
2705 nomem_out:
2706 ret = -ENOMEM;
2707 err_out:
2708 clear_probe_trace_events(*tevs, num_matched_functions);
2709 zfree(tevs);
2710 goto out;
2713 static int try_to_find_absolute_address(struct perf_probe_event *pev,
2714 struct probe_trace_event **tevs)
2716 struct perf_probe_point *pp = &pev->point;
2717 struct probe_trace_event *tev;
2718 struct probe_trace_point *tp;
2719 int i, err;
2721 if (!(pev->point.function && !strncmp(pev->point.function, "0x", 2)))
2722 return -EINVAL;
2723 if (perf_probe_event_need_dwarf(pev))
2724 return -EINVAL;
2727 * This is 'perf probe /lib/libc.so 0xabcd'. Try to probe at
2728 * absolute address.
2730 * Only one tev can be generated by this.
2732 *tevs = zalloc(sizeof(*tev));
2733 if (!*tevs)
2734 return -ENOMEM;
2736 tev = *tevs;
2737 tp = &tev->point;
2740 * Don't use tp->offset, use address directly, because
2741 * in synthesize_probe_trace_command() address cannot be
2742 * zero.
2744 tp->address = pev->point.abs_address;
2745 tp->retprobe = pp->retprobe;
2746 tev->uprobes = pev->uprobes;
2748 err = -ENOMEM;
2750 * Give it a '0x' leading symbol name.
2751 * In __add_probe_trace_events, a NULL symbol is interpreted as
2752 * invalud.
2754 if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
2755 goto errout;
2757 /* For kprobe, check range */
2758 if ((!tev->uprobes) &&
2759 (kprobe_warn_out_range(tev->point.symbol,
2760 tev->point.address))) {
2761 err = -EACCES;
2762 goto errout;
2765 if (asprintf(&tp->realname, "abs_%lx", tp->address) < 0)
2766 goto errout;
2768 if (pev->target) {
2769 tp->module = strdup(pev->target);
2770 if (!tp->module)
2771 goto errout;
2774 if (tev->group) {
2775 tev->group = strdup(pev->group);
2776 if (!tev->group)
2777 goto errout;
2780 if (pev->event) {
2781 tev->event = strdup(pev->event);
2782 if (!tev->event)
2783 goto errout;
2786 tev->nargs = pev->nargs;
2787 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
2788 if (!tev->args) {
2789 err = -ENOMEM;
2790 goto errout;
2792 for (i = 0; i < tev->nargs; i++)
2793 copy_to_probe_trace_arg(&tev->args[i], &pev->args[i]);
2795 return 1;
2797 errout:
2798 if (*tevs) {
2799 clear_probe_trace_events(*tevs, 1);
2800 *tevs = NULL;
2802 return err;
2805 bool __weak arch__prefers_symtab(void) { return false; }
2807 static int convert_to_probe_trace_events(struct perf_probe_event *pev,
2808 struct probe_trace_event **tevs)
2810 int ret;
2812 if (!pev->group) {
2813 /* Set group name if not given */
2814 if (!pev->uprobes) {
2815 pev->group = strdup(PERFPROBE_GROUP);
2816 ret = pev->group ? 0 : -ENOMEM;
2817 } else
2818 ret = convert_exec_to_group(pev->target, &pev->group);
2819 if (ret != 0) {
2820 pr_warning("Failed to make a group name.\n");
2821 return ret;
2825 ret = try_to_find_absolute_address(pev, tevs);
2826 if (ret > 0)
2827 return ret;
2829 if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) {
2830 ret = find_probe_trace_events_from_map(pev, tevs);
2831 if (ret > 0)
2832 return ret; /* Found in symbol table */
2835 /* Convert perf_probe_event with debuginfo */
2836 ret = try_to_find_probe_trace_events(pev, tevs);
2837 if (ret != 0)
2838 return ret; /* Found in debuginfo or got an error */
2840 return find_probe_trace_events_from_map(pev, tevs);
2843 int convert_perf_probe_events(struct perf_probe_event *pevs, int npevs)
2845 int i, ret;
2847 /* Loop 1: convert all events */
2848 for (i = 0; i < npevs; i++) {
2849 /* Init kprobe blacklist if needed */
2850 if (!pevs[i].uprobes)
2851 kprobe_blacklist__init();
2852 /* Convert with or without debuginfo */
2853 ret = convert_to_probe_trace_events(&pevs[i], &pevs[i].tevs);
2854 if (ret < 0)
2855 return ret;
2856 pevs[i].ntevs = ret;
2858 /* This just release blacklist only if allocated */
2859 kprobe_blacklist__release();
2861 return 0;
2864 int apply_perf_probe_events(struct perf_probe_event *pevs, int npevs)
2866 int i, ret = 0;
2868 /* Loop 2: add all events */
2869 for (i = 0; i < npevs; i++) {
2870 ret = __add_probe_trace_events(&pevs[i], pevs[i].tevs,
2871 pevs[i].ntevs,
2872 probe_conf.force_add);
2873 if (ret < 0)
2874 break;
2876 return ret;
2879 void cleanup_perf_probe_events(struct perf_probe_event *pevs, int npevs)
2881 int i, j;
2883 /* Loop 3: cleanup and free trace events */
2884 for (i = 0; i < npevs; i++) {
2885 for (j = 0; j < pevs[i].ntevs; j++)
2886 clear_probe_trace_event(&pevs[i].tevs[j]);
2887 zfree(&pevs[i].tevs);
2888 pevs[i].ntevs = 0;
2889 clear_perf_probe_event(&pevs[i]);
2893 int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
2895 int ret;
2897 ret = init_probe_symbol_maps(pevs->uprobes);
2898 if (ret < 0)
2899 return ret;
2901 ret = convert_perf_probe_events(pevs, npevs);
2902 if (ret == 0)
2903 ret = apply_perf_probe_events(pevs, npevs);
2905 cleanup_perf_probe_events(pevs, npevs);
2907 exit_probe_symbol_maps();
2908 return ret;
2911 int del_perf_probe_events(struct strfilter *filter)
2913 int ret, ret2, ufd = -1, kfd = -1;
2914 char *str = strfilter__string(filter);
2916 if (!str)
2917 return -EINVAL;
2919 /* Get current event names */
2920 ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
2921 if (ret < 0)
2922 goto out;
2924 ret = probe_file__del_events(kfd, filter);
2925 if (ret < 0 && ret != -ENOENT)
2926 goto error;
2928 ret2 = probe_file__del_events(ufd, filter);
2929 if (ret2 < 0 && ret2 != -ENOENT) {
2930 ret = ret2;
2931 goto error;
2933 ret = 0;
2935 error:
2936 if (kfd >= 0)
2937 close(kfd);
2938 if (ufd >= 0)
2939 close(ufd);
2940 out:
2941 free(str);
2943 return ret;
2946 /* TODO: don't use a global variable for filter ... */
2947 static struct strfilter *available_func_filter;
2950 * If a symbol corresponds to a function with global binding and
2951 * matches filter return 0. For all others return 1.
2953 static int filter_available_functions(struct map *map __maybe_unused,
2954 struct symbol *sym)
2956 if (strfilter__compare(available_func_filter, sym->name))
2957 return 0;
2958 return 1;
2961 int show_available_funcs(const char *target, struct strfilter *_filter,
2962 bool user)
2964 struct map *map;
2965 int ret;
2967 ret = init_probe_symbol_maps(user);
2968 if (ret < 0)
2969 return ret;
2971 /* Get a symbol map */
2972 if (user)
2973 map = dso__new_map(target);
2974 else
2975 map = kernel_get_module_map(target);
2976 if (!map) {
2977 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
2978 return -EINVAL;
2981 /* Load symbols with given filter */
2982 available_func_filter = _filter;
2983 if (map__load(map, filter_available_functions)) {
2984 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2985 goto end;
2987 if (!dso__sorted_by_name(map->dso, map->type))
2988 dso__sort_by_name(map->dso, map->type);
2990 /* Show all (filtered) symbols */
2991 setup_pager();
2992 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2993 end:
2994 if (user) {
2995 map__put(map);
2997 exit_probe_symbol_maps();
2999 return ret;
3002 int copy_to_probe_trace_arg(struct probe_trace_arg *tvar,
3003 struct perf_probe_arg *pvar)
3005 tvar->value = strdup(pvar->var);
3006 if (tvar->value == NULL)
3007 return -ENOMEM;
3008 if (pvar->type) {
3009 tvar->type = strdup(pvar->type);
3010 if (tvar->type == NULL)
3011 return -ENOMEM;
3013 if (pvar->name) {
3014 tvar->name = strdup(pvar->name);
3015 if (tvar->name == NULL)
3016 return -ENOMEM;
3017 } else
3018 tvar->name = NULL;
3019 return 0;