blob: 0584b7a0ed3662fb6ec881d8532f9921e43fa3a3 [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 Hiramatsua1281682009-12-15 10:32:33 -050041#include "util/symbol.h"
42#include "util/thread.h"
43#include "util/session.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
50#define MAX_PROBES 128
51
52/* Session management structure */
53static struct {
Masami Hiramatsufac13fd2009-12-15 10:31:14 -050054 bool need_dwarf;
55 bool list_events;
Masami Hiramatsud761b082009-12-15 10:32:25 -050056 bool force_add;
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;
Masami Hiramatsua1281682009-12-15 10:32:33 -050060 struct symbol_conf conf;
61 struct perf_session *psession;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040062} session;
63
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050064
Masami Hiramatsu253977b2009-10-27 16:43:10 -040065/* Parse an event definition. Note that any error must die. */
66static void parse_probe_event(const char *str)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040067{
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040068 struct probe_point *pp = &session.probes[session.nr_probe];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040069
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -020070 pr_debug("probe-definition(%d): %s\n", session.nr_probe, str);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040071 if (++session.nr_probe == MAX_PROBES)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050072 die("Too many probes (> %d) are specified.", MAX_PROBES);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040073
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050074 /* Parse perf-probe event into probe_point */
Masami Hiramatsufac13fd2009-12-15 10:31:14 -050075 parse_perf_probe_event(str, pp, &session.need_dwarf);
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -040076
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -020077 pr_debug("%d arguments\n", pp->nr_args);
Masami Hiramatsu46ab4922009-10-27 16:43:02 -040078}
79
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -050080static void parse_probe_event_argv(int argc, const char **argv)
81{
82 int i, len;
83 char *buf;
84
85 /* Bind up rest arguments */
86 len = 0;
87 for (i = 0; i < argc; i++)
88 len += strlen(argv[i]) + 1;
89 buf = zalloc(len + 1);
90 if (!buf)
91 die("Failed to allocate memory for binding arguments.");
92 len = 0;
93 for (i = 0; i < argc; i++)
94 len += sprintf(&buf[len], "%s ", argv[i]);
95 parse_probe_event(buf);
96 free(buf);
97}
98
Masami Hiramatsu253977b2009-10-27 16:43:10 -040099static int opt_add_probe_event(const struct option *opt __used,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400100 const char *str, int unset __used)
101{
102 if (str)
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400103 parse_probe_event(str);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400104 return 0;
105}
106
Masami Hiramatsufa282442009-12-08 17:03:23 -0500107static int opt_del_probe_event(const struct option *opt __used,
108 const char *str, int unset __used)
109{
110 if (str) {
111 if (!session.dellist)
112 session.dellist = strlist__new(true, NULL);
113 strlist__add(session.dellist, str);
114 }
115 return 0;
116}
117
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400118#ifndef NO_LIBDWARF
Masami Hiramatsua1281682009-12-15 10:32:33 -0500119static int open_vmlinux(void)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400120{
Masami Hiramatsua1281682009-12-15 10:32:33 -0500121 struct map *kmap;
122 kmap = map_groups__find_by_name(&session.psession->kmaps,
123 MAP__FUNCTION, "[kernel.kallsyms]");
124 if (!kmap) {
125 pr_debug("Could not find kernel map.\n");
126 return -ENOENT;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400127 }
Masami Hiramatsua1281682009-12-15 10:32:33 -0500128 if (map__load(kmap, session.psession, NULL) < 0) {
129 pr_debug("Failed to load kernel map.\n");
130 return -EINVAL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400131 }
Masami Hiramatsua1281682009-12-15 10:32:33 -0500132 pr_debug("Try to open %s\n", kmap->dso->long_name);
133 return open(kmap->dso->long_name, O_RDONLY);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400134}
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400135#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400136
137static const char * const probe_usage[] = {
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400138 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]",
139 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]",
Masami Hiramatsufa282442009-12-08 17:03:23 -0500140 "perf probe [<options>] --del '[GROUP:]EVENT' ...",
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500141 "perf probe --list",
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400142 NULL
143};
144
145static const struct option options[] = {
Masami Hiramatsu89c69c02009-10-16 20:08:10 -0400146 OPT_BOOLEAN('v', "verbose", &verbose,
147 "be more verbose (show parsed arguments, etc)"),
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400148#ifndef NO_LIBDWARF
Masami Hiramatsua1281682009-12-15 10:32:33 -0500149 OPT_STRING('k', "vmlinux", &session.conf.vmlinux_name,
150 "file", "vmlinux pathname"),
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400151#endif
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500152 OPT_BOOLEAN('l', "list", &session.list_events,
153 "list up current probe events"),
Masami Hiramatsufa282442009-12-08 17:03:23 -0500154 OPT_CALLBACK('d', "del", NULL, "[GROUP:]EVENT", "delete a probe event.",
155 opt_del_probe_event),
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400156 OPT_CALLBACK('a', "add", NULL,
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400157#ifdef NO_LIBDWARF
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500158 "[EVENT=]FUNC[+OFFS|%return] [ARG ...]",
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400159#else
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500160 "[EVENT=]FUNC[+OFFS|%return|:RLN][@SRC]|SRC:ALN [ARG ...]",
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400161#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400162 "probe point definition, where\n"
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500163 "\t\tGROUP:\tGroup name (optional)\n"
164 "\t\tEVENT:\tEvent name\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400165 "\t\tFUNC:\tFunction name\n"
166 "\t\tOFFS:\tOffset from function entry (in byte)\n"
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400167 "\t\t%return:\tPut the probe at function return\n"
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400168#ifdef NO_LIBDWARF
169 "\t\tARG:\tProbe argument (only \n"
170#else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400171 "\t\tSRC:\tSource code path\n"
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400172 "\t\tRLN:\tRelative line number from function entry.\n"
173 "\t\tALN:\tAbsolute line number in file.\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400174 "\t\tARG:\tProbe argument (local variable name or\n"
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400175#endif
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500176 "\t\t\tkprobe-tracer argument format.)\n",
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400177 opt_add_probe_event),
Masami Hiramatsud761b082009-12-15 10:32:25 -0500178 OPT_BOOLEAN('f', "force", &session.force_add, "forcibly add events"
179 " with existing name"),
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400180 OPT_END()
181};
182
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400183int cmd_probe(int argc, const char **argv, const char *prefix __used)
184{
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500185 int i, ret;
Xiao Guangrongbdad0db2009-12-02 16:08:41 +0800186#ifndef NO_LIBDWARF
187 int fd;
188#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400189 struct probe_point *pp;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400190
191 argc = parse_options(argc, argv, options, probe_usage,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400192 PARSE_OPT_STOP_AT_NON_OPTION);
Masami Hiramatsuce11a602009-12-15 10:31:28 -0500193 if (argc > 0) {
194 if (strcmp(argv[0], "-") == 0) {
195 pr_warning(" Error: '-' is not supported.\n");
196 usage_with_options(probe_usage, options);
197 }
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500198 parse_probe_event_argv(argc, argv);
Masami Hiramatsuce11a602009-12-15 10:31:28 -0500199 }
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400200
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500201 if ((!session.nr_probe && !session.dellist && !session.list_events))
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400202 usage_with_options(probe_usage, options);
203
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500204 if (session.list_events) {
Masami Hiramatsufa282442009-12-08 17:03:23 -0500205 if (session.nr_probe != 0 || session.dellist) {
206 pr_warning(" Error: Don't use --list with"
207 " --add/--del.\n");
208 usage_with_options(probe_usage, options);
209 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500210 show_perf_probe_events();
211 return 0;
212 }
213
Masami Hiramatsufa282442009-12-08 17:03:23 -0500214 if (session.dellist) {
215 del_trace_kprobe_events(session.dellist);
216 strlist__delete(session.dellist);
217 if (session.nr_probe == 0)
218 return 0;
219 }
220
Masami Hiramatsua1281682009-12-15 10:32:33 -0500221 /* Initialize symbol maps for vmlinux */
222 if (session.conf.vmlinux_name == NULL)
223 session.conf.try_vmlinux_path = true;
224 if (symbol__init(&session.conf) < 0)
225 die("Failed to init symbol map.");
226 session.psession = perf_session__new(NULL, O_WRONLY, false,
227 &session.conf);
228 if (session.psession == NULL)
229 die("Failed to init perf_session.");
230
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400231 if (session.need_dwarf)
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500232#ifdef NO_LIBDWARF
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500233 die("Debuginfo-analysis is not supported");
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500234#else /* !NO_LIBDWARF */
Masami Hiramatsuf41b1e42009-11-30 19:19:27 -0500235 pr_debug("Some probes require debuginfo.\n");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400236
Masami Hiramatsua1281682009-12-15 10:32:33 -0500237 fd = open_vmlinux();
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500238 if (fd < 0) {
239 if (session.need_dwarf)
Masami Hiramatsuf984f032009-12-08 17:03:09 -0500240 die("Could not open debuginfo file.");
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500241
Masami Hiramatsud3a2dbf2009-12-07 12:00:59 -0500242 pr_debug("Could not open vmlinux/module file."
243 " Try to use symbols.\n");
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500244 goto end_dwarf;
245 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400246
247 /* Searching probe points */
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500248 for (i = 0; i < session.nr_probe; i++) {
249 pp = &session.probes[i];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400250 if (pp->found)
251 continue;
252
253 lseek(fd, SEEK_SET, 0);
254 ret = find_probepoint(fd, pp);
Masami Hiramatsu411edfe2009-12-15 10:31:35 -0500255 if (ret > 0)
256 continue;
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500257 if (ret == 0) /* No error but failed to find probe point. */
258 die("No probe point found.");
Masami Hiramatsu411edfe2009-12-15 10:31:35 -0500259 /* Error path */
260 if (session.need_dwarf) {
261 if (ret == -ENOENT)
262 pr_warning("No dwarf info found in the vmlinux - please rebuild with CONFIG_DEBUG_INFO=y.\n");
263 die("Could not analyze debuginfo.");
264 }
265 pr_debug("An error occurred in debuginfo analysis."
266 " Try to use symbols.\n");
267 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400268 }
269 close(fd);
270
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500271end_dwarf:
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400272#endif /* !NO_LIBDWARF */
273
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500274 /* Synthesize probes without dwarf */
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -0500275 for (i = 0; i < session.nr_probe; i++) {
276 pp = &session.probes[i];
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500277 if (pp->found) /* This probe is already found. */
278 continue;
279
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500280 ret = synthesize_trace_kprobe_event(pp);
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500281 if (ret == -E2BIG)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500282 die("probe point definition becomes too long.");
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500283 else if (ret < 0)
284 die("Failed to synthesize a probe point.");
285 }
286
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400287 /* Settng up probe points */
Masami Hiramatsud761b082009-12-15 10:32:25 -0500288 add_trace_kprobe_events(session.probes, session.nr_probe,
289 session.force_add);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400290 return 0;
291}
292