blob: a2f6daf01ecb08d44d6148def1aa476a735560a4 [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 Hiramatsu89c69c02009-10-16 20:08:10 -040038#include "util/event.h"
39#include "util/debug.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040040#include "util/parse-options.h"
41#include "util/parse-events.h" /* For debugfs_path */
42#include "util/probe-finder.h"
43
44/* Default vmlinux search paths */
45#define NR_SEARCH_PATH 3
46const char *default_search_path[NR_SEARCH_PATH] = {
47"/lib/modules/%s/build/vmlinux", /* Custom build kernel */
48"/usr/lib/debug/lib/modules/%s/vmlinux", /* Red Hat debuginfo */
49"/boot/vmlinux-debug-%s", /* Ubuntu */
50};
51
52#define MAX_PATH_LEN 256
53#define MAX_PROBES 128
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040054#define MAX_PROBE_ARGS 128
Masami Hiramatsu91365bb2009-11-03 19:12:38 -050055#define PERFPROBE_GROUP "probe"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040056
57/* Session management structure */
58static struct {
59 char *vmlinux;
60 char *release;
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -040061 int need_dwarf;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040062 int nr_probe;
63 struct probe_point probes[MAX_PROBES];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040064} session;
65
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040066#define semantic_error(msg ...) die("Semantic error :" msg)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040067
Masami Hiramatsu253977b2009-10-27 16:43:10 -040068/* Parse probe point. Return 1 if return probe */
69static void parse_probe_point(char *arg, struct probe_point *pp)
70{
71 char *ptr, *tmp;
Arnaldo Carvalho de Melo12e4db42009-11-03 11:29:07 -020072 char c, nc = 0;
Masami Hiramatsu253977b2009-10-27 16:43:10 -040073 /*
74 * <Syntax>
75 * perf probe SRC:LN
76 * perf probe FUNC[+OFFS|%return][@SRC]
77 */
78
79 ptr = strpbrk(arg, ":+@%");
80 if (ptr) {
81 nc = *ptr;
82 *ptr++ = '\0';
83 }
84
85 /* Check arg is function or file and copy it */
86 if (strchr(arg, '.')) /* File */
87 pp->file = strdup(arg);
88 else /* Function */
89 pp->function = strdup(arg);
90 DIE_IF(pp->file == NULL && pp->function == NULL);
91
92 /* Parse other options */
93 while (ptr) {
94 arg = ptr;
95 c = nc;
96 ptr = strpbrk(arg, ":+@%");
97 if (ptr) {
98 nc = *ptr;
99 *ptr++ = '\0';
100 }
101 switch (c) {
102 case ':': /* Line number */
103 pp->line = strtoul(arg, &tmp, 0);
104 if (*tmp != '\0')
105 semantic_error("There is non-digit charactor"
106 " in line number.");
107 break;
108 case '+': /* Byte offset from a symbol */
109 pp->offset = strtoul(arg, &tmp, 0);
110 if (*tmp != '\0')
111 semantic_error("There is non-digit charactor"
112 " in offset.");
113 break;
114 case '@': /* File name */
115 if (pp->file)
116 semantic_error("SRC@SRC is not allowed.");
117 pp->file = strdup(arg);
118 DIE_IF(pp->file == NULL);
119 if (ptr)
120 semantic_error("@SRC must be the last "
121 "option.");
122 break;
123 case '%': /* Probe places */
124 if (strcmp(arg, "return") == 0) {
125 pp->retprobe = 1;
126 } else /* Others not supported yet */
127 semantic_error("%%%s is not supported.", arg);
128 break;
129 default:
130 DIE_IF("Program has a bug.");
131 break;
132 }
133 }
134
135 /* Exclusion check */
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400136 if (pp->line && pp->offset)
137 semantic_error("Offset can't be used with line number.");
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400138 if (!pp->line && pp->file && !pp->function)
139 semantic_error("File always requires line number.");
140 if (pp->offset && !pp->function)
141 semantic_error("Offset requires an entry function.");
142 if (pp->retprobe && !pp->function)
143 semantic_error("Return probe requires an entry function.");
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400144 if ((pp->offset || pp->line) && pp->retprobe)
145 semantic_error("Offset/Line can't be used with return probe.");
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400146
147 pr_debug("symbol:%s file:%s line:%d offset:%d, return:%d\n",
148 pp->function, pp->file, pp->line, pp->offset, pp->retprobe);
149}
150
151/* Parse an event definition. Note that any error must die. */
152static void parse_probe_event(const char *str)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400153{
154 char *argv[MAX_PROBE_ARGS + 2]; /* Event + probe + args */
155 int argc, i;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400156 struct probe_point *pp = &session.probes[session.nr_probe];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400157
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -0200158 pr_debug("probe-definition(%d): %s\n", session.nr_probe, str);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400159 if (++session.nr_probe == MAX_PROBES)
160 semantic_error("Too many probes");
161
162 /* Separate arguments, similar to argv_split */
163 argc = 0;
164 do {
165 /* Skip separators */
166 while (isspace(*str))
167 str++;
168
169 /* Add an argument */
170 if (*str != '\0') {
171 const char *s = str;
172
173 /* Skip the argument */
174 while (!isspace(*str) && *str != '\0')
175 str++;
176
177 /* Duplicate the argument */
178 argv[argc] = strndup(s, str - s);
179 if (argv[argc] == NULL)
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -0400180 die("strndup");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400181 if (++argc == MAX_PROBE_ARGS)
182 semantic_error("Too many arguments");
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -0200183 pr_debug("argv[%d]=%s\n", argc, argv[argc - 1]);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400184 }
185 } while (*str != '\0');
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400186 if (!argc)
187 semantic_error("An empty argument.");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400188
189 /* Parse probe point */
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400190 parse_probe_point(argv[0], pp);
191 free(argv[0]);
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500192 if (pp->file || pp->line)
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400193 session.need_dwarf = 1;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400194
195 /* Copy arguments */
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400196 pp->nr_args = argc - 1;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400197 if (pp->nr_args > 0) {
198 pp->args = (char **)malloc(sizeof(char *) * pp->nr_args);
199 if (!pp->args)
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -0400200 die("malloc");
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400201 memcpy(pp->args, &argv[1], sizeof(char *) * pp->nr_args);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400202 }
203
204 /* Ensure return probe has no C argument */
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400205 for (i = 0; i < pp->nr_args; i++)
206 if (is_c_varname(pp->args[i])) {
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400207 if (pp->retprobe)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400208 semantic_error("You can't specify local"
209 " variable for kretprobe");
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400210 session.need_dwarf = 1;
211 }
212
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -0200213 pr_debug("%d arguments\n", pp->nr_args);
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400214}
215
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400216static int opt_add_probe_event(const struct option *opt __used,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400217 const char *str, int unset __used)
218{
219 if (str)
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400220 parse_probe_event(str);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400221 return 0;
222}
223
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400224#ifndef NO_LIBDWARF
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400225static int open_default_vmlinux(void)
226{
227 struct utsname uts;
228 char fname[MAX_PATH_LEN];
229 int fd, ret, i;
230
231 ret = uname(&uts);
232 if (ret) {
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -0200233 pr_debug("uname() failed.\n");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400234 return -errno;
235 }
236 session.release = uts.release;
237 for (i = 0; i < NR_SEARCH_PATH; i++) {
238 ret = snprintf(fname, MAX_PATH_LEN,
239 default_search_path[i], session.release);
240 if (ret >= MAX_PATH_LEN || ret < 0) {
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -0200241 pr_debug("Filename(%d,%s) is too long.\n", i,
Masami Hiramatsu89c69c02009-10-16 20:08:10 -0400242 uts.release);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400243 errno = E2BIG;
244 return -E2BIG;
245 }
Arnaldo Carvalho de Melob7cb10e2009-10-21 17:34:06 -0200246 pr_debug("try to open %s\n", fname);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400247 fd = open(fname, O_RDONLY);
248 if (fd >= 0)
249 break;
250 }
251 return fd;
252}
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400253#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400254
255static const char * const probe_usage[] = {
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400256 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]",
257 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]",
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400258 NULL
259};
260
261static const struct option options[] = {
Masami Hiramatsu89c69c02009-10-16 20:08:10 -0400262 OPT_BOOLEAN('v', "verbose", &verbose,
263 "be more verbose (show parsed arguments, etc)"),
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400264#ifndef NO_LIBDWARF
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400265 OPT_STRING('k', "vmlinux", &session.vmlinux, "file",
266 "vmlinux/module pathname"),
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400267#endif
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400268 OPT_CALLBACK('a', "add", NULL,
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400269#ifdef NO_LIBDWARF
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400270 "FUNC[+OFFS|%return] [ARG ...]",
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400271#else
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400272 "FUNC[+OFFS|%return|:RLN][@SRC]|SRC:ALN [ARG ...]",
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400273#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400274 "probe point definition, where\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400275 "\t\tGRP:\tGroup name (optional)\n"
276 "\t\tNAME:\tEvent name\n"
277 "\t\tFUNC:\tFunction name\n"
278 "\t\tOFFS:\tOffset from function entry (in byte)\n"
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400279 "\t\t%return:\tPut the probe at function return\n"
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400280#ifdef NO_LIBDWARF
281 "\t\tARG:\tProbe argument (only \n"
282#else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400283 "\t\tSRC:\tSource code path\n"
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400284 "\t\tRLN:\tRelative line number from function entry.\n"
285 "\t\tALN:\tAbsolute line number in file.\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400286 "\t\tARG:\tProbe argument (local variable name or\n"
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400287#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400288 "\t\t\tkprobe-tracer argument format is supported.)\n",
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400289 opt_add_probe_event),
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400290 OPT_END()
291};
292
293static int write_new_event(int fd, const char *buf)
294{
295 int ret;
296
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400297 ret = write(fd, buf, strlen(buf));
298 if (ret <= 0)
Masami Hiramatsua7f43282009-11-03 19:12:21 -0500299 die("Failed to create event.");
300 else
301 printf("Added new event: %s\n", buf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400302
303 return ret;
304}
305
306#define MAX_CMDLEN 256
307
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400308static int synthesize_probe_event(struct probe_point *pp)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400309{
310 char *buf;
311 int i, len, ret;
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200312 pp->probes[0] = buf = zalloc(MAX_CMDLEN);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400313 if (!buf)
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200314 die("Failed to allocate memory by zalloc.");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400315 ret = snprintf(buf, MAX_CMDLEN, "%s+%d", pp->function, pp->offset);
316 if (ret <= 0 || ret >= MAX_CMDLEN)
317 goto error;
318 len = ret;
319
320 for (i = 0; i < pp->nr_args; i++) {
321 ret = snprintf(&buf[len], MAX_CMDLEN - len, " %s",
322 pp->args[i]);
323 if (ret <= 0 || ret >= MAX_CMDLEN - len)
324 goto error;
325 len += ret;
326 }
327 pp->found = 1;
328 return pp->found;
329error:
330 free(pp->probes[0]);
331 if (ret > 0)
332 ret = -E2BIG;
333 return ret;
334}
335
336int cmd_probe(int argc, const char **argv, const char *prefix __used)
337{
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400338 int i, j, fd, ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400339 struct probe_point *pp;
340 char buf[MAX_CMDLEN];
341
342 argc = parse_options(argc, argv, options, probe_usage,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400343 PARSE_OPT_STOP_AT_NON_OPTION);
344 for (i = 0; i < argc; i++)
345 parse_probe_event(argv[i]);
346
347 if (session.nr_probe == 0)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400348 usage_with_options(probe_usage, options);
349
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400350 if (session.need_dwarf)
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500351#ifdef NO_LIBDWARF
352 semantic_error("Debuginfo-analysis is not supported");
353#else /* !NO_LIBDWARF */
354 pr_info("Some probes require debuginfo.\n");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400355
356 if (session.vmlinux)
357 fd = open(session.vmlinux, O_RDONLY);
358 else
359 fd = open_default_vmlinux();
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500360 if (fd < 0) {
361 if (session.need_dwarf)
362 die("Could not open vmlinux/module file.");
363
364 pr_warning("Could not open vmlinux/module file."
365 " Try to use symbols.\n");
366 goto end_dwarf;
367 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400368
369 /* Searching probe points */
370 for (j = 0; j < session.nr_probe; j++) {
371 pp = &session.probes[j];
372 if (pp->found)
373 continue;
374
375 lseek(fd, SEEK_SET, 0);
376 ret = find_probepoint(fd, pp);
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500377 if (ret < 0) {
378 if (session.need_dwarf)
379 die("Could not analyze debuginfo.");
380
381 pr_warning("An error occurred in debuginfo analysis. Try to use symbols.\n");
382 break;
383 }
384 if (ret == 0) /* No error but failed to find probe point. */
385 die("No probe point found.");
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400386 }
387 close(fd);
388
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500389end_dwarf:
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400390#endif /* !NO_LIBDWARF */
391
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500392 /* Synthesize probes without dwarf */
393 for (j = 0; j < session.nr_probe; j++) {
394 pp = &session.probes[j];
395 if (pp->found) /* This probe is already found. */
396 continue;
397
398 ret = synthesize_probe_event(pp);
399 if (ret == -E2BIG)
400 semantic_error("probe point is too long.");
401 else if (ret < 0)
402 die("Failed to synthesize a probe point.");
403 }
404
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400405 /* Settng up probe points */
406 snprintf(buf, MAX_CMDLEN, "%s/../kprobe_events", debugfs_path);
407 fd = open(buf, O_WRONLY, O_APPEND);
Masami Hiramatsua7f43282009-11-03 19:12:21 -0500408 if (fd < 0) {
409 if (errno == ENOENT)
410 die("kprobe_events file does not exist - please rebuild with CONFIG_KPROBE_TRACER.");
411 else
412 die("Could not open kprobe_events file: %s",
413 strerror(errno));
414 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400415 for (j = 0; j < session.nr_probe; j++) {
416 pp = &session.probes[j];
417 if (pp->found == 1) {
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400418 snprintf(buf, MAX_CMDLEN, "%c:%s/%s_%x %s\n",
419 pp->retprobe ? 'r' : 'p', PERFPROBE_GROUP,
420 pp->function, pp->offset, pp->probes[0]);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400421 write_new_event(fd, buf);
422 } else
423 for (i = 0; i < pp->found; i++) {
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400424 snprintf(buf, MAX_CMDLEN, "%c:%s/%s_%x_%d %s\n",
425 pp->retprobe ? 'r' : 'p',
426 PERFPROBE_GROUP,
427 pp->function, pp->offset, i,
428 pp->probes[0]);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400429 write_new_event(fd, buf);
430 }
431 }
432 close(fd);
433 return 0;
434}
435