2 * probe-event.c : perf-probe definition to probe_events format converter
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 #include <sys/utsname.h>
24 #include <sys/types.h>
47 #include "trace-event.h" /* For __unused */
48 #include "probe-event.h"
49 #include "probe-finder.h"
51 #define MAX_CMDLEN 256
52 #define MAX_PROBE_ARGS 128
53 #define PERFPROBE_GROUP "probe"
55 bool probe_event_dry_run
; /* Dry run flag */
57 #define semantic_error(msg ...) pr_err("Semantic error :" msg)
59 /* If there is no space to write, returns -E2BIG. */
60 static int e_snprintf(char *str
, size_t size
, const char *format
, ...)
61 __attribute__((format(printf
, 3, 4)));
63 static int e_snprintf(char *str
, size_t size
, const char *format
, ...)
68 ret
= vsnprintf(str
, size
, format
, ap
);
75 static char *synthesize_perf_probe_point(struct perf_probe_point
*pp
);
76 static struct machine machine
;
78 /* Initialize symbol maps and path of vmlinux/modules */
79 static int init_vmlinux(void)
83 symbol_conf
.sort_by_name
= true;
84 if (symbol_conf
.vmlinux_name
== NULL
)
85 symbol_conf
.try_vmlinux_path
= true;
87 pr_debug("Use vmlinux: %s\n", symbol_conf
.vmlinux_name
);
90 pr_debug("Failed to init symbol map.\n");
94 ret
= machine__init(&machine
, "", HOST_KERNEL_ID
);
98 if (machine__create_kernel_maps(&machine
) < 0) {
99 pr_debug("machine__create_kernel_maps() failed.\n");
104 pr_warning("Failed to init vmlinux path.\n");
108 static struct symbol
*__find_kernel_function_by_name(const char *name
,
111 return machine__find_kernel_function_by_name(&machine
, name
, mapp
,
115 static struct map
*kernel_get_module_map(const char *module
)
118 struct map_groups
*grp
= &machine
.kmaps
;
123 for (nd
= rb_first(&grp
->maps
[MAP__FUNCTION
]); nd
; nd
= rb_next(nd
)) {
124 struct map
*pos
= rb_entry(nd
, struct map
, rb_node
);
125 if (strncmp(pos
->dso
->short_name
+ 1, module
,
126 pos
->dso
->short_name_len
- 2) == 0) {
133 static struct dso
*kernel_get_module_dso(const char *module
)
137 const char *vmlinux_name
;
140 list_for_each_entry(dso
, &machine
.kernel_dsos
, node
) {
141 if (strncmp(dso
->short_name
+ 1, module
,
142 dso
->short_name_len
- 2) == 0)
145 pr_debug("Failed to find module %s.\n", module
);
149 map
= machine
.vmlinux_maps
[MAP__FUNCTION
];
152 vmlinux_name
= symbol_conf
.vmlinux_name
;
154 if (dso__load_vmlinux(dso
, map
, vmlinux_name
, NULL
) <= 0)
157 if (dso__load_vmlinux_path(dso
, map
, NULL
) <= 0) {
158 pr_debug("Failed to load kernel map.\n");
166 const char *kernel_get_module_path(const char *module
)
168 struct dso
*dso
= kernel_get_module_dso(module
);
169 return (dso
) ? dso
->long_name
: NULL
;
173 static int open_vmlinux(const char *module
)
175 const char *path
= kernel_get_module_path(module
);
177 pr_err("Failed to find path of %s module.\n",
181 pr_debug("Try to open %s\n", path
);
182 return open(path
, O_RDONLY
);
186 * Convert trace point to probe point with debuginfo
187 * Currently only handles kprobes.
189 static int kprobe_convert_to_perf_probe(struct probe_trace_point
*tp
,
190 struct perf_probe_point
*pp
)
197 sym
= __find_kernel_function_by_name(tp
->symbol
, &map
);
199 addr
= map
->unmap_ip(map
, sym
->start
+ tp
->offset
);
200 pr_debug("try to find %s+%ld@%" PRIx64
"\n", tp
->symbol
,
202 ret
= find_perf_probe_point((unsigned long)addr
, pp
);
205 pr_debug("Failed to find corresponding probes from "
206 "debuginfo. Use kprobe event information.\n");
207 pp
->function
= strdup(tp
->symbol
);
208 if (pp
->function
== NULL
)
210 pp
->offset
= tp
->offset
;
212 pp
->retprobe
= tp
->retprobe
;
217 /* Try to find perf_probe_event with debuginfo */
218 static int try_to_find_probe_trace_events(struct perf_probe_event
*pev
,
219 struct probe_trace_event
**tevs
,
220 int max_tevs
, const char *module
)
222 bool need_dwarf
= perf_probe_event_need_dwarf(pev
);
225 fd
= open_vmlinux(module
);
228 pr_warning("Failed to open debuginfo file.\n");
231 pr_debug("Could not open vmlinux. Try to use symbols.\n");
235 /* Searching trace events corresponding to probe event */
236 ntevs
= find_probe_trace_events(fd
, pev
, tevs
, max_tevs
);
238 if (ntevs
> 0) { /* Succeeded to find trace events */
239 pr_debug("find %d probe_trace_events.\n", ntevs
);
243 if (ntevs
== 0) { /* No error but failed to find probe point. */
244 pr_warning("Probe point '%s' not found.\n",
245 synthesize_perf_probe_point(&pev
->point
));
248 /* Error path : ntevs < 0 */
249 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs
);
250 if (ntevs
== -EBADF
) {
251 pr_warning("Warning: No dwarf info found in the vmlinux - "
252 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
254 pr_debug("Trying to use symbols.\n");
262 * Find a src file from a DWARF tag path. Prepend optional source path prefix
263 * and chop off leading directories that do not exist. Result is passed back as
264 * a newly allocated path on success.
265 * Return 0 if file was found and readable, -errno otherwise.
267 static int get_real_path(const char *raw_path
, const char *comp_dir
,
270 const char *prefix
= symbol_conf
.source_prefix
;
273 if (raw_path
[0] != '/' && comp_dir
)
274 /* If not an absolute path, try to use comp_dir */
277 if (access(raw_path
, R_OK
) == 0) {
278 *new_path
= strdup(raw_path
);
285 *new_path
= malloc((strlen(prefix
) + strlen(raw_path
) + 2));
290 sprintf(*new_path
, "%s/%s", prefix
, raw_path
);
292 if (access(*new_path
, R_OK
) == 0)
295 if (!symbol_conf
.source_prefix
)
296 /* In case of searching comp_dir, don't retry */
304 raw_path
= strchr(++raw_path
, '/');
320 #define LINEBUF_SIZE 256
321 #define NR_ADDITIONAL_LINES 2
323 static int __show_one_line(FILE *fp
, int l
, bool skip
, bool show_num
)
325 char buf
[LINEBUF_SIZE
];
326 const char *color
= show_num
? "" : PERF_COLOR_BLUE
;
327 const char *prefix
= NULL
;
330 if (fgets(buf
, LINEBUF_SIZE
, fp
) == NULL
)
335 prefix
= show_num
? "%7d " : " ";
336 color_fprintf(stdout
, color
, prefix
, l
);
338 color_fprintf(stdout
, color
, "%s", buf
);
340 } while (strchr(buf
, '\n') == NULL
);
345 pr_warning("File read error: %s\n", strerror(errno
));
351 static int _show_one_line(FILE *fp
, int l
, bool skip
, bool show_num
)
353 int rv
= __show_one_line(fp
, l
, skip
, show_num
);
355 pr_warning("Source file is shorter than expected.\n");
361 #define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
362 #define show_one_line(f,l) _show_one_line(f,l,false,false)
363 #define skip_one_line(f,l) _show_one_line(f,l,true,false)
364 #define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
367 * Show line-range always requires debuginfo to find source file and
370 int show_line_range(struct line_range
*lr
, const char *module
)
373 struct line_node
*ln
;
378 /* Search a line range */
379 ret
= init_vmlinux();
383 fd
= open_vmlinux(module
);
385 pr_warning("Failed to open debuginfo file.\n");
389 ret
= find_line_range(fd
, lr
);
391 pr_warning("Specified source line is not found.\n");
393 } else if (ret
< 0) {
394 pr_warning("Debuginfo analysis failed. (%d)\n", ret
);
398 /* Convert source file path */
400 ret
= get_real_path(tmp
, lr
->comp_dir
, &lr
->path
);
401 free(tmp
); /* Free old path */
403 pr_warning("Failed to find source file. (%d)\n", ret
);
410 fprintf(stdout
, "<%s@%s:%d>\n", lr
->function
, lr
->path
,
411 lr
->start
- lr
->offset
);
413 fprintf(stdout
, "<%s:%d>\n", lr
->path
, lr
->start
);
415 fp
= fopen(lr
->path
, "r");
417 pr_warning("Failed to open %s: %s\n", lr
->path
,
421 /* Skip to starting line number */
422 while (l
< lr
->start
) {
423 ret
= skip_one_line(fp
, l
++);
428 list_for_each_entry(ln
, &lr
->line_list
, list
) {
429 for (; ln
->line
> l
; l
++) {
430 ret
= show_one_line(fp
, l
- lr
->offset
);
434 ret
= show_one_line_with_num(fp
, l
++ - lr
->offset
);
439 if (lr
->end
== INT_MAX
)
440 lr
->end
= l
+ NR_ADDITIONAL_LINES
;
441 while (l
<= lr
->end
) {
442 ret
= show_one_line_or_eof(fp
, l
++ - lr
->offset
);
451 static int show_available_vars_at(int fd
, struct perf_probe_event
*pev
,
452 int max_vls
, struct strfilter
*_filter
,
457 struct str_node
*node
;
458 struct variable_list
*vls
= NULL
, *vl
;
461 buf
= synthesize_perf_probe_point(&pev
->point
);
464 pr_debug("Searching variables at %s\n", buf
);
466 ret
= find_available_vars_at(fd
, pev
, &vls
, max_vls
, externs
);
468 pr_err("Failed to find variables at %s (%d)\n", buf
, ret
);
471 /* Some variables are found */
472 fprintf(stdout
, "Available variables at %s\n", buf
);
473 for (i
= 0; i
< ret
; i
++) {
476 * A probe point might be converted to
477 * several trace points.
479 fprintf(stdout
, "\t@<%s+%lu>\n", vl
->point
.symbol
,
481 free(vl
->point
.symbol
);
484 strlist__for_each(node
, vl
->vars
) {
485 var
= strchr(node
->s
, '\t') + 1;
486 if (strfilter__compare(_filter
, var
)) {
487 fprintf(stdout
, "\t\t%s\n", node
->s
);
491 strlist__delete(vl
->vars
);
494 fprintf(stdout
, "\t\t(No matched variables)\n");
502 /* Show available variables on given probe point */
503 int show_available_vars(struct perf_probe_event
*pevs
, int npevs
,
504 int max_vls
, const char *module
,
505 struct strfilter
*_filter
, bool externs
)
509 ret
= init_vmlinux();
515 for (i
= 0; i
< npevs
&& ret
>= 0; i
++) {
516 fd
= open_vmlinux(module
);
518 pr_warning("Failed to open debug information file.\n");
522 ret
= show_available_vars_at(fd
, &pevs
[i
], max_vls
, _filter
,
528 #else /* !DWARF_SUPPORT */
530 static int kprobe_convert_to_perf_probe(struct probe_trace_point
*tp
,
531 struct perf_probe_point
*pp
)
535 sym
= __find_kernel_function_by_name(tp
->symbol
, NULL
);
537 pr_err("Failed to find symbol %s in kernel.\n", tp
->symbol
);
540 pp
->function
= strdup(tp
->symbol
);
541 if (pp
->function
== NULL
)
543 pp
->offset
= tp
->offset
;
544 pp
->retprobe
= tp
->retprobe
;
549 static int try_to_find_probe_trace_events(struct perf_probe_event
*pev
,
550 struct probe_trace_event
**tevs __unused
,
551 int max_tevs __unused
, const char *mod __unused
)
553 if (perf_probe_event_need_dwarf(pev
)) {
554 pr_warning("Debuginfo-analysis is not supported.\n");
560 int show_line_range(struct line_range
*lr __unused
, const char *module __unused
)
562 pr_warning("Debuginfo-analysis is not supported.\n");
566 int show_available_vars(struct perf_probe_event
*pevs __unused
,
567 int npevs __unused
, int max_vls __unused
,
568 const char *module __unused
,
569 struct strfilter
*filter __unused
,
570 bool externs __unused
)
572 pr_warning("Debuginfo-analysis is not supported.\n");
577 static int parse_line_num(char **ptr
, int *val
, const char *what
)
579 const char *start
= *ptr
;
582 *val
= strtol(*ptr
, ptr
, 0);
583 if (errno
|| *ptr
== start
) {
584 semantic_error("'%s' is not a valid number.\n", what
);
591 * Stuff 'lr' according to the line range described by 'arg'.
592 * The line range syntax is described by:
594 * SRC[:SLN[+NUM|-ELN]]
595 * FNC[@SRC][:SLN[+NUM|-ELN]]
597 int parse_line_range_desc(const char *arg
, struct line_range
*lr
)
599 char *range
, *file
, *name
= strdup(arg
);
608 range
= strchr(name
, ':');
612 err
= parse_line_num(&range
, &lr
->start
, "start line");
616 if (*range
== '+' || *range
== '-') {
617 const char c
= *range
++;
619 err
= parse_line_num(&range
, &lr
->end
, "end line");
624 lr
->end
+= lr
->start
;
626 * Adjust the number of lines here.
627 * If the number of lines == 1, the
628 * the end of line should be equal to
635 pr_debug("Line range is %d to %d\n", lr
->start
, lr
->end
);
638 if (lr
->start
> lr
->end
) {
639 semantic_error("Start line must be smaller"
640 " than end line.\n");
643 if (*range
!= '\0') {
644 semantic_error("Tailing with invalid str '%s'.\n", range
);
649 file
= strchr(name
, '@');
652 lr
->file
= strdup(++file
);
653 if (lr
->file
== NULL
) {
658 } else if (strchr(name
, '.'))
669 /* Check the name is good for event/group */
670 static bool check_event_name(const char *name
)
672 if (!isalpha(*name
) && *name
!= '_')
674 while (*++name
!= '\0') {
675 if (!isalpha(*name
) && !isdigit(*name
) && *name
!= '_')
681 /* Parse probepoint definition. */
682 static int parse_perf_probe_point(char *arg
, struct perf_probe_event
*pev
)
684 struct perf_probe_point
*pp
= &pev
->point
;
689 * perf probe [EVENT=]SRC[:LN|;PTN]
690 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
692 * TODO:Group name support
695 ptr
= strpbrk(arg
, ";=@+%");
696 if (ptr
&& *ptr
== '=') { /* Event name */
699 if (strchr(arg
, ':')) {
700 semantic_error("Group name is not supported yet.\n");
703 if (!check_event_name(arg
)) {
704 semantic_error("%s is bad for event name -it must "
705 "follow C symbol-naming rule.\n", arg
);
708 pev
->event
= strdup(arg
);
709 if (pev
->event
== NULL
)
715 ptr
= strpbrk(arg
, ";:+@%");
725 /* Check arg is function or file and copy it */
726 if (strchr(tmp
, '.')) /* File */
731 /* Parse other options */
735 if (c
== ';') { /* Lazy pattern must be the last part */
736 pp
->lazy_line
= strdup(arg
);
737 if (pp
->lazy_line
== NULL
)
741 ptr
= strpbrk(arg
, ";:+@%");
747 case ':': /* Line number */
748 pp
->line
= strtoul(arg
, &tmp
, 0);
750 semantic_error("There is non-digit char"
751 " in line number.\n");
755 case '+': /* Byte offset from a symbol */
756 pp
->offset
= strtoul(arg
, &tmp
, 0);
758 semantic_error("There is non-digit character"
763 case '@': /* File name */
765 semantic_error("SRC@SRC is not allowed.\n");
768 pp
->file
= strdup(arg
);
769 if (pp
->file
== NULL
)
772 case '%': /* Probe places */
773 if (strcmp(arg
, "return") == 0) {
775 } else { /* Others not supported yet */
776 semantic_error("%%%s is not supported.\n", arg
);
780 default: /* Buggy case */
781 pr_err("This program has a bug at %s:%d.\n",
788 /* Exclusion check */
789 if (pp
->lazy_line
&& pp
->line
) {
790 semantic_error("Lazy pattern can't be used with"
795 if (pp
->lazy_line
&& pp
->offset
) {
796 semantic_error("Lazy pattern can't be used with offset.\n");
800 if (pp
->line
&& pp
->offset
) {
801 semantic_error("Offset can't be used with line number.\n");
805 if (!pp
->line
&& !pp
->lazy_line
&& pp
->file
&& !pp
->function
) {
806 semantic_error("File always requires line number or "
811 if (pp
->offset
&& !pp
->function
) {
812 semantic_error("Offset requires an entry function.\n");
816 if (pp
->retprobe
&& !pp
->function
) {
817 semantic_error("Return probe requires an entry function.\n");
821 if ((pp
->offset
|| pp
->line
|| pp
->lazy_line
) && pp
->retprobe
) {
822 semantic_error("Offset/Line/Lazy pattern can't be used with "
827 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
828 pp
->function
, pp
->file
, pp
->line
, pp
->offset
, pp
->retprobe
,
833 /* Parse perf-probe event argument */
834 static int parse_perf_probe_arg(char *str
, struct perf_probe_arg
*arg
)
836 char *tmp
, *goodname
;
837 struct perf_probe_arg_field
**fieldp
;
839 pr_debug("parsing arg: %s into ", str
);
841 tmp
= strchr(str
, '=');
843 arg
->name
= strndup(str
, tmp
- str
);
844 if (arg
->name
== NULL
)
846 pr_debug("name:%s ", arg
->name
);
850 tmp
= strchr(str
, ':');
851 if (tmp
) { /* Type setting */
853 arg
->type
= strdup(tmp
+ 1);
854 if (arg
->type
== NULL
)
856 pr_debug("type:%s ", arg
->type
);
859 tmp
= strpbrk(str
, "-.[");
860 if (!is_c_varname(str
) || !tmp
) {
861 /* A variable, register, symbol or special value */
862 arg
->var
= strdup(str
);
863 if (arg
->var
== NULL
)
865 pr_debug("%s\n", arg
->var
);
869 /* Structure fields or array element */
870 arg
->var
= strndup(str
, tmp
- str
);
871 if (arg
->var
== NULL
)
874 pr_debug("%s, ", arg
->var
);
875 fieldp
= &arg
->field
;
878 *fieldp
= zalloc(sizeof(struct perf_probe_arg_field
));
881 if (*tmp
== '[') { /* Array */
883 (*fieldp
)->index
= strtol(str
+ 1, &tmp
, 0);
884 (*fieldp
)->ref
= true;
885 if (*tmp
!= ']' || tmp
== str
+ 1) {
886 semantic_error("Array index must be a"
893 } else { /* Structure */
896 (*fieldp
)->ref
= false;
897 } else if (tmp
[1] == '>') {
899 (*fieldp
)->ref
= true;
901 semantic_error("Argument parse error: %s\n",
905 tmp
= strpbrk(str
, "-.[");
908 (*fieldp
)->name
= strndup(str
, tmp
- str
);
909 if ((*fieldp
)->name
== NULL
)
912 goodname
= (*fieldp
)->name
;
913 pr_debug("%s(%d), ", (*fieldp
)->name
, (*fieldp
)->ref
);
914 fieldp
= &(*fieldp
)->next
;
917 (*fieldp
)->name
= strdup(str
);
918 if ((*fieldp
)->name
== NULL
)
921 goodname
= (*fieldp
)->name
;
922 pr_debug("%s(%d)\n", (*fieldp
)->name
, (*fieldp
)->ref
);
924 /* If no name is specified, set the last field name (not array index)*/
926 arg
->name
= strdup(goodname
);
927 if (arg
->name
== NULL
)
933 /* Parse perf-probe event command */
934 int parse_perf_probe_command(const char *cmd
, struct perf_probe_event
*pev
)
937 int argc
, i
, ret
= 0;
939 argv
= argv_split(cmd
, &argc
);
941 pr_debug("Failed to split arguments.\n");
944 if (argc
- 1 > MAX_PROBE_ARGS
) {
945 semantic_error("Too many probe arguments (%d).\n", argc
- 1);
949 /* Parse probe point */
950 ret
= parse_perf_probe_point(argv
[0], pev
);
954 /* Copy arguments and ensure return probe has no C argument */
955 pev
->nargs
= argc
- 1;
956 pev
->args
= zalloc(sizeof(struct perf_probe_arg
) * pev
->nargs
);
957 if (pev
->args
== NULL
) {
961 for (i
= 0; i
< pev
->nargs
&& ret
>= 0; i
++) {
962 ret
= parse_perf_probe_arg(argv
[i
+ 1], &pev
->args
[i
]);
964 is_c_varname(pev
->args
[i
].var
) && pev
->point
.retprobe
) {
965 semantic_error("You can't specify local variable for"
976 /* Return true if this perf_probe_event requires debuginfo */
977 bool perf_probe_event_need_dwarf(struct perf_probe_event
*pev
)
981 if (pev
->point
.file
|| pev
->point
.line
|| pev
->point
.lazy_line
)
984 for (i
= 0; i
< pev
->nargs
; i
++)
985 if (is_c_varname(pev
->args
[i
].var
))
991 /* Parse probe_events event into struct probe_point */
992 static int parse_probe_trace_command(const char *cmd
,
993 struct probe_trace_event
*tev
)
995 struct probe_trace_point
*tp
= &tev
->point
;
1001 pr_debug("Parsing probe_events: %s\n", cmd
);
1002 argv
= argv_split(cmd
, &argc
);
1004 pr_debug("Failed to split arguments.\n");
1008 semantic_error("Too few probe arguments.\n");
1013 /* Scan event and group name. */
1014 ret
= sscanf(argv
[0], "%c:%a[^/ \t]/%a[^ \t]",
1015 &pr
, (float *)(void *)&tev
->group
,
1016 (float *)(void *)&tev
->event
);
1018 semantic_error("Failed to parse event name: %s\n", argv
[0]);
1022 pr_debug("Group:%s Event:%s probe:%c\n", tev
->group
, tev
->event
, pr
);
1024 tp
->retprobe
= (pr
== 'r');
1026 /* Scan function name and offset */
1027 ret
= sscanf(argv
[1], "%a[^+]+%lu", (float *)(void *)&tp
->symbol
,
1032 tev
->nargs
= argc
- 2;
1033 tev
->args
= zalloc(sizeof(struct probe_trace_arg
) * tev
->nargs
);
1034 if (tev
->args
== NULL
) {
1038 for (i
= 0; i
< tev
->nargs
; i
++) {
1039 p
= strchr(argv
[i
+ 2], '=');
1040 if (p
) /* We don't need which register is assigned. */
1044 tev
->args
[i
].name
= strdup(argv
[i
+ 2]);
1045 /* TODO: parse regs and offset */
1046 tev
->args
[i
].value
= strdup(p
);
1047 if (tev
->args
[i
].name
== NULL
|| tev
->args
[i
].value
== NULL
) {
1058 /* Compose only probe arg */
1059 int synthesize_perf_probe_arg(struct perf_probe_arg
*pa
, char *buf
, size_t len
)
1061 struct perf_probe_arg_field
*field
= pa
->field
;
1065 if (pa
->name
&& pa
->var
)
1066 ret
= e_snprintf(tmp
, len
, "%s=%s", pa
->name
, pa
->var
);
1068 ret
= e_snprintf(tmp
, len
, "%s", pa
->name
? pa
->name
: pa
->var
);
1075 if (field
->name
[0] == '[')
1076 ret
= e_snprintf(tmp
, len
, "%s", field
->name
);
1078 ret
= e_snprintf(tmp
, len
, "%s%s",
1079 field
->ref
? "->" : ".", field
->name
);
1084 field
= field
->next
;
1088 ret
= e_snprintf(tmp
, len
, ":%s", pa
->type
);
1097 pr_debug("Failed to synthesize perf probe argument: %s\n",
1102 /* Compose only probe point (not argument) */
1103 static char *synthesize_perf_probe_point(struct perf_probe_point
*pp
)
1106 char offs
[32] = "", line
[32] = "", file
[32] = "";
1109 buf
= zalloc(MAX_CMDLEN
);
1115 ret
= e_snprintf(offs
, 32, "+%lu", pp
->offset
);
1120 ret
= e_snprintf(line
, 32, ":%d", pp
->line
);
1128 tmp
= strchr(pp
->file
+ len
- 30, '/');
1129 tmp
= tmp
? tmp
+ 1 : pp
->file
+ len
- 30;
1131 ret
= e_snprintf(file
, 32, "@%s", tmp
);
1137 ret
= e_snprintf(buf
, MAX_CMDLEN
, "%s%s%s%s%s", pp
->function
,
1138 offs
, pp
->retprobe
? "%return" : "", line
,
1141 ret
= e_snprintf(buf
, MAX_CMDLEN
, "%s%s", file
, line
);
1147 pr_debug("Failed to synthesize perf probe point: %s\n",
1155 char *synthesize_perf_probe_command(struct perf_probe_event
*pev
)
1160 buf
= synthesize_perf_probe_point(&pev
->point
);
1165 for (i
= 0; i
< pev
->nargs
; i
++) {
1166 ret
= e_snprintf(&buf
[len
], MAX_CMDLEN
- len
, " %s",
1179 static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref
*ref
,
1180 char **buf
, size_t *buflen
,
1185 depth
= __synthesize_probe_trace_arg_ref(ref
->next
, buf
,
1191 ret
= e_snprintf(*buf
, *buflen
, "%+ld(", ref
->offset
);
1203 static int synthesize_probe_trace_arg(struct probe_trace_arg
*arg
,
1204 char *buf
, size_t buflen
)
1206 struct probe_trace_arg_ref
*ref
= arg
->ref
;
1210 /* Argument name or separator */
1212 ret
= e_snprintf(buf
, buflen
, " %s=", arg
->name
);
1214 ret
= e_snprintf(buf
, buflen
, " ");
1220 /* Special case: @XXX */
1221 if (arg
->value
[0] == '@' && arg
->ref
)
1224 /* Dereferencing arguments */
1226 depth
= __synthesize_probe_trace_arg_ref(ref
, &buf
,
1232 /* Print argument value */
1233 if (arg
->value
[0] == '@' && arg
->ref
)
1234 ret
= e_snprintf(buf
, buflen
, "%s%+ld", arg
->value
,
1237 ret
= e_snprintf(buf
, buflen
, "%s", arg
->value
);
1245 ret
= e_snprintf(buf
, buflen
, ")");
1251 /* Print argument type */
1253 ret
= e_snprintf(buf
, buflen
, ":%s", arg
->type
);
1262 char *synthesize_probe_trace_command(struct probe_trace_event
*tev
)
1264 struct probe_trace_point
*tp
= &tev
->point
;
1268 buf
= zalloc(MAX_CMDLEN
);
1272 len
= e_snprintf(buf
, MAX_CMDLEN
, "%c:%s/%s %s+%lu",
1273 tp
->retprobe
? 'r' : 'p',
1274 tev
->group
, tev
->event
,
1275 tp
->symbol
, tp
->offset
);
1279 for (i
= 0; i
< tev
->nargs
; i
++) {
1280 ret
= synthesize_probe_trace_arg(&tev
->args
[i
], buf
+ len
,
1293 static int convert_to_perf_probe_event(struct probe_trace_event
*tev
,
1294 struct perf_probe_event
*pev
)
1299 /* Convert event/group name */
1300 pev
->event
= strdup(tev
->event
);
1301 pev
->group
= strdup(tev
->group
);
1302 if (pev
->event
== NULL
|| pev
->group
== NULL
)
1305 /* Convert trace_point to probe_point */
1306 ret
= kprobe_convert_to_perf_probe(&tev
->point
, &pev
->point
);
1310 /* Convert trace_arg to probe_arg */
1311 pev
->nargs
= tev
->nargs
;
1312 pev
->args
= zalloc(sizeof(struct perf_probe_arg
) * pev
->nargs
);
1313 if (pev
->args
== NULL
)
1315 for (i
= 0; i
< tev
->nargs
&& ret
>= 0; i
++) {
1316 if (tev
->args
[i
].name
)
1317 pev
->args
[i
].name
= strdup(tev
->args
[i
].name
);
1319 ret
= synthesize_probe_trace_arg(&tev
->args
[i
],
1321 pev
->args
[i
].name
= strdup(buf
);
1323 if (pev
->args
[i
].name
== NULL
&& ret
>= 0)
1328 clear_perf_probe_event(pev
);
1333 void clear_perf_probe_event(struct perf_probe_event
*pev
)
1335 struct perf_probe_point
*pp
= &pev
->point
;
1336 struct perf_probe_arg_field
*field
, *next
;
1348 free(pp
->lazy_line
);
1349 for (i
= 0; i
< pev
->nargs
; i
++) {
1350 if (pev
->args
[i
].name
)
1351 free(pev
->args
[i
].name
);
1352 if (pev
->args
[i
].var
)
1353 free(pev
->args
[i
].var
);
1354 if (pev
->args
[i
].type
)
1355 free(pev
->args
[i
].type
);
1356 field
= pev
->args
[i
].field
;
1367 memset(pev
, 0, sizeof(*pev
));
1370 static void clear_probe_trace_event(struct probe_trace_event
*tev
)
1372 struct probe_trace_arg_ref
*ref
, *next
;
1379 if (tev
->point
.symbol
)
1380 free(tev
->point
.symbol
);
1381 for (i
= 0; i
< tev
->nargs
; i
++) {
1382 if (tev
->args
[i
].name
)
1383 free(tev
->args
[i
].name
);
1384 if (tev
->args
[i
].value
)
1385 free(tev
->args
[i
].value
);
1386 if (tev
->args
[i
].type
)
1387 free(tev
->args
[i
].type
);
1388 ref
= tev
->args
[i
].ref
;
1397 memset(tev
, 0, sizeof(*tev
));
1400 static int open_kprobe_events(bool readwrite
)
1403 const char *__debugfs
;
1406 __debugfs
= debugfs_find_mountpoint();
1407 if (__debugfs
== NULL
) {
1408 pr_warning("Debugfs is not mounted.\n");
1412 ret
= e_snprintf(buf
, PATH_MAX
, "%stracing/kprobe_events", __debugfs
);
1414 pr_debug("Opening %s write=%d\n", buf
, readwrite
);
1415 if (readwrite
&& !probe_event_dry_run
)
1416 ret
= open(buf
, O_RDWR
, O_APPEND
);
1418 ret
= open(buf
, O_RDONLY
, 0);
1422 if (errno
== ENOENT
)
1423 pr_warning("kprobe_events file does not exist - please"
1424 " rebuild kernel with CONFIG_KPROBE_EVENT.\n");
1426 pr_warning("Failed to open kprobe_events file: %s\n",
1432 /* Get raw string list of current kprobe_events */
1433 static struct strlist
*get_probe_trace_command_rawlist(int fd
)
1437 char buf
[MAX_CMDLEN
];
1441 sl
= strlist__new(true, NULL
);
1443 fp
= fdopen(dup(fd
), "r");
1445 p
= fgets(buf
, MAX_CMDLEN
, fp
);
1449 idx
= strlen(p
) - 1;
1452 ret
= strlist__add(sl
, buf
);
1454 pr_debug("strlist__add failed: %s\n", strerror(-ret
));
1455 strlist__delete(sl
);
1465 static int show_perf_probe_event(struct perf_probe_event
*pev
)
1471 /* Synthesize only event probe point */
1472 place
= synthesize_perf_probe_point(&pev
->point
);
1476 ret
= e_snprintf(buf
, 128, "%s:%s", pev
->group
, pev
->event
);
1480 printf(" %-20s (on %s", buf
, place
);
1482 if (pev
->nargs
> 0) {
1484 for (i
= 0; i
< pev
->nargs
; i
++) {
1485 ret
= synthesize_perf_probe_arg(&pev
->args
[i
],
1497 /* List up current perf-probe events */
1498 int show_perf_probe_events(void)
1501 struct probe_trace_event tev
;
1502 struct perf_probe_event pev
;
1503 struct strlist
*rawlist
;
1504 struct str_node
*ent
;
1507 ret
= init_vmlinux();
1511 memset(&tev
, 0, sizeof(tev
));
1512 memset(&pev
, 0, sizeof(pev
));
1514 fd
= open_kprobe_events(false);
1518 rawlist
= get_probe_trace_command_rawlist(fd
);
1523 strlist__for_each(ent
, rawlist
) {
1524 ret
= parse_probe_trace_command(ent
->s
, &tev
);
1526 ret
= convert_to_perf_probe_event(&tev
, &pev
);
1528 ret
= show_perf_probe_event(&pev
);
1530 clear_perf_probe_event(&pev
);
1531 clear_probe_trace_event(&tev
);
1535 strlist__delete(rawlist
);
1540 /* Get current perf-probe event names */
1541 static struct strlist
*get_probe_trace_event_names(int fd
, bool include_group
)
1544 struct strlist
*sl
, *rawlist
;
1545 struct str_node
*ent
;
1546 struct probe_trace_event tev
;
1549 memset(&tev
, 0, sizeof(tev
));
1550 rawlist
= get_probe_trace_command_rawlist(fd
);
1551 sl
= strlist__new(true, NULL
);
1552 strlist__for_each(ent
, rawlist
) {
1553 ret
= parse_probe_trace_command(ent
->s
, &tev
);
1556 if (include_group
) {
1557 ret
= e_snprintf(buf
, 128, "%s:%s", tev
.group
,
1560 ret
= strlist__add(sl
, buf
);
1562 ret
= strlist__add(sl
, tev
.event
);
1563 clear_probe_trace_event(&tev
);
1567 strlist__delete(rawlist
);
1570 strlist__delete(sl
);
1576 static int write_probe_trace_event(int fd
, struct probe_trace_event
*tev
)
1579 char *buf
= synthesize_probe_trace_command(tev
);
1582 pr_debug("Failed to synthesize probe trace event.\n");
1586 pr_debug("Writing event: %s\n", buf
);
1587 if (!probe_event_dry_run
) {
1588 ret
= write(fd
, buf
, strlen(buf
));
1590 pr_warning("Failed to write event: %s\n",
1597 static int get_new_event_name(char *buf
, size_t len
, const char *base
,
1598 struct strlist
*namelist
, bool allow_suffix
)
1603 ret
= e_snprintf(buf
, len
, "%s", base
);
1605 pr_debug("snprintf() failed: %s\n", strerror(-ret
));
1608 if (!strlist__has_entry(namelist
, buf
))
1611 if (!allow_suffix
) {
1612 pr_warning("Error: event \"%s\" already exists. "
1613 "(Use -f to force duplicates.)\n", base
);
1617 /* Try to add suffix */
1618 for (i
= 1; i
< MAX_EVENT_INDEX
; i
++) {
1619 ret
= e_snprintf(buf
, len
, "%s_%d", base
, i
);
1621 pr_debug("snprintf() failed: %s\n", strerror(-ret
));
1624 if (!strlist__has_entry(namelist
, buf
))
1627 if (i
== MAX_EVENT_INDEX
) {
1628 pr_warning("Too many events are on the same function.\n");
1635 static int __add_probe_trace_events(struct perf_probe_event
*pev
,
1636 struct probe_trace_event
*tevs
,
1637 int ntevs
, bool allow_suffix
)
1640 struct probe_trace_event
*tev
= NULL
;
1642 const char *event
, *group
;
1643 struct strlist
*namelist
;
1645 fd
= open_kprobe_events(true);
1648 /* Get current event names */
1649 namelist
= get_probe_trace_event_names(fd
, false);
1651 pr_debug("Failed to get current event list.\n");
1656 printf("Add new event%s\n", (ntevs
> 1) ? "s:" : ":");
1657 for (i
= 0; i
< ntevs
; i
++) {
1662 if (pev
->point
.function
)
1663 event
= pev
->point
.function
;
1665 event
= tev
->point
.symbol
;
1669 group
= PERFPROBE_GROUP
;
1671 /* Get an unused new event name */
1672 ret
= get_new_event_name(buf
, 64, event
,
1673 namelist
, allow_suffix
);
1678 tev
->event
= strdup(event
);
1679 tev
->group
= strdup(group
);
1680 if (tev
->event
== NULL
|| tev
->group
== NULL
) {
1684 ret
= write_probe_trace_event(fd
, tev
);
1687 /* Add added event name to namelist */
1688 strlist__add(namelist
, event
);
1690 /* Trick here - save current event/group */
1693 pev
->event
= tev
->event
;
1694 pev
->group
= tev
->group
;
1695 show_perf_probe_event(pev
);
1696 /* Trick here - restore current event/group */
1697 pev
->event
= (char *)event
;
1698 pev
->group
= (char *)group
;
1701 * Probes after the first probe which comes from same
1702 * user input are always allowed to add suffix, because
1703 * there might be several addresses corresponding to
1706 allow_suffix
= true;
1710 /* Show how to use the event. */
1711 printf("\nYou can now use it on all perf tools, such as:\n\n");
1712 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev
->group
,
1716 strlist__delete(namelist
);
1721 static int convert_to_probe_trace_events(struct perf_probe_event
*pev
,
1722 struct probe_trace_event
**tevs
,
1723 int max_tevs
, const char *module
)
1727 struct probe_trace_event
*tev
;
1729 /* Convert perf_probe_event with debuginfo */
1730 ret
= try_to_find_probe_trace_events(pev
, tevs
, max_tevs
, module
);
1734 /* Allocate trace event buffer */
1735 tev
= *tevs
= zalloc(sizeof(struct probe_trace_event
));
1739 /* Copy parameters */
1740 tev
->point
.symbol
= strdup(pev
->point
.function
);
1741 if (tev
->point
.symbol
== NULL
) {
1745 tev
->point
.offset
= pev
->point
.offset
;
1746 tev
->point
.retprobe
= pev
->point
.retprobe
;
1747 tev
->nargs
= pev
->nargs
;
1749 tev
->args
= zalloc(sizeof(struct probe_trace_arg
)
1751 if (tev
->args
== NULL
) {
1755 for (i
= 0; i
< tev
->nargs
; i
++) {
1756 if (pev
->args
[i
].name
) {
1757 tev
->args
[i
].name
= strdup(pev
->args
[i
].name
);
1758 if (tev
->args
[i
].name
== NULL
) {
1763 tev
->args
[i
].value
= strdup(pev
->args
[i
].var
);
1764 if (tev
->args
[i
].value
== NULL
) {
1768 if (pev
->args
[i
].type
) {
1769 tev
->args
[i
].type
= strdup(pev
->args
[i
].type
);
1770 if (tev
->args
[i
].type
== NULL
) {
1778 /* Currently just checking function name from symbol map */
1779 sym
= __find_kernel_function_by_name(tev
->point
.symbol
, NULL
);
1781 pr_warning("Kernel symbol \'%s\' not found.\n",
1789 clear_probe_trace_event(tev
);
1795 struct __event_package
{
1796 struct perf_probe_event
*pev
;
1797 struct probe_trace_event
*tevs
;
1801 int add_perf_probe_events(struct perf_probe_event
*pevs
, int npevs
,
1802 int max_tevs
, const char *module
, bool force_add
)
1805 struct __event_package
*pkgs
;
1807 pkgs
= zalloc(sizeof(struct __event_package
) * npevs
);
1811 /* Init vmlinux path */
1812 ret
= init_vmlinux();
1818 /* Loop 1: convert all events */
1819 for (i
= 0; i
< npevs
; i
++) {
1820 pkgs
[i
].pev
= &pevs
[i
];
1821 /* Convert with or without debuginfo */
1822 ret
= convert_to_probe_trace_events(pkgs
[i
].pev
,
1828 pkgs
[i
].ntevs
= ret
;
1831 /* Loop 2: add all events */
1832 for (i
= 0; i
< npevs
; i
++) {
1833 ret
= __add_probe_trace_events(pkgs
[i
].pev
, pkgs
[i
].tevs
,
1834 pkgs
[i
].ntevs
, force_add
);
1839 /* Loop 3: cleanup and free trace events */
1840 for (i
= 0; i
< npevs
; i
++) {
1841 for (j
= 0; j
< pkgs
[i
].ntevs
; j
++)
1842 clear_probe_trace_event(&pkgs
[i
].tevs
[j
]);
1850 static int __del_trace_probe_event(int fd
, struct str_node
*ent
)
1856 /* Convert from perf-probe event to trace-probe event */
1857 ret
= e_snprintf(buf
, 128, "-:%s", ent
->s
);
1861 p
= strchr(buf
+ 2, ':');
1863 pr_debug("Internal error: %s should have ':' but not.\n",
1870 pr_debug("Writing event: %s\n", buf
);
1871 ret
= write(fd
, buf
, strlen(buf
));
1875 printf("Remove event: %s\n", ent
->s
);
1878 pr_warning("Failed to delete event: %s\n", strerror(-ret
));
1882 static int del_trace_probe_event(int fd
, const char *group
,
1883 const char *event
, struct strlist
*namelist
)
1886 struct str_node
*ent
, *n
;
1887 int found
= 0, ret
= 0;
1889 ret
= e_snprintf(buf
, 128, "%s:%s", group
, event
);
1891 pr_err("Failed to copy event.\n");
1895 if (strpbrk(buf
, "*?")) { /* Glob-exp */
1896 strlist__for_each_safe(ent
, n
, namelist
)
1897 if (strglobmatch(ent
->s
, buf
)) {
1899 ret
= __del_trace_probe_event(fd
, ent
);
1902 strlist__remove(namelist
, ent
);
1905 ent
= strlist__find(namelist
, buf
);
1908 ret
= __del_trace_probe_event(fd
, ent
);
1910 strlist__remove(namelist
, ent
);
1913 if (found
== 0 && ret
>= 0)
1914 pr_info("Info: Event \"%s\" does not exist.\n", buf
);
1919 int del_perf_probe_events(struct strlist
*dellist
)
1922 const char *group
, *event
;
1924 struct str_node
*ent
;
1925 struct strlist
*namelist
;
1927 fd
= open_kprobe_events(true);
1931 /* Get current event names */
1932 namelist
= get_probe_trace_event_names(fd
, true);
1933 if (namelist
== NULL
)
1936 strlist__for_each(ent
, dellist
) {
1937 str
= strdup(ent
->s
);
1942 pr_debug("Parsing: %s\n", str
);
1943 p
= strchr(str
, ':');
1952 pr_debug("Group: %s, Event: %s\n", group
, event
);
1953 ret
= del_trace_probe_event(fd
, group
, event
, namelist
);
1958 strlist__delete(namelist
);
1963 /* TODO: don't use a global variable for filter ... */
1964 static struct strfilter
*available_func_filter
;
1967 * If a symbol corresponds to a function with global binding and
1968 * matches filter return 0. For all others return 1.
1970 static int filter_available_functions(struct map
*map __unused
,
1973 if (sym
->binding
== STB_GLOBAL
&&
1974 strfilter__compare(available_func_filter
, sym
->name
))
1979 int show_available_funcs(const char *module
, struct strfilter
*_filter
)
1986 ret
= init_vmlinux();
1990 map
= kernel_get_module_map(module
);
1992 pr_err("Failed to find %s map.\n", (module
) ? : "kernel");
1995 available_func_filter
= _filter
;
1996 if (map__load(map
, filter_available_functions
)) {
1997 pr_err("Failed to load map.\n");
2000 if (!dso__sorted_by_name(map
->dso
, map
->type
))
2001 dso__sort_by_name(map
->dso
, map
->type
);
2003 dso__fprintf_symbols_by_name(map
->dso
, map
->type
, stdout
);