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/symbol.h"
40 #include "util/debug.h"
41 #include "util/debugfs.h"
42 #include "util/parse-options.h"
43 #include "util/probe-finder.h"
44 #include "util/probe-event.h"
46 #define MAX_PATH_LEN 256
48 /* Session management structure */
54 struct perf_probe_event events
[MAX_PROBES
];
55 struct strlist
*dellist
;
56 struct line_range line_range
;
61 /* Parse an event definition. Note that any error must die. */
62 static int parse_probe_event(const char *str
)
64 struct perf_probe_event
*pev
= ¶ms
.events
[params
.nevents
];
67 pr_debug("probe-definition(%d): %s\n", params
.nevents
, str
);
68 if (++params
.nevents
== MAX_PROBES
) {
69 pr_err("Too many probes (> %d) were specified.", MAX_PROBES
);
73 /* Parse a perf-probe command into event */
74 ret
= parse_perf_probe_command(str
, pev
);
75 pr_debug("%d arguments\n", pev
->nargs
);
80 static int 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);
93 for (i
= 0; i
< argc
; i
++)
94 len
+= sprintf(&buf
[len
], "%s ", argv
[i
]);
95 ret
= parse_probe_event(buf
);
100 static int opt_add_probe_event(const struct option
*opt __used
,
101 const char *str
, int unset __used
)
104 return parse_probe_event(str
);
109 static int opt_del_probe_event(const struct option
*opt __used
,
110 const char *str
, int unset __used
)
114 params
.dellist
= strlist__new(true, NULL
);
115 strlist__add(params
.dellist
, str
);
121 static int opt_show_lines(const struct option
*opt __used
,
122 const char *str
, int unset __used
)
127 ret
= parse_line_range_desc(str
, ¶ms
.line_range
);
128 INIT_LIST_HEAD(¶ms
.line_range
.line_list
);
129 params
.show_lines
= true;
135 static const char * const probe_usage
[] = {
136 "perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]",
137 "perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]",
138 "perf probe [<options>] --del '[GROUP:]EVENT' ...",
141 "perf probe --line 'LINEDESC'",
146 static const struct option options
[] = {
147 OPT_INCR('v', "verbose", &verbose
,
148 "be more verbose (show parsed arguments, etc)"),
149 OPT_BOOLEAN('l', "list", ¶ms
.list_events
,
150 "list up current probe events"),
151 OPT_CALLBACK('d', "del", NULL
, "[GROUP:]EVENT", "delete a probe event.",
152 opt_del_probe_event
),
153 OPT_CALLBACK('a', "add", NULL
,
155 "[EVENT=]FUNC[@SRC][+OFF|%return|:RL|;PT]|SRC:AL|SRC;PT"
158 "[EVENT=]FUNC[+OFF|%return] [[NAME=]ARG ...]",
160 "probe point definition, where\n"
161 "\t\tGROUP:\tGroup name (optional)\n"
162 "\t\tEVENT:\tEvent name\n"
163 "\t\tFUNC:\tFunction name\n"
164 "\t\tOFF:\tOffset from function entry (in byte)\n"
165 "\t\t%return:\tPut the probe at function return\n"
167 "\t\tSRC:\tSource code path\n"
168 "\t\tRL:\tRelative line number from function entry.\n"
169 "\t\tAL:\tAbsolute line number in file.\n"
170 "\t\tPT:\tLazy expression of line code.\n"
171 "\t\tARG:\tProbe argument (local variable name or\n"
172 "\t\t\tkprobe-tracer argument format.)\n",
174 "\t\tARG:\tProbe argument (kprobe-tracer argument format.)\n",
176 opt_add_probe_event
),
177 OPT_BOOLEAN('f', "force", ¶ms
.force_add
, "forcibly add events"
178 " with existing name"),
180 OPT_CALLBACK('L', "line", NULL
,
181 "FUNC[:RLN[+NUM|-RLN2]]|SRC:ALN[+NUM|-ALN2]",
182 "Show source code lines.", opt_show_lines
),
183 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
184 "file", "vmlinux pathname"),
185 OPT_STRING('s', "source", &symbol_conf
.source_prefix
,
186 "directory", "path to kernel source"),
188 OPT__DRY_RUN(&probe_event_dry_run
),
189 OPT_INTEGER('\0', "max-probes", ¶ms
.max_probe_points
,
190 "Set how many probe points can be found for a probe."),
194 int cmd_probe(int argc
, const char **argv
, const char *prefix __used
)
198 argc
= parse_options(argc
, argv
, options
, probe_usage
,
199 PARSE_OPT_STOP_AT_NON_OPTION
);
201 if (strcmp(argv
[0], "-") == 0) {
202 pr_warning(" Error: '-' is not supported.\n");
203 usage_with_options(probe_usage
, options
);
205 ret
= parse_probe_event_argv(argc
, argv
);
207 pr_err(" Error: Parse Error. (%d)\n", ret
);
212 if (params
.max_probe_points
== 0)
213 params
.max_probe_points
= MAX_PROBES
;
215 if ((!params
.nevents
&& !params
.dellist
&& !params
.list_events
&&
217 usage_with_options(probe_usage
, options
);
219 if (params
.list_events
) {
220 if (params
.nevents
!= 0 || params
.dellist
) {
221 pr_err(" Error: Don't use --list with --add/--del.\n");
222 usage_with_options(probe_usage
, options
);
224 if (params
.show_lines
) {
225 pr_err(" Error: Don't use --list with --line.\n");
226 usage_with_options(probe_usage
, options
);
228 ret
= show_perf_probe_events();
230 pr_err(" Error: Failed to show event list. (%d)\n",
236 if (params
.show_lines
) {
237 if (params
.nevents
!= 0 || params
.dellist
) {
238 pr_warning(" Error: Don't use --line with"
240 usage_with_options(probe_usage
, options
);
243 ret
= show_line_range(¶ms
.line_range
);
245 pr_err(" Error: Failed to show lines. (%d)\n", ret
);
250 if (params
.dellist
) {
251 ret
= del_perf_probe_events(params
.dellist
);
252 strlist__delete(params
.dellist
);
254 pr_err(" Error: Failed to delete events. (%d)\n", ret
);
259 if (params
.nevents
) {
260 ret
= add_perf_probe_events(params
.events
, params
.nevents
,
262 params
.max_probe_points
);
264 pr_err(" Error: Failed to add events. (%d)\n", ret
);