blob: 152d6c9b1fa4a07619c7cd3d11a7f45b7777a1ff [file] [log] [blame]
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001/*
2 * builtin-probe.c
3 *
4 * Builtin probe command: Set up probe events by C expression
5 *
6 * Written by Masami Hiramatsu <mhiramat@redhat.com>
7 *
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.
12 *
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.
17 *
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.
21 *
22 */
23#define _GNU_SOURCE
24#include <sys/utsname.h>
25#include <sys/types.h>
26#include <sys/stat.h>
27#include <fcntl.h>
28#include <errno.h>
29#include <stdio.h>
30#include <unistd.h>
31#include <stdlib.h>
32#include <string.h>
33
34#undef _GNU_SOURCE
35#include "perf.h"
36#include "builtin.h"
37#include "util/util.h"
Masami Hiramatsufa282442009-12-08 17:03:23 -050038#include "util/strlist.h"
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040039#include "util/event.h"
40#include "util/debug.h"
Masami Hiramatsu96c96612009-12-16 17:24:00 -050041#include "util/debugfs.h"
Masami Hiramatsua1281682009-12-15 10:32:33 -050042#include "util/symbol.h"
43#include "util/thread.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040044#include "util/parse-options.h"
45#include "util/parse-events.h" /* For debugfs_path */
46#include "util/probe-finder.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050047#include "util/probe-event.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040048
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040049#define MAX_PATH_LEN 256
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040050
51/* Session management structure */
52static struct {
Masami Hiramatsufac13fd2009-12-15 10:31:14 -050053 bool need_dwarf;
54 bool list_events;
Masami Hiramatsud761b082009-12-15 10:32:25 -050055 bool force_add;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050056 bool show_lines;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040057 int nr_probe;
58 struct probe_point probes[MAX_PROBES];
Masami Hiramatsufa282442009-12-08 17:03:23 -050059 struct strlist *dellist;
Arnaldo Carvalho de Melo8ad94c62010-02-03 16:52:03 -020060 struct map_groups kmap_groups;
61 struct map *kmaps[MAP__NR_TYPES];
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050062 struct line_range line_range;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040063} session;
64
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050065
Masami Hiramatsu253977b2009-10-27 16:43:10 -040066/* Parse an event definition. Note that any error must die. */
67static void parse_probe_event(const char *str)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040068{
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040069 struct probe_point *pp = &session.probes[session.nr_probe];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040070
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -020071 pr_debug("probe-definition(%d): %s\n", session.nr_probe, str);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040072 if (++session.nr_probe == MAX_PROBES)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050073 die("Too many probes (> %d) are specified.", MAX_PROBES);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040074
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050075 /* Parse perf-probe event into probe_point */
Masami Hiramatsufac13fd2009-12-15 10:31:14 -050076 parse_perf_probe_event(str, pp, &session.need_dwarf);
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -040077
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -020078 pr_debug("%d arguments\n", pp->nr_args);
Masami Hiramatsu46ab4922009-10-27 16:43:02 -040079}
80
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -050081static void parse_probe_event_argv(int argc, const char **argv)
82{
83 int i, len;
84 char *buf;
85
86 /* Bind up rest arguments */
87 len = 0;
88 for (i = 0; i < argc; i++)
89 len += strlen(argv[i]) + 1;
90 buf = zalloc(len + 1);
91 if (!buf)
92 die("Failed to allocate memory for binding arguments.");
93 len = 0;
94 for (i = 0; i < argc; i++)
95 len += sprintf(&buf[len], "%s ", argv[i]);
96 parse_probe_event(buf);
97 free(buf);
98}
99
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400100static int opt_add_probe_event(const struct option *opt __used,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400101 const char *str, int unset __used)
102{
103 if (str)
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400104 parse_probe_event(str);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400105 return 0;
106}
107
Masami Hiramatsufa282442009-12-08 17:03:23 -0500108static int opt_del_probe_event(const struct option *opt __used,
109 const char *str, int unset __used)
110{
111 if (str) {
112 if (!session.dellist)
113 session.dellist = strlist__new(true, NULL);
114 strlist__add(session.dellist, str);
115 }
116 return 0;
117}
118
Masami Hiramatsu62bdc1b2009-12-15 10:32:40 -0500119/* Currently just checking function name from symbol map */
120static void evaluate_probe_point(struct probe_point *pp)
121{
122 struct symbol *sym;
Arnaldo Carvalho de Melo8ad94c62010-02-03 16:52:03 -0200123 sym = map__find_symbol_by_name(session.kmaps[MAP__FUNCTION],
124 pp->function, NULL);
Masami Hiramatsu62bdc1b2009-12-15 10:32:40 -0500125 if (!sym)
126 die("Kernel symbol \'%s\' not found - probe not added.",
127 pp->function);
128}
129
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500130#ifndef NO_DWARF_SUPPORT
Masami Hiramatsua1281682009-12-15 10:32:33 -0500131static int open_vmlinux(void)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400132{
Arnaldo Carvalho de Melo8ad94c62010-02-03 16:52:03 -0200133 if (map__load(session.kmaps[MAP__FUNCTION], NULL) < 0) {
Masami Hiramatsua1281682009-12-15 10:32:33 -0500134 pr_debug("Failed to load kernel map.\n");
135 return -EINVAL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400136 }
Arnaldo Carvalho de Melo8ad94c62010-02-03 16:52:03 -0200137 pr_debug("Try to open %s\n",
138 session.kmaps[MAP__FUNCTION]->dso->long_name);
139 return open(session.kmaps[MAP__FUNCTION]->dso->long_name, O_RDONLY);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400140}
Hitoshi Mitake0eda7382010-01-16 21:31:16 +0900141
142static int opt_show_lines(const struct option *opt __used,
143 const char *str, int unset __used)
144{
145 if (str)
146 parse_line_range_desc(str, &session.line_range);
147 INIT_LIST_HEAD(&session.line_range.line_list);
148 session.show_lines = true;
149 return 0;
150}
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400151#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400152
153static const char * const probe_usage[] = {
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400154 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]",
155 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]",
Masami Hiramatsufa282442009-12-08 17:03:23 -0500156 "perf probe [<options>] --del '[GROUP:]EVENT' ...",
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500157 "perf probe --list",
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500158#ifndef NO_DWARF_SUPPORT
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500159 "perf probe --line 'LINEDESC'",
Masami Hiramatsuf3ab4812010-02-25 08:35:12 -0500160#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400161 NULL
162};
163
164static const struct option options[] = {
Masami Hiramatsu89c69c02009-10-16 20:08:10 -0400165 OPT_BOOLEAN('v', "verbose", &verbose,
166 "be more verbose (show parsed arguments, etc)"),
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500167#ifndef NO_DWARF_SUPPORT
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200168 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
Masami Hiramatsua1281682009-12-15 10:32:33 -0500169 "file", "vmlinux pathname"),
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400170#endif
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500171 OPT_BOOLEAN('l', "list", &session.list_events,
172 "list up current probe events"),
Masami Hiramatsufa282442009-12-08 17:03:23 -0500173 OPT_CALLBACK('d', "del", NULL, "[GROUP:]EVENT", "delete a probe event.",
174 opt_del_probe_event),
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400175 OPT_CALLBACK('a', "add", NULL,
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500176#ifdef NO_DWARF_SUPPORT
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500177 "[EVENT=]FUNC[+OFF|%return] [ARG ...]",
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400178#else
Masami Hiramatsu32cb0dd2010-03-03 22:38:43 -0500179 "[EVENT=]FUNC[@SRC][+OFF|%return|:RL|;PT]|SRC:AL|SRC;PT"
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500180 " [ARG ...]",
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400181#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400182 "probe point definition, where\n"
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500183 "\t\tGROUP:\tGroup name (optional)\n"
184 "\t\tEVENT:\tEvent name\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400185 "\t\tFUNC:\tFunction name\n"
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500186 "\t\tOFF:\tOffset from function entry (in byte)\n"
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400187 "\t\t%return:\tPut the probe at function return\n"
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500188#ifdef NO_DWARF_SUPPORT
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400189 "\t\tARG:\tProbe argument (only \n"
190#else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400191 "\t\tSRC:\tSource code path\n"
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500192 "\t\tRL:\tRelative line number from function entry.\n"
193 "\t\tAL:\tAbsolute line number in file.\n"
194 "\t\tPT:\tLazy expression of line code.\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400195 "\t\tARG:\tProbe argument (local variable name or\n"
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400196#endif
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500197 "\t\t\tkprobe-tracer argument format.)\n",
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400198 opt_add_probe_event),
Masami Hiramatsud761b082009-12-15 10:32:25 -0500199 OPT_BOOLEAN('f', "force", &session.force_add, "forcibly add events"
200 " with existing name"),
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500201#ifndef NO_DWARF_SUPPORT
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500202 OPT_CALLBACK('L', "line", NULL,
203 "FUNC[:RLN[+NUM|:RLN2]]|SRC:ALN[+NUM|:ALN2]",
204 "Show source code lines.", opt_show_lines),
205#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400206 OPT_END()
207};
208
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500209/* Initialize symbol maps for vmlinux */
210static void init_vmlinux(void)
211{
212 symbol_conf.sort_by_name = true;
213 if (symbol_conf.vmlinux_name == NULL)
214 symbol_conf.try_vmlinux_path = true;
215 else
216 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
217 if (symbol__init() < 0)
218 die("Failed to init symbol map.");
Arnaldo Carvalho de Melo8ad94c62010-02-03 16:52:03 -0200219
220 map_groups__init(&session.kmap_groups);
221 if (map_groups__create_kernel_maps(&session.kmap_groups,
222 session.kmaps) < 0)
223 die("Failed to create kernel maps.");
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500224}
225
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400226int cmd_probe(int argc, const char **argv, const char *prefix __used)
227{
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500228 int i, ret;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500229#ifndef NO_DWARF_SUPPORT
Xiao Guangrongbdad0db2009-12-02 16:08:41 +0800230 int fd;
231#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400232 struct probe_point *pp;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400233
234 argc = parse_options(argc, argv, options, probe_usage,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400235 PARSE_OPT_STOP_AT_NON_OPTION);
Masami Hiramatsuce11a602009-12-15 10:31:28 -0500236 if (argc > 0) {
237 if (strcmp(argv[0], "-") == 0) {
238 pr_warning(" Error: '-' is not supported.\n");
239 usage_with_options(probe_usage, options);
240 }
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500241 parse_probe_event_argv(argc, argv);
Masami Hiramatsuce11a602009-12-15 10:31:28 -0500242 }
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400243
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500244 if ((!session.nr_probe && !session.dellist && !session.list_events &&
245 !session.show_lines))
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400246 usage_with_options(probe_usage, options);
247
Masami Hiramatsu96c96612009-12-16 17:24:00 -0500248 if (debugfs_valid_mountpoint(debugfs_path) < 0)
249 die("Failed to find debugfs path.");
250
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500251 if (session.list_events) {
Masami Hiramatsufa282442009-12-08 17:03:23 -0500252 if (session.nr_probe != 0 || session.dellist) {
253 pr_warning(" Error: Don't use --list with"
254 " --add/--del.\n");
255 usage_with_options(probe_usage, options);
256 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500257 if (session.show_lines) {
258 pr_warning(" Error: Don't use --list with --line.\n");
259 usage_with_options(probe_usage, options);
260 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500261 show_perf_probe_events();
262 return 0;
263 }
264
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500265#ifndef NO_DWARF_SUPPORT
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500266 if (session.show_lines) {
267 if (session.nr_probe != 0 || session.dellist) {
268 pr_warning(" Error: Don't use --line with"
269 " --add/--del.\n");
270 usage_with_options(probe_usage, options);
271 }
272 init_vmlinux();
273 fd = open_vmlinux();
274 if (fd < 0)
275 die("Could not open debuginfo file.");
276 ret = find_line_range(fd, &session.line_range);
277 if (ret <= 0)
278 die("Source line is not found.\n");
279 close(fd);
280 show_line_range(&session.line_range);
281 return 0;
282 }
283#endif
284
Masami Hiramatsufa282442009-12-08 17:03:23 -0500285 if (session.dellist) {
286 del_trace_kprobe_events(session.dellist);
287 strlist__delete(session.dellist);
288 if (session.nr_probe == 0)
289 return 0;
290 }
291
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500292 /* Add probes */
293 init_vmlinux();
Masami Hiramatsua1281682009-12-15 10:32:33 -0500294
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400295 if (session.need_dwarf)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500296#ifdef NO_DWARF_SUPPORT
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500297 die("Debuginfo-analysis is not supported");
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500298#else /* !NO_DWARF_SUPPORT */
Masami Hiramatsuf41b1e42009-11-30 19:19:27 -0500299 pr_debug("Some probes require debuginfo.\n");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400300
Masami Hiramatsua1281682009-12-15 10:32:33 -0500301 fd = open_vmlinux();
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500302 if (fd < 0) {
303 if (session.need_dwarf)
Masami Hiramatsuf984f032009-12-08 17:03:09 -0500304 die("Could not open debuginfo file.");
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500305
Masami Hiramatsud3a2dbf2009-12-07 12:00:59 -0500306 pr_debug("Could not open vmlinux/module file."
307 " Try to use symbols.\n");
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500308 goto end_dwarf;
309 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400310
311 /* Searching probe points */
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500312 for (i = 0; i < session.nr_probe; i++) {
313 pp = &session.probes[i];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400314 if (pp->found)
315 continue;
316
317 lseek(fd, SEEK_SET, 0);
Masami Hiramatsu81cb8aa2010-02-25 08:35:34 -0500318 ret = find_probe_point(fd, pp);
Masami Hiramatsu411edfe2009-12-15 10:31:35 -0500319 if (ret > 0)
320 continue;
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500321 if (ret == 0) { /* No error but failed to find probe point. */
322 synthesize_perf_probe_point(pp);
323 die("Probe point '%s' not found. - probe not added.",
324 pp->probes[0]);
325 }
Masami Hiramatsu411edfe2009-12-15 10:31:35 -0500326 /* Error path */
327 if (session.need_dwarf) {
328 if (ret == -ENOENT)
329 pr_warning("No dwarf info found in the vmlinux - please rebuild with CONFIG_DEBUG_INFO=y.\n");
330 die("Could not analyze debuginfo.");
331 }
332 pr_debug("An error occurred in debuginfo analysis."
333 " Try to use symbols.\n");
334 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400335 }
336 close(fd);
337
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500338end_dwarf:
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500339#endif /* !NO_DWARF_SUPPORT */
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400340
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500341 /* Synthesize probes without dwarf */
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500342 for (i = 0; i < session.nr_probe; i++) {
343 pp = &session.probes[i];
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500344 if (pp->found) /* This probe is already found. */
345 continue;
346
Masami Hiramatsu62bdc1b2009-12-15 10:32:40 -0500347 evaluate_probe_point(pp);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500348 ret = synthesize_trace_kprobe_event(pp);
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500349 if (ret == -E2BIG)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500350 die("probe point definition becomes too long.");
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500351 else if (ret < 0)
352 die("Failed to synthesize a probe point.");
353 }
354
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400355 /* Settng up probe points */
Masami Hiramatsud761b082009-12-15 10:32:25 -0500356 add_trace_kprobe_events(session.probes, session.nr_probe,
357 session.force_add);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400358 return 0;
359}
360