8e34c8d478138172e3cca727cbd1b8d8bca16e9b
[firefly-linux-kernel-4.4.55.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/debugfs.h>
44 #include "trace-event.h"        /* For __maybe_unused */
45 #include "probe-event.h"
46 #include "probe-finder.h"
47 #include "session.h"
48
49 #define MAX_CMDLEN 256
50 #define PERFPROBE_GROUP "probe"
51
52 bool probe_event_dry_run;       /* Dry run flag */
53
54 #define semantic_error(msg ...) pr_err("Semantic error :" msg)
55
56 /* If there is no space to write, returns -E2BIG. */
57 static int e_snprintf(char *str, size_t size, const char *format, ...)
58         __attribute__((format(printf, 3, 4)));
59
60 static int e_snprintf(char *str, size_t size, const char *format, ...)
61 {
62         int ret;
63         va_list ap;
64         va_start(ap, format);
65         ret = vsnprintf(str, size, format, ap);
66         va_end(ap);
67         if (ret >= (int)size)
68                 ret = -E2BIG;
69         return ret;
70 }
71
72 static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
73 static int convert_name_to_addr(struct perf_probe_event *pev,
74                                 const char *exec);
75 static void clear_probe_trace_event(struct probe_trace_event *tev);
76 static struct machine *host_machine;
77
78 /* Initialize symbol maps and path of vmlinux/modules */
79 static int init_symbol_maps(bool user_only)
80 {
81         int ret;
82
83         symbol_conf.sort_by_name = true;
84         ret = symbol__init();
85         if (ret < 0) {
86                 pr_debug("Failed to init symbol map.\n");
87                 goto out;
88         }
89
90         if (host_machine || user_only)  /* already initialized */
91                 return 0;
92
93         if (symbol_conf.vmlinux_name)
94                 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
95
96         host_machine = machine__new_host();
97         if (!host_machine) {
98                 pr_debug("machine__new_host() failed.\n");
99                 symbol__exit();
100                 ret = -1;
101         }
102 out:
103         if (ret < 0)
104                 pr_warning("Failed to init vmlinux path.\n");
105         return ret;
106 }
107
108 static void exit_symbol_maps(void)
109 {
110         if (host_machine) {
111                 machine__delete(host_machine);
112                 host_machine = NULL;
113         }
114         symbol__exit();
115 }
116
117 static struct symbol *__find_kernel_function_by_name(const char *name,
118                                                      struct map **mapp)
119 {
120         return machine__find_kernel_function_by_name(host_machine, name, mapp,
121                                                      NULL);
122 }
123
124 static struct map *kernel_get_module_map(const char *module)
125 {
126         struct rb_node *nd;
127         struct map_groups *grp = &host_machine->kmaps;
128
129         /* A file path -- this is an offline module */
130         if (module && strchr(module, '/'))
131                 return machine__new_module(host_machine, 0, module);
132
133         if (!module)
134                 module = "kernel";
135
136         for (nd = rb_first(&grp->maps[MAP__FUNCTION]); nd; nd = rb_next(nd)) {
137                 struct map *pos = rb_entry(nd, struct map, rb_node);
138                 if (strncmp(pos->dso->short_name + 1, module,
139                             pos->dso->short_name_len - 2) == 0) {
140                         return pos;
141                 }
142         }
143         return NULL;
144 }
145
146 static struct dso *kernel_get_module_dso(const char *module)
147 {
148         struct dso *dso;
149         struct map *map;
150         const char *vmlinux_name;
151
152         if (module) {
153                 list_for_each_entry(dso, &host_machine->kernel_dsos, node) {
154                         if (strncmp(dso->short_name + 1, module,
155                                     dso->short_name_len - 2) == 0)
156                                 goto found;
157                 }
158                 pr_debug("Failed to find module %s.\n", module);
159                 return NULL;
160         }
161
162         map = host_machine->vmlinux_maps[MAP__FUNCTION];
163         dso = map->dso;
164
165         vmlinux_name = symbol_conf.vmlinux_name;
166         if (vmlinux_name) {
167                 if (dso__load_vmlinux(dso, map, vmlinux_name, false, NULL) <= 0)
168                         return NULL;
169         } else {
170                 if (dso__load_vmlinux_path(dso, map, NULL) <= 0) {
171                         pr_debug("Failed to load kernel map.\n");
172                         return NULL;
173                 }
174         }
175 found:
176         return dso;
177 }
178
179 const char *kernel_get_module_path(const char *module)
180 {
181         struct dso *dso = kernel_get_module_dso(module);
182         return (dso) ? dso->long_name : NULL;
183 }
184
185 static int convert_exec_to_group(const char *exec, char **result)
186 {
187         char *ptr1, *ptr2, *exec_copy;
188         char buf[64];
189         int ret;
190
191         exec_copy = strdup(exec);
192         if (!exec_copy)
193                 return -ENOMEM;
194
195         ptr1 = basename(exec_copy);
196         if (!ptr1) {
197                 ret = -EINVAL;
198                 goto out;
199         }
200
201         ptr2 = strpbrk(ptr1, "-._");
202         if (ptr2)
203                 *ptr2 = '\0';
204         ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
205         if (ret < 0)
206                 goto out;
207
208         *result = strdup(buf);
209         ret = *result ? 0 : -ENOMEM;
210
211 out:
212         free(exec_copy);
213         return ret;
214 }
215
216 static int convert_to_perf_probe_point(struct probe_trace_point *tp,
217                                         struct perf_probe_point *pp)
218 {
219         pp->function = strdup(tp->symbol);
220
221         if (pp->function == NULL)
222                 return -ENOMEM;
223
224         pp->offset = tp->offset;
225         pp->retprobe = tp->retprobe;
226
227         return 0;
228 }
229
230 #ifdef HAVE_DWARF_SUPPORT
231 /* Open new debuginfo of given module */
232 static struct debuginfo *open_debuginfo(const char *module)
233 {
234         const char *path;
235
236         /* A file path -- this is an offline module */
237         if (module && strchr(module, '/'))
238                 path = module;
239         else {
240                 path = kernel_get_module_path(module);
241
242                 if (!path) {
243                         pr_err("Failed to find path of %s module.\n",
244                                module ?: "kernel");
245                         return NULL;
246                 }
247         }
248         return debuginfo__new(path);
249 }
250
251 static struct ref_reloc_sym *__kernel_get_ref_reloc_sym(void)
252 {
253         /* kmap->ref_reloc_sym should be set if host_machine is initialized */
254         struct kmap *kmap;
255
256         if (map__load(host_machine->vmlinux_maps[MAP__FUNCTION], NULL) < 0)
257                 return NULL;
258
259         kmap = map__kmap(host_machine->vmlinux_maps[MAP__FUNCTION]);
260         return kmap->ref_reloc_sym;
261 }
262
263 /*
264  * Convert trace point to probe point with debuginfo
265  * Currently only handles kprobes.
266  */
267 static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
268                                         struct perf_probe_point *pp)
269 {
270         struct symbol *sym;
271         struct ref_reloc_sym *reloc_sym;
272         struct map *map;
273         u64 addr = 0;
274         int ret = -ENOENT;
275         struct debuginfo *dinfo;
276
277         /* ref_reloc_sym is just a label. Need a special fix*/
278         reloc_sym = __kernel_get_ref_reloc_sym();
279         if (reloc_sym && strcmp(tp->symbol, reloc_sym->name) == 0)
280                 addr = reloc_sym->unrelocated_addr + tp->offset;
281         else {
282                 sym = __find_kernel_function_by_name(tp->symbol, &map);
283                 if (sym)
284                         addr = map->unmap_ip(map, sym->start + tp->offset) -
285                                 map->reloc;
286         }
287         if (addr) {
288                 pr_debug("try to find %s+%ld@%" PRIx64 "\n", tp->symbol,
289                          tp->offset, addr);
290
291                 dinfo = open_debuginfo(tp->module);
292                 if (dinfo) {
293                         ret = debuginfo__find_probe_point(dinfo,
294                                                  (unsigned long)addr, pp);
295                         debuginfo__delete(dinfo);
296                 } else {
297                         pr_debug("Failed to open debuginfo at 0x%" PRIx64 "\n",
298                                  addr);
299                         ret = -ENOENT;
300                 }
301         }
302         if (ret <= 0) {
303                 pr_debug("Failed to find corresponding probes from "
304                          "debuginfo. Use kprobe event information.\n");
305                 return convert_to_perf_probe_point(tp, pp);
306         }
307         pp->retprobe = tp->retprobe;
308
309         return 0;
310 }
311
312 static int get_text_start_address(const char *exec, unsigned long *address)
313 {
314         Elf *elf;
315         GElf_Ehdr ehdr;
316         GElf_Shdr shdr;
317         int fd, ret = -ENOENT;
318
319         fd = open(exec, O_RDONLY);
320         if (fd < 0)
321                 return -errno;
322
323         elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
324         if (elf == NULL)
325                 return -EINVAL;
326
327         if (gelf_getehdr(elf, &ehdr) == NULL)
328                 goto out;
329
330         if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
331                 goto out;
332
333         *address = shdr.sh_addr - shdr.sh_offset;
334         ret = 0;
335 out:
336         elf_end(elf);
337         return ret;
338 }
339
340 static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
341                                           int ntevs, const char *exec)
342 {
343         int i, ret = 0;
344         unsigned long offset, stext = 0;
345         char buf[32];
346
347         if (!exec)
348                 return 0;
349
350         ret = get_text_start_address(exec, &stext);
351         if (ret < 0)
352                 return ret;
353
354         for (i = 0; i < ntevs && ret >= 0; i++) {
355                 /* point.address is the addres of point.symbol + point.offset */
356                 offset = tevs[i].point.address - stext;
357                 tevs[i].point.offset = 0;
358                 zfree(&tevs[i].point.symbol);
359                 ret = e_snprintf(buf, 32, "0x%lx", offset);
360                 if (ret < 0)
361                         break;
362                 tevs[i].point.module = strdup(exec);
363                 tevs[i].point.symbol = strdup(buf);
364                 if (!tevs[i].point.symbol || !tevs[i].point.module) {
365                         ret = -ENOMEM;
366                         break;
367                 }
368                 tevs[i].uprobes = true;
369         }
370
371         return ret;
372 }
373
374 static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
375                                             int ntevs, const char *module)
376 {
377         int i, ret = 0;
378         char *tmp;
379
380         if (!module)
381                 return 0;
382
383         tmp = strrchr(module, '/');
384         if (tmp) {
385                 /* This is a module path -- get the module name */
386                 module = strdup(tmp + 1);
387                 if (!module)
388                         return -ENOMEM;
389                 tmp = strchr(module, '.');
390                 if (tmp)
391                         *tmp = '\0';
392                 tmp = (char *)module;   /* For free() */
393         }
394
395         for (i = 0; i < ntevs; i++) {
396                 tevs[i].point.module = strdup(module);
397                 if (!tevs[i].point.module) {
398                         ret = -ENOMEM;
399                         break;
400                 }
401         }
402
403         free(tmp);
404         return ret;
405 }
406
407 /* Post processing the probe events */
408 static int post_process_probe_trace_events(struct probe_trace_event *tevs,
409                                            int ntevs, const char *module,
410                                            bool uprobe)
411 {
412         struct ref_reloc_sym *reloc_sym;
413         char *tmp;
414         int i;
415
416         if (uprobe)
417                 return add_exec_to_probe_trace_events(tevs, ntevs, module);
418
419         /* Note that currently ref_reloc_sym based probe is not for drivers */
420         if (module)
421                 return add_module_to_probe_trace_events(tevs, ntevs, module);
422
423         reloc_sym = __kernel_get_ref_reloc_sym();
424         if (!reloc_sym) {
425                 pr_warning("Relocated base symbol is not found!\n");
426                 return -EINVAL;
427         }
428
429         for (i = 0; i < ntevs; i++) {
430                 if (tevs[i].point.address) {
431                         tmp = strdup(reloc_sym->name);
432                         if (!tmp)
433                                 return -ENOMEM;
434                         free(tevs[i].point.symbol);
435                         tevs[i].point.symbol = tmp;
436                         tevs[i].point.offset = tevs[i].point.address -
437                                                reloc_sym->unrelocated_addr;
438                 }
439         }
440         return 0;
441 }
442
443 static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
444 {
445         int i;
446
447         for (i = 0; i < ntevs; i++)
448                 clear_probe_trace_event(tevs + i);
449 }
450
451 /* Try to find perf_probe_event with debuginfo */
452 static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
453                                           struct probe_trace_event **tevs,
454                                           int max_tevs, const char *target)
455 {
456         bool need_dwarf = perf_probe_event_need_dwarf(pev);
457         struct debuginfo *dinfo;
458         int ntevs, ret = 0;
459
460         dinfo = open_debuginfo(target);
461
462         if (!dinfo) {
463                 if (need_dwarf) {
464                         pr_warning("Failed to open debuginfo file.\n");
465                         return -ENOENT;
466                 }
467                 pr_debug("Could not open debuginfo. Try to use symbols.\n");
468                 return 0;
469         }
470
471         pr_debug("Try to find probe point from debuginfo.\n");
472         /* Searching trace events corresponding to a probe event */
473         ntevs = debuginfo__find_trace_events(dinfo, pev, tevs, max_tevs);
474
475         debuginfo__delete(dinfo);
476
477         if (ntevs > 0) {        /* Succeeded to find trace events */
478                 pr_debug("Found %d probe_trace_events.\n", ntevs);
479                 ret = post_process_probe_trace_events(*tevs, ntevs,
480                                                         target, pev->uprobes);
481                 if (ret < 0) {
482                         clear_probe_trace_events(*tevs, ntevs);
483                         zfree(tevs);
484                 }
485                 return ret < 0 ? ret : ntevs;
486         }
487
488         if (ntevs == 0) {       /* No error but failed to find probe point. */
489                 pr_warning("Probe point '%s' not found.\n",
490                            synthesize_perf_probe_point(&pev->point));
491                 return -ENOENT;
492         }
493         /* Error path : ntevs < 0 */
494         pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
495         if (ntevs == -EBADF) {
496                 pr_warning("Warning: No dwarf info found in the vmlinux - "
497                         "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
498                 if (!need_dwarf) {
499                         pr_debug("Trying to use symbols.\n");
500                         return 0;
501                 }
502         }
503         return ntevs;
504 }
505
506 /*
507  * Find a src file from a DWARF tag path. Prepend optional source path prefix
508  * and chop off leading directories that do not exist. Result is passed back as
509  * a newly allocated path on success.
510  * Return 0 if file was found and readable, -errno otherwise.
511  */
512 static int get_real_path(const char *raw_path, const char *comp_dir,
513                          char **new_path)
514 {
515         const char *prefix = symbol_conf.source_prefix;
516
517         if (!prefix) {
518                 if (raw_path[0] != '/' && comp_dir)
519                         /* If not an absolute path, try to use comp_dir */
520                         prefix = comp_dir;
521                 else {
522                         if (access(raw_path, R_OK) == 0) {
523                                 *new_path = strdup(raw_path);
524                                 return 0;
525                         } else
526                                 return -errno;
527                 }
528         }
529
530         *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
531         if (!*new_path)
532                 return -ENOMEM;
533
534         for (;;) {
535                 sprintf(*new_path, "%s/%s", prefix, raw_path);
536
537                 if (access(*new_path, R_OK) == 0)
538                         return 0;
539
540                 if (!symbol_conf.source_prefix)
541                         /* In case of searching comp_dir, don't retry */
542                         return -errno;
543
544                 switch (errno) {
545                 case ENAMETOOLONG:
546                 case ENOENT:
547                 case EROFS:
548                 case EFAULT:
549                         raw_path = strchr(++raw_path, '/');
550                         if (!raw_path) {
551                                 zfree(new_path);
552                                 return -ENOENT;
553                         }
554                         continue;
555
556                 default:
557                         zfree(new_path);
558                         return -errno;
559                 }
560         }
561 }
562
563 #define LINEBUF_SIZE 256
564 #define NR_ADDITIONAL_LINES 2
565
566 static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
567 {
568         char buf[LINEBUF_SIZE];
569         const char *color = show_num ? "" : PERF_COLOR_BLUE;
570         const char *prefix = NULL;
571
572         do {
573                 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
574                         goto error;
575                 if (skip)
576                         continue;
577                 if (!prefix) {
578                         prefix = show_num ? "%7d  " : "         ";
579                         color_fprintf(stdout, color, prefix, l);
580                 }
581                 color_fprintf(stdout, color, "%s", buf);
582
583         } while (strchr(buf, '\n') == NULL);
584
585         return 1;
586 error:
587         if (ferror(fp)) {
588                 pr_warning("File read error: %s\n", strerror(errno));
589                 return -1;
590         }
591         return 0;
592 }
593
594 static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
595 {
596         int rv = __show_one_line(fp, l, skip, show_num);
597         if (rv == 0) {
598                 pr_warning("Source file is shorter than expected.\n");
599                 rv = -1;
600         }
601         return rv;
602 }
603
604 #define show_one_line_with_num(f,l)     _show_one_line(f,l,false,true)
605 #define show_one_line(f,l)              _show_one_line(f,l,false,false)
606 #define skip_one_line(f,l)              _show_one_line(f,l,true,false)
607 #define show_one_line_or_eof(f,l)       __show_one_line(f,l,false,false)
608
609 /*
610  * Show line-range always requires debuginfo to find source file and
611  * line number.
612  */
613 static int __show_line_range(struct line_range *lr, const char *module)
614 {
615         int l = 1;
616         struct int_node *ln;
617         struct debuginfo *dinfo;
618         FILE *fp;
619         int ret;
620         char *tmp;
621
622         /* Search a line range */
623         dinfo = open_debuginfo(module);
624         if (!dinfo) {
625                 pr_warning("Failed to open debuginfo file.\n");
626                 return -ENOENT;
627         }
628
629         ret = debuginfo__find_line_range(dinfo, lr);
630         debuginfo__delete(dinfo);
631         if (ret == 0) {
632                 pr_warning("Specified source line is not found.\n");
633                 return -ENOENT;
634         } else if (ret < 0) {
635                 pr_warning("Debuginfo analysis failed. (%d)\n", ret);
636                 return ret;
637         }
638
639         /* Convert source file path */
640         tmp = lr->path;
641         ret = get_real_path(tmp, lr->comp_dir, &lr->path);
642         free(tmp);      /* Free old path */
643         if (ret < 0) {
644                 pr_warning("Failed to find source file. (%d)\n", ret);
645                 return ret;
646         }
647
648         setup_pager();
649
650         if (lr->function)
651                 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
652                         lr->start - lr->offset);
653         else
654                 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
655
656         fp = fopen(lr->path, "r");
657         if (fp == NULL) {
658                 pr_warning("Failed to open %s: %s\n", lr->path,
659                            strerror(errno));
660                 return -errno;
661         }
662         /* Skip to starting line number */
663         while (l < lr->start) {
664                 ret = skip_one_line(fp, l++);
665                 if (ret < 0)
666                         goto end;
667         }
668
669         intlist__for_each(ln, lr->line_list) {
670                 for (; ln->i > l; l++) {
671                         ret = show_one_line(fp, l - lr->offset);
672                         if (ret < 0)
673                                 goto end;
674                 }
675                 ret = show_one_line_with_num(fp, l++ - lr->offset);
676                 if (ret < 0)
677                         goto end;
678         }
679
680         if (lr->end == INT_MAX)
681                 lr->end = l + NR_ADDITIONAL_LINES;
682         while (l <= lr->end) {
683                 ret = show_one_line_or_eof(fp, l++ - lr->offset);
684                 if (ret <= 0)
685                         break;
686         }
687 end:
688         fclose(fp);
689         return ret;
690 }
691
692 int show_line_range(struct line_range *lr, const char *module)
693 {
694         int ret;
695
696         ret = init_symbol_maps(false);
697         if (ret < 0)
698                 return ret;
699         ret = __show_line_range(lr, module);
700         exit_symbol_maps();
701
702         return ret;
703 }
704
705 static int show_available_vars_at(struct debuginfo *dinfo,
706                                   struct perf_probe_event *pev,
707                                   int max_vls, struct strfilter *_filter,
708                                   bool externs)
709 {
710         char *buf;
711         int ret, i, nvars;
712         struct str_node *node;
713         struct variable_list *vls = NULL, *vl;
714         const char *var;
715
716         buf = synthesize_perf_probe_point(&pev->point);
717         if (!buf)
718                 return -EINVAL;
719         pr_debug("Searching variables at %s\n", buf);
720
721         ret = debuginfo__find_available_vars_at(dinfo, pev, &vls,
722                                                 max_vls, externs);
723         if (ret <= 0) {
724                 pr_err("Failed to find variables at %s (%d)\n", buf, ret);
725                 goto end;
726         }
727         /* Some variables are found */
728         fprintf(stdout, "Available variables at %s\n", buf);
729         for (i = 0; i < ret; i++) {
730                 vl = &vls[i];
731                 /*
732                  * A probe point might be converted to
733                  * several trace points.
734                  */
735                 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
736                         vl->point.offset);
737                 zfree(&vl->point.symbol);
738                 nvars = 0;
739                 if (vl->vars) {
740                         strlist__for_each(node, vl->vars) {
741                                 var = strchr(node->s, '\t') + 1;
742                                 if (strfilter__compare(_filter, var)) {
743                                         fprintf(stdout, "\t\t%s\n", node->s);
744                                         nvars++;
745                                 }
746                         }
747                         strlist__delete(vl->vars);
748                 }
749                 if (nvars == 0)
750                         fprintf(stdout, "\t\t(No matched variables)\n");
751         }
752         free(vls);
753 end:
754         free(buf);
755         return ret;
756 }
757
758 /* Show available variables on given probe point */
759 int show_available_vars(struct perf_probe_event *pevs, int npevs,
760                         int max_vls, const char *module,
761                         struct strfilter *_filter, bool externs)
762 {
763         int i, ret = 0;
764         struct debuginfo *dinfo;
765
766         ret = init_symbol_maps(false);
767         if (ret < 0)
768                 return ret;
769
770         dinfo = open_debuginfo(module);
771         if (!dinfo) {
772                 pr_warning("Failed to open debuginfo file.\n");
773                 ret = -ENOENT;
774                 goto out;
775         }
776
777         setup_pager();
778
779         for (i = 0; i < npevs && ret >= 0; i++)
780                 ret = show_available_vars_at(dinfo, &pevs[i], max_vls, _filter,
781                                              externs);
782
783         debuginfo__delete(dinfo);
784 out:
785         exit_symbol_maps();
786         return ret;
787 }
788
789 #else   /* !HAVE_DWARF_SUPPORT */
790
791 static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
792                                         struct perf_probe_point *pp)
793 {
794         return convert_to_perf_probe_point(tp, pp);
795 }
796
797 static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
798                                 struct probe_trace_event **tevs __maybe_unused,
799                                 int max_tevs __maybe_unused,
800                                 const char *target __maybe_unused)
801 {
802         if (perf_probe_event_need_dwarf(pev)) {
803                 pr_warning("Debuginfo-analysis is not supported.\n");
804                 return -ENOSYS;
805         }
806
807         return 0;
808 }
809
810 int show_line_range(struct line_range *lr __maybe_unused,
811                     const char *module __maybe_unused)
812 {
813         pr_warning("Debuginfo-analysis is not supported.\n");
814         return -ENOSYS;
815 }
816
817 int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
818                         int npevs __maybe_unused, int max_vls __maybe_unused,
819                         const char *module __maybe_unused,
820                         struct strfilter *filter __maybe_unused,
821                         bool externs __maybe_unused)
822 {
823         pr_warning("Debuginfo-analysis is not supported.\n");
824         return -ENOSYS;
825 }
826 #endif
827
828 void line_range__clear(struct line_range *lr)
829 {
830         free(lr->function);
831         free(lr->file);
832         free(lr->path);
833         free(lr->comp_dir);
834         intlist__delete(lr->line_list);
835         memset(lr, 0, sizeof(*lr));
836 }
837
838 int line_range__init(struct line_range *lr)
839 {
840         memset(lr, 0, sizeof(*lr));
841         lr->line_list = intlist__new(NULL);
842         if (!lr->line_list)
843                 return -ENOMEM;
844         else
845                 return 0;
846 }
847
848 static int parse_line_num(char **ptr, int *val, const char *what)
849 {
850         const char *start = *ptr;
851
852         errno = 0;
853         *val = strtol(*ptr, ptr, 0);
854         if (errno || *ptr == start) {
855                 semantic_error("'%s' is not a valid number.\n", what);
856                 return -EINVAL;
857         }
858         return 0;
859 }
860
861 /*
862  * Stuff 'lr' according to the line range described by 'arg'.
863  * The line range syntax is described by:
864  *
865  *         SRC[:SLN[+NUM|-ELN]]
866  *         FNC[@SRC][:SLN[+NUM|-ELN]]
867  */
868 int parse_line_range_desc(const char *arg, struct line_range *lr)
869 {
870         char *range, *file, *name = strdup(arg);
871         int err;
872
873         if (!name)
874                 return -ENOMEM;
875
876         lr->start = 0;
877         lr->end = INT_MAX;
878
879         range = strchr(name, ':');
880         if (range) {
881                 *range++ = '\0';
882
883                 err = parse_line_num(&range, &lr->start, "start line");
884                 if (err)
885                         goto err;
886
887                 if (*range == '+' || *range == '-') {
888                         const char c = *range++;
889
890                         err = parse_line_num(&range, &lr->end, "end line");
891                         if (err)
892                                 goto err;
893
894                         if (c == '+') {
895                                 lr->end += lr->start;
896                                 /*
897                                  * Adjust the number of lines here.
898                                  * If the number of lines == 1, the
899                                  * the end of line should be equal to
900                                  * the start of line.
901                                  */
902                                 lr->end--;
903                         }
904                 }
905
906                 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
907
908                 err = -EINVAL;
909                 if (lr->start > lr->end) {
910                         semantic_error("Start line must be smaller"
911                                        " than end line.\n");
912                         goto err;
913                 }
914                 if (*range != '\0') {
915                         semantic_error("Tailing with invalid str '%s'.\n", range);
916                         goto err;
917                 }
918         }
919
920         file = strchr(name, '@');
921         if (file) {
922                 *file = '\0';
923                 lr->file = strdup(++file);
924                 if (lr->file == NULL) {
925                         err = -ENOMEM;
926                         goto err;
927                 }
928                 lr->function = name;
929         } else if (strchr(name, '.'))
930                 lr->file = name;
931         else
932                 lr->function = name;
933
934         return 0;
935 err:
936         free(name);
937         return err;
938 }
939
940 /* Check the name is good for event/group */
941 static bool check_event_name(const char *name)
942 {
943         if (!isalpha(*name) && *name != '_')
944                 return false;
945         while (*++name != '\0') {
946                 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
947                         return false;
948         }
949         return true;
950 }
951
952 /* Parse probepoint definition. */
953 static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
954 {
955         struct perf_probe_point *pp = &pev->point;
956         char *ptr, *tmp;
957         char c, nc = 0;
958         /*
959          * <Syntax>
960          * perf probe [EVENT=]SRC[:LN|;PTN]
961          * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
962          *
963          * TODO:Group name support
964          */
965
966         ptr = strpbrk(arg, ";=@+%");
967         if (ptr && *ptr == '=') {       /* Event name */
968                 *ptr = '\0';
969                 tmp = ptr + 1;
970                 if (strchr(arg, ':')) {
971                         semantic_error("Group name is not supported yet.\n");
972                         return -ENOTSUP;
973                 }
974                 if (!check_event_name(arg)) {
975                         semantic_error("%s is bad for event name -it must "
976                                        "follow C symbol-naming rule.\n", arg);
977                         return -EINVAL;
978                 }
979                 pev->event = strdup(arg);
980                 if (pev->event == NULL)
981                         return -ENOMEM;
982                 pev->group = NULL;
983                 arg = tmp;
984         }
985
986         ptr = strpbrk(arg, ";:+@%");
987         if (ptr) {
988                 nc = *ptr;
989                 *ptr++ = '\0';
990         }
991
992         tmp = strdup(arg);
993         if (tmp == NULL)
994                 return -ENOMEM;
995
996         /* Check arg is function or file and copy it */
997         if (strchr(tmp, '.'))   /* File */
998                 pp->file = tmp;
999         else                    /* Function */
1000                 pp->function = tmp;
1001
1002         /* Parse other options */
1003         while (ptr) {
1004                 arg = ptr;
1005                 c = nc;
1006                 if (c == ';') { /* Lazy pattern must be the last part */
1007                         pp->lazy_line = strdup(arg);
1008                         if (pp->lazy_line == NULL)
1009                                 return -ENOMEM;
1010                         break;
1011                 }
1012                 ptr = strpbrk(arg, ";:+@%");
1013                 if (ptr) {
1014                         nc = *ptr;
1015                         *ptr++ = '\0';
1016                 }
1017                 switch (c) {
1018                 case ':':       /* Line number */
1019                         pp->line = strtoul(arg, &tmp, 0);
1020                         if (*tmp != '\0') {
1021                                 semantic_error("There is non-digit char"
1022                                                " in line number.\n");
1023                                 return -EINVAL;
1024                         }
1025                         break;
1026                 case '+':       /* Byte offset from a symbol */
1027                         pp->offset = strtoul(arg, &tmp, 0);
1028                         if (*tmp != '\0') {
1029                                 semantic_error("There is non-digit character"
1030                                                 " in offset.\n");
1031                                 return -EINVAL;
1032                         }
1033                         break;
1034                 case '@':       /* File name */
1035                         if (pp->file) {
1036                                 semantic_error("SRC@SRC is not allowed.\n");
1037                                 return -EINVAL;
1038                         }
1039                         pp->file = strdup(arg);
1040                         if (pp->file == NULL)
1041                                 return -ENOMEM;
1042                         break;
1043                 case '%':       /* Probe places */
1044                         if (strcmp(arg, "return") == 0) {
1045                                 pp->retprobe = 1;
1046                         } else {        /* Others not supported yet */
1047                                 semantic_error("%%%s is not supported.\n", arg);
1048                                 return -ENOTSUP;
1049                         }
1050                         break;
1051                 default:        /* Buggy case */
1052                         pr_err("This program has a bug at %s:%d.\n",
1053                                 __FILE__, __LINE__);
1054                         return -ENOTSUP;
1055                         break;
1056                 }
1057         }
1058
1059         /* Exclusion check */
1060         if (pp->lazy_line && pp->line) {
1061                 semantic_error("Lazy pattern can't be used with"
1062                                " line number.\n");
1063                 return -EINVAL;
1064         }
1065
1066         if (pp->lazy_line && pp->offset) {
1067                 semantic_error("Lazy pattern can't be used with offset.\n");
1068                 return -EINVAL;
1069         }
1070
1071         if (pp->line && pp->offset) {
1072                 semantic_error("Offset can't be used with line number.\n");
1073                 return -EINVAL;
1074         }
1075
1076         if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
1077                 semantic_error("File always requires line number or "
1078                                "lazy pattern.\n");
1079                 return -EINVAL;
1080         }
1081
1082         if (pp->offset && !pp->function) {
1083                 semantic_error("Offset requires an entry function.\n");
1084                 return -EINVAL;
1085         }
1086
1087         if (pp->retprobe && !pp->function) {
1088                 semantic_error("Return probe requires an entry function.\n");
1089                 return -EINVAL;
1090         }
1091
1092         if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
1093                 semantic_error("Offset/Line/Lazy pattern can't be used with "
1094                                "return probe.\n");
1095                 return -EINVAL;
1096         }
1097
1098         pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
1099                  pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1100                  pp->lazy_line);
1101         return 0;
1102 }
1103
1104 /* Parse perf-probe event argument */
1105 static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
1106 {
1107         char *tmp, *goodname;
1108         struct perf_probe_arg_field **fieldp;
1109
1110         pr_debug("parsing arg: %s into ", str);
1111
1112         tmp = strchr(str, '=');
1113         if (tmp) {
1114                 arg->name = strndup(str, tmp - str);
1115                 if (arg->name == NULL)
1116                         return -ENOMEM;
1117                 pr_debug("name:%s ", arg->name);
1118                 str = tmp + 1;
1119         }
1120
1121         tmp = strchr(str, ':');
1122         if (tmp) {      /* Type setting */
1123                 *tmp = '\0';
1124                 arg->type = strdup(tmp + 1);
1125                 if (arg->type == NULL)
1126                         return -ENOMEM;
1127                 pr_debug("type:%s ", arg->type);
1128         }
1129
1130         tmp = strpbrk(str, "-.[");
1131         if (!is_c_varname(str) || !tmp) {
1132                 /* A variable, register, symbol or special value */
1133                 arg->var = strdup(str);
1134                 if (arg->var == NULL)
1135                         return -ENOMEM;
1136                 pr_debug("%s\n", arg->var);
1137                 return 0;
1138         }
1139
1140         /* Structure fields or array element */
1141         arg->var = strndup(str, tmp - str);
1142         if (arg->var == NULL)
1143                 return -ENOMEM;
1144         goodname = arg->var;
1145         pr_debug("%s, ", arg->var);
1146         fieldp = &arg->field;
1147
1148         do {
1149                 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1150                 if (*fieldp == NULL)
1151                         return -ENOMEM;
1152                 if (*tmp == '[') {      /* Array */
1153                         str = tmp;
1154                         (*fieldp)->index = strtol(str + 1, &tmp, 0);
1155                         (*fieldp)->ref = true;
1156                         if (*tmp != ']' || tmp == str + 1) {
1157                                 semantic_error("Array index must be a"
1158                                                 " number.\n");
1159                                 return -EINVAL;
1160                         }
1161                         tmp++;
1162                         if (*tmp == '\0')
1163                                 tmp = NULL;
1164                 } else {                /* Structure */
1165                         if (*tmp == '.') {
1166                                 str = tmp + 1;
1167                                 (*fieldp)->ref = false;
1168                         } else if (tmp[1] == '>') {
1169                                 str = tmp + 2;
1170                                 (*fieldp)->ref = true;
1171                         } else {
1172                                 semantic_error("Argument parse error: %s\n",
1173                                                str);
1174                                 return -EINVAL;
1175                         }
1176                         tmp = strpbrk(str, "-.[");
1177                 }
1178                 if (tmp) {
1179                         (*fieldp)->name = strndup(str, tmp - str);
1180                         if ((*fieldp)->name == NULL)
1181                                 return -ENOMEM;
1182                         if (*str != '[')
1183                                 goodname = (*fieldp)->name;
1184                         pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1185                         fieldp = &(*fieldp)->next;
1186                 }
1187         } while (tmp);
1188         (*fieldp)->name = strdup(str);
1189         if ((*fieldp)->name == NULL)
1190                 return -ENOMEM;
1191         if (*str != '[')
1192                 goodname = (*fieldp)->name;
1193         pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
1194
1195         /* If no name is specified, set the last field name (not array index)*/
1196         if (!arg->name) {
1197                 arg->name = strdup(goodname);
1198                 if (arg->name == NULL)
1199                         return -ENOMEM;
1200         }
1201         return 0;
1202 }
1203
1204 /* Parse perf-probe event command */
1205 int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
1206 {
1207         char **argv;
1208         int argc, i, ret = 0;
1209
1210         argv = argv_split(cmd, &argc);
1211         if (!argv) {
1212                 pr_debug("Failed to split arguments.\n");
1213                 return -ENOMEM;
1214         }
1215         if (argc - 1 > MAX_PROBE_ARGS) {
1216                 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1217                 ret = -ERANGE;
1218                 goto out;
1219         }
1220         /* Parse probe point */
1221         ret = parse_perf_probe_point(argv[0], pev);
1222         if (ret < 0)
1223                 goto out;
1224
1225         /* Copy arguments and ensure return probe has no C argument */
1226         pev->nargs = argc - 1;
1227         pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1228         if (pev->args == NULL) {
1229                 ret = -ENOMEM;
1230                 goto out;
1231         }
1232         for (i = 0; i < pev->nargs && ret >= 0; i++) {
1233                 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1234                 if (ret >= 0 &&
1235                     is_c_varname(pev->args[i].var) && pev->point.retprobe) {
1236                         semantic_error("You can't specify local variable for"
1237                                        " kretprobe.\n");
1238                         ret = -EINVAL;
1239                 }
1240         }
1241 out:
1242         argv_free(argv);
1243
1244         return ret;
1245 }
1246
1247 /* Return true if this perf_probe_event requires debuginfo */
1248 bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
1249 {
1250         int i;
1251
1252         if (pev->point.file || pev->point.line || pev->point.lazy_line)
1253                 return true;
1254
1255         for (i = 0; i < pev->nargs; i++)
1256                 if (is_c_varname(pev->args[i].var))
1257                         return true;
1258
1259         return false;
1260 }
1261
1262 /* Parse probe_events event into struct probe_point */
1263 static int parse_probe_trace_command(const char *cmd,
1264                                      struct probe_trace_event *tev)
1265 {
1266         struct probe_trace_point *tp = &tev->point;
1267         char pr;
1268         char *p;
1269         char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
1270         int ret, i, argc;
1271         char **argv;
1272
1273         pr_debug("Parsing probe_events: %s\n", cmd);
1274         argv = argv_split(cmd, &argc);
1275         if (!argv) {
1276                 pr_debug("Failed to split arguments.\n");
1277                 return -ENOMEM;
1278         }
1279         if (argc < 2) {
1280                 semantic_error("Too few probe arguments.\n");
1281                 ret = -ERANGE;
1282                 goto out;
1283         }
1284
1285         /* Scan event and group name. */
1286         argv0_str = strdup(argv[0]);
1287         if (argv0_str == NULL) {
1288                 ret = -ENOMEM;
1289                 goto out;
1290         }
1291         fmt1_str = strtok_r(argv0_str, ":", &fmt);
1292         fmt2_str = strtok_r(NULL, "/", &fmt);
1293         fmt3_str = strtok_r(NULL, " \t", &fmt);
1294         if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1295             || fmt3_str == NULL) {
1296                 semantic_error("Failed to parse event name: %s\n", argv[0]);
1297                 ret = -EINVAL;
1298                 goto out;
1299         }
1300         pr = fmt1_str[0];
1301         tev->group = strdup(fmt2_str);
1302         tev->event = strdup(fmt3_str);
1303         if (tev->group == NULL || tev->event == NULL) {
1304                 ret = -ENOMEM;
1305                 goto out;
1306         }
1307         pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
1308
1309         tp->retprobe = (pr == 'r');
1310
1311         /* Scan module name(if there), function name and offset */
1312         p = strchr(argv[1], ':');
1313         if (p) {
1314                 tp->module = strndup(argv[1], p - argv[1]);
1315                 p++;
1316         } else
1317                 p = argv[1];
1318         fmt1_str = strtok_r(p, "+", &fmt);
1319         tp->symbol = strdup(fmt1_str);
1320         if (tp->symbol == NULL) {
1321                 ret = -ENOMEM;
1322                 goto out;
1323         }
1324         fmt2_str = strtok_r(NULL, "", &fmt);
1325         if (fmt2_str == NULL)
1326                 tp->offset = 0;
1327         else
1328                 tp->offset = strtoul(fmt2_str, NULL, 10);
1329
1330         tev->nargs = argc - 2;
1331         tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1332         if (tev->args == NULL) {
1333                 ret = -ENOMEM;
1334                 goto out;
1335         }
1336         for (i = 0; i < tev->nargs; i++) {
1337                 p = strchr(argv[i + 2], '=');
1338                 if (p)  /* We don't need which register is assigned. */
1339                         *p++ = '\0';
1340                 else
1341                         p = argv[i + 2];
1342                 tev->args[i].name = strdup(argv[i + 2]);
1343                 /* TODO: parse regs and offset */
1344                 tev->args[i].value = strdup(p);
1345                 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1346                         ret = -ENOMEM;
1347                         goto out;
1348                 }
1349         }
1350         ret = 0;
1351 out:
1352         free(argv0_str);
1353         argv_free(argv);
1354         return ret;
1355 }
1356
1357 /* Compose only probe arg */
1358 int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1359 {
1360         struct perf_probe_arg_field *field = pa->field;
1361         int ret;
1362         char *tmp = buf;
1363
1364         if (pa->name && pa->var)
1365                 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1366         else
1367                 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
1368         if (ret <= 0)
1369                 goto error;
1370         tmp += ret;
1371         len -= ret;
1372
1373         while (field) {
1374                 if (field->name[0] == '[')
1375                         ret = e_snprintf(tmp, len, "%s", field->name);
1376                 else
1377                         ret = e_snprintf(tmp, len, "%s%s",
1378                                          field->ref ? "->" : ".", field->name);
1379                 if (ret <= 0)
1380                         goto error;
1381                 tmp += ret;
1382                 len -= ret;
1383                 field = field->next;
1384         }
1385
1386         if (pa->type) {
1387                 ret = e_snprintf(tmp, len, ":%s", pa->type);
1388                 if (ret <= 0)
1389                         goto error;
1390                 tmp += ret;
1391                 len -= ret;
1392         }
1393
1394         return tmp - buf;
1395 error:
1396         pr_debug("Failed to synthesize perf probe argument: %s\n",
1397                  strerror(-ret));
1398         return ret;
1399 }
1400
1401 /* Compose only probe point (not argument) */
1402 static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
1403 {
1404         char *buf, *tmp;
1405         char offs[32] = "", line[32] = "", file[32] = "";
1406         int ret, len;
1407
1408         buf = zalloc(MAX_CMDLEN);
1409         if (buf == NULL) {
1410                 ret = -ENOMEM;
1411                 goto error;
1412         }
1413         if (pp->offset) {
1414                 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
1415                 if (ret <= 0)
1416                         goto error;
1417         }
1418         if (pp->line) {
1419                 ret = e_snprintf(line, 32, ":%d", pp->line);
1420                 if (ret <= 0)
1421                         goto error;
1422         }
1423         if (pp->file) {
1424                 tmp = pp->file;
1425                 len = strlen(tmp);
1426                 if (len > 30) {
1427                         tmp = strchr(pp->file + len - 30, '/');
1428                         tmp = tmp ? tmp + 1 : pp->file + len - 30;
1429                 }
1430                 ret = e_snprintf(file, 32, "@%s", tmp);
1431                 if (ret <= 0)
1432                         goto error;
1433         }
1434
1435         if (pp->function)
1436                 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1437                                  offs, pp->retprobe ? "%return" : "", line,
1438                                  file);
1439         else
1440                 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
1441         if (ret <= 0)
1442                 goto error;
1443
1444         return buf;
1445 error:
1446         pr_debug("Failed to synthesize perf probe point: %s\n",
1447                  strerror(-ret));
1448         free(buf);
1449         return NULL;
1450 }
1451
1452 #if 0
1453 char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1454 {
1455         char *buf;
1456         int i, len, ret;
1457
1458         buf = synthesize_perf_probe_point(&pev->point);
1459         if (!buf)
1460                 return NULL;
1461
1462         len = strlen(buf);
1463         for (i = 0; i < pev->nargs; i++) {
1464                 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
1465                                  pev->args[i].name);
1466                 if (ret <= 0) {
1467                         free(buf);
1468                         return NULL;
1469                 }
1470                 len += ret;
1471         }
1472
1473         return buf;
1474 }
1475 #endif
1476
1477 static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
1478                                              char **buf, size_t *buflen,
1479                                              int depth)
1480 {
1481         int ret;
1482         if (ref->next) {
1483                 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
1484                                                          buflen, depth + 1);
1485                 if (depth < 0)
1486                         goto out;
1487         }
1488
1489         ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1490         if (ret < 0)
1491                 depth = ret;
1492         else {
1493                 *buf += ret;
1494                 *buflen -= ret;
1495         }
1496 out:
1497         return depth;
1498
1499 }
1500
1501 static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
1502                                        char *buf, size_t buflen)
1503 {
1504         struct probe_trace_arg_ref *ref = arg->ref;
1505         int ret, depth = 0;
1506         char *tmp = buf;
1507
1508         /* Argument name or separator */
1509         if (arg->name)
1510                 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1511         else
1512                 ret = e_snprintf(buf, buflen, " ");
1513         if (ret < 0)
1514                 return ret;
1515         buf += ret;
1516         buflen -= ret;
1517
1518         /* Special case: @XXX */
1519         if (arg->value[0] == '@' && arg->ref)
1520                         ref = ref->next;
1521
1522         /* Dereferencing arguments */
1523         if (ref) {
1524                 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
1525                                                           &buflen, 1);
1526                 if (depth < 0)
1527                         return depth;
1528         }
1529
1530         /* Print argument value */
1531         if (arg->value[0] == '@' && arg->ref)
1532                 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1533                                  arg->ref->offset);
1534         else
1535                 ret = e_snprintf(buf, buflen, "%s", arg->value);
1536         if (ret < 0)
1537                 return ret;
1538         buf += ret;
1539         buflen -= ret;
1540
1541         /* Closing */
1542         while (depth--) {
1543                 ret = e_snprintf(buf, buflen, ")");
1544                 if (ret < 0)
1545                         return ret;
1546                 buf += ret;
1547                 buflen -= ret;
1548         }
1549         /* Print argument type */
1550         if (arg->type) {
1551                 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1552                 if (ret <= 0)
1553                         return ret;
1554                 buf += ret;
1555         }
1556
1557         return buf - tmp;
1558 }
1559
1560 char *synthesize_probe_trace_command(struct probe_trace_event *tev)
1561 {
1562         struct probe_trace_point *tp = &tev->point;
1563         char *buf;
1564         int i, len, ret;
1565
1566         buf = zalloc(MAX_CMDLEN);
1567         if (buf == NULL)
1568                 return NULL;
1569
1570         if (tev->uprobes)
1571                 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s:%s",
1572                                  tp->retprobe ? 'r' : 'p',
1573                                  tev->group, tev->event,
1574                                  tp->module, tp->symbol);
1575         else
1576                 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s%s%s+%lu",
1577                                  tp->retprobe ? 'r' : 'p',
1578                                  tev->group, tev->event,
1579                                  tp->module ?: "", tp->module ? ":" : "",
1580                                  tp->symbol, tp->offset);
1581
1582         if (len <= 0)
1583                 goto error;
1584
1585         for (i = 0; i < tev->nargs; i++) {
1586                 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
1587                                                   MAX_CMDLEN - len);
1588                 if (ret <= 0)
1589                         goto error;
1590                 len += ret;
1591         }
1592
1593         return buf;
1594 error:
1595         free(buf);
1596         return NULL;
1597 }
1598
1599 static int convert_to_perf_probe_event(struct probe_trace_event *tev,
1600                                struct perf_probe_event *pev, bool is_kprobe)
1601 {
1602         char buf[64] = "";
1603         int i, ret;
1604
1605         /* Convert event/group name */
1606         pev->event = strdup(tev->event);
1607         pev->group = strdup(tev->group);
1608         if (pev->event == NULL || pev->group == NULL)
1609                 return -ENOMEM;
1610
1611         /* Convert trace_point to probe_point */
1612         if (is_kprobe)
1613                 ret = kprobe_convert_to_perf_probe(&tev->point, &pev->point);
1614         else
1615                 ret = convert_to_perf_probe_point(&tev->point, &pev->point);
1616
1617         if (ret < 0)
1618                 return ret;
1619
1620         /* Convert trace_arg to probe_arg */
1621         pev->nargs = tev->nargs;
1622         pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1623         if (pev->args == NULL)
1624                 return -ENOMEM;
1625         for (i = 0; i < tev->nargs && ret >= 0; i++) {
1626                 if (tev->args[i].name)
1627                         pev->args[i].name = strdup(tev->args[i].name);
1628                 else {
1629                         ret = synthesize_probe_trace_arg(&tev->args[i],
1630                                                           buf, 64);
1631                         pev->args[i].name = strdup(buf);
1632                 }
1633                 if (pev->args[i].name == NULL && ret >= 0)
1634                         ret = -ENOMEM;
1635         }
1636
1637         if (ret < 0)
1638                 clear_perf_probe_event(pev);
1639
1640         return ret;
1641 }
1642
1643 void clear_perf_probe_event(struct perf_probe_event *pev)
1644 {
1645         struct perf_probe_point *pp = &pev->point;
1646         struct perf_probe_arg_field *field, *next;
1647         int i;
1648
1649         free(pev->event);
1650         free(pev->group);
1651         free(pp->file);
1652         free(pp->function);
1653         free(pp->lazy_line);
1654
1655         for (i = 0; i < pev->nargs; i++) {
1656                 free(pev->args[i].name);
1657                 free(pev->args[i].var);
1658                 free(pev->args[i].type);
1659                 field = pev->args[i].field;
1660                 while (field) {
1661                         next = field->next;
1662                         zfree(&field->name);
1663                         free(field);
1664                         field = next;
1665                 }
1666         }
1667         free(pev->args);
1668         memset(pev, 0, sizeof(*pev));
1669 }
1670
1671 static void clear_probe_trace_event(struct probe_trace_event *tev)
1672 {
1673         struct probe_trace_arg_ref *ref, *next;
1674         int i;
1675
1676         free(tev->event);
1677         free(tev->group);
1678         free(tev->point.symbol);
1679         free(tev->point.module);
1680         for (i = 0; i < tev->nargs; i++) {
1681                 free(tev->args[i].name);
1682                 free(tev->args[i].value);
1683                 free(tev->args[i].type);
1684                 ref = tev->args[i].ref;
1685                 while (ref) {
1686                         next = ref->next;
1687                         free(ref);
1688                         ref = next;
1689                 }
1690         }
1691         free(tev->args);
1692         memset(tev, 0, sizeof(*tev));
1693 }
1694
1695 static void print_warn_msg(const char *file, bool is_kprobe)
1696 {
1697
1698         if (errno == ENOENT) {
1699                 const char *config;
1700
1701                 if (!is_kprobe)
1702                         config = "CONFIG_UPROBE_EVENTS";
1703                 else
1704                         config = "CONFIG_KPROBE_EVENTS";
1705
1706                 pr_warning("%s file does not exist - please rebuild kernel"
1707                                 " with %s.\n", file, config);
1708         } else
1709                 pr_warning("Failed to open %s file: %s\n", file,
1710                                 strerror(errno));
1711 }
1712
1713 static int open_probe_events(const char *trace_file, bool readwrite,
1714                                 bool is_kprobe)
1715 {
1716         char buf[PATH_MAX];
1717         const char *__debugfs;
1718         int ret;
1719
1720         __debugfs = debugfs_find_mountpoint();
1721         if (__debugfs == NULL) {
1722                 pr_warning("Debugfs is not mounted.\n");
1723                 return -ENOENT;
1724         }
1725
1726         ret = e_snprintf(buf, PATH_MAX, "%s/%s", __debugfs, trace_file);
1727         if (ret >= 0) {
1728                 pr_debug("Opening %s write=%d\n", buf, readwrite);
1729                 if (readwrite && !probe_event_dry_run)
1730                         ret = open(buf, O_RDWR, O_APPEND);
1731                 else
1732                         ret = open(buf, O_RDONLY, 0);
1733
1734                 if (ret < 0)
1735                         print_warn_msg(buf, is_kprobe);
1736         }
1737         return ret;
1738 }
1739
1740 static int open_kprobe_events(bool readwrite)
1741 {
1742         return open_probe_events("tracing/kprobe_events", readwrite, true);
1743 }
1744
1745 static int open_uprobe_events(bool readwrite)
1746 {
1747         return open_probe_events("tracing/uprobe_events", readwrite, false);
1748 }
1749
1750 /* Get raw string list of current kprobe_events  or uprobe_events */
1751 static struct strlist *get_probe_trace_command_rawlist(int fd)
1752 {
1753         int ret, idx;
1754         FILE *fp;
1755         char buf[MAX_CMDLEN];
1756         char *p;
1757         struct strlist *sl;
1758
1759         sl = strlist__new(true, NULL);
1760
1761         fp = fdopen(dup(fd), "r");
1762         while (!feof(fp)) {
1763                 p = fgets(buf, MAX_CMDLEN, fp);
1764                 if (!p)
1765                         break;
1766
1767                 idx = strlen(p) - 1;
1768                 if (p[idx] == '\n')
1769                         p[idx] = '\0';
1770                 ret = strlist__add(sl, buf);
1771                 if (ret < 0) {
1772                         pr_debug("strlist__add failed: %s\n", strerror(-ret));
1773                         strlist__delete(sl);
1774                         return NULL;
1775                 }
1776         }
1777         fclose(fp);
1778
1779         return sl;
1780 }
1781
1782 /* Show an event */
1783 static int show_perf_probe_event(struct perf_probe_event *pev,
1784                                  const char *module)
1785 {
1786         int i, ret;
1787         char buf[128];
1788         char *place;
1789
1790         /* Synthesize only event probe point */
1791         place = synthesize_perf_probe_point(&pev->point);
1792         if (!place)
1793                 return -EINVAL;
1794
1795         ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
1796         if (ret < 0)
1797                 return ret;
1798
1799         printf("  %-20s (on %s", buf, place);
1800         if (module)
1801                 printf(" in %s", module);
1802
1803         if (pev->nargs > 0) {
1804                 printf(" with");
1805                 for (i = 0; i < pev->nargs; i++) {
1806                         ret = synthesize_perf_probe_arg(&pev->args[i],
1807                                                         buf, 128);
1808                         if (ret < 0)
1809                                 break;
1810                         printf(" %s", buf);
1811                 }
1812         }
1813         printf(")\n");
1814         free(place);
1815         return ret;
1816 }
1817
1818 static int __show_perf_probe_events(int fd, bool is_kprobe)
1819 {
1820         int ret = 0;
1821         struct probe_trace_event tev;
1822         struct perf_probe_event pev;
1823         struct strlist *rawlist;
1824         struct str_node *ent;
1825
1826         memset(&tev, 0, sizeof(tev));
1827         memset(&pev, 0, sizeof(pev));
1828
1829         rawlist = get_probe_trace_command_rawlist(fd);
1830         if (!rawlist)
1831                 return -ENOENT;
1832
1833         strlist__for_each(ent, rawlist) {
1834                 ret = parse_probe_trace_command(ent->s, &tev);
1835                 if (ret >= 0) {
1836                         ret = convert_to_perf_probe_event(&tev, &pev,
1837                                                                 is_kprobe);
1838                         if (ret >= 0)
1839                                 ret = show_perf_probe_event(&pev,
1840                                                             tev.point.module);
1841                 }
1842                 clear_perf_probe_event(&pev);
1843                 clear_probe_trace_event(&tev);
1844                 if (ret < 0)
1845                         break;
1846         }
1847         strlist__delete(rawlist);
1848
1849         return ret;
1850 }
1851
1852 /* List up current perf-probe events */
1853 int show_perf_probe_events(void)
1854 {
1855         int fd, ret;
1856
1857         setup_pager();
1858         fd = open_kprobe_events(false);
1859
1860         if (fd < 0)
1861                 return fd;
1862
1863         ret = init_symbol_maps(false);
1864         if (ret < 0)
1865                 return ret;
1866
1867         ret = __show_perf_probe_events(fd, true);
1868         close(fd);
1869
1870         fd = open_uprobe_events(false);
1871         if (fd >= 0) {
1872                 ret = __show_perf_probe_events(fd, false);
1873                 close(fd);
1874         }
1875
1876         exit_symbol_maps();
1877         return ret;
1878 }
1879
1880 /* Get current perf-probe event names */
1881 static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
1882 {
1883         char buf[128];
1884         struct strlist *sl, *rawlist;
1885         struct str_node *ent;
1886         struct probe_trace_event tev;
1887         int ret = 0;
1888
1889         memset(&tev, 0, sizeof(tev));
1890         rawlist = get_probe_trace_command_rawlist(fd);
1891         sl = strlist__new(true, NULL);
1892         strlist__for_each(ent, rawlist) {
1893                 ret = parse_probe_trace_command(ent->s, &tev);
1894                 if (ret < 0)
1895                         break;
1896                 if (include_group) {
1897                         ret = e_snprintf(buf, 128, "%s:%s", tev.group,
1898                                         tev.event);
1899                         if (ret >= 0)
1900                                 ret = strlist__add(sl, buf);
1901                 } else
1902                         ret = strlist__add(sl, tev.event);
1903                 clear_probe_trace_event(&tev);
1904                 if (ret < 0)
1905                         break;
1906         }
1907         strlist__delete(rawlist);
1908
1909         if (ret < 0) {
1910                 strlist__delete(sl);
1911                 return NULL;
1912         }
1913         return sl;
1914 }
1915
1916 static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
1917 {
1918         int ret = 0;
1919         char *buf = synthesize_probe_trace_command(tev);
1920
1921         if (!buf) {
1922                 pr_debug("Failed to synthesize probe trace event.\n");
1923                 return -EINVAL;
1924         }
1925
1926         pr_debug("Writing event: %s\n", buf);
1927         if (!probe_event_dry_run) {
1928                 ret = write(fd, buf, strlen(buf));
1929                 if (ret <= 0)
1930                         pr_warning("Failed to write event: %s\n",
1931                                    strerror(errno));
1932         }
1933         free(buf);
1934         return ret;
1935 }
1936
1937 static int get_new_event_name(char *buf, size_t len, const char *base,
1938                               struct strlist *namelist, bool allow_suffix)
1939 {
1940         int i, ret;
1941
1942         /* Try no suffix */
1943         ret = e_snprintf(buf, len, "%s", base);
1944         if (ret < 0) {
1945                 pr_debug("snprintf() failed: %s\n", strerror(-ret));
1946                 return ret;
1947         }
1948         if (!strlist__has_entry(namelist, buf))
1949                 return 0;
1950
1951         if (!allow_suffix) {
1952                 pr_warning("Error: event \"%s\" already exists. "
1953                            "(Use -f to force duplicates.)\n", base);
1954                 return -EEXIST;
1955         }
1956
1957         /* Try to add suffix */
1958         for (i = 1; i < MAX_EVENT_INDEX; i++) {
1959                 ret = e_snprintf(buf, len, "%s_%d", base, i);
1960                 if (ret < 0) {
1961                         pr_debug("snprintf() failed: %s\n", strerror(-ret));
1962                         return ret;
1963                 }
1964                 if (!strlist__has_entry(namelist, buf))
1965                         break;
1966         }
1967         if (i == MAX_EVENT_INDEX) {
1968                 pr_warning("Too many events are on the same function.\n");
1969                 ret = -ERANGE;
1970         }
1971
1972         return ret;
1973 }
1974
1975 static int __add_probe_trace_events(struct perf_probe_event *pev,
1976                                      struct probe_trace_event *tevs,
1977                                      int ntevs, bool allow_suffix)
1978 {
1979         int i, fd, ret;
1980         struct probe_trace_event *tev = NULL;
1981         char buf[64];
1982         const char *event, *group;
1983         struct strlist *namelist;
1984
1985         if (pev->uprobes)
1986                 fd = open_uprobe_events(true);
1987         else
1988                 fd = open_kprobe_events(true);
1989
1990         if (fd < 0)
1991                 return fd;
1992         /* Get current event names */
1993         namelist = get_probe_trace_event_names(fd, false);
1994         if (!namelist) {
1995                 pr_debug("Failed to get current event list.\n");
1996                 return -EIO;
1997         }
1998
1999         ret = 0;
2000         printf("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
2001         for (i = 0; i < ntevs; i++) {
2002                 tev = &tevs[i];
2003                 if (pev->event)
2004                         event = pev->event;
2005                 else
2006                         if (pev->point.function)
2007                                 event = pev->point.function;
2008                         else
2009                                 event = tev->point.symbol;
2010                 if (pev->group)
2011                         group = pev->group;
2012                 else
2013                         group = PERFPROBE_GROUP;
2014
2015                 /* Get an unused new event name */
2016                 ret = get_new_event_name(buf, 64, event,
2017                                          namelist, allow_suffix);
2018                 if (ret < 0)
2019                         break;
2020                 event = buf;
2021
2022                 tev->event = strdup(event);
2023                 tev->group = strdup(group);
2024                 if (tev->event == NULL || tev->group == NULL) {
2025                         ret = -ENOMEM;
2026                         break;
2027                 }
2028                 ret = write_probe_trace_event(fd, tev);
2029                 if (ret < 0)
2030                         break;
2031                 /* Add added event name to namelist */
2032                 strlist__add(namelist, event);
2033
2034                 /* Trick here - save current event/group */
2035                 event = pev->event;
2036                 group = pev->group;
2037                 pev->event = tev->event;
2038                 pev->group = tev->group;
2039                 show_perf_probe_event(pev, tev->point.module);
2040                 /* Trick here - restore current event/group */
2041                 pev->event = (char *)event;
2042                 pev->group = (char *)group;
2043
2044                 /*
2045                  * Probes after the first probe which comes from same
2046                  * user input are always allowed to add suffix, because
2047                  * there might be several addresses corresponding to
2048                  * one code line.
2049                  */
2050                 allow_suffix = true;
2051         }
2052
2053         if (ret >= 0) {
2054                 /* Show how to use the event. */
2055                 printf("\nYou can now use it in all perf tools, such as:\n\n");
2056                 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
2057                          tev->event);
2058         }
2059
2060         strlist__delete(namelist);
2061         close(fd);
2062         return ret;
2063 }
2064
2065 static int convert_to_probe_trace_events(struct perf_probe_event *pev,
2066                                           struct probe_trace_event **tevs,
2067                                           int max_tevs, const char *target)
2068 {
2069         struct symbol *sym;
2070         int ret, i;
2071         struct probe_trace_event *tev;
2072
2073         if (pev->uprobes && !pev->group) {
2074                 /* Replace group name if not given */
2075                 ret = convert_exec_to_group(target, &pev->group);
2076                 if (ret != 0) {
2077                         pr_warning("Failed to make a group name.\n");
2078                         return ret;
2079                 }
2080         }
2081
2082         /* Convert perf_probe_event with debuginfo */
2083         ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, target);
2084         if (ret != 0)
2085                 return ret;     /* Found in debuginfo or got an error */
2086
2087         if (pev->uprobes) {
2088                 ret = convert_name_to_addr(pev, target);
2089                 if (ret < 0)
2090                         return ret;
2091         }
2092
2093         /* Allocate trace event buffer */
2094         tev = *tevs = zalloc(sizeof(struct probe_trace_event));
2095         if (tev == NULL)
2096                 return -ENOMEM;
2097
2098         /* Copy parameters */
2099         tev->point.symbol = strdup(pev->point.function);
2100         if (tev->point.symbol == NULL) {
2101                 ret = -ENOMEM;
2102                 goto error;
2103         }
2104
2105         if (target) {
2106                 tev->point.module = strdup(target);
2107                 if (tev->point.module == NULL) {
2108                         ret = -ENOMEM;
2109                         goto error;
2110                 }
2111         }
2112
2113         tev->point.offset = pev->point.offset;
2114         tev->point.retprobe = pev->point.retprobe;
2115         tev->nargs = pev->nargs;
2116         tev->uprobes = pev->uprobes;
2117
2118         if (tev->nargs) {
2119                 tev->args = zalloc(sizeof(struct probe_trace_arg)
2120                                    * tev->nargs);
2121                 if (tev->args == NULL) {
2122                         ret = -ENOMEM;
2123                         goto error;
2124                 }
2125                 for (i = 0; i < tev->nargs; i++) {
2126                         if (pev->args[i].name) {
2127                                 tev->args[i].name = strdup(pev->args[i].name);
2128                                 if (tev->args[i].name == NULL) {
2129                                         ret = -ENOMEM;
2130                                         goto error;
2131                                 }
2132                         }
2133                         tev->args[i].value = strdup(pev->args[i].var);
2134                         if (tev->args[i].value == NULL) {
2135                                 ret = -ENOMEM;
2136                                 goto error;
2137                         }
2138                         if (pev->args[i].type) {
2139                                 tev->args[i].type = strdup(pev->args[i].type);
2140                                 if (tev->args[i].type == NULL) {
2141                                         ret = -ENOMEM;
2142                                         goto error;
2143                                 }
2144                         }
2145                 }
2146         }
2147
2148         if (pev->uprobes)
2149                 return 1;
2150
2151         /* Currently just checking function name from symbol map */
2152         sym = __find_kernel_function_by_name(tev->point.symbol, NULL);
2153         if (!sym) {
2154                 pr_warning("Kernel symbol \'%s\' not found.\n",
2155                            tev->point.symbol);
2156                 ret = -ENOENT;
2157                 goto error;
2158         } else if (tev->point.offset > sym->end - sym->start) {
2159                 pr_warning("Offset specified is greater than size of %s\n",
2160                            tev->point.symbol);
2161                 ret = -ENOENT;
2162                 goto error;
2163
2164         }
2165
2166         return 1;
2167 error:
2168         clear_probe_trace_event(tev);
2169         free(tev);
2170         *tevs = NULL;
2171         return ret;
2172 }
2173
2174 struct __event_package {
2175         struct perf_probe_event         *pev;
2176         struct probe_trace_event        *tevs;
2177         int                             ntevs;
2178 };
2179
2180 int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
2181                           int max_tevs, const char *target, bool force_add)
2182 {
2183         int i, j, ret;
2184         struct __event_package *pkgs;
2185
2186         ret = 0;
2187         pkgs = zalloc(sizeof(struct __event_package) * npevs);
2188
2189         if (pkgs == NULL)
2190                 return -ENOMEM;
2191
2192         ret = init_symbol_maps(pevs->uprobes);
2193         if (ret < 0) {
2194                 free(pkgs);
2195                 return ret;
2196         }
2197
2198         /* Loop 1: convert all events */
2199         for (i = 0; i < npevs; i++) {
2200                 pkgs[i].pev = &pevs[i];
2201                 /* Convert with or without debuginfo */
2202                 ret  = convert_to_probe_trace_events(pkgs[i].pev,
2203                                                      &pkgs[i].tevs,
2204                                                      max_tevs,
2205                                                      target);
2206                 if (ret < 0)
2207                         goto end;
2208                 pkgs[i].ntevs = ret;
2209         }
2210
2211         /* Loop 2: add all events */
2212         for (i = 0; i < npevs; i++) {
2213                 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
2214                                                 pkgs[i].ntevs, force_add);
2215                 if (ret < 0)
2216                         break;
2217         }
2218 end:
2219         /* Loop 3: cleanup and free trace events  */
2220         for (i = 0; i < npevs; i++) {
2221                 for (j = 0; j < pkgs[i].ntevs; j++)
2222                         clear_probe_trace_event(&pkgs[i].tevs[j]);
2223                 zfree(&pkgs[i].tevs);
2224         }
2225         free(pkgs);
2226         exit_symbol_maps();
2227
2228         return ret;
2229 }
2230
2231 static int __del_trace_probe_event(int fd, struct str_node *ent)
2232 {
2233         char *p;
2234         char buf[128];
2235         int ret;
2236
2237         /* Convert from perf-probe event to trace-probe event */
2238         ret = e_snprintf(buf, 128, "-:%s", ent->s);
2239         if (ret < 0)
2240                 goto error;
2241
2242         p = strchr(buf + 2, ':');
2243         if (!p) {
2244                 pr_debug("Internal error: %s should have ':' but not.\n",
2245                          ent->s);
2246                 ret = -ENOTSUP;
2247                 goto error;
2248         }
2249         *p = '/';
2250
2251         pr_debug("Writing event: %s\n", buf);
2252         ret = write(fd, buf, strlen(buf));
2253         if (ret < 0) {
2254                 ret = -errno;
2255                 goto error;
2256         }
2257
2258         printf("Removed event: %s\n", ent->s);
2259         return 0;
2260 error:
2261         pr_warning("Failed to delete event: %s\n", strerror(-ret));
2262         return ret;
2263 }
2264
2265 static int del_trace_probe_event(int fd, const char *buf,
2266                                                   struct strlist *namelist)
2267 {
2268         struct str_node *ent, *n;
2269         int ret = -1;
2270
2271         if (strpbrk(buf, "*?")) { /* Glob-exp */
2272                 strlist__for_each_safe(ent, n, namelist)
2273                         if (strglobmatch(ent->s, buf)) {
2274                                 ret = __del_trace_probe_event(fd, ent);
2275                                 if (ret < 0)
2276                                         break;
2277                                 strlist__remove(namelist, ent);
2278                         }
2279         } else {
2280                 ent = strlist__find(namelist, buf);
2281                 if (ent) {
2282                         ret = __del_trace_probe_event(fd, ent);
2283                         if (ret >= 0)
2284                                 strlist__remove(namelist, ent);
2285                 }
2286         }
2287
2288         return ret;
2289 }
2290
2291 int del_perf_probe_events(struct strlist *dellist)
2292 {
2293         int ret = -1, ufd = -1, kfd = -1;
2294         char buf[128];
2295         const char *group, *event;
2296         char *p, *str;
2297         struct str_node *ent;
2298         struct strlist *namelist = NULL, *unamelist = NULL;
2299
2300         /* Get current event names */
2301         kfd = open_kprobe_events(true);
2302         if (kfd < 0)
2303                 return kfd;
2304
2305         namelist = get_probe_trace_event_names(kfd, true);
2306         ufd = open_uprobe_events(true);
2307
2308         if (ufd >= 0)
2309                 unamelist = get_probe_trace_event_names(ufd, true);
2310
2311         if (namelist == NULL && unamelist == NULL)
2312                 goto error;
2313
2314         strlist__for_each(ent, dellist) {
2315                 str = strdup(ent->s);
2316                 if (str == NULL) {
2317                         ret = -ENOMEM;
2318                         goto error;
2319                 }
2320                 pr_debug("Parsing: %s\n", str);
2321                 p = strchr(str, ':');
2322                 if (p) {
2323                         group = str;
2324                         *p = '\0';
2325                         event = p + 1;
2326                 } else {
2327                         group = "*";
2328                         event = str;
2329                 }
2330
2331                 ret = e_snprintf(buf, 128, "%s:%s", group, event);
2332                 if (ret < 0) {
2333                         pr_err("Failed to copy event.");
2334                         free(str);
2335                         goto error;
2336                 }
2337
2338                 pr_debug("Group: %s, Event: %s\n", group, event);
2339
2340                 if (namelist)
2341                         ret = del_trace_probe_event(kfd, buf, namelist);
2342
2343                 if (unamelist && ret != 0)
2344                         ret = del_trace_probe_event(ufd, buf, unamelist);
2345
2346                 if (ret != 0)
2347                         pr_info("Info: Event \"%s\" does not exist.\n", buf);
2348
2349                 free(str);
2350         }
2351
2352 error:
2353         if (kfd >= 0) {
2354                 strlist__delete(namelist);
2355                 close(kfd);
2356         }
2357
2358         if (ufd >= 0) {
2359                 strlist__delete(unamelist);
2360                 close(ufd);
2361         }
2362
2363         return ret;
2364 }
2365
2366 /* TODO: don't use a global variable for filter ... */
2367 static struct strfilter *available_func_filter;
2368
2369 /*
2370  * If a symbol corresponds to a function with global binding and
2371  * matches filter return 0. For all others return 1.
2372  */
2373 static int filter_available_functions(struct map *map __maybe_unused,
2374                                       struct symbol *sym)
2375 {
2376         if (sym->binding == STB_GLOBAL &&
2377             strfilter__compare(available_func_filter, sym->name))
2378                 return 0;
2379         return 1;
2380 }
2381
2382 int show_available_funcs(const char *target, struct strfilter *_filter,
2383                                         bool user)
2384 {
2385         struct map *map;
2386         int ret;
2387
2388         ret = init_symbol_maps(user);
2389         if (ret < 0)
2390                 return ret;
2391
2392         /* Get a symbol map */
2393         if (user)
2394                 map = dso__new_map(target);
2395         else
2396                 map = kernel_get_module_map(target);
2397         if (!map) {
2398                 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
2399                 return -EINVAL;
2400         }
2401
2402         /* Load symbols with given filter */
2403         available_func_filter = _filter;
2404         if (map__load(map, filter_available_functions)) {
2405                 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2406                 goto end;
2407         }
2408         if (!dso__sorted_by_name(map->dso, map->type))
2409                 dso__sort_by_name(map->dso, map->type);
2410
2411         /* Show all (filtered) symbols */
2412         setup_pager();
2413         dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2414 end:
2415         if (user) {
2416                 dso__delete(map->dso);
2417                 map__delete(map);
2418         }
2419         exit_symbol_maps();
2420
2421         return ret;
2422 }
2423
2424 /*
2425  * uprobe_events only accepts address:
2426  * Convert function and any offset to address
2427  */
2428 static int convert_name_to_addr(struct perf_probe_event *pev, const char *exec)
2429 {
2430         struct perf_probe_point *pp = &pev->point;
2431         struct symbol *sym;
2432         struct map *map = NULL;
2433         char *function = NULL;
2434         int ret = -EINVAL;
2435         unsigned long long vaddr = 0;
2436
2437         if (!pp->function) {
2438                 pr_warning("No function specified for uprobes");
2439                 goto out;
2440         }
2441
2442         function = strdup(pp->function);
2443         if (!function) {
2444                 pr_warning("Failed to allocate memory by strdup.\n");
2445                 ret = -ENOMEM;
2446                 goto out;
2447         }
2448
2449         map = dso__new_map(exec);
2450         if (!map) {
2451                 pr_warning("Cannot find appropriate DSO for %s.\n", exec);
2452                 goto out;
2453         }
2454         available_func_filter = strfilter__new(function, NULL);
2455         if (map__load(map, filter_available_functions)) {
2456                 pr_err("Failed to load map.\n");
2457                 goto out;
2458         }
2459
2460         sym = map__find_symbol_by_name(map, function, NULL);
2461         if (!sym) {
2462                 pr_warning("Cannot find %s in DSO %s\n", function, exec);
2463                 goto out;
2464         }
2465
2466         if (map->start > sym->start)
2467                 vaddr = map->start;
2468         vaddr += sym->start + pp->offset + map->pgoff;
2469         pp->offset = 0;
2470
2471         if (!pev->event) {
2472                 pev->event = function;
2473                 function = NULL;
2474         }
2475         if (!pev->group) {
2476                 char *ptr1, *ptr2, *exec_copy;
2477
2478                 pev->group = zalloc(sizeof(char *) * 64);
2479                 exec_copy = strdup(exec);
2480                 if (!exec_copy) {
2481                         ret = -ENOMEM;
2482                         pr_warning("Failed to copy exec string.\n");
2483                         goto out;
2484                 }
2485
2486                 ptr1 = strdup(basename(exec_copy));
2487                 if (ptr1) {
2488                         ptr2 = strpbrk(ptr1, "-._");
2489                         if (ptr2)
2490                                 *ptr2 = '\0';
2491                         e_snprintf(pev->group, 64, "%s_%s", PERFPROBE_GROUP,
2492                                         ptr1);
2493                         free(ptr1);
2494                 }
2495                 free(exec_copy);
2496         }
2497         free(pp->function);
2498         pp->function = zalloc(sizeof(char *) * MAX_PROBE_ARGS);
2499         if (!pp->function) {
2500                 ret = -ENOMEM;
2501                 pr_warning("Failed to allocate memory by zalloc.\n");
2502                 goto out;
2503         }
2504         e_snprintf(pp->function, MAX_PROBE_ARGS, "0x%llx", vaddr);
2505         ret = 0;
2506
2507 out:
2508         if (map) {
2509                 dso__delete(map->dso);
2510                 map__delete(map);
2511         }
2512         if (function)
2513                 free(function);
2514         return ret;
2515 }