]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/util/probe-event.c
perf probe: Fix module name matching
[karo-tx-linux.git] / tools / perf / util / probe-event.c
1 /*
2  * probe-event.c : perf-probe definition to probe_events format converter
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
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>
34
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"
49
50 #define MAX_CMDLEN 256
51 #define PERFPROBE_GROUP "probe"
52
53 bool probe_event_dry_run;       /* Dry run flag */
54 struct probe_conf probe_conf;
55
56 #define semantic_error(msg ...) pr_err("Semantic error :" msg)
57
58 int e_snprintf(char *str, size_t size, const char *format, ...)
59 {
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;
68 }
69
70 static struct machine *host_machine;
71
72 /* Initialize symbol maps and path of vmlinux/modules */
73 int init_probe_symbol_maps(bool user_only)
74 {
75         int ret;
76
77         symbol_conf.sort_by_name = true;
78         symbol_conf.allow_aliases = true;
79         ret = symbol__init(NULL);
80         if (ret < 0) {
81                 pr_debug("Failed to init symbol map.\n");
82                 goto out;
83         }
84
85         if (host_machine || user_only)  /* already initialized */
86                 return 0;
87
88         if (symbol_conf.vmlinux_name)
89                 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
90
91         host_machine = machine__new_host();
92         if (!host_machine) {
93                 pr_debug("machine__new_host() failed.\n");
94                 symbol__exit();
95                 ret = -1;
96         }
97 out:
98         if (ret < 0)
99                 pr_warning("Failed to init vmlinux path.\n");
100         return ret;
101 }
102
103 void exit_probe_symbol_maps(void)
104 {
105         machine__delete(host_machine);
106         host_machine = NULL;
107         symbol__exit();
108 }
109
110 static struct symbol *__find_kernel_function_by_name(const char *name,
111                                                      struct map **mapp)
112 {
113         return machine__find_kernel_function_by_name(host_machine, name, mapp,
114                                                      NULL);
115 }
116
117 static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
118 {
119         return machine__find_kernel_function(host_machine, addr, mapp, NULL);
120 }
121
122 static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
123 {
124         /* kmap->ref_reloc_sym should be set if host_machine is initialized */
125         struct kmap *kmap;
126         struct map *map = machine__kernel_map(host_machine);
127
128         if (map__load(map, NULL) < 0)
129                 return NULL;
130
131         kmap = map__kmap(map);
132         if (!kmap)
133                 return NULL;
134         return kmap->ref_reloc_sym;
135 }
136
137 static int kernel_get_symbol_address_by_name(const char *name, u64 *addr,
138                                              bool reloc, bool reladdr)
139 {
140         struct ref_reloc_sym *reloc_sym;
141         struct symbol *sym;
142         struct map *map;
143
144         /* ref_reloc_sym is just a label. Need a special fix*/
145         reloc_sym = kernel_get_ref_reloc_sym();
146         if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
147                 *addr = (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
148         else {
149                 sym = __find_kernel_function_by_name(name, &map);
150                 if (!sym)
151                         return -ENOENT;
152                 *addr = map->unmap_ip(map, sym->start) -
153                         ((reloc) ? 0 : map->reloc) -
154                         ((reladdr) ? map->start : 0);
155         }
156         return 0;
157 }
158
159 static struct map *kernel_get_module_map(const char *module)
160 {
161         struct map_groups *grp = &host_machine->kmaps;
162         struct maps *maps = &grp->maps[MAP__FUNCTION];
163         struct map *pos;
164
165         /* A file path -- this is an offline module */
166         if (module && strchr(module, '/'))
167                 return machine__findnew_module_map(host_machine, 0, module);
168
169         if (!module)
170                 module = "kernel";
171
172         for (pos = maps__first(maps); pos; pos = map__next(pos)) {
173                 /* short_name is "[module]" */
174                 if (strncmp(pos->dso->short_name + 1, module,
175                             pos->dso->short_name_len - 2) == 0 &&
176                     module[pos->dso->short_name_len - 2] == '\0') {
177                         return pos;
178                 }
179         }
180         return NULL;
181 }
182
183 static struct map *get_target_map(const char *target, bool user)
184 {
185         /* Init maps of given executable or kernel */
186         if (user)
187                 return dso__new_map(target);
188         else
189                 return kernel_get_module_map(target);
190 }
191
192 static void put_target_map(struct map *map, bool user)
193 {
194         if (map && user) {
195                 /* Only the user map needs to be released */
196                 map__put(map);
197         }
198 }
199
200
201 static int convert_exec_to_group(const char *exec, char **result)
202 {
203         char *ptr1, *ptr2, *exec_copy;
204         char buf[64];
205         int ret;
206
207         exec_copy = strdup(exec);
208         if (!exec_copy)
209                 return -ENOMEM;
210
211         ptr1 = basename(exec_copy);
212         if (!ptr1) {
213                 ret = -EINVAL;
214                 goto out;
215         }
216
217         ptr2 = strpbrk(ptr1, "-._");
218         if (ptr2)
219                 *ptr2 = '\0';
220         ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
221         if (ret < 0)
222                 goto out;
223
224         *result = strdup(buf);
225         ret = *result ? 0 : -ENOMEM;
226
227 out:
228         free(exec_copy);
229         return ret;
230 }
231
232 static void clear_perf_probe_point(struct perf_probe_point *pp)
233 {
234         free(pp->file);
235         free(pp->function);
236         free(pp->lazy_line);
237 }
238
239 static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
240 {
241         int i;
242
243         for (i = 0; i < ntevs; i++)
244                 clear_probe_trace_event(tevs + i);
245 }
246
247 static bool kprobe_blacklist__listed(unsigned long address);
248 static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
249 {
250         u64 etext_addr = 0;
251         int ret;
252
253         /* Get the address of _etext for checking non-probable text symbol */
254         ret = kernel_get_symbol_address_by_name("_etext", &etext_addr,
255                                                 false, false);
256
257         if (ret == 0 && etext_addr < address)
258                 pr_warning("%s is out of .text, skip it.\n", symbol);
259         else if (kprobe_blacklist__listed(address))
260                 pr_warning("%s is blacklisted function, skip it.\n", symbol);
261         else
262                 return false;
263
264         return true;
265 }
266
267 /*
268  * NOTE:
269  * '.gnu.linkonce.this_module' section of kernel module elf directly
270  * maps to 'struct module' from linux/module.h. This section contains
271  * actual module name which will be used by kernel after loading it.
272  * But, we cannot use 'struct module' here since linux/module.h is not
273  * exposed to user-space. Offset of 'name' has remained same from long
274  * time, so hardcoding it here.
275  */
276 #ifdef __LP64__
277 #define MOD_NAME_OFFSET 24
278 #else
279 #define MOD_NAME_OFFSET 12
280 #endif
281
282 /*
283  * @module can be module name of module file path. In case of path,
284  * inspect elf and find out what is actual module name.
285  * Caller has to free mod_name after using it.
286  */
287 static char *find_module_name(const char *module)
288 {
289         int fd;
290         Elf *elf;
291         GElf_Ehdr ehdr;
292         GElf_Shdr shdr;
293         Elf_Data *data;
294         Elf_Scn *sec;
295         char *mod_name = NULL;
296
297         fd = open(module, O_RDONLY);
298         if (fd < 0)
299                 return NULL;
300
301         elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
302         if (elf == NULL)
303                 goto elf_err;
304
305         if (gelf_getehdr(elf, &ehdr) == NULL)
306                 goto ret_err;
307
308         sec = elf_section_by_name(elf, &ehdr, &shdr,
309                         ".gnu.linkonce.this_module", NULL);
310         if (!sec)
311                 goto ret_err;
312
313         data = elf_getdata(sec, NULL);
314         if (!data || !data->d_buf)
315                 goto ret_err;
316
317         mod_name = strdup((char *)data->d_buf + MOD_NAME_OFFSET);
318
319 ret_err:
320         elf_end(elf);
321 elf_err:
322         close(fd);
323         return mod_name;
324 }
325
326 #ifdef HAVE_DWARF_SUPPORT
327
328 static int kernel_get_module_dso(const char *module, struct dso **pdso)
329 {
330         struct dso *dso;
331         struct map *map;
332         const char *vmlinux_name;
333         int ret = 0;
334
335         if (module) {
336                 char module_name[128];
337
338                 snprintf(module_name, sizeof(module_name), "[%s]", module);
339                 map = map_groups__find_by_name(&host_machine->kmaps, MAP__FUNCTION, module_name);
340                 if (map) {
341                         dso = map->dso;
342                         goto found;
343                 }
344                 pr_debug("Failed to find module %s.\n", module);
345                 return -ENOENT;
346         }
347
348         map = machine__kernel_map(host_machine);
349         dso = map->dso;
350
351         vmlinux_name = symbol_conf.vmlinux_name;
352         dso->load_errno = 0;
353         if (vmlinux_name)
354                 ret = dso__load_vmlinux(dso, map, vmlinux_name, false, NULL);
355         else
356                 ret = dso__load_vmlinux_path(dso, map, NULL);
357 found:
358         *pdso = dso;
359         return ret;
360 }
361
362 /*
363  * Some binaries like glibc have special symbols which are on the symbol
364  * table, but not in the debuginfo. If we can find the address of the
365  * symbol from map, we can translate the address back to the probe point.
366  */
367 static int find_alternative_probe_point(struct debuginfo *dinfo,
368                                         struct perf_probe_point *pp,
369                                         struct perf_probe_point *result,
370                                         const char *target, bool uprobes)
371 {
372         struct map *map = NULL;
373         struct symbol *sym;
374         u64 address = 0;
375         int ret = -ENOENT;
376
377         /* This can work only for function-name based one */
378         if (!pp->function || pp->file)
379                 return -ENOTSUP;
380
381         map = get_target_map(target, uprobes);
382         if (!map)
383                 return -EINVAL;
384
385         /* Find the address of given function */
386         map__for_each_symbol_by_name(map, pp->function, sym) {
387                 if (uprobes)
388                         address = sym->start;
389                 else
390                         address = map->unmap_ip(map, sym->start) - map->reloc;
391                 break;
392         }
393         if (!address) {
394                 ret = -ENOENT;
395                 goto out;
396         }
397         pr_debug("Symbol %s address found : %" PRIx64 "\n",
398                         pp->function, address);
399
400         ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
401                                           result);
402         if (ret <= 0)
403                 ret = (!ret) ? -ENOENT : ret;
404         else {
405                 result->offset += pp->offset;
406                 result->line += pp->line;
407                 result->retprobe = pp->retprobe;
408                 ret = 0;
409         }
410
411 out:
412         put_target_map(map, uprobes);
413         return ret;
414
415 }
416
417 static int get_alternative_probe_event(struct debuginfo *dinfo,
418                                        struct perf_probe_event *pev,
419                                        struct perf_probe_point *tmp)
420 {
421         int ret;
422
423         memcpy(tmp, &pev->point, sizeof(*tmp));
424         memset(&pev->point, 0, sizeof(pev->point));
425         ret = find_alternative_probe_point(dinfo, tmp, &pev->point,
426                                            pev->target, pev->uprobes);
427         if (ret < 0)
428                 memcpy(&pev->point, tmp, sizeof(*tmp));
429
430         return ret;
431 }
432
433 static int get_alternative_line_range(struct debuginfo *dinfo,
434                                       struct line_range *lr,
435                                       const char *target, bool user)
436 {
437         struct perf_probe_point pp = { .function = lr->function,
438                                        .file = lr->file,
439                                        .line = lr->start };
440         struct perf_probe_point result;
441         int ret, len = 0;
442
443         memset(&result, 0, sizeof(result));
444
445         if (lr->end != INT_MAX)
446                 len = lr->end - lr->start;
447         ret = find_alternative_probe_point(dinfo, &pp, &result,
448                                            target, user);
449         if (!ret) {
450                 lr->function = result.function;
451                 lr->file = result.file;
452                 lr->start = result.line;
453                 if (lr->end != INT_MAX)
454                         lr->end = lr->start + len;
455                 clear_perf_probe_point(&pp);
456         }
457         return ret;
458 }
459
460 /* Open new debuginfo of given module */
461 static struct debuginfo *open_debuginfo(const char *module, bool silent)
462 {
463         const char *path = module;
464         char reason[STRERR_BUFSIZE];
465         struct debuginfo *ret = NULL;
466         struct dso *dso = NULL;
467         int err;
468
469         if (!module || !strchr(module, '/')) {
470                 err = kernel_get_module_dso(module, &dso);
471                 if (err < 0) {
472                         if (!dso || dso->load_errno == 0) {
473                                 if (!str_error_r(-err, reason, STRERR_BUFSIZE))
474                                         strcpy(reason, "(unknown)");
475                         } else
476                                 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
477                         if (!silent)
478                                 pr_err("Failed to find the path for %s: %s\n",
479                                         module ?: "kernel", reason);
480                         return NULL;
481                 }
482                 path = dso->long_name;
483         }
484         ret = debuginfo__new(path);
485         if (!ret && !silent) {
486                 pr_warning("The %s file has no debug information.\n", path);
487                 if (!module || !strtailcmp(path, ".ko"))
488                         pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
489                 else
490                         pr_warning("Rebuild with -g, ");
491                 pr_warning("or install an appropriate debuginfo package.\n");
492         }
493         return ret;
494 }
495
496 /* For caching the last debuginfo */
497 static struct debuginfo *debuginfo_cache;
498 static char *debuginfo_cache_path;
499
500 static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
501 {
502         const char *path = module;
503
504         /* If the module is NULL, it should be the kernel. */
505         if (!module)
506                 path = "kernel";
507
508         if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
509                 goto out;
510
511         /* Copy module path */
512         free(debuginfo_cache_path);
513         debuginfo_cache_path = strdup(path);
514         if (!debuginfo_cache_path) {
515                 debuginfo__delete(debuginfo_cache);
516                 debuginfo_cache = NULL;
517                 goto out;
518         }
519
520         debuginfo_cache = open_debuginfo(module, silent);
521         if (!debuginfo_cache)
522                 zfree(&debuginfo_cache_path);
523 out:
524         return debuginfo_cache;
525 }
526
527 static void debuginfo_cache__exit(void)
528 {
529         debuginfo__delete(debuginfo_cache);
530         debuginfo_cache = NULL;
531         zfree(&debuginfo_cache_path);
532 }
533
534
535 static int get_text_start_address(const char *exec, unsigned long *address)
536 {
537         Elf *elf;
538         GElf_Ehdr ehdr;
539         GElf_Shdr shdr;
540         int fd, ret = -ENOENT;
541
542         fd = open(exec, O_RDONLY);
543         if (fd < 0)
544                 return -errno;
545
546         elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
547         if (elf == NULL) {
548                 ret = -EINVAL;
549                 goto out_close;
550         }
551
552         if (gelf_getehdr(elf, &ehdr) == NULL)
553                 goto out;
554
555         if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
556                 goto out;
557
558         *address = shdr.sh_addr - shdr.sh_offset;
559         ret = 0;
560 out:
561         elf_end(elf);
562 out_close:
563         close(fd);
564
565         return ret;
566 }
567
568 /*
569  * Convert trace point to probe point with debuginfo
570  */
571 static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
572                                             struct perf_probe_point *pp,
573                                             bool is_kprobe)
574 {
575         struct debuginfo *dinfo = NULL;
576         unsigned long stext = 0;
577         u64 addr = tp->address;
578         int ret = -ENOENT;
579
580         /* convert the address to dwarf address */
581         if (!is_kprobe) {
582                 if (!addr) {
583                         ret = -EINVAL;
584                         goto error;
585                 }
586                 ret = get_text_start_address(tp->module, &stext);
587                 if (ret < 0)
588                         goto error;
589                 addr += stext;
590         } else if (tp->symbol) {
591                 /* If the module is given, this returns relative address */
592                 ret = kernel_get_symbol_address_by_name(tp->symbol, &addr,
593                                                         false, !!tp->module);
594                 if (ret != 0)
595                         goto error;
596                 addr += tp->offset;
597         }
598
599         pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
600                  tp->module ? : "kernel");
601
602         dinfo = debuginfo_cache__open(tp->module, verbose == 0);
603         if (dinfo)
604                 ret = debuginfo__find_probe_point(dinfo,
605                                                  (unsigned long)addr, pp);
606         else
607                 ret = -ENOENT;
608
609         if (ret > 0) {
610                 pp->retprobe = tp->retprobe;
611                 return 0;
612         }
613 error:
614         pr_debug("Failed to find corresponding probes from debuginfo.\n");
615         return ret ? : -ENOENT;
616 }
617
618 static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
619                                           int ntevs, const char *exec)
620 {
621         int i, ret = 0;
622         unsigned long stext = 0;
623
624         if (!exec)
625                 return 0;
626
627         ret = get_text_start_address(exec, &stext);
628         if (ret < 0)
629                 return ret;
630
631         for (i = 0; i < ntevs && ret >= 0; i++) {
632                 /* point.address is the addres of point.symbol + point.offset */
633                 tevs[i].point.address -= stext;
634                 tevs[i].point.module = strdup(exec);
635                 if (!tevs[i].point.module) {
636                         ret = -ENOMEM;
637                         break;
638                 }
639                 tevs[i].uprobes = true;
640         }
641
642         return ret;
643 }
644
645 static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
646                                             int ntevs, const char *module)
647 {
648         int i, ret = 0;
649         char *mod_name = NULL;
650
651         if (!module)
652                 return 0;
653
654         mod_name = find_module_name(module);
655
656         for (i = 0; i < ntevs; i++) {
657                 tevs[i].point.module =
658                         strdup(mod_name ? mod_name : module);
659                 if (!tevs[i].point.module) {
660                         ret = -ENOMEM;
661                         break;
662                 }
663         }
664
665         free(mod_name);
666         return ret;
667 }
668
669 /* Post processing the probe events */
670 static int post_process_probe_trace_events(struct probe_trace_event *tevs,
671                                            int ntevs, const char *module,
672                                            bool uprobe)
673 {
674         struct ref_reloc_sym *reloc_sym;
675         char *tmp;
676         int i, skipped = 0;
677
678         if (uprobe)
679                 return add_exec_to_probe_trace_events(tevs, ntevs, module);
680
681         /* Note that currently ref_reloc_sym based probe is not for drivers */
682         if (module)
683                 return add_module_to_probe_trace_events(tevs, ntevs, module);
684
685         reloc_sym = kernel_get_ref_reloc_sym();
686         if (!reloc_sym) {
687                 pr_warning("Relocated base symbol is not found!\n");
688                 return -EINVAL;
689         }
690
691         for (i = 0; i < ntevs; i++) {
692                 if (!tevs[i].point.address || tevs[i].point.retprobe)
693                         continue;
694                 /* If we found a wrong one, mark it by NULL symbol */
695                 if (kprobe_warn_out_range(tevs[i].point.symbol,
696                                           tevs[i].point.address)) {
697                         tmp = NULL;
698                         skipped++;
699                 } else {
700                         tmp = strdup(reloc_sym->name);
701                         if (!tmp)
702                                 return -ENOMEM;
703                 }
704                 /* If we have no realname, use symbol for it */
705                 if (!tevs[i].point.realname)
706                         tevs[i].point.realname = tevs[i].point.symbol;
707                 else
708                         free(tevs[i].point.symbol);
709                 tevs[i].point.symbol = tmp;
710                 tevs[i].point.offset = tevs[i].point.address -
711                                        reloc_sym->unrelocated_addr;
712         }
713         return skipped;
714 }
715
716 /* Try to find perf_probe_event with debuginfo */
717 static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
718                                           struct probe_trace_event **tevs)
719 {
720         bool need_dwarf = perf_probe_event_need_dwarf(pev);
721         struct perf_probe_point tmp;
722         struct debuginfo *dinfo;
723         int ntevs, ret = 0;
724
725         dinfo = open_debuginfo(pev->target, !need_dwarf);
726         if (!dinfo) {
727                 if (need_dwarf)
728                         return -ENOENT;
729                 pr_debug("Could not open debuginfo. Try to use symbols.\n");
730                 return 0;
731         }
732
733         pr_debug("Try to find probe point from debuginfo.\n");
734         /* Searching trace events corresponding to a probe event */
735         ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
736
737         if (ntevs == 0) {  /* Not found, retry with an alternative */
738                 ret = get_alternative_probe_event(dinfo, pev, &tmp);
739                 if (!ret) {
740                         ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
741                         /*
742                          * Write back to the original probe_event for
743                          * setting appropriate (user given) event name
744                          */
745                         clear_perf_probe_point(&pev->point);
746                         memcpy(&pev->point, &tmp, sizeof(tmp));
747                 }
748         }
749
750         debuginfo__delete(dinfo);
751
752         if (ntevs > 0) {        /* Succeeded to find trace events */
753                 pr_debug("Found %d probe_trace_events.\n", ntevs);
754                 ret = post_process_probe_trace_events(*tevs, ntevs,
755                                                 pev->target, pev->uprobes);
756                 if (ret < 0 || ret == ntevs) {
757                         clear_probe_trace_events(*tevs, ntevs);
758                         zfree(tevs);
759                 }
760                 if (ret != ntevs)
761                         return ret < 0 ? ret : ntevs;
762                 ntevs = 0;
763                 /* Fall through */
764         }
765
766         if (ntevs == 0) {       /* No error but failed to find probe point. */
767                 pr_warning("Probe point '%s' not found.\n",
768                            synthesize_perf_probe_point(&pev->point));
769                 return -ENOENT;
770         }
771         /* Error path : ntevs < 0 */
772         pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
773         if (ntevs < 0) {
774                 if (ntevs == -EBADF)
775                         pr_warning("Warning: No dwarf info found in the vmlinux - "
776                                 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
777                 if (!need_dwarf) {
778                         pr_debug("Trying to use symbols.\n");
779                         return 0;
780                 }
781         }
782         return ntevs;
783 }
784
785 #define LINEBUF_SIZE 256
786 #define NR_ADDITIONAL_LINES 2
787
788 static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
789 {
790         char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
791         const char *color = show_num ? "" : PERF_COLOR_BLUE;
792         const char *prefix = NULL;
793
794         do {
795                 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
796                         goto error;
797                 if (skip)
798                         continue;
799                 if (!prefix) {
800                         prefix = show_num ? "%7d  " : "         ";
801                         color_fprintf(stdout, color, prefix, l);
802                 }
803                 color_fprintf(stdout, color, "%s", buf);
804
805         } while (strchr(buf, '\n') == NULL);
806
807         return 1;
808 error:
809         if (ferror(fp)) {
810                 pr_warning("File read error: %s\n",
811                            str_error_r(errno, sbuf, sizeof(sbuf)));
812                 return -1;
813         }
814         return 0;
815 }
816
817 static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
818 {
819         int rv = __show_one_line(fp, l, skip, show_num);
820         if (rv == 0) {
821                 pr_warning("Source file is shorter than expected.\n");
822                 rv = -1;
823         }
824         return rv;
825 }
826
827 #define show_one_line_with_num(f,l)     _show_one_line(f,l,false,true)
828 #define show_one_line(f,l)              _show_one_line(f,l,false,false)
829 #define skip_one_line(f,l)              _show_one_line(f,l,true,false)
830 #define show_one_line_or_eof(f,l)       __show_one_line(f,l,false,false)
831
832 /*
833  * Show line-range always requires debuginfo to find source file and
834  * line number.
835  */
836 static int __show_line_range(struct line_range *lr, const char *module,
837                              bool user)
838 {
839         int l = 1;
840         struct int_node *ln;
841         struct debuginfo *dinfo;
842         FILE *fp;
843         int ret;
844         char *tmp;
845         char sbuf[STRERR_BUFSIZE];
846
847         /* Search a line range */
848         dinfo = open_debuginfo(module, false);
849         if (!dinfo)
850                 return -ENOENT;
851
852         ret = debuginfo__find_line_range(dinfo, lr);
853         if (!ret) {     /* Not found, retry with an alternative */
854                 ret = get_alternative_line_range(dinfo, lr, module, user);
855                 if (!ret)
856                         ret = debuginfo__find_line_range(dinfo, lr);
857         }
858         debuginfo__delete(dinfo);
859         if (ret == 0 || ret == -ENOENT) {
860                 pr_warning("Specified source line is not found.\n");
861                 return -ENOENT;
862         } else if (ret < 0) {
863                 pr_warning("Debuginfo analysis failed.\n");
864                 return ret;
865         }
866
867         /* Convert source file path */
868         tmp = lr->path;
869         ret = get_real_path(tmp, lr->comp_dir, &lr->path);
870
871         /* Free old path when new path is assigned */
872         if (tmp != lr->path)
873                 free(tmp);
874
875         if (ret < 0) {
876                 pr_warning("Failed to find source file path.\n");
877                 return ret;
878         }
879
880         setup_pager();
881
882         if (lr->function)
883                 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
884                         lr->start - lr->offset);
885         else
886                 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
887
888         fp = fopen(lr->path, "r");
889         if (fp == NULL) {
890                 pr_warning("Failed to open %s: %s\n", lr->path,
891                            str_error_r(errno, sbuf, sizeof(sbuf)));
892                 return -errno;
893         }
894         /* Skip to starting line number */
895         while (l < lr->start) {
896                 ret = skip_one_line(fp, l++);
897                 if (ret < 0)
898                         goto end;
899         }
900
901         intlist__for_each_entry(ln, lr->line_list) {
902                 for (; ln->i > l; l++) {
903                         ret = show_one_line(fp, l - lr->offset);
904                         if (ret < 0)
905                                 goto end;
906                 }
907                 ret = show_one_line_with_num(fp, l++ - lr->offset);
908                 if (ret < 0)
909                         goto end;
910         }
911
912         if (lr->end == INT_MAX)
913                 lr->end = l + NR_ADDITIONAL_LINES;
914         while (l <= lr->end) {
915                 ret = show_one_line_or_eof(fp, l++ - lr->offset);
916                 if (ret <= 0)
917                         break;
918         }
919 end:
920         fclose(fp);
921         return ret;
922 }
923
924 int show_line_range(struct line_range *lr, const char *module, bool user)
925 {
926         int ret;
927
928         ret = init_probe_symbol_maps(user);
929         if (ret < 0)
930                 return ret;
931         ret = __show_line_range(lr, module, user);
932         exit_probe_symbol_maps();
933
934         return ret;
935 }
936
937 static int show_available_vars_at(struct debuginfo *dinfo,
938                                   struct perf_probe_event *pev,
939                                   struct strfilter *_filter)
940 {
941         char *buf;
942         int ret, i, nvars;
943         struct str_node *node;
944         struct variable_list *vls = NULL, *vl;
945         struct perf_probe_point tmp;
946         const char *var;
947
948         buf = synthesize_perf_probe_point(&pev->point);
949         if (!buf)
950                 return -EINVAL;
951         pr_debug("Searching variables at %s\n", buf);
952
953         ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
954         if (!ret) {  /* Not found, retry with an alternative */
955                 ret = get_alternative_probe_event(dinfo, pev, &tmp);
956                 if (!ret) {
957                         ret = debuginfo__find_available_vars_at(dinfo, pev,
958                                                                 &vls);
959                         /* Release the old probe_point */
960                         clear_perf_probe_point(&tmp);
961                 }
962         }
963         if (ret <= 0) {
964                 if (ret == 0 || ret == -ENOENT) {
965                         pr_err("Failed to find the address of %s\n", buf);
966                         ret = -ENOENT;
967                 } else
968                         pr_warning("Debuginfo analysis failed.\n");
969                 goto end;
970         }
971
972         /* Some variables are found */
973         fprintf(stdout, "Available variables at %s\n", buf);
974         for (i = 0; i < ret; i++) {
975                 vl = &vls[i];
976                 /*
977                  * A probe point might be converted to
978                  * several trace points.
979                  */
980                 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
981                         vl->point.offset);
982                 zfree(&vl->point.symbol);
983                 nvars = 0;
984                 if (vl->vars) {
985                         strlist__for_each_entry(node, vl->vars) {
986                                 var = strchr(node->s, '\t') + 1;
987                                 if (strfilter__compare(_filter, var)) {
988                                         fprintf(stdout, "\t\t%s\n", node->s);
989                                         nvars++;
990                                 }
991                         }
992                         strlist__delete(vl->vars);
993                 }
994                 if (nvars == 0)
995                         fprintf(stdout, "\t\t(No matched variables)\n");
996         }
997         free(vls);
998 end:
999         free(buf);
1000         return ret;
1001 }
1002
1003 /* Show available variables on given probe point */
1004 int show_available_vars(struct perf_probe_event *pevs, int npevs,
1005                         struct strfilter *_filter)
1006 {
1007         int i, ret = 0;
1008         struct debuginfo *dinfo;
1009
1010         ret = init_probe_symbol_maps(pevs->uprobes);
1011         if (ret < 0)
1012                 return ret;
1013
1014         dinfo = open_debuginfo(pevs->target, false);
1015         if (!dinfo) {
1016                 ret = -ENOENT;
1017                 goto out;
1018         }
1019
1020         setup_pager();
1021
1022         for (i = 0; i < npevs && ret >= 0; i++)
1023                 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
1024
1025         debuginfo__delete(dinfo);
1026 out:
1027         exit_probe_symbol_maps();
1028         return ret;
1029 }
1030
1031 #else   /* !HAVE_DWARF_SUPPORT */
1032
1033 static void debuginfo_cache__exit(void)
1034 {
1035 }
1036
1037 static int
1038 find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
1039                                  struct perf_probe_point *pp __maybe_unused,
1040                                  bool is_kprobe __maybe_unused)
1041 {
1042         return -ENOSYS;
1043 }
1044
1045 static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
1046                                 struct probe_trace_event **tevs __maybe_unused)
1047 {
1048         if (perf_probe_event_need_dwarf(pev)) {
1049                 pr_warning("Debuginfo-analysis is not supported.\n");
1050                 return -ENOSYS;
1051         }
1052
1053         return 0;
1054 }
1055
1056 int show_line_range(struct line_range *lr __maybe_unused,
1057                     const char *module __maybe_unused,
1058                     bool user __maybe_unused)
1059 {
1060         pr_warning("Debuginfo-analysis is not supported.\n");
1061         return -ENOSYS;
1062 }
1063
1064 int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
1065                         int npevs __maybe_unused,
1066                         struct strfilter *filter __maybe_unused)
1067 {
1068         pr_warning("Debuginfo-analysis is not supported.\n");
1069         return -ENOSYS;
1070 }
1071 #endif
1072
1073 void line_range__clear(struct line_range *lr)
1074 {
1075         free(lr->function);
1076         free(lr->file);
1077         free(lr->path);
1078         free(lr->comp_dir);
1079         intlist__delete(lr->line_list);
1080         memset(lr, 0, sizeof(*lr));
1081 }
1082
1083 int line_range__init(struct line_range *lr)
1084 {
1085         memset(lr, 0, sizeof(*lr));
1086         lr->line_list = intlist__new(NULL);
1087         if (!lr->line_list)
1088                 return -ENOMEM;
1089         else
1090                 return 0;
1091 }
1092
1093 static int parse_line_num(char **ptr, int *val, const char *what)
1094 {
1095         const char *start = *ptr;
1096
1097         errno = 0;
1098         *val = strtol(*ptr, ptr, 0);
1099         if (errno || *ptr == start) {
1100                 semantic_error("'%s' is not a valid number.\n", what);
1101                 return -EINVAL;
1102         }
1103         return 0;
1104 }
1105
1106 /* Check the name is good for event, group or function */
1107 static bool is_c_func_name(const char *name)
1108 {
1109         if (!isalpha(*name) && *name != '_')
1110                 return false;
1111         while (*++name != '\0') {
1112                 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1113                         return false;
1114         }
1115         return true;
1116 }
1117
1118 /*
1119  * Stuff 'lr' according to the line range described by 'arg'.
1120  * The line range syntax is described by:
1121  *
1122  *         SRC[:SLN[+NUM|-ELN]]
1123  *         FNC[@SRC][:SLN[+NUM|-ELN]]
1124  */
1125 int parse_line_range_desc(const char *arg, struct line_range *lr)
1126 {
1127         char *range, *file, *name = strdup(arg);
1128         int err;
1129
1130         if (!name)
1131                 return -ENOMEM;
1132
1133         lr->start = 0;
1134         lr->end = INT_MAX;
1135
1136         range = strchr(name, ':');
1137         if (range) {
1138                 *range++ = '\0';
1139
1140                 err = parse_line_num(&range, &lr->start, "start line");
1141                 if (err)
1142                         goto err;
1143
1144                 if (*range == '+' || *range == '-') {
1145                         const char c = *range++;
1146
1147                         err = parse_line_num(&range, &lr->end, "end line");
1148                         if (err)
1149                                 goto err;
1150
1151                         if (c == '+') {
1152                                 lr->end += lr->start;
1153                                 /*
1154                                  * Adjust the number of lines here.
1155                                  * If the number of lines == 1, the
1156                                  * the end of line should be equal to
1157                                  * the start of line.
1158                                  */
1159                                 lr->end--;
1160                         }
1161                 }
1162
1163                 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
1164
1165                 err = -EINVAL;
1166                 if (lr->start > lr->end) {
1167                         semantic_error("Start line must be smaller"
1168                                        " than end line.\n");
1169                         goto err;
1170                 }
1171                 if (*range != '\0') {
1172                         semantic_error("Tailing with invalid str '%s'.\n", range);
1173                         goto err;
1174                 }
1175         }
1176
1177         file = strchr(name, '@');
1178         if (file) {
1179                 *file = '\0';
1180                 lr->file = strdup(++file);
1181                 if (lr->file == NULL) {
1182                         err = -ENOMEM;
1183                         goto err;
1184                 }
1185                 lr->function = name;
1186         } else if (strchr(name, '/') || strchr(name, '.'))
1187                 lr->file = name;
1188         else if (is_c_func_name(name))/* We reuse it for checking funcname */
1189                 lr->function = name;
1190         else {  /* Invalid name */
1191                 semantic_error("'%s' is not a valid function name.\n", name);
1192                 err = -EINVAL;
1193                 goto err;
1194         }
1195
1196         return 0;
1197 err:
1198         free(name);
1199         return err;
1200 }
1201
1202 static int parse_perf_probe_event_name(char **arg, struct perf_probe_event *pev)
1203 {
1204         char *ptr;
1205
1206         ptr = strchr(*arg, ':');
1207         if (ptr) {
1208                 *ptr = '\0';
1209                 if (!pev->sdt && !is_c_func_name(*arg))
1210                         goto ng_name;
1211                 pev->group = strdup(*arg);
1212                 if (!pev->group)
1213                         return -ENOMEM;
1214                 *arg = ptr + 1;
1215         } else
1216                 pev->group = NULL;
1217         if (!pev->sdt && !is_c_func_name(*arg)) {
1218 ng_name:
1219                 semantic_error("%s is bad for event name -it must "
1220                                "follow C symbol-naming rule.\n", *arg);
1221                 return -EINVAL;
1222         }
1223         pev->event = strdup(*arg);
1224         if (pev->event == NULL)
1225                 return -ENOMEM;
1226
1227         return 0;
1228 }
1229
1230 /* Parse probepoint definition. */
1231 static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
1232 {
1233         struct perf_probe_point *pp = &pev->point;
1234         char *ptr, *tmp;
1235         char c, nc = 0;
1236         bool file_spec = false;
1237         int ret;
1238
1239         /*
1240          * <Syntax>
1241          * perf probe [GRP:][EVENT=]SRC[:LN|;PTN]
1242          * perf probe [GRP:][EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
1243          * perf probe %[GRP:]SDT_EVENT
1244          */
1245         if (!arg)
1246                 return -EINVAL;
1247
1248         /*
1249          * If the probe point starts with '%',
1250          * or starts with "sdt_" and has a ':' but no '=',
1251          * then it should be a SDT/cached probe point.
1252          */
1253         if (arg[0] == '%' ||
1254             (!strncmp(arg, "sdt_", 4) &&
1255              !!strchr(arg, ':') && !strchr(arg, '='))) {
1256                 pev->sdt = true;
1257                 if (arg[0] == '%')
1258                         arg++;
1259         }
1260
1261         ptr = strpbrk(arg, ";=@+%");
1262         if (pev->sdt) {
1263                 if (ptr) {
1264                         if (*ptr != '@') {
1265                                 semantic_error("%s must be an SDT name.\n",
1266                                                arg);
1267                                 return -EINVAL;
1268                         }
1269                         /* This must be a target file name or build id */
1270                         tmp = build_id_cache__complement(ptr + 1);
1271                         if (tmp) {
1272                                 pev->target = build_id_cache__origname(tmp);
1273                                 free(tmp);
1274                         } else
1275                                 pev->target = strdup(ptr + 1);
1276                         if (!pev->target)
1277                                 return -ENOMEM;
1278                         *ptr = '\0';
1279                 }
1280                 ret = parse_perf_probe_event_name(&arg, pev);
1281                 if (ret == 0) {
1282                         if (asprintf(&pev->point.function, "%%%s", pev->event) < 0)
1283                                 ret = -errno;
1284                 }
1285                 return ret;
1286         }
1287
1288         if (ptr && *ptr == '=') {       /* Event name */
1289                 *ptr = '\0';
1290                 tmp = ptr + 1;
1291                 ret = parse_perf_probe_event_name(&arg, pev);
1292                 if (ret < 0)
1293                         return ret;
1294
1295                 arg = tmp;
1296         }
1297
1298         /*
1299          * Check arg is function or file name and copy it.
1300          *
1301          * We consider arg to be a file spec if and only if it satisfies
1302          * all of the below criteria::
1303          * - it does not include any of "+@%",
1304          * - it includes one of ":;", and
1305          * - it has a period '.' in the name.
1306          *
1307          * Otherwise, we consider arg to be a function specification.
1308          */
1309         if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) {
1310                 /* This is a file spec if it includes a '.' before ; or : */
1311                 if (memchr(arg, '.', ptr - arg))
1312                         file_spec = true;
1313         }
1314
1315         ptr = strpbrk(arg, ";:+@%");
1316         if (ptr) {
1317                 nc = *ptr;
1318                 *ptr++ = '\0';
1319         }
1320
1321         if (arg[0] == '\0')
1322                 tmp = NULL;
1323         else {
1324                 tmp = strdup(arg);
1325                 if (tmp == NULL)
1326                         return -ENOMEM;
1327         }
1328
1329         if (file_spec)
1330                 pp->file = tmp;
1331         else {
1332                 pp->function = tmp;
1333
1334                 /*
1335                  * Keep pp->function even if this is absolute address,
1336                  * so it can mark whether abs_address is valid.
1337                  * Which make 'perf probe lib.bin 0x0' possible.
1338                  *
1339                  * Note that checking length of tmp is not needed
1340                  * because when we access tmp[1] we know tmp[0] is '0',
1341                  * so tmp[1] should always valid (but could be '\0').
1342                  */
1343                 if (tmp && !strncmp(tmp, "0x", 2)) {
1344                         pp->abs_address = strtoul(pp->function, &tmp, 0);
1345                         if (*tmp != '\0') {
1346                                 semantic_error("Invalid absolute address.\n");
1347                                 return -EINVAL;
1348                         }
1349                 }
1350         }
1351
1352         /* Parse other options */
1353         while (ptr) {
1354                 arg = ptr;
1355                 c = nc;
1356                 if (c == ';') { /* Lazy pattern must be the last part */
1357                         pp->lazy_line = strdup(arg);
1358                         if (pp->lazy_line == NULL)
1359                                 return -ENOMEM;
1360                         break;
1361                 }
1362                 ptr = strpbrk(arg, ";:+@%");
1363                 if (ptr) {
1364                         nc = *ptr;
1365                         *ptr++ = '\0';
1366                 }
1367                 switch (c) {
1368                 case ':':       /* Line number */
1369                         pp->line = strtoul(arg, &tmp, 0);
1370                         if (*tmp != '\0') {
1371                                 semantic_error("There is non-digit char"
1372                                                " in line number.\n");
1373                                 return -EINVAL;
1374                         }
1375                         break;
1376                 case '+':       /* Byte offset from a symbol */
1377                         pp->offset = strtoul(arg, &tmp, 0);
1378                         if (*tmp != '\0') {
1379                                 semantic_error("There is non-digit character"
1380                                                 " in offset.\n");
1381                                 return -EINVAL;
1382                         }
1383                         break;
1384                 case '@':       /* File name */
1385                         if (pp->file) {
1386                                 semantic_error("SRC@SRC is not allowed.\n");
1387                                 return -EINVAL;
1388                         }
1389                         pp->file = strdup(arg);
1390                         if (pp->file == NULL)
1391                                 return -ENOMEM;
1392                         break;
1393                 case '%':       /* Probe places */
1394                         if (strcmp(arg, "return") == 0) {
1395                                 pp->retprobe = 1;
1396                         } else {        /* Others not supported yet */
1397                                 semantic_error("%%%s is not supported.\n", arg);
1398                                 return -ENOTSUP;
1399                         }
1400                         break;
1401                 default:        /* Buggy case */
1402                         pr_err("This program has a bug at %s:%d.\n",
1403                                 __FILE__, __LINE__);
1404                         return -ENOTSUP;
1405                         break;
1406                 }
1407         }
1408
1409         /* Exclusion check */
1410         if (pp->lazy_line && pp->line) {
1411                 semantic_error("Lazy pattern can't be used with"
1412                                " line number.\n");
1413                 return -EINVAL;
1414         }
1415
1416         if (pp->lazy_line && pp->offset) {
1417                 semantic_error("Lazy pattern can't be used with offset.\n");
1418                 return -EINVAL;
1419         }
1420
1421         if (pp->line && pp->offset) {
1422                 semantic_error("Offset can't be used with line number.\n");
1423                 return -EINVAL;
1424         }
1425
1426         if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
1427                 semantic_error("File always requires line number or "
1428                                "lazy pattern.\n");
1429                 return -EINVAL;
1430         }
1431
1432         if (pp->offset && !pp->function) {
1433                 semantic_error("Offset requires an entry function.\n");
1434                 return -EINVAL;
1435         }
1436
1437         if (pp->retprobe && !pp->function) {
1438                 semantic_error("Return probe requires an entry function.\n");
1439                 return -EINVAL;
1440         }
1441
1442         if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
1443                 semantic_error("Offset/Line/Lazy pattern can't be used with "
1444                                "return probe.\n");
1445                 return -EINVAL;
1446         }
1447
1448         pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
1449                  pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1450                  pp->lazy_line);
1451         return 0;
1452 }
1453
1454 /* Parse perf-probe event argument */
1455 static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
1456 {
1457         char *tmp, *goodname;
1458         struct perf_probe_arg_field **fieldp;
1459
1460         pr_debug("parsing arg: %s into ", str);
1461
1462         tmp = strchr(str, '=');
1463         if (tmp) {
1464                 arg->name = strndup(str, tmp - str);
1465                 if (arg->name == NULL)
1466                         return -ENOMEM;
1467                 pr_debug("name:%s ", arg->name);
1468                 str = tmp + 1;
1469         }
1470
1471         tmp = strchr(str, ':');
1472         if (tmp) {      /* Type setting */
1473                 *tmp = '\0';
1474                 arg->type = strdup(tmp + 1);
1475                 if (arg->type == NULL)
1476                         return -ENOMEM;
1477                 pr_debug("type:%s ", arg->type);
1478         }
1479
1480         tmp = strpbrk(str, "-.[");
1481         if (!is_c_varname(str) || !tmp) {
1482                 /* A variable, register, symbol or special value */
1483                 arg->var = strdup(str);
1484                 if (arg->var == NULL)
1485                         return -ENOMEM;
1486                 pr_debug("%s\n", arg->var);
1487                 return 0;
1488         }
1489
1490         /* Structure fields or array element */
1491         arg->var = strndup(str, tmp - str);
1492         if (arg->var == NULL)
1493                 return -ENOMEM;
1494         goodname = arg->var;
1495         pr_debug("%s, ", arg->var);
1496         fieldp = &arg->field;
1497
1498         do {
1499                 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1500                 if (*fieldp == NULL)
1501                         return -ENOMEM;
1502                 if (*tmp == '[') {      /* Array */
1503                         str = tmp;
1504                         (*fieldp)->index = strtol(str + 1, &tmp, 0);
1505                         (*fieldp)->ref = true;
1506                         if (*tmp != ']' || tmp == str + 1) {
1507                                 semantic_error("Array index must be a"
1508                                                 " number.\n");
1509                                 return -EINVAL;
1510                         }
1511                         tmp++;
1512                         if (*tmp == '\0')
1513                                 tmp = NULL;
1514                 } else {                /* Structure */
1515                         if (*tmp == '.') {
1516                                 str = tmp + 1;
1517                                 (*fieldp)->ref = false;
1518                         } else if (tmp[1] == '>') {
1519                                 str = tmp + 2;
1520                                 (*fieldp)->ref = true;
1521                         } else {
1522                                 semantic_error("Argument parse error: %s\n",
1523                                                str);
1524                                 return -EINVAL;
1525                         }
1526                         tmp = strpbrk(str, "-.[");
1527                 }
1528                 if (tmp) {
1529                         (*fieldp)->name = strndup(str, tmp - str);
1530                         if ((*fieldp)->name == NULL)
1531                                 return -ENOMEM;
1532                         if (*str != '[')
1533                                 goodname = (*fieldp)->name;
1534                         pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1535                         fieldp = &(*fieldp)->next;
1536                 }
1537         } while (tmp);
1538         (*fieldp)->name = strdup(str);
1539         if ((*fieldp)->name == NULL)
1540                 return -ENOMEM;
1541         if (*str != '[')
1542                 goodname = (*fieldp)->name;
1543         pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
1544
1545         /* If no name is specified, set the last field name (not array index)*/
1546         if (!arg->name) {
1547                 arg->name = strdup(goodname);
1548                 if (arg->name == NULL)
1549                         return -ENOMEM;
1550         }
1551         return 0;
1552 }
1553
1554 /* Parse perf-probe event command */
1555 int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
1556 {
1557         char **argv;
1558         int argc, i, ret = 0;
1559
1560         argv = argv_split(cmd, &argc);
1561         if (!argv) {
1562                 pr_debug("Failed to split arguments.\n");
1563                 return -ENOMEM;
1564         }
1565         if (argc - 1 > MAX_PROBE_ARGS) {
1566                 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1567                 ret = -ERANGE;
1568                 goto out;
1569         }
1570         /* Parse probe point */
1571         ret = parse_perf_probe_point(argv[0], pev);
1572         if (ret < 0)
1573                 goto out;
1574
1575         /* Copy arguments and ensure return probe has no C argument */
1576         pev->nargs = argc - 1;
1577         pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1578         if (pev->args == NULL) {
1579                 ret = -ENOMEM;
1580                 goto out;
1581         }
1582         for (i = 0; i < pev->nargs && ret >= 0; i++) {
1583                 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1584                 if (ret >= 0 &&
1585                     is_c_varname(pev->args[i].var) && pev->point.retprobe) {
1586                         semantic_error("You can't specify local variable for"
1587                                        " kretprobe.\n");
1588                         ret = -EINVAL;
1589                 }
1590         }
1591 out:
1592         argv_free(argv);
1593
1594         return ret;
1595 }
1596
1597 /* Return true if this perf_probe_event requires debuginfo */
1598 bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
1599 {
1600         int i;
1601
1602         if (pev->point.file || pev->point.line || pev->point.lazy_line)
1603                 return true;
1604
1605         for (i = 0; i < pev->nargs; i++)
1606                 if (is_c_varname(pev->args[i].var) ||
1607                     !strcmp(pev->args[i].var, "$params") ||
1608                     !strcmp(pev->args[i].var, "$vars"))
1609                         return true;
1610
1611         return false;
1612 }
1613
1614 /* Parse probe_events event into struct probe_point */
1615 int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
1616 {
1617         struct probe_trace_point *tp = &tev->point;
1618         char pr;
1619         char *p;
1620         char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
1621         int ret, i, argc;
1622         char **argv;
1623
1624         pr_debug("Parsing probe_events: %s\n", cmd);
1625         argv = argv_split(cmd, &argc);
1626         if (!argv) {
1627                 pr_debug("Failed to split arguments.\n");
1628                 return -ENOMEM;
1629         }
1630         if (argc < 2) {
1631                 semantic_error("Too few probe arguments.\n");
1632                 ret = -ERANGE;
1633                 goto out;
1634         }
1635
1636         /* Scan event and group name. */
1637         argv0_str = strdup(argv[0]);
1638         if (argv0_str == NULL) {
1639                 ret = -ENOMEM;
1640                 goto out;
1641         }
1642         fmt1_str = strtok_r(argv0_str, ":", &fmt);
1643         fmt2_str = strtok_r(NULL, "/", &fmt);
1644         fmt3_str = strtok_r(NULL, " \t", &fmt);
1645         if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1646             || fmt3_str == NULL) {
1647                 semantic_error("Failed to parse event name: %s\n", argv[0]);
1648                 ret = -EINVAL;
1649                 goto out;
1650         }
1651         pr = fmt1_str[0];
1652         tev->group = strdup(fmt2_str);
1653         tev->event = strdup(fmt3_str);
1654         if (tev->group == NULL || tev->event == NULL) {
1655                 ret = -ENOMEM;
1656                 goto out;
1657         }
1658         pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
1659
1660         tp->retprobe = (pr == 'r');
1661
1662         /* Scan module name(if there), function name and offset */
1663         p = strchr(argv[1], ':');
1664         if (p) {
1665                 tp->module = strndup(argv[1], p - argv[1]);
1666                 if (!tp->module) {
1667                         ret = -ENOMEM;
1668                         goto out;
1669                 }
1670                 tev->uprobes = (tp->module[0] == '/');
1671                 p++;
1672         } else
1673                 p = argv[1];
1674         fmt1_str = strtok_r(p, "+", &fmt);
1675         /* only the address started with 0x */
1676         if (fmt1_str[0] == '0') {
1677                 /*
1678                  * Fix a special case:
1679                  * if address == 0, kernel reports something like:
1680                  * p:probe_libc/abs_0 /lib/libc-2.18.so:0x          (null) arg1=%ax
1681                  * Newer kernel may fix that, but we want to
1682                  * support old kernel also.
1683                  */
1684                 if (strcmp(fmt1_str, "0x") == 0) {
1685                         if (!argv[2] || strcmp(argv[2], "(null)")) {
1686                                 ret = -EINVAL;
1687                                 goto out;
1688                         }
1689                         tp->address = 0;
1690
1691                         free(argv[2]);
1692                         for (i = 2; argv[i + 1] != NULL; i++)
1693                                 argv[i] = argv[i + 1];
1694
1695                         argv[i] = NULL;
1696                         argc -= 1;
1697                 } else
1698                         tp->address = strtoul(fmt1_str, NULL, 0);
1699         } else {
1700                 /* Only the symbol-based probe has offset */
1701                 tp->symbol = strdup(fmt1_str);
1702                 if (tp->symbol == NULL) {
1703                         ret = -ENOMEM;
1704                         goto out;
1705                 }
1706                 fmt2_str = strtok_r(NULL, "", &fmt);
1707                 if (fmt2_str == NULL)
1708                         tp->offset = 0;
1709                 else
1710                         tp->offset = strtoul(fmt2_str, NULL, 10);
1711         }
1712
1713         tev->nargs = argc - 2;
1714         tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1715         if (tev->args == NULL) {
1716                 ret = -ENOMEM;
1717                 goto out;
1718         }
1719         for (i = 0; i < tev->nargs; i++) {
1720                 p = strchr(argv[i + 2], '=');
1721                 if (p)  /* We don't need which register is assigned. */
1722                         *p++ = '\0';
1723                 else
1724                         p = argv[i + 2];
1725                 tev->args[i].name = strdup(argv[i + 2]);
1726                 /* TODO: parse regs and offset */
1727                 tev->args[i].value = strdup(p);
1728                 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1729                         ret = -ENOMEM;
1730                         goto out;
1731                 }
1732         }
1733         ret = 0;
1734 out:
1735         free(argv0_str);
1736         argv_free(argv);
1737         return ret;
1738 }
1739
1740 /* Compose only probe arg */
1741 char *synthesize_perf_probe_arg(struct perf_probe_arg *pa)
1742 {
1743         struct perf_probe_arg_field *field = pa->field;
1744         struct strbuf buf;
1745         char *ret = NULL;
1746         int err;
1747
1748         if (strbuf_init(&buf, 64) < 0)
1749                 return NULL;
1750
1751         if (pa->name && pa->var)
1752                 err = strbuf_addf(&buf, "%s=%s", pa->name, pa->var);
1753         else
1754                 err = strbuf_addstr(&buf, pa->name ?: pa->var);
1755         if (err)
1756                 goto out;
1757
1758         while (field) {
1759                 if (field->name[0] == '[')
1760                         err = strbuf_addstr(&buf, field->name);
1761                 else
1762                         err = strbuf_addf(&buf, "%s%s", field->ref ? "->" : ".",
1763                                           field->name);
1764                 field = field->next;
1765                 if (err)
1766                         goto out;
1767         }
1768
1769         if (pa->type)
1770                 if (strbuf_addf(&buf, ":%s", pa->type) < 0)
1771                         goto out;
1772
1773         ret = strbuf_detach(&buf, NULL);
1774 out:
1775         strbuf_release(&buf);
1776         return ret;
1777 }
1778
1779 /* Compose only probe point (not argument) */
1780 char *synthesize_perf_probe_point(struct perf_probe_point *pp)
1781 {
1782         struct strbuf buf;
1783         char *tmp, *ret = NULL;
1784         int len, err = 0;
1785
1786         if (strbuf_init(&buf, 64) < 0)
1787                 return NULL;
1788
1789         if (pp->function) {
1790                 if (strbuf_addstr(&buf, pp->function) < 0)
1791                         goto out;
1792                 if (pp->offset)
1793                         err = strbuf_addf(&buf, "+%lu", pp->offset);
1794                 else if (pp->line)
1795                         err = strbuf_addf(&buf, ":%d", pp->line);
1796                 else if (pp->retprobe)
1797                         err = strbuf_addstr(&buf, "%return");
1798                 if (err)
1799                         goto out;
1800         }
1801         if (pp->file) {
1802                 tmp = pp->file;
1803                 len = strlen(tmp);
1804                 if (len > 30) {
1805                         tmp = strchr(pp->file + len - 30, '/');
1806                         tmp = tmp ? tmp + 1 : pp->file + len - 30;
1807                 }
1808                 err = strbuf_addf(&buf, "@%s", tmp);
1809                 if (!err && !pp->function && pp->line)
1810                         err = strbuf_addf(&buf, ":%d", pp->line);
1811         }
1812         if (!err)
1813                 ret = strbuf_detach(&buf, NULL);
1814 out:
1815         strbuf_release(&buf);
1816         return ret;
1817 }
1818
1819 char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1820 {
1821         struct strbuf buf;
1822         char *tmp, *ret = NULL;
1823         int i;
1824
1825         if (strbuf_init(&buf, 64))
1826                 return NULL;
1827         if (pev->event)
1828                 if (strbuf_addf(&buf, "%s:%s=", pev->group ?: PERFPROBE_GROUP,
1829                                 pev->event) < 0)
1830                         goto out;
1831
1832         tmp = synthesize_perf_probe_point(&pev->point);
1833         if (!tmp || strbuf_addstr(&buf, tmp) < 0)
1834                 goto out;
1835         free(tmp);
1836
1837         for (i = 0; i < pev->nargs; i++) {
1838                 tmp = synthesize_perf_probe_arg(pev->args + i);
1839                 if (!tmp || strbuf_addf(&buf, " %s", tmp) < 0)
1840                         goto out;
1841                 free(tmp);
1842         }
1843
1844         ret = strbuf_detach(&buf, NULL);
1845 out:
1846         strbuf_release(&buf);
1847         return ret;
1848 }
1849
1850 static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
1851                                             struct strbuf *buf, int depth)
1852 {
1853         int err;
1854         if (ref->next) {
1855                 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
1856                                                          depth + 1);
1857                 if (depth < 0)
1858                         return depth;
1859         }
1860         err = strbuf_addf(buf, "%+ld(", ref->offset);
1861         return (err < 0) ? err : depth;
1862 }
1863
1864 static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
1865                                       struct strbuf *buf)
1866 {
1867         struct probe_trace_arg_ref *ref = arg->ref;
1868         int depth = 0, err;
1869
1870         /* Argument name or separator */
1871         if (arg->name)
1872                 err = strbuf_addf(buf, " %s=", arg->name);
1873         else
1874                 err = strbuf_addch(buf, ' ');
1875         if (err)
1876                 return err;
1877
1878         /* Special case: @XXX */
1879         if (arg->value[0] == '@' && arg->ref)
1880                         ref = ref->next;
1881
1882         /* Dereferencing arguments */
1883         if (ref) {
1884                 depth = __synthesize_probe_trace_arg_ref(ref, buf, 1);
1885                 if (depth < 0)
1886                         return depth;
1887         }
1888
1889         /* Print argument value */
1890         if (arg->value[0] == '@' && arg->ref)
1891                 err = strbuf_addf(buf, "%s%+ld", arg->value, arg->ref->offset);
1892         else
1893                 err = strbuf_addstr(buf, arg->value);
1894
1895         /* Closing */
1896         while (!err && depth--)
1897                 err = strbuf_addch(buf, ')');
1898
1899         /* Print argument type */
1900         if (!err && arg->type)
1901                 err = strbuf_addf(buf, ":%s", arg->type);
1902
1903         return err;
1904 }
1905
1906 char *synthesize_probe_trace_command(struct probe_trace_event *tev)
1907 {
1908         struct probe_trace_point *tp = &tev->point;
1909         struct strbuf buf;
1910         char *ret = NULL;
1911         int i, err;
1912
1913         /* Uprobes must have tp->module */
1914         if (tev->uprobes && !tp->module)
1915                 return NULL;
1916
1917         if (strbuf_init(&buf, 32) < 0)
1918                 return NULL;
1919
1920         if (strbuf_addf(&buf, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1921                         tev->group, tev->event) < 0)
1922                 goto error;
1923         /*
1924          * If tp->address == 0, then this point must be a
1925          * absolute address uprobe.
1926          * try_to_find_absolute_address() should have made
1927          * tp->symbol to "0x0".
1928          */
1929         if (tev->uprobes && !tp->address) {
1930                 if (!tp->symbol || strcmp(tp->symbol, "0x0"))
1931                         goto error;
1932         }
1933
1934         /* Use the tp->address for uprobes */
1935         if (tev->uprobes)
1936                 err = strbuf_addf(&buf, "%s:0x%lx", tp->module, tp->address);
1937         else if (!strncmp(tp->symbol, "0x", 2))
1938                 /* Absolute address. See try_to_find_absolute_address() */
1939                 err = strbuf_addf(&buf, "%s%s0x%lx", tp->module ?: "",
1940                                   tp->module ? ":" : "", tp->address);
1941         else
1942                 err = strbuf_addf(&buf, "%s%s%s+%lu", tp->module ?: "",
1943                                 tp->module ? ":" : "", tp->symbol, tp->offset);
1944         if (err)
1945                 goto error;
1946
1947         for (i = 0; i < tev->nargs; i++)
1948                 if (synthesize_probe_trace_arg(&tev->args[i], &buf) < 0)
1949                         goto error;
1950
1951         ret = strbuf_detach(&buf, NULL);
1952 error:
1953         strbuf_release(&buf);
1954         return ret;
1955 }
1956
1957 static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1958                                           struct perf_probe_point *pp,
1959                                           bool is_kprobe)
1960 {
1961         struct symbol *sym = NULL;
1962         struct map *map;
1963         u64 addr = tp->address;
1964         int ret = -ENOENT;
1965
1966         if (!is_kprobe) {
1967                 map = dso__new_map(tp->module);
1968                 if (!map)
1969                         goto out;
1970                 sym = map__find_symbol(map, addr, NULL);
1971         } else {
1972                 if (tp->symbol && !addr) {
1973                         if (kernel_get_symbol_address_by_name(tp->symbol,
1974                                                 &addr, true, false) < 0)
1975                                 goto out;
1976                 }
1977                 if (addr) {
1978                         addr += tp->offset;
1979                         sym = __find_kernel_function(addr, &map);
1980                 }
1981         }
1982
1983         if (!sym)
1984                 goto out;
1985
1986         pp->retprobe = tp->retprobe;
1987         pp->offset = addr - map->unmap_ip(map, sym->start);
1988         pp->function = strdup(sym->name);
1989         ret = pp->function ? 0 : -ENOMEM;
1990
1991 out:
1992         if (map && !is_kprobe) {
1993                 map__put(map);
1994         }
1995
1996         return ret;
1997 }
1998
1999 static int convert_to_perf_probe_point(struct probe_trace_point *tp,
2000                                        struct perf_probe_point *pp,
2001                                        bool is_kprobe)
2002 {
2003         char buf[128];
2004         int ret;
2005
2006         ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
2007         if (!ret)
2008                 return 0;
2009         ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
2010         if (!ret)
2011                 return 0;
2012
2013         pr_debug("Failed to find probe point from both of dwarf and map.\n");
2014
2015         if (tp->symbol) {
2016                 pp->function = strdup(tp->symbol);
2017                 pp->offset = tp->offset;
2018         } else {
2019                 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
2020                 if (ret < 0)
2021                         return ret;
2022                 pp->function = strdup(buf);
2023                 pp->offset = 0;
2024         }
2025         if (pp->function == NULL)
2026                 return -ENOMEM;
2027
2028         pp->retprobe = tp->retprobe;
2029
2030         return 0;
2031 }
2032
2033 static int convert_to_perf_probe_event(struct probe_trace_event *tev,
2034                                struct perf_probe_event *pev, bool is_kprobe)
2035 {
2036         struct strbuf buf = STRBUF_INIT;
2037         int i, ret;
2038
2039         /* Convert event/group name */
2040         pev->event = strdup(tev->event);
2041         pev->group = strdup(tev->group);
2042         if (pev->event == NULL || pev->group == NULL)
2043                 return -ENOMEM;
2044
2045         /* Convert trace_point to probe_point */
2046         ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
2047         if (ret < 0)
2048                 return ret;
2049
2050         /* Convert trace_arg to probe_arg */
2051         pev->nargs = tev->nargs;
2052         pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
2053         if (pev->args == NULL)
2054                 return -ENOMEM;
2055         for (i = 0; i < tev->nargs && ret >= 0; i++) {
2056                 if (tev->args[i].name)
2057                         pev->args[i].name = strdup(tev->args[i].name);
2058                 else {
2059                         if ((ret = strbuf_init(&buf, 32)) < 0)
2060                                 goto error;
2061                         ret = synthesize_probe_trace_arg(&tev->args[i], &buf);
2062                         pev->args[i].name = strbuf_detach(&buf, NULL);
2063                 }
2064                 if (pev->args[i].name == NULL && ret >= 0)
2065                         ret = -ENOMEM;
2066         }
2067 error:
2068         if (ret < 0)
2069                 clear_perf_probe_event(pev);
2070
2071         return ret;
2072 }
2073
2074 void clear_perf_probe_event(struct perf_probe_event *pev)
2075 {
2076         struct perf_probe_arg_field *field, *next;
2077         int i;
2078
2079         free(pev->event);
2080         free(pev->group);
2081         free(pev->target);
2082         clear_perf_probe_point(&pev->point);
2083
2084         for (i = 0; i < pev->nargs; i++) {
2085                 free(pev->args[i].name);
2086                 free(pev->args[i].var);
2087                 free(pev->args[i].type);
2088                 field = pev->args[i].field;
2089                 while (field) {
2090                         next = field->next;
2091                         zfree(&field->name);
2092                         free(field);
2093                         field = next;
2094                 }
2095         }
2096         free(pev->args);
2097         memset(pev, 0, sizeof(*pev));
2098 }
2099
2100 #define strdup_or_goto(str, label)      \
2101 ({ char *__p = NULL; if (str && !(__p = strdup(str))) goto label; __p; })
2102
2103 static int perf_probe_point__copy(struct perf_probe_point *dst,
2104                                   struct perf_probe_point *src)
2105 {
2106         dst->file = strdup_or_goto(src->file, out_err);
2107         dst->function = strdup_or_goto(src->function, out_err);
2108         dst->lazy_line = strdup_or_goto(src->lazy_line, out_err);
2109         dst->line = src->line;
2110         dst->retprobe = src->retprobe;
2111         dst->offset = src->offset;
2112         return 0;
2113
2114 out_err:
2115         clear_perf_probe_point(dst);
2116         return -ENOMEM;
2117 }
2118
2119 static int perf_probe_arg__copy(struct perf_probe_arg *dst,
2120                                 struct perf_probe_arg *src)
2121 {
2122         struct perf_probe_arg_field *field, **ppfield;
2123
2124         dst->name = strdup_or_goto(src->name, out_err);
2125         dst->var = strdup_or_goto(src->var, out_err);
2126         dst->type = strdup_or_goto(src->type, out_err);
2127
2128         field = src->field;
2129         ppfield = &(dst->field);
2130         while (field) {
2131                 *ppfield = zalloc(sizeof(*field));
2132                 if (!*ppfield)
2133                         goto out_err;
2134                 (*ppfield)->name = strdup_or_goto(field->name, out_err);
2135                 (*ppfield)->index = field->index;
2136                 (*ppfield)->ref = field->ref;
2137                 field = field->next;
2138                 ppfield = &((*ppfield)->next);
2139         }
2140         return 0;
2141 out_err:
2142         return -ENOMEM;
2143 }
2144
2145 int perf_probe_event__copy(struct perf_probe_event *dst,
2146                            struct perf_probe_event *src)
2147 {
2148         int i;
2149
2150         dst->event = strdup_or_goto(src->event, out_err);
2151         dst->group = strdup_or_goto(src->group, out_err);
2152         dst->target = strdup_or_goto(src->target, out_err);
2153         dst->uprobes = src->uprobes;
2154
2155         if (perf_probe_point__copy(&dst->point, &src->point) < 0)
2156                 goto out_err;
2157
2158         dst->args = zalloc(sizeof(struct perf_probe_arg) * src->nargs);
2159         if (!dst->args)
2160                 goto out_err;
2161         dst->nargs = src->nargs;
2162
2163         for (i = 0; i < src->nargs; i++)
2164                 if (perf_probe_arg__copy(&dst->args[i], &src->args[i]) < 0)
2165                         goto out_err;
2166         return 0;
2167
2168 out_err:
2169         clear_perf_probe_event(dst);
2170         return -ENOMEM;
2171 }
2172
2173 void clear_probe_trace_event(struct probe_trace_event *tev)
2174 {
2175         struct probe_trace_arg_ref *ref, *next;
2176         int i;
2177
2178         free(tev->event);
2179         free(tev->group);
2180         free(tev->point.symbol);
2181         free(tev->point.realname);
2182         free(tev->point.module);
2183         for (i = 0; i < tev->nargs; i++) {
2184                 free(tev->args[i].name);
2185                 free(tev->args[i].value);
2186                 free(tev->args[i].type);
2187                 ref = tev->args[i].ref;
2188                 while (ref) {
2189                         next = ref->next;
2190                         free(ref);
2191                         ref = next;
2192                 }
2193         }
2194         free(tev->args);
2195         memset(tev, 0, sizeof(*tev));
2196 }
2197
2198 struct kprobe_blacklist_node {
2199         struct list_head list;
2200         unsigned long start;
2201         unsigned long end;
2202         char *symbol;
2203 };
2204
2205 static void kprobe_blacklist__delete(struct list_head *blacklist)
2206 {
2207         struct kprobe_blacklist_node *node;
2208
2209         while (!list_empty(blacklist)) {
2210                 node = list_first_entry(blacklist,
2211                                         struct kprobe_blacklist_node, list);
2212                 list_del(&node->list);
2213                 free(node->symbol);
2214                 free(node);
2215         }
2216 }
2217
2218 static int kprobe_blacklist__load(struct list_head *blacklist)
2219 {
2220         struct kprobe_blacklist_node *node;
2221         const char *__debugfs = debugfs__mountpoint();
2222         char buf[PATH_MAX], *p;
2223         FILE *fp;
2224         int ret;
2225
2226         if (__debugfs == NULL)
2227                 return -ENOTSUP;
2228
2229         ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2230         if (ret < 0)
2231                 return ret;
2232
2233         fp = fopen(buf, "r");
2234         if (!fp)
2235                 return -errno;
2236
2237         ret = 0;
2238         while (fgets(buf, PATH_MAX, fp)) {
2239                 node = zalloc(sizeof(*node));
2240                 if (!node) {
2241                         ret = -ENOMEM;
2242                         break;
2243                 }
2244                 INIT_LIST_HEAD(&node->list);
2245                 list_add_tail(&node->list, blacklist);
2246                 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2247                         ret = -EINVAL;
2248                         break;
2249                 }
2250                 p = strchr(buf, '\t');
2251                 if (p) {
2252                         p++;
2253                         if (p[strlen(p) - 1] == '\n')
2254                                 p[strlen(p) - 1] = '\0';
2255                 } else
2256                         p = (char *)"unknown";
2257                 node->symbol = strdup(p);
2258                 if (!node->symbol) {
2259                         ret = -ENOMEM;
2260                         break;
2261                 }
2262                 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2263                           node->start, node->end, node->symbol);
2264                 ret++;
2265         }
2266         if (ret < 0)
2267                 kprobe_blacklist__delete(blacklist);
2268         fclose(fp);
2269
2270         return ret;
2271 }
2272
2273 static struct kprobe_blacklist_node *
2274 kprobe_blacklist__find_by_address(struct list_head *blacklist,
2275                                   unsigned long address)
2276 {
2277         struct kprobe_blacklist_node *node;
2278
2279         list_for_each_entry(node, blacklist, list) {
2280                 if (node->start <= address && address <= node->end)
2281                         return node;
2282         }
2283
2284         return NULL;
2285 }
2286
2287 static LIST_HEAD(kprobe_blacklist);
2288
2289 static void kprobe_blacklist__init(void)
2290 {
2291         if (!list_empty(&kprobe_blacklist))
2292                 return;
2293
2294         if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2295                 pr_debug("No kprobe blacklist support, ignored\n");
2296 }
2297
2298 static void kprobe_blacklist__release(void)
2299 {
2300         kprobe_blacklist__delete(&kprobe_blacklist);
2301 }
2302
2303 static bool kprobe_blacklist__listed(unsigned long address)
2304 {
2305         return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2306 }
2307
2308 static int perf_probe_event__sprintf(const char *group, const char *event,
2309                                      struct perf_probe_event *pev,
2310                                      const char *module,
2311                                      struct strbuf *result)
2312 {
2313         int i, ret;
2314         char *buf;
2315
2316         if (asprintf(&buf, "%s:%s", group, event) < 0)
2317                 return -errno;
2318         ret = strbuf_addf(result, "  %-20s (on ", buf);
2319         free(buf);
2320         if (ret)
2321                 return ret;
2322
2323         /* Synthesize only event probe point */
2324         buf = synthesize_perf_probe_point(&pev->point);
2325         if (!buf)
2326                 return -ENOMEM;
2327         ret = strbuf_addstr(result, buf);
2328         free(buf);
2329
2330         if (!ret && module)
2331                 ret = strbuf_addf(result, " in %s", module);
2332
2333         if (!ret && pev->nargs > 0) {
2334                 ret = strbuf_add(result, " with", 5);
2335                 for (i = 0; !ret && i < pev->nargs; i++) {
2336                         buf = synthesize_perf_probe_arg(&pev->args[i]);
2337                         if (!buf)
2338                                 return -ENOMEM;
2339                         ret = strbuf_addf(result, " %s", buf);
2340                         free(buf);
2341                 }
2342         }
2343         if (!ret)
2344                 ret = strbuf_addch(result, ')');
2345
2346         return ret;
2347 }
2348
2349 /* Show an event */
2350 int show_perf_probe_event(const char *group, const char *event,
2351                           struct perf_probe_event *pev,
2352                           const char *module, bool use_stdout)
2353 {
2354         struct strbuf buf = STRBUF_INIT;
2355         int ret;
2356
2357         ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
2358         if (ret >= 0) {
2359                 if (use_stdout)
2360                         printf("%s\n", buf.buf);
2361                 else
2362                         pr_info("%s\n", buf.buf);
2363         }
2364         strbuf_release(&buf);
2365
2366         return ret;
2367 }
2368
2369 static bool filter_probe_trace_event(struct probe_trace_event *tev,
2370                                      struct strfilter *filter)
2371 {
2372         char tmp[128];
2373
2374         /* At first, check the event name itself */
2375         if (strfilter__compare(filter, tev->event))
2376                 return true;
2377
2378         /* Next, check the combination of name and group */
2379         if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2380                 return false;
2381         return strfilter__compare(filter, tmp);
2382 }
2383
2384 static int __show_perf_probe_events(int fd, bool is_kprobe,
2385                                     struct strfilter *filter)
2386 {
2387         int ret = 0;
2388         struct probe_trace_event tev;
2389         struct perf_probe_event pev;
2390         struct strlist *rawlist;
2391         struct str_node *ent;
2392
2393         memset(&tev, 0, sizeof(tev));
2394         memset(&pev, 0, sizeof(pev));
2395
2396         rawlist = probe_file__get_rawlist(fd);
2397         if (!rawlist)
2398                 return -ENOMEM;
2399
2400         strlist__for_each_entry(ent, rawlist) {
2401                 ret = parse_probe_trace_command(ent->s, &tev);
2402                 if (ret >= 0) {
2403                         if (!filter_probe_trace_event(&tev, filter))
2404                                 goto next;
2405                         ret = convert_to_perf_probe_event(&tev, &pev,
2406                                                                 is_kprobe);
2407                         if (ret < 0)
2408                                 goto next;
2409                         ret = show_perf_probe_event(pev.group, pev.event,
2410                                                     &pev, tev.point.module,
2411                                                     true);
2412                 }
2413 next:
2414                 clear_perf_probe_event(&pev);
2415                 clear_probe_trace_event(&tev);
2416                 if (ret < 0)
2417                         break;
2418         }
2419         strlist__delete(rawlist);
2420         /* Cleanup cached debuginfo if needed */
2421         debuginfo_cache__exit();
2422
2423         return ret;
2424 }
2425
2426 /* List up current perf-probe events */
2427 int show_perf_probe_events(struct strfilter *filter)
2428 {
2429         int kp_fd, up_fd, ret;
2430
2431         setup_pager();
2432
2433         if (probe_conf.cache)
2434                 return probe_cache__show_all_caches(filter);
2435
2436         ret = init_probe_symbol_maps(false);
2437         if (ret < 0)
2438                 return ret;
2439
2440         ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2441         if (ret < 0)
2442                 return ret;
2443
2444         if (kp_fd >= 0)
2445                 ret = __show_perf_probe_events(kp_fd, true, filter);
2446         if (up_fd >= 0 && ret >= 0)
2447                 ret = __show_perf_probe_events(up_fd, false, filter);
2448         if (kp_fd > 0)
2449                 close(kp_fd);
2450         if (up_fd > 0)
2451                 close(up_fd);
2452         exit_probe_symbol_maps();
2453
2454         return ret;
2455 }
2456
2457 static int get_new_event_name(char *buf, size_t len, const char *base,
2458                               struct strlist *namelist, bool allow_suffix)
2459 {
2460         int i, ret;
2461         char *p, *nbase;
2462
2463         if (*base == '.')
2464                 base++;
2465         nbase = strdup(base);
2466         if (!nbase)
2467                 return -ENOMEM;
2468
2469         /* Cut off the dot suffixes (e.g. .const, .isra)*/
2470         p = strchr(nbase, '.');
2471         if (p && p != nbase)
2472                 *p = '\0';
2473
2474         /* Try no suffix number */
2475         ret = e_snprintf(buf, len, "%s", nbase);
2476         if (ret < 0) {
2477                 pr_debug("snprintf() failed: %d\n", ret);
2478                 goto out;
2479         }
2480         if (!strlist__has_entry(namelist, buf))
2481                 goto out;
2482
2483         if (!allow_suffix) {
2484                 pr_warning("Error: event \"%s\" already exists.\n"
2485                            " Hint: Remove existing event by 'perf probe -d'\n"
2486                            "       or force duplicates by 'perf probe -f'\n"
2487                            "       or set 'force=yes' in BPF source.\n",
2488                            buf);
2489                 ret = -EEXIST;
2490                 goto out;
2491         }
2492
2493         /* Try to add suffix */
2494         for (i = 1; i < MAX_EVENT_INDEX; i++) {
2495                 ret = e_snprintf(buf, len, "%s_%d", nbase, i);
2496                 if (ret < 0) {
2497                         pr_debug("snprintf() failed: %d\n", ret);
2498                         goto out;
2499                 }
2500                 if (!strlist__has_entry(namelist, buf))
2501                         break;
2502         }
2503         if (i == MAX_EVENT_INDEX) {
2504                 pr_warning("Too many events are on the same function.\n");
2505                 ret = -ERANGE;
2506         }
2507
2508 out:
2509         free(nbase);
2510         return ret;
2511 }
2512
2513 /* Warn if the current kernel's uprobe implementation is old */
2514 static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2515 {
2516         int i;
2517         char *buf = synthesize_probe_trace_command(tev);
2518
2519         /* Old uprobe event doesn't support memory dereference */
2520         if (!tev->uprobes || tev->nargs == 0 || !buf)
2521                 goto out;
2522
2523         for (i = 0; i < tev->nargs; i++)
2524                 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2525                         pr_warning("Please upgrade your kernel to at least "
2526                                    "3.14 to have access to feature %s\n",
2527                                    tev->args[i].value);
2528                         break;
2529                 }
2530 out:
2531         free(buf);
2532 }
2533
2534 /* Set new name from original perf_probe_event and namelist */
2535 static int probe_trace_event__set_name(struct probe_trace_event *tev,
2536                                        struct perf_probe_event *pev,
2537                                        struct strlist *namelist,
2538                                        bool allow_suffix)
2539 {
2540         const char *event, *group;
2541         char buf[64];
2542         int ret;
2543
2544         /* If probe_event or trace_event already have the name, reuse it */
2545         if (pev->event && !pev->sdt)
2546                 event = pev->event;
2547         else if (tev->event)
2548                 event = tev->event;
2549         else {
2550                 /* Or generate new one from probe point */
2551                 if (pev->point.function &&
2552                         (strncmp(pev->point.function, "0x", 2) != 0) &&
2553                         !strisglob(pev->point.function))
2554                         event = pev->point.function;
2555                 else
2556                         event = tev->point.realname;
2557         }
2558         if (pev->group && !pev->sdt)
2559                 group = pev->group;
2560         else if (tev->group)
2561                 group = tev->group;
2562         else
2563                 group = PERFPROBE_GROUP;
2564
2565         /* Get an unused new event name */
2566         ret = get_new_event_name(buf, 64, event,
2567                                  namelist, allow_suffix);
2568         if (ret < 0)
2569                 return ret;
2570
2571         event = buf;
2572
2573         tev->event = strdup(event);
2574         tev->group = strdup(group);
2575         if (tev->event == NULL || tev->group == NULL)
2576                 return -ENOMEM;
2577
2578         /* Add added event name to namelist */
2579         strlist__add(namelist, event);
2580         return 0;
2581 }
2582
2583 static int __open_probe_file_and_namelist(bool uprobe,
2584                                           struct strlist **namelist)
2585 {
2586         int fd;
2587
2588         fd = probe_file__open(PF_FL_RW | (uprobe ? PF_FL_UPROBE : 0));
2589         if (fd < 0)
2590                 return fd;
2591
2592         /* Get current event names */
2593         *namelist = probe_file__get_namelist(fd);
2594         if (!(*namelist)) {
2595                 pr_debug("Failed to get current event list.\n");
2596                 close(fd);
2597                 return -ENOMEM;
2598         }
2599         return fd;
2600 }
2601
2602 static int __add_probe_trace_events(struct perf_probe_event *pev,
2603                                      struct probe_trace_event *tevs,
2604                                      int ntevs, bool allow_suffix)
2605 {
2606         int i, fd[2] = {-1, -1}, up, ret;
2607         struct probe_trace_event *tev = NULL;
2608         struct probe_cache *cache = NULL;
2609         struct strlist *namelist[2] = {NULL, NULL};
2610
2611         up = pev->uprobes ? 1 : 0;
2612         fd[up] = __open_probe_file_and_namelist(up, &namelist[up]);
2613         if (fd[up] < 0)
2614                 return fd[up];
2615
2616         ret = 0;
2617         for (i = 0; i < ntevs; i++) {
2618                 tev = &tevs[i];
2619                 up = tev->uprobes ? 1 : 0;
2620                 if (fd[up] == -1) {     /* Open the kprobe/uprobe_events */
2621                         fd[up] = __open_probe_file_and_namelist(up,
2622                                                                 &namelist[up]);
2623                         if (fd[up] < 0)
2624                                 goto close_out;
2625                 }
2626                 /* Skip if the symbol is out of .text or blacklisted */
2627                 if (!tev->point.symbol && !pev->uprobes)
2628                         continue;
2629
2630                 /* Set new name for tev (and update namelist) */
2631                 ret = probe_trace_event__set_name(tev, pev, namelist[up],
2632                                                   allow_suffix);
2633                 if (ret < 0)
2634                         break;
2635
2636                 ret = probe_file__add_event(fd[up], tev);
2637                 if (ret < 0)
2638                         break;
2639
2640                 /*
2641                  * Probes after the first probe which comes from same
2642                  * user input are always allowed to add suffix, because
2643                  * there might be several addresses corresponding to
2644                  * one code line.
2645                  */
2646                 allow_suffix = true;
2647         }
2648         if (ret == -EINVAL && pev->uprobes)
2649                 warn_uprobe_event_compat(tev);
2650         if (ret == 0 && probe_conf.cache) {
2651                 cache = probe_cache__new(pev->target);
2652                 if (!cache ||
2653                     probe_cache__add_entry(cache, pev, tevs, ntevs) < 0 ||
2654                     probe_cache__commit(cache) < 0)
2655                         pr_warning("Failed to add event to probe cache\n");
2656                 probe_cache__delete(cache);
2657         }
2658
2659 close_out:
2660         for (up = 0; up < 2; up++) {
2661                 strlist__delete(namelist[up]);
2662                 if (fd[up] >= 0)
2663                         close(fd[up]);
2664         }
2665         return ret;
2666 }
2667
2668 static int find_probe_functions(struct map *map, char *name,
2669                                 struct symbol **syms)
2670 {
2671         int found = 0;
2672         struct symbol *sym;
2673         struct rb_node *tmp;
2674
2675         if (map__load(map, NULL) < 0)
2676                 return 0;
2677
2678         map__for_each_symbol(map, sym, tmp) {
2679                 if (strglobmatch(sym->name, name)) {
2680                         found++;
2681                         if (syms && found < probe_conf.max_probes)
2682                                 syms[found - 1] = sym;
2683                 }
2684         }
2685
2686         return found;
2687 }
2688
2689 void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2690                                 struct probe_trace_event *tev __maybe_unused,
2691                                 struct map *map __maybe_unused,
2692                                 struct symbol *sym __maybe_unused) { }
2693
2694 /*
2695  * Find probe function addresses from map.
2696  * Return an error or the number of found probe_trace_event
2697  */
2698 static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
2699                                             struct probe_trace_event **tevs)
2700 {
2701         struct map *map = NULL;
2702         struct ref_reloc_sym *reloc_sym = NULL;
2703         struct symbol *sym;
2704         struct symbol **syms = NULL;
2705         struct probe_trace_event *tev;
2706         struct perf_probe_point *pp = &pev->point;
2707         struct probe_trace_point *tp;
2708         int num_matched_functions;
2709         int ret, i, j, skipped = 0;
2710         char *mod_name;
2711
2712         map = get_target_map(pev->target, pev->uprobes);
2713         if (!map) {
2714                 ret = -EINVAL;
2715                 goto out;
2716         }
2717
2718         syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2719         if (!syms) {
2720                 ret = -ENOMEM;
2721                 goto out;
2722         }
2723
2724         /*
2725          * Load matched symbols: Since the different local symbols may have
2726          * same name but different addresses, this lists all the symbols.
2727          */
2728         num_matched_functions = find_probe_functions(map, pp->function, syms);
2729         if (num_matched_functions == 0) {
2730                 pr_err("Failed to find symbol %s in %s\n", pp->function,
2731                         pev->target ? : "kernel");
2732                 ret = -ENOENT;
2733                 goto out;
2734         } else if (num_matched_functions > probe_conf.max_probes) {
2735                 pr_err("Too many functions matched in %s\n",
2736                         pev->target ? : "kernel");
2737                 ret = -E2BIG;
2738                 goto out;
2739         }
2740
2741         /* Note that the symbols in the kmodule are not relocated */
2742         if (!pev->uprobes && !pp->retprobe && !pev->target) {
2743                 reloc_sym = kernel_get_ref_reloc_sym();
2744                 if (!reloc_sym) {
2745                         pr_warning("Relocated base symbol is not found!\n");
2746                         ret = -EINVAL;
2747                         goto out;
2748                 }
2749         }
2750
2751         /* Setup result trace-probe-events */
2752         *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2753         if (!*tevs) {
2754                 ret = -ENOMEM;
2755                 goto out;
2756         }
2757
2758         ret = 0;
2759
2760         for (j = 0; j < num_matched_functions; j++) {
2761                 sym = syms[j];
2762
2763                 tev = (*tevs) + ret;
2764                 tp = &tev->point;
2765                 if (ret == num_matched_functions) {
2766                         pr_warning("Too many symbols are listed. Skip it.\n");
2767                         break;
2768                 }
2769                 ret++;
2770
2771                 if (pp->offset > sym->end - sym->start) {
2772                         pr_warning("Offset %ld is bigger than the size of %s\n",
2773                                    pp->offset, sym->name);
2774                         ret = -ENOENT;
2775                         goto err_out;
2776                 }
2777                 /* Add one probe point */
2778                 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
2779
2780                 /* Check the kprobe (not in module) is within .text  */
2781                 if (!pev->uprobes && !pev->target &&
2782                     kprobe_warn_out_range(sym->name, tp->address)) {
2783                         tp->symbol = NULL;      /* Skip it */
2784                         skipped++;
2785                 } else if (reloc_sym) {
2786                         tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2787                         tp->offset = tp->address - reloc_sym->addr;
2788                 } else {
2789                         tp->symbol = strdup_or_goto(sym->name, nomem_out);
2790                         tp->offset = pp->offset;
2791                 }
2792                 tp->realname = strdup_or_goto(sym->name, nomem_out);
2793
2794                 tp->retprobe = pp->retprobe;
2795                 if (pev->target) {
2796                         if (pev->uprobes) {
2797                                 tev->point.module = strdup_or_goto(pev->target,
2798                                                                    nomem_out);
2799                         } else {
2800                                 mod_name = find_module_name(pev->target);
2801                                 tev->point.module =
2802                                         strdup(mod_name ? mod_name : pev->target);
2803                                 free(mod_name);
2804                                 if (!tev->point.module)
2805                                         goto nomem_out;
2806                         }
2807                 }
2808                 tev->uprobes = pev->uprobes;
2809                 tev->nargs = pev->nargs;
2810                 if (tev->nargs) {
2811                         tev->args = zalloc(sizeof(struct probe_trace_arg) *
2812                                            tev->nargs);
2813                         if (tev->args == NULL)
2814                                 goto nomem_out;
2815                 }
2816                 for (i = 0; i < tev->nargs; i++) {
2817                         if (pev->args[i].name)
2818                                 tev->args[i].name =
2819                                         strdup_or_goto(pev->args[i].name,
2820                                                         nomem_out);
2821
2822                         tev->args[i].value = strdup_or_goto(pev->args[i].var,
2823                                                             nomem_out);
2824                         if (pev->args[i].type)
2825                                 tev->args[i].type =
2826                                         strdup_or_goto(pev->args[i].type,
2827                                                         nomem_out);
2828                 }
2829                 arch__fix_tev_from_maps(pev, tev, map, sym);
2830         }
2831         if (ret == skipped) {
2832                 ret = -ENOENT;
2833                 goto err_out;
2834         }
2835
2836 out:
2837         put_target_map(map, pev->uprobes);
2838         free(syms);
2839         return ret;
2840
2841 nomem_out:
2842         ret = -ENOMEM;
2843 err_out:
2844         clear_probe_trace_events(*tevs, num_matched_functions);
2845         zfree(tevs);
2846         goto out;
2847 }
2848
2849 static int try_to_find_absolute_address(struct perf_probe_event *pev,
2850                                         struct probe_trace_event **tevs)
2851 {
2852         struct perf_probe_point *pp = &pev->point;
2853         struct probe_trace_event *tev;
2854         struct probe_trace_point *tp;
2855         int i, err;
2856
2857         if (!(pev->point.function && !strncmp(pev->point.function, "0x", 2)))
2858                 return -EINVAL;
2859         if (perf_probe_event_need_dwarf(pev))
2860                 return -EINVAL;
2861
2862         /*
2863          * This is 'perf probe /lib/libc.so 0xabcd'. Try to probe at
2864          * absolute address.
2865          *
2866          * Only one tev can be generated by this.
2867          */
2868         *tevs = zalloc(sizeof(*tev));
2869         if (!*tevs)
2870                 return -ENOMEM;
2871
2872         tev = *tevs;
2873         tp = &tev->point;
2874
2875         /*
2876          * Don't use tp->offset, use address directly, because
2877          * in synthesize_probe_trace_command() address cannot be
2878          * zero.
2879          */
2880         tp->address = pev->point.abs_address;
2881         tp->retprobe = pp->retprobe;
2882         tev->uprobes = pev->uprobes;
2883
2884         err = -ENOMEM;
2885         /*
2886          * Give it a '0x' leading symbol name.
2887          * In __add_probe_trace_events, a NULL symbol is interpreted as
2888          * invalud.
2889          */
2890         if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
2891                 goto errout;
2892
2893         /* For kprobe, check range */
2894         if ((!tev->uprobes) &&
2895             (kprobe_warn_out_range(tev->point.symbol,
2896                                    tev->point.address))) {
2897                 err = -EACCES;
2898                 goto errout;
2899         }
2900
2901         if (asprintf(&tp->realname, "abs_%lx", tp->address) < 0)
2902                 goto errout;
2903
2904         if (pev->target) {
2905                 tp->module = strdup(pev->target);
2906                 if (!tp->module)
2907                         goto errout;
2908         }
2909
2910         if (tev->group) {
2911                 tev->group = strdup(pev->group);
2912                 if (!tev->group)
2913                         goto errout;
2914         }
2915
2916         if (pev->event) {
2917                 tev->event = strdup(pev->event);
2918                 if (!tev->event)
2919                         goto errout;
2920         }
2921
2922         tev->nargs = pev->nargs;
2923         tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
2924         if (!tev->args) {
2925                 err = -ENOMEM;
2926                 goto errout;
2927         }
2928         for (i = 0; i < tev->nargs; i++)
2929                 copy_to_probe_trace_arg(&tev->args[i], &pev->args[i]);
2930
2931         return 1;
2932
2933 errout:
2934         if (*tevs) {
2935                 clear_probe_trace_events(*tevs, 1);
2936                 *tevs = NULL;
2937         }
2938         return err;
2939 }
2940
2941 bool __weak arch__prefers_symtab(void) { return false; }
2942
2943 /* Concatinate two arrays */
2944 static void *memcat(void *a, size_t sz_a, void *b, size_t sz_b)
2945 {
2946         void *ret;
2947
2948         ret = malloc(sz_a + sz_b);
2949         if (ret) {
2950                 memcpy(ret, a, sz_a);
2951                 memcpy(ret + sz_a, b, sz_b);
2952         }
2953         return ret;
2954 }
2955
2956 static int
2957 concat_probe_trace_events(struct probe_trace_event **tevs, int *ntevs,
2958                           struct probe_trace_event **tevs2, int ntevs2)
2959 {
2960         struct probe_trace_event *new_tevs;
2961         int ret = 0;
2962
2963         if (ntevs == 0) {
2964                 *tevs = *tevs2;
2965                 *ntevs = ntevs2;
2966                 *tevs2 = NULL;
2967                 return 0;
2968         }
2969
2970         if (*ntevs + ntevs2 > probe_conf.max_probes)
2971                 ret = -E2BIG;
2972         else {
2973                 /* Concatinate the array of probe_trace_event */
2974                 new_tevs = memcat(*tevs, (*ntevs) * sizeof(**tevs),
2975                                   *tevs2, ntevs2 * sizeof(**tevs2));
2976                 if (!new_tevs)
2977                         ret = -ENOMEM;
2978                 else {
2979                         free(*tevs);
2980                         *tevs = new_tevs;
2981                         *ntevs += ntevs2;
2982                 }
2983         }
2984         if (ret < 0)
2985                 clear_probe_trace_events(*tevs2, ntevs2);
2986         zfree(tevs2);
2987
2988         return ret;
2989 }
2990
2991 /*
2992  * Try to find probe_trace_event from given probe caches. Return the number
2993  * of cached events found, if an error occurs return the error.
2994  */
2995 static int find_cached_events(struct perf_probe_event *pev,
2996                               struct probe_trace_event **tevs,
2997                               const char *target)
2998 {
2999         struct probe_cache *cache;
3000         struct probe_cache_entry *entry;
3001         struct probe_trace_event *tmp_tevs = NULL;
3002         int ntevs = 0;
3003         int ret = 0;
3004
3005         cache = probe_cache__new(target);
3006         /* Return 0 ("not found") if the target has no probe cache. */
3007         if (!cache)
3008                 return 0;
3009
3010         for_each_probe_cache_entry(entry, cache) {
3011                 /* Skip the cache entry which has no name */
3012                 if (!entry->pev.event || !entry->pev.group)
3013                         continue;
3014                 if ((!pev->group || strglobmatch(entry->pev.group, pev->group)) &&
3015                     strglobmatch(entry->pev.event, pev->event)) {
3016                         ret = probe_cache_entry__get_event(entry, &tmp_tevs);
3017                         if (ret > 0)
3018                                 ret = concat_probe_trace_events(tevs, &ntevs,
3019                                                                 &tmp_tevs, ret);
3020                         if (ret < 0)
3021                                 break;
3022                 }
3023         }
3024         probe_cache__delete(cache);
3025         if (ret < 0) {
3026                 clear_probe_trace_events(*tevs, ntevs);
3027                 zfree(tevs);
3028         } else {
3029                 ret = ntevs;
3030                 if (ntevs > 0 && target && target[0] == '/')
3031                         pev->uprobes = true;
3032         }
3033
3034         return ret;
3035 }
3036
3037 /* Try to find probe_trace_event from all probe caches */
3038 static int find_cached_events_all(struct perf_probe_event *pev,
3039                                    struct probe_trace_event **tevs)
3040 {
3041         struct probe_trace_event *tmp_tevs = NULL;
3042         struct strlist *bidlist;
3043         struct str_node *nd;
3044         char *pathname;
3045         int ntevs = 0;
3046         int ret;
3047
3048         /* Get the buildid list of all valid caches */
3049         bidlist = build_id_cache__list_all(true);
3050         if (!bidlist) {
3051                 ret = -errno;
3052                 pr_debug("Failed to get buildids: %d\n", ret);
3053                 return ret;
3054         }
3055
3056         ret = 0;
3057         strlist__for_each_entry(nd, bidlist) {
3058                 pathname = build_id_cache__origname(nd->s);
3059                 ret = find_cached_events(pev, &tmp_tevs, pathname);
3060                 /* In the case of cnt == 0, we just skip it */
3061                 if (ret > 0)
3062                         ret = concat_probe_trace_events(tevs, &ntevs,
3063                                                         &tmp_tevs, ret);
3064                 free(pathname);
3065                 if (ret < 0)
3066                         break;
3067         }
3068         strlist__delete(bidlist);
3069
3070         if (ret < 0) {
3071                 clear_probe_trace_events(*tevs, ntevs);
3072                 zfree(tevs);
3073         } else
3074                 ret = ntevs;
3075
3076         return ret;
3077 }
3078
3079 static int find_probe_trace_events_from_cache(struct perf_probe_event *pev,
3080                                               struct probe_trace_event **tevs)
3081 {
3082         struct probe_cache *cache;
3083         struct probe_cache_entry *entry;
3084         struct probe_trace_event *tev;
3085         struct str_node *node;
3086         int ret, i;
3087
3088         if (pev->sdt) {
3089                 /* For SDT/cached events, we use special search functions */
3090                 if (!pev->target)
3091                         return find_cached_events_all(pev, tevs);
3092                 else
3093                         return find_cached_events(pev, tevs, pev->target);
3094         }
3095         cache = probe_cache__new(pev->target);
3096         if (!cache)
3097                 return 0;
3098
3099         entry = probe_cache__find(cache, pev);
3100         if (!entry) {
3101                 /* SDT must be in the cache */
3102                 ret = pev->sdt ? -ENOENT : 0;
3103                 goto out;
3104         }
3105
3106         ret = strlist__nr_entries(entry->tevlist);
3107         if (ret > probe_conf.max_probes) {
3108                 pr_debug("Too many entries matched in the cache of %s\n",
3109                          pev->target ? : "kernel");
3110                 ret = -E2BIG;
3111                 goto out;
3112         }
3113
3114         *tevs = zalloc(ret * sizeof(*tev));
3115         if (!*tevs) {
3116                 ret = -ENOMEM;
3117                 goto out;
3118         }
3119
3120         i = 0;
3121         strlist__for_each_entry(node, entry->tevlist) {
3122                 tev = &(*tevs)[i++];
3123                 ret = parse_probe_trace_command(node->s, tev);
3124                 if (ret < 0)
3125                         goto out;
3126                 /* Set the uprobes attribute as same as original */
3127                 tev->uprobes = pev->uprobes;
3128         }
3129         ret = i;
3130
3131 out:
3132         probe_cache__delete(cache);
3133         return ret;
3134 }
3135
3136 static int convert_to_probe_trace_events(struct perf_probe_event *pev,
3137                                          struct probe_trace_event **tevs)
3138 {
3139         int ret;
3140
3141         if (!pev->group && !pev->sdt) {
3142                 /* Set group name if not given */
3143                 if (!pev->uprobes) {
3144                         pev->group = strdup(PERFPROBE_GROUP);
3145                         ret = pev->group ? 0 : -ENOMEM;
3146                 } else
3147                         ret = convert_exec_to_group(pev->target, &pev->group);
3148                 if (ret != 0) {
3149                         pr_warning("Failed to make a group name.\n");
3150                         return ret;
3151                 }
3152         }
3153
3154         ret = try_to_find_absolute_address(pev, tevs);
3155         if (ret > 0)
3156                 return ret;
3157
3158         /* At first, we need to lookup cache entry */
3159         ret = find_probe_trace_events_from_cache(pev, tevs);
3160         if (ret > 0 || pev->sdt)        /* SDT can be found only in the cache */
3161                 return ret == 0 ? -ENOENT : ret; /* Found in probe cache */
3162
3163         if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) {
3164                 ret = find_probe_trace_events_from_map(pev, tevs);
3165                 if (ret > 0)
3166                         return ret; /* Found in symbol table */
3167         }
3168
3169         /* Convert perf_probe_event with debuginfo */
3170         ret = try_to_find_probe_trace_events(pev, tevs);
3171         if (ret != 0)
3172                 return ret;     /* Found in debuginfo or got an error */
3173
3174         return find_probe_trace_events_from_map(pev, tevs);
3175 }
3176
3177 int convert_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3178 {
3179         int i, ret;
3180
3181         /* Loop 1: convert all events */
3182         for (i = 0; i < npevs; i++) {
3183                 /* Init kprobe blacklist if needed */
3184                 if (!pevs[i].uprobes)
3185                         kprobe_blacklist__init();
3186                 /* Convert with or without debuginfo */
3187                 ret  = convert_to_probe_trace_events(&pevs[i], &pevs[i].tevs);
3188                 if (ret < 0)
3189                         return ret;
3190                 pevs[i].ntevs = ret;
3191         }
3192         /* This just release blacklist only if allocated */
3193         kprobe_blacklist__release();
3194
3195         return 0;
3196 }
3197
3198 int apply_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3199 {
3200         int i, ret = 0;
3201
3202         /* Loop 2: add all events */
3203         for (i = 0; i < npevs; i++) {
3204                 ret = __add_probe_trace_events(&pevs[i], pevs[i].tevs,
3205                                                pevs[i].ntevs,
3206                                                probe_conf.force_add);
3207                 if (ret < 0)
3208                         break;
3209         }
3210         return ret;
3211 }
3212
3213 void cleanup_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3214 {
3215         int i, j;
3216
3217         /* Loop 3: cleanup and free trace events  */
3218         for (i = 0; i < npevs; i++) {
3219                 for (j = 0; j < pevs[i].ntevs; j++)
3220                         clear_probe_trace_event(&pevs[i].tevs[j]);
3221                 zfree(&pevs[i].tevs);
3222                 pevs[i].ntevs = 0;
3223                 clear_perf_probe_event(&pevs[i]);
3224         }
3225 }
3226
3227 int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3228 {
3229         int ret;
3230
3231         ret = init_probe_symbol_maps(pevs->uprobes);
3232         if (ret < 0)
3233                 return ret;
3234
3235         ret = convert_perf_probe_events(pevs, npevs);
3236         if (ret == 0)
3237                 ret = apply_perf_probe_events(pevs, npevs);
3238
3239         cleanup_perf_probe_events(pevs, npevs);
3240
3241         exit_probe_symbol_maps();
3242         return ret;
3243 }
3244
3245 int del_perf_probe_events(struct strfilter *filter)
3246 {
3247         int ret, ret2, ufd = -1, kfd = -1;
3248         char *str = strfilter__string(filter);
3249
3250         if (!str)
3251                 return -EINVAL;
3252
3253         /* Get current event names */
3254         ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
3255         if (ret < 0)
3256                 goto out;
3257
3258         ret = probe_file__del_events(kfd, filter);
3259         if (ret < 0 && ret != -ENOENT)
3260                 goto error;
3261
3262         ret2 = probe_file__del_events(ufd, filter);
3263         if (ret2 < 0 && ret2 != -ENOENT) {
3264                 ret = ret2;
3265                 goto error;
3266         }
3267         ret = 0;
3268
3269 error:
3270         if (kfd >= 0)
3271                 close(kfd);
3272         if (ufd >= 0)
3273                 close(ufd);
3274 out:
3275         free(str);
3276
3277         return ret;
3278 }
3279
3280 /* TODO: don't use a global variable for filter ... */
3281 static struct strfilter *available_func_filter;
3282
3283 /*
3284  * If a symbol corresponds to a function with global binding and
3285  * matches filter return 0. For all others return 1.
3286  */
3287 static int filter_available_functions(struct map *map __maybe_unused,
3288                                       struct symbol *sym)
3289 {
3290         if (strfilter__compare(available_func_filter, sym->name))
3291                 return 0;
3292         return 1;
3293 }
3294
3295 int show_available_funcs(const char *target, struct strfilter *_filter,
3296                                         bool user)
3297 {
3298         struct map *map;
3299         int ret;
3300
3301         ret = init_probe_symbol_maps(user);
3302         if (ret < 0)
3303                 return ret;
3304
3305         /* Get a symbol map */
3306         if (user)
3307                 map = dso__new_map(target);
3308         else
3309                 map = kernel_get_module_map(target);
3310         if (!map) {
3311                 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
3312                 return -EINVAL;
3313         }
3314
3315         /* Load symbols with given filter */
3316         available_func_filter = _filter;
3317         ret = map__load(map, filter_available_functions);
3318         if (ret) {
3319                 if (ret == -2) {
3320                         char *str = strfilter__string(_filter);
3321                         pr_err("Failed to find symbols matched to \"%s\"\n",
3322                                str);
3323                         free(str);
3324                 } else
3325                         pr_err("Failed to load symbols in %s\n",
3326                                (target) ? : "kernel");
3327                 goto end;
3328         }
3329         if (!dso__sorted_by_name(map->dso, map->type))
3330                 dso__sort_by_name(map->dso, map->type);
3331
3332         /* Show all (filtered) symbols */
3333         setup_pager();
3334         dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
3335 end:
3336         if (user) {
3337                 map__put(map);
3338         }
3339         exit_probe_symbol_maps();
3340
3341         return ret;
3342 }
3343
3344 int copy_to_probe_trace_arg(struct probe_trace_arg *tvar,
3345                             struct perf_probe_arg *pvar)
3346 {
3347         tvar->value = strdup(pvar->var);
3348         if (tvar->value == NULL)
3349                 return -ENOMEM;
3350         if (pvar->type) {
3351                 tvar->type = strdup(pvar->type);
3352                 if (tvar->type == NULL)
3353                         return -ENOMEM;
3354         }
3355         if (pvar->name) {
3356                 tvar->name = strdup(pvar->name);
3357                 if (tvar->name == NULL)
3358                         return -ENOMEM;
3359         } else
3360                 tvar->name = NULL;
3361         return 0;
3362 }