4 * Builtin probe command: Set up probe events by C expression
6 * Written by Masami Hiramatsu <mhiramat@redhat.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include <sys/utsname.h>
25 #include <sys/types.h>
37 #include "util/util.h"
38 #include "util/strlist.h"
39 #include "util/event.h"
40 #include "util/debug.h"
41 #include "util/symbol.h"
42 #include "util/thread.h"
43 #include "util/session.h"
44 #include "util/parse-options.h"
45 #include "util/parse-events.h" /* For debugfs_path */
46 #include "util/probe-finder.h"
47 #include "util/probe-event.h"
49 #define MAX_PATH_LEN 256
50 #define MAX_PROBES 128
52 /* Session management structure */
58 struct probe_point probes
[MAX_PROBES
];
59 struct strlist
*dellist
;
60 struct perf_session
*psession
;
65 /* Parse an event definition. Note that any error must die. */
66 static void parse_probe_event(const char *str
)
68 struct probe_point
*pp
= &session
.probes
[session
.nr_probe
];
70 pr_debug("probe-definition(%d): %s\n", session
.nr_probe
, str
);
71 if (++session
.nr_probe
== MAX_PROBES
)
72 die("Too many probes (> %d) are specified.", MAX_PROBES
);
74 /* Parse perf-probe event into probe_point */
75 parse_perf_probe_event(str
, pp
, &session
.need_dwarf
);
77 pr_debug("%d arguments\n", pp
->nr_args
);
80 static void parse_probe_event_argv(int argc
, const char **argv
)
85 /* Bind up rest arguments */
87 for (i
= 0; i
< argc
; i
++)
88 len
+= strlen(argv
[i
]) + 1;
89 buf
= zalloc(len
+ 1);
91 die("Failed to allocate memory for binding arguments.");
93 for (i
= 0; i
< argc
; i
++)
94 len
+= sprintf(&buf
[len
], "%s ", argv
[i
]);
95 parse_probe_event(buf
);
99 static int opt_add_probe_event(const struct option
*opt __used
,
100 const char *str
, int unset __used
)
103 parse_probe_event(str
);
107 static int opt_del_probe_event(const struct option
*opt __used
,
108 const char *str
, int unset __used
)
111 if (!session
.dellist
)
112 session
.dellist
= strlist__new(true, NULL
);
113 strlist__add(session
.dellist
, str
);
118 /* Currently just checking function name from symbol map */
119 static void evaluate_probe_point(struct probe_point
*pp
)
122 sym
= map__find_symbol_by_name(session
.kmap
, pp
->function
,
123 session
.psession
, NULL
);
125 die("Kernel symbol \'%s\' not found - probe not added.",
130 static int open_vmlinux(void)
132 if (map__load(session
.kmap
, session
.psession
, NULL
) < 0) {
133 pr_debug("Failed to load kernel map.\n");
136 pr_debug("Try to open %s\n", session
.kmap
->dso
->long_name
);
137 return open(session
.kmap
->dso
->long_name
, O_RDONLY
);
141 static const char * const probe_usage
[] = {
142 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]",
143 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]",
144 "perf probe [<options>] --del '[GROUP:]EVENT' ...",
149 static const struct option options
[] = {
150 OPT_BOOLEAN('v', "verbose", &verbose
,
151 "be more verbose (show parsed arguments, etc)"),
153 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
154 "file", "vmlinux pathname"),
156 OPT_BOOLEAN('l', "list", &session
.list_events
,
157 "list up current probe events"),
158 OPT_CALLBACK('d', "del", NULL
, "[GROUP:]EVENT", "delete a probe event.",
159 opt_del_probe_event
),
160 OPT_CALLBACK('a', "add", NULL
,
162 "[EVENT=]FUNC[+OFFS|%return] [ARG ...]",
164 "[EVENT=]FUNC[+OFFS|%return|:RLN][@SRC]|SRC:ALN [ARG ...]",
166 "probe point definition, where\n"
167 "\t\tGROUP:\tGroup name (optional)\n"
168 "\t\tEVENT:\tEvent name\n"
169 "\t\tFUNC:\tFunction name\n"
170 "\t\tOFFS:\tOffset from function entry (in byte)\n"
171 "\t\t%return:\tPut the probe at function return\n"
173 "\t\tARG:\tProbe argument (only \n"
175 "\t\tSRC:\tSource code path\n"
176 "\t\tRLN:\tRelative line number from function entry.\n"
177 "\t\tALN:\tAbsolute line number in file.\n"
178 "\t\tARG:\tProbe argument (local variable name or\n"
180 "\t\t\tkprobe-tracer argument format.)\n",
181 opt_add_probe_event
),
182 OPT_BOOLEAN('f', "force", &session
.force_add
, "forcibly add events"
183 " with existing name"),
187 int cmd_probe(int argc
, const char **argv
, const char *prefix __used
)
193 struct probe_point
*pp
;
195 argc
= parse_options(argc
, argv
, options
, probe_usage
,
196 PARSE_OPT_STOP_AT_NON_OPTION
);
198 if (strcmp(argv
[0], "-") == 0) {
199 pr_warning(" Error: '-' is not supported.\n");
200 usage_with_options(probe_usage
, options
);
202 parse_probe_event_argv(argc
, argv
);
205 if ((!session
.nr_probe
&& !session
.dellist
&& !session
.list_events
))
206 usage_with_options(probe_usage
, options
);
208 if (session
.list_events
) {
209 if (session
.nr_probe
!= 0 || session
.dellist
) {
210 pr_warning(" Error: Don't use --list with"
212 usage_with_options(probe_usage
, options
);
214 show_perf_probe_events();
218 if (session
.dellist
) {
219 del_trace_kprobe_events(session
.dellist
);
220 strlist__delete(session
.dellist
);
221 if (session
.nr_probe
== 0)
225 /* Initialize symbol maps for vmlinux */
226 symbol_conf
.sort_by_name
= true;
227 if (symbol_conf
.vmlinux_name
== NULL
)
228 symbol_conf
.try_vmlinux_path
= true;
229 if (symbol__init() < 0)
230 die("Failed to init symbol map.");
231 session
.psession
= perf_session__new(NULL
, O_WRONLY
, false);
232 if (session
.psession
== NULL
)
233 die("Failed to init perf_session.");
234 session
.kmap
= map_groups__find_by_name(&session
.psession
->kmaps
,
236 "[kernel.kallsyms]");
238 die("Could not find kernel map.\n");
240 if (session
.need_dwarf
)
242 die("Debuginfo-analysis is not supported");
243 #else /* !NO_LIBDWARF */
244 pr_debug("Some probes require debuginfo.\n");
248 if (session
.need_dwarf
)
249 die("Could not open debuginfo file.");
251 pr_debug("Could not open vmlinux/module file."
252 " Try to use symbols.\n");
256 /* Searching probe points */
257 for (i
= 0; i
< session
.nr_probe
; i
++) {
258 pp
= &session
.probes
[i
];
262 lseek(fd
, SEEK_SET
, 0);
263 ret
= find_probepoint(fd
, pp
);
266 if (ret
== 0) { /* No error but failed to find probe point. */
267 synthesize_perf_probe_point(pp
);
268 die("Probe point '%s' not found. - probe not added.",
272 if (session
.need_dwarf
) {
274 pr_warning("No dwarf info found in the vmlinux - please rebuild with CONFIG_DEBUG_INFO=y.\n");
275 die("Could not analyze debuginfo.");
277 pr_debug("An error occurred in debuginfo analysis."
278 " Try to use symbols.\n");
284 #endif /* !NO_LIBDWARF */
286 /* Synthesize probes without dwarf */
287 for (i
= 0; i
< session
.nr_probe
; i
++) {
288 pp
= &session
.probes
[i
];
289 if (pp
->found
) /* This probe is already found. */
292 evaluate_probe_point(pp
);
293 ret
= synthesize_trace_kprobe_event(pp
);
295 die("probe point definition becomes too long.");
297 die("Failed to synthesize a probe point.");
300 /* Settng up probe points */
301 add_trace_kprobe_events(session
.probes
, session
.nr_probe
,