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