blob: c1e54035e8cfc99cd18f7878d4488f9523bbb5df [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 Hiramatsue0faa8d2010-03-16 18:05:37 -040039#include "util/symbol.h"
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040040#include "util/debug.h"
Masami Hiramatsu96c96612009-12-16 17:24:00 -050041#include "util/debugfs.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040042#include "util/parse-options.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040043#include "util/probe-finder.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050044#include "util/probe-event.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040045
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040046#define MAX_PATH_LEN 256
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040047
48/* Session management structure */
49static struct {
Masami Hiramatsufac13fd2009-12-15 10:31:14 -050050 bool list_events;
Masami Hiramatsud761b082009-12-15 10:32:25 -050051 bool force_add;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050052 bool show_lines;
Masami Hiramatsu4235b042010-03-16 18:06:12 -040053 int nevents;
54 struct perf_probe_event events[MAX_PROBES];
Masami Hiramatsufa282442009-12-08 17:03:23 -050055 struct strlist *dellist;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050056 struct line_range line_range;
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -040057} params;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040058
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050059
Masami Hiramatsu253977b2009-10-27 16:43:10 -040060/* Parse an event definition. Note that any error must die. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -040061static int parse_probe_event(const char *str)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040062{
Masami Hiramatsu4235b042010-03-16 18:06:12 -040063 struct perf_probe_event *pev = &params.events[params.nevents];
Masami Hiramatsu146a1432010-04-12 13:17:42 -040064 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040065
Masami Hiramatsu4235b042010-03-16 18:06:12 -040066 pr_debug("probe-definition(%d): %s\n", params.nevents, str);
67 if (++params.nevents == MAX_PROBES)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050068 die("Too many probes (> %d) are specified.", MAX_PROBES);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040069
Masami Hiramatsu4235b042010-03-16 18:06:12 -040070 /* Parse a perf-probe command into event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -040071 ret = parse_perf_probe_command(str, pev);
Masami Hiramatsu4235b042010-03-16 18:06:12 -040072 pr_debug("%d arguments\n", pev->nargs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040073
74 return ret;
Masami Hiramatsu46ab4922009-10-27 16:43:02 -040075}
76
Masami Hiramatsu146a1432010-04-12 13:17:42 -040077static int parse_probe_event_argv(int argc, const char **argv)
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -050078{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040079 int i, len, ret;
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -050080 char *buf;
81
82 /* Bind up rest arguments */
83 len = 0;
84 for (i = 0; i < argc; i++)
85 len += strlen(argv[i]) + 1;
Masami Hiramatsu31facc52010-03-16 18:05:30 -040086 buf = xzalloc(len + 1);
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -050087 len = 0;
88 for (i = 0; i < argc; i++)
89 len += sprintf(&buf[len], "%s ", argv[i]);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040090 ret = parse_probe_event(buf);
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -050091 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040092 return ret;
Masami Hiramatsud1bde3f2009-12-08 17:02:54 -050093}
94
Masami Hiramatsu253977b2009-10-27 16:43:10 -040095static int opt_add_probe_event(const struct option *opt __used,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -040096 const char *str, int unset __used)
97{
98 if (str)
Masami Hiramatsu146a1432010-04-12 13:17:42 -040099 return parse_probe_event(str);
100 else
101 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400102}
103
Masami Hiramatsufa282442009-12-08 17:03:23 -0500104static int opt_del_probe_event(const struct option *opt __used,
105 const char *str, int unset __used)
106{
107 if (str) {
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400108 if (!params.dellist)
109 params.dellist = strlist__new(true, NULL);
110 strlist__add(params.dellist, str);
Masami Hiramatsufa282442009-12-08 17:03:23 -0500111 }
112 return 0;
113}
114
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300115#ifdef DWARF_SUPPORT
Hitoshi Mitake0eda7382010-01-16 21:31:16 +0900116static int opt_show_lines(const struct option *opt __used,
117 const char *str, int unset __used)
118{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400119 int ret = 0;
120
Hitoshi Mitake0eda7382010-01-16 21:31:16 +0900121 if (str)
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400122 ret = parse_line_range_desc(str, &params.line_range);
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400123 INIT_LIST_HEAD(&params.line_range.line_list);
124 params.show_lines = true;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400125
126 return ret;
Hitoshi Mitake0eda7382010-01-16 21:31:16 +0900127}
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400128#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400129
130static const char * const probe_usage[] = {
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400131 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]",
132 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]",
Masami Hiramatsufa282442009-12-08 17:03:23 -0500133 "perf probe [<options>] --del '[GROUP:]EVENT' ...",
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500134 "perf probe --list",
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300135#ifdef DWARF_SUPPORT
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500136 "perf probe --line 'LINEDESC'",
Masami Hiramatsuf3ab4812010-02-25 08:35:12 -0500137#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400138 NULL
139};
140
141static const struct option options[] = {
Ian Munsiec0555642010-04-13 18:37:33 +1000142 OPT_INCR('v', "verbose", &verbose,
Masami Hiramatsu89c69c02009-10-16 20:08:10 -0400143 "be more verbose (show parsed arguments, etc)"),
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400144 OPT_BOOLEAN('l', "list", &params.list_events,
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500145 "list up current probe events"),
Masami Hiramatsufa282442009-12-08 17:03:23 -0500146 OPT_CALLBACK('d', "del", NULL, "[GROUP:]EVENT", "delete a probe event.",
147 opt_del_probe_event),
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400148 OPT_CALLBACK('a', "add", NULL,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300149#ifdef DWARF_SUPPORT
Masami Hiramatsu32cb0dd2010-03-03 22:38:43 -0500150 "[EVENT=]FUNC[@SRC][+OFF|%return|:RL|;PT]|SRC:AL|SRC;PT"
Masami Hiramatsu48481932010-04-12 13:16:53 -0400151 " [[NAME=]ARG ...]",
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300152#else
Masami Hiramatsu48481932010-04-12 13:16:53 -0400153 "[EVENT=]FUNC[+OFF|%return] [[NAME=]ARG ...]",
Masami Hiramatsu23e8ec02009-10-07 18:28:30 -0400154#endif
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400155 "probe point definition, where\n"
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500156 "\t\tGROUP:\tGroup name (optional)\n"
157 "\t\tEVENT:\tEvent name\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400158 "\t\tFUNC:\tFunction name\n"
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500159 "\t\tOFF:\tOffset from function entry (in byte)\n"
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400160 "\t\t%return:\tPut the probe at function return\n"
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300161#ifdef DWARF_SUPPORT
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400162 "\t\tSRC:\tSource code path\n"
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500163 "\t\tRL:\tRelative line number from function entry.\n"
164 "\t\tAL:\tAbsolute line number in file.\n"
165 "\t\tPT:\tLazy expression of line code.\n"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400166 "\t\tARG:\tProbe argument (local variable name or\n"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500167 "\t\t\tkprobe-tracer argument format.)\n",
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300168#else
169 "\t\tARG:\tProbe argument (kprobe-tracer argument format.)\n",
170#endif
Masami Hiramatsu253977b2009-10-27 16:43:10 -0400171 opt_add_probe_event),
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400172 OPT_BOOLEAN('f', "force", &params.force_add, "forcibly add events"
Masami Hiramatsud761b082009-12-15 10:32:25 -0500173 " with existing name"),
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300174#ifdef DWARF_SUPPORT
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500175 OPT_CALLBACK('L', "line", NULL,
Masami Hiramatsu085ea732010-04-02 12:50:39 -0400176 "FUNC[:RLN[+NUM|-RLN2]]|SRC:ALN[+NUM|-ALN2]",
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500177 "Show source code lines.", opt_show_lines),
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300178 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
179 "file", "vmlinux pathname"),
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500180#endif
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -0400181 OPT__DRY_RUN(&probe_event_dry_run),
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400182 OPT_END()
183};
184
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400185int cmd_probe(int argc, const char **argv, const char *prefix __used)
186{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400187 int ret;
188
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400189 argc = parse_options(argc, argv, options, probe_usage,
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400190 PARSE_OPT_STOP_AT_NON_OPTION);
Masami Hiramatsuce11a602009-12-15 10:31:28 -0500191 if (argc > 0) {
192 if (strcmp(argv[0], "-") == 0) {
193 pr_warning(" Error: '-' is not supported.\n");
194 usage_with_options(probe_usage, options);
195 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400196 ret = parse_probe_event_argv(argc, argv);
197 if (ret < 0) {
198 pr_err(" Error: Parse Error. (%d)\n", ret);
199 return ret;
200 }
Masami Hiramatsuce11a602009-12-15 10:31:28 -0500201 }
Masami Hiramatsu46ab4922009-10-27 16:43:02 -0400202
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400203 if ((!params.nevents && !params.dellist && !params.list_events &&
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400204 !params.show_lines))
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400205 usage_with_options(probe_usage, options);
206
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400207 if (params.list_events) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400208 if (params.nevents != 0 || params.dellist) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400209 pr_err(" Error: Don't use --list with --add/--del.\n");
Masami Hiramatsufa282442009-12-08 17:03:23 -0500210 usage_with_options(probe_usage, options);
211 }
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400212 if (params.show_lines) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400213 pr_err(" Error: Don't use --list with --line.\n");
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500214 usage_with_options(probe_usage, options);
215 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400216 ret = show_perf_probe_events();
217 if (ret < 0)
218 pr_err(" Error: Failed to show event list. (%d)\n",
219 ret);
220 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500221 }
222
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300223#ifdef DWARF_SUPPORT
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400224 if (params.show_lines) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400225 if (params.nevents != 0 || params.dellist) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500226 pr_warning(" Error: Don't use --line with"
227 " --add/--del.\n");
228 usage_with_options(probe_usage, options);
229 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400230
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400231 ret = show_line_range(&params.line_range);
232 if (ret < 0)
233 pr_err(" Error: Failed to show lines. (%d)\n", ret);
234 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500235 }
236#endif
237
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400238 if (params.dellist) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400239 ret = del_perf_probe_events(params.dellist);
Masami Hiramatsu12a1fad2010-03-16 18:05:44 -0400240 strlist__delete(params.dellist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400241 if (ret < 0) {
242 pr_err(" Error: Failed to delete events. (%d)\n", ret);
243 return ret;
244 }
Masami Hiramatsufa282442009-12-08 17:03:23 -0500245 }
246
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400247 if (params.nevents) {
248 ret = add_perf_probe_events(params.events, params.nevents,
249 params.force_add);
250 if (ret < 0) {
251 pr_err(" Error: Failed to add events. (%d)\n", ret);
252 return ret;
253 }
254 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400255 return 0;
256}
257