blob: a372d748644bc643a475978fbbef5332fd3e991f [file] [log] [blame]
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001/*
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302 * probe-event.c : perf-probe definition to probe_events format converter
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05003 *
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
22#define _GNU_SOURCE
23#include <sys/utsname.h>
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
27#include <errno.h>
28#include <stdio.h>
29#include <unistd.h>
30#include <stdlib.h>
31#include <string.h>
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050032#include <stdarg.h>
33#include <limits.h>
Masami Hiramatsue80711c2011-01-13 21:46:11 +090034#include <elf.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050035
36#undef _GNU_SOURCE
Masami Hiramatsu31facc52010-03-16 18:05:30 -040037#include "util.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050038#include "event.h"
Masami Hiramatsue1c01d62009-11-30 19:20:05 -050039#include "string.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050040#include "strlist.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050041#include "debug.h"
Masami Hiramatsu72041332010-01-05 17:47:10 -050042#include "cache.h"
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050043#include "color.h"
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040044#include "symbol.h"
45#include "thread.h"
Masami Hiramatsu7ca59892010-04-14 18:39:28 -040046#include "debugfs.h"
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030047#include "trace-event.h" /* For __unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050048#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040049#include "probe-finder.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050050
51#define MAX_CMDLEN 256
52#define MAX_PROBE_ARGS 128
53#define PERFPROBE_GROUP "probe"
54
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040055bool probe_event_dry_run; /* Dry run flag */
56
Masami Hiramatsu146a1432010-04-12 13:17:42 -040057#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050058
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050059/* If there is no space to write, returns -E2BIG. */
60static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu84988452009-12-07 12:00:53 -050061 __attribute__((format(printf, 3, 4)));
62
63static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050064{
65 int ret;
66 va_list ap;
67 va_start(ap, format);
68 ret = vsnprintf(str, size, format, ap);
69 va_end(ap);
70 if (ret >= (int)size)
71 ret = -E2BIG;
72 return ret;
73}
74
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030075static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030076static struct machine machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040077
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090078/* Initialize symbol maps and path of vmlinux/modules */
Masami Hiramatsu146a1432010-04-12 13:17:42 -040079static int init_vmlinux(void)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040080{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040081 int ret;
82
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040083 symbol_conf.sort_by_name = true;
84 if (symbol_conf.vmlinux_name == NULL)
85 symbol_conf.try_vmlinux_path = true;
86 else
87 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040088 ret = symbol__init();
89 if (ret < 0) {
90 pr_debug("Failed to init symbol map.\n");
91 goto out;
92 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040093
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090094 ret = machine__init(&machine, "", HOST_KERNEL_ID);
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030095 if (ret < 0)
96 goto out;
97
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090098 if (machine__create_kernel_maps(&machine) < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +090099 pr_debug("machine__create_kernel_maps() failed.\n");
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900100 goto out;
101 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400102out:
103 if (ret < 0)
104 pr_warning("Failed to init vmlinux path.\n");
105 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400106}
107
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900108static struct symbol *__find_kernel_function_by_name(const char *name,
109 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400110{
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900111 return machine__find_kernel_function_by_name(&machine, name, mapp,
112 NULL);
113}
114
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900115static struct map *kernel_get_module_map(const char *module)
116{
117 struct rb_node *nd;
118 struct map_groups *grp = &machine.kmaps;
119
120 if (!module)
121 module = "kernel";
122
123 for (nd = rb_first(&grp->maps[MAP__FUNCTION]); nd; nd = rb_next(nd)) {
124 struct map *pos = rb_entry(nd, struct map, rb_node);
125 if (strncmp(pos->dso->short_name + 1, module,
126 pos->dso->short_name_len - 2) == 0) {
127 return pos;
128 }
129 }
130 return NULL;
131}
132
133static struct dso *kernel_get_module_dso(const char *module)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900134{
135 struct dso *dso;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100136 struct map *map;
137 const char *vmlinux_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900138
139 if (module) {
140 list_for_each_entry(dso, &machine.kernel_dsos, node) {
141 if (strncmp(dso->short_name + 1, module,
142 dso->short_name_len - 2) == 0)
143 goto found;
144 }
145 pr_debug("Failed to find module %s.\n", module);
146 return NULL;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100147 }
148
149 map = machine.vmlinux_maps[MAP__FUNCTION];
150 dso = map->dso;
151
152 vmlinux_name = symbol_conf.vmlinux_name;
153 if (vmlinux_name) {
154 if (dso__load_vmlinux(dso, map, vmlinux_name, NULL) <= 0)
155 return NULL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900156 } else {
Franck Bui-Huuc3a34e02010-12-10 14:07:14 +0100157 if (dso__load_vmlinux_path(dso, map, NULL) <= 0) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900158 pr_debug("Failed to load kernel map.\n");
159 return NULL;
160 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400161 }
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900162found:
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900163 return dso;
164}
165
166const char *kernel_get_module_path(const char *module)
167{
168 struct dso *dso = kernel_get_module_dso(module);
169 return (dso) ? dso->long_name : NULL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900170}
171
172#ifdef DWARF_SUPPORT
173static int open_vmlinux(const char *module)
174{
175 const char *path = kernel_get_module_path(module);
176 if (!path) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900177 pr_err("Failed to find path of %s module.\n",
178 module ?: "kernel");
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900179 return -ENOENT;
180 }
181 pr_debug("Try to open %s\n", path);
182 return open(path, O_RDONLY);
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400183}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300184
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530185/*
186 * Convert trace point to probe point with debuginfo
187 * Currently only handles kprobes.
188 */
189static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900190 struct perf_probe_point *pp)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300191{
192 struct symbol *sym;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900193 struct map *map;
194 u64 addr;
195 int ret = -ENOENT;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300196
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900197 sym = __find_kernel_function_by_name(tp->symbol, &map);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300198 if (sym) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900199 addr = map->unmap_ip(map, sym->start + tp->offset);
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200200 pr_debug("try to find %s+%ld@%" PRIx64 "\n", tp->symbol,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900201 tp->offset, addr);
202 ret = find_perf_probe_point((unsigned long)addr, pp);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300203 }
204 if (ret <= 0) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400205 pr_debug("Failed to find corresponding probes from "
206 "debuginfo. Use kprobe event information.\n");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400207 pp->function = strdup(tp->symbol);
208 if (pp->function == NULL)
209 return -ENOMEM;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300210 pp->offset = tp->offset;
211 }
212 pp->retprobe = tp->retprobe;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400213
214 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300215}
216
217/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530218static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
219 struct probe_trace_event **tevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900220 int max_tevs, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300221{
222 bool need_dwarf = perf_probe_event_need_dwarf(pev);
223 int fd, ntevs;
224
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900225 fd = open_vmlinux(module);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300226 if (fd < 0) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400227 if (need_dwarf) {
228 pr_warning("Failed to open debuginfo file.\n");
229 return fd;
230 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300231 pr_debug("Could not open vmlinux. Try to use symbols.\n");
232 return 0;
233 }
234
235 /* Searching trace events corresponding to probe event */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530236 ntevs = find_probe_trace_events(fd, pev, tevs, max_tevs);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300237
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400238 if (ntevs > 0) { /* Succeeded to find trace events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530239 pr_debug("find %d probe_trace_events.\n", ntevs);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300240 return ntevs;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400241 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300242
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400243 if (ntevs == 0) { /* No error but failed to find probe point. */
244 pr_warning("Probe point '%s' not found.\n",
245 synthesize_perf_probe_point(&pev->point));
246 return -ENOENT;
247 }
248 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400249 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
250 if (ntevs == -EBADF) {
251 pr_warning("Warning: No dwarf info found in the vmlinux - "
252 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
253 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900254 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400255 return 0;
256 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300257 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400258 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300259}
260
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900261/*
262 * Find a src file from a DWARF tag path. Prepend optional source path prefix
263 * and chop off leading directories that do not exist. Result is passed back as
264 * a newly allocated path on success.
265 * Return 0 if file was found and readable, -errno otherwise.
266 */
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900267static int get_real_path(const char *raw_path, const char *comp_dir,
268 char **new_path)
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900269{
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900270 const char *prefix = symbol_conf.source_prefix;
271
272 if (!prefix) {
273 if (raw_path[0] != '/' && comp_dir)
274 /* If not an absolute path, try to use comp_dir */
275 prefix = comp_dir;
276 else {
277 if (access(raw_path, R_OK) == 0) {
278 *new_path = strdup(raw_path);
279 return 0;
280 } else
281 return -errno;
282 }
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900283 }
284
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900285 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900286 if (!*new_path)
287 return -ENOMEM;
288
289 for (;;) {
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900290 sprintf(*new_path, "%s/%s", prefix, raw_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900291
292 if (access(*new_path, R_OK) == 0)
293 return 0;
294
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900295 if (!symbol_conf.source_prefix)
296 /* In case of searching comp_dir, don't retry */
297 return -errno;
298
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900299 switch (errno) {
300 case ENAMETOOLONG:
301 case ENOENT:
302 case EROFS:
303 case EFAULT:
304 raw_path = strchr(++raw_path, '/');
305 if (!raw_path) {
306 free(*new_path);
307 *new_path = NULL;
308 return -ENOENT;
309 }
310 continue;
311
312 default:
313 free(*new_path);
314 *new_path = NULL;
315 return -errno;
316 }
317 }
318}
319
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300320#define LINEBUF_SIZE 256
321#define NR_ADDITIONAL_LINES 2
322
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100323static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300324{
325 char buf[LINEBUF_SIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100326 const char *color = show_num ? "" : PERF_COLOR_BLUE;
327 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300328
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100329 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300330 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
331 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100332 if (skip)
333 continue;
334 if (!prefix) {
335 prefix = show_num ? "%7d " : " ";
336 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300337 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100338 color_fprintf(stdout, color, "%s", buf);
339
340 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400341
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100342 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300343error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100344 if (ferror(fp)) {
Franck Bui-Huu32b2b6e2010-12-22 17:37:13 +0100345 pr_warning("File read error: %s\n", strerror(errno));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100346 return -1;
347 }
348 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300349}
350
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100351static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
352{
353 int rv = __show_one_line(fp, l, skip, show_num);
354 if (rv == 0) {
355 pr_warning("Source file is shorter than expected.\n");
356 rv = -1;
357 }
358 return rv;
359}
360
361#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
362#define show_one_line(f,l) _show_one_line(f,l,false,false)
363#define skip_one_line(f,l) _show_one_line(f,l,true,false)
364#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
365
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300366/*
367 * Show line-range always requires debuginfo to find source file and
368 * line number.
369 */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900370int show_line_range(struct line_range *lr, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300371{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400372 int l = 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300373 struct line_node *ln;
374 FILE *fp;
375 int fd, ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900376 char *tmp;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300377
378 /* Search a line range */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400379 ret = init_vmlinux();
380 if (ret < 0)
381 return ret;
382
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900383 fd = open_vmlinux(module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400384 if (fd < 0) {
385 pr_warning("Failed to open debuginfo file.\n");
386 return fd;
387 }
388
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300389 ret = find_line_range(fd, lr);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400390 if (ret == 0) {
391 pr_warning("Specified source line is not found.\n");
392 return -ENOENT;
393 } else if (ret < 0) {
394 pr_warning("Debuginfo analysis failed. (%d)\n", ret);
395 return ret;
396 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300397
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900398 /* Convert source file path */
399 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900400 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900401 free(tmp); /* Free old path */
402 if (ret < 0) {
403 pr_warning("Failed to find source file. (%d)\n", ret);
404 return ret;
405 }
406
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300407 setup_pager();
408
409 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900410 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300411 lr->start - lr->offset);
412 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100413 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300414
415 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400416 if (fp == NULL) {
417 pr_warning("Failed to open %s: %s\n", lr->path,
418 strerror(errno));
419 return -errno;
420 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300421 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100422 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100423 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100424 if (ret < 0)
425 goto end;
426 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300427
428 list_for_each_entry(ln, &lr->line_list, list) {
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100429 for (; ln->line > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100430 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100431 if (ret < 0)
432 goto end;
433 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100434 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400435 if (ret < 0)
436 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300437 }
438
439 if (lr->end == INT_MAX)
440 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100441 while (l <= lr->end) {
442 ret = show_one_line_or_eof(fp, l++ - lr->offset);
443 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100444 break;
445 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400446end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300447 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400448 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300449}
450
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900451static int show_available_vars_at(int fd, struct perf_probe_event *pev,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900452 int max_vls, struct strfilter *_filter,
453 bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900454{
455 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900456 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900457 struct str_node *node;
458 struct variable_list *vls = NULL, *vl;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900459 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900460
461 buf = synthesize_perf_probe_point(&pev->point);
462 if (!buf)
463 return -EINVAL;
464 pr_debug("Searching variables at %s\n", buf);
465
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +0900466 ret = find_available_vars_at(fd, pev, &vls, max_vls, externs);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900467 if (ret <= 0) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900468 pr_err("Failed to find variables at %s (%d)\n", buf, ret);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900469 goto end;
470 }
471 /* Some variables are found */
472 fprintf(stdout, "Available variables at %s\n", buf);
473 for (i = 0; i < ret; i++) {
474 vl = &vls[i];
475 /*
476 * A probe point might be converted to
477 * several trace points.
478 */
479 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
480 vl->point.offset);
481 free(vl->point.symbol);
482 nvars = 0;
483 if (vl->vars) {
484 strlist__for_each(node, vl->vars) {
485 var = strchr(node->s, '\t') + 1;
486 if (strfilter__compare(_filter, var)) {
487 fprintf(stdout, "\t\t%s\n", node->s);
488 nvars++;
489 }
490 }
491 strlist__delete(vl->vars);
492 }
493 if (nvars == 0)
494 fprintf(stdout, "\t\t(No matched variables)\n");
495 }
496 free(vls);
497end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900498 free(buf);
499 return ret;
500}
501
502/* Show available variables on given probe point */
503int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900504 int max_vls, const char *module,
505 struct strfilter *_filter, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900506{
507 int i, fd, ret = 0;
508
509 ret = init_vmlinux();
510 if (ret < 0)
511 return ret;
512
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900513 fd = open_vmlinux(module);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900514 if (fd < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900515 pr_warning("Failed to open debug information file.\n");
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900516 return fd;
517 }
518
519 setup_pager();
520
521 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900522 ret = show_available_vars_at(fd, &pevs[i], max_vls, _filter,
523 externs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900524
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900525 return ret;
526}
527
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300528#else /* !DWARF_SUPPORT */
529
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530530static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900531 struct perf_probe_point *pp)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300532{
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900533 struct symbol *sym;
534
535 sym = __find_kernel_function_by_name(tp->symbol, NULL);
536 if (!sym) {
537 pr_err("Failed to find symbol %s in kernel.\n", tp->symbol);
538 return -ENOENT;
539 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400540 pp->function = strdup(tp->symbol);
541 if (pp->function == NULL)
542 return -ENOMEM;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300543 pp->offset = tp->offset;
544 pp->retprobe = tp->retprobe;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400545
546 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300547}
548
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530549static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
550 struct probe_trace_event **tevs __unused,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900551 int max_tevs __unused, const char *mod __unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300552{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400553 if (perf_probe_event_need_dwarf(pev)) {
554 pr_warning("Debuginfo-analysis is not supported.\n");
555 return -ENOSYS;
556 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300557 return 0;
558}
559
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900560int show_line_range(struct line_range *lr __unused, const char *module __unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300561{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400562 pr_warning("Debuginfo-analysis is not supported.\n");
563 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300564}
565
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900566int show_available_vars(struct perf_probe_event *pevs __unused,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900567 int npevs __unused, int max_vls __unused,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900568 const char *module __unused,
569 struct strfilter *filter __unused,
570 bool externs __unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900571{
572 pr_warning("Debuginfo-analysis is not supported.\n");
573 return -ENOSYS;
574}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400575#endif
576
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100577static int parse_line_num(char **ptr, int *val, const char *what)
578{
579 const char *start = *ptr;
580
581 errno = 0;
582 *val = strtol(*ptr, ptr, 0);
583 if (errno || *ptr == start) {
584 semantic_error("'%s' is not a valid number.\n", what);
585 return -EINVAL;
586 }
587 return 0;
588}
589
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100590/*
591 * Stuff 'lr' according to the line range described by 'arg'.
592 * The line range syntax is described by:
593 *
594 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900595 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100596 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400597int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500598{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900599 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100600 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100601
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100602 if (!name)
603 return -ENOMEM;
604
605 lr->start = 0;
606 lr->end = INT_MAX;
607
608 range = strchr(name, ':');
609 if (range) {
610 *range++ = '\0';
611
612 err = parse_line_num(&range, &lr->start, "start line");
613 if (err)
614 goto err;
615
616 if (*range == '+' || *range == '-') {
617 const char c = *range++;
618
619 err = parse_line_num(&range, &lr->end, "end line");
620 if (err)
621 goto err;
622
623 if (c == '+') {
624 lr->end += lr->start;
625 /*
626 * Adjust the number of lines here.
627 * If the number of lines == 1, the
628 * the end of line should be equal to
629 * the start of line.
630 */
631 lr->end--;
632 }
633 }
634
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400635 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100636
637 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400638 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500639 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400640 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100641 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400642 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100643 if (*range != '\0') {
644 semantic_error("Tailing with invalid str '%s'.\n", range);
645 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400646 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400647 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400648
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900649 file = strchr(name, '@');
650 if (file) {
651 *file = '\0';
652 lr->file = strdup(++file);
653 if (lr->file == NULL) {
654 err = -ENOMEM;
655 goto err;
656 }
657 lr->function = name;
658 } else if (strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100659 lr->file = name;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500660 else
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100661 lr->function = name;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400662
663 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100664err:
665 free(name);
666 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500667}
668
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500669/* Check the name is good for event/group */
670static bool check_event_name(const char *name)
671{
672 if (!isalpha(*name) && *name != '_')
673 return false;
674 while (*++name != '\0') {
675 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
676 return false;
677 }
678 return true;
679}
680
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500681/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400682static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500683{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400684 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500685 char *ptr, *tmp;
686 char c, nc = 0;
687 /*
688 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500689 * perf probe [EVENT=]SRC[:LN|;PTN]
690 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500691 *
692 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500693 */
694
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500695 ptr = strpbrk(arg, ";=@+%");
696 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500697 *ptr = '\0';
698 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400699 if (strchr(arg, ':')) {
700 semantic_error("Group name is not supported yet.\n");
701 return -ENOTSUP;
702 }
703 if (!check_event_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500704 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400705 "follow C symbol-naming rule.\n", arg);
706 return -EINVAL;
707 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400708 pev->event = strdup(arg);
709 if (pev->event == NULL)
710 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400711 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500712 arg = tmp;
713 }
714
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500715 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500716 if (ptr) {
717 nc = *ptr;
718 *ptr++ = '\0';
719 }
720
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400721 tmp = strdup(arg);
722 if (tmp == NULL)
723 return -ENOMEM;
724
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500725 /* Check arg is function or file and copy it */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400726 if (strchr(tmp, '.')) /* File */
727 pp->file = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500728 else /* Function */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400729 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500730
731 /* Parse other options */
732 while (ptr) {
733 arg = ptr;
734 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500735 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400736 pp->lazy_line = strdup(arg);
737 if (pp->lazy_line == NULL)
738 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500739 break;
740 }
741 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500742 if (ptr) {
743 nc = *ptr;
744 *ptr++ = '\0';
745 }
746 switch (c) {
747 case ':': /* Line number */
748 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400749 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500750 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400751 " in line number.\n");
752 return -EINVAL;
753 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500754 break;
755 case '+': /* Byte offset from a symbol */
756 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400757 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500758 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400759 " in offset.\n");
760 return -EINVAL;
761 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500762 break;
763 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400764 if (pp->file) {
765 semantic_error("SRC@SRC is not allowed.\n");
766 return -EINVAL;
767 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400768 pp->file = strdup(arg);
769 if (pp->file == NULL)
770 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500771 break;
772 case '%': /* Probe places */
773 if (strcmp(arg, "return") == 0) {
774 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400775 } else { /* Others not supported yet */
776 semantic_error("%%%s is not supported.\n", arg);
777 return -ENOTSUP;
778 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500779 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400780 default: /* Buggy case */
781 pr_err("This program has a bug at %s:%d.\n",
782 __FILE__, __LINE__);
783 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500784 break;
785 }
786 }
787
788 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400789 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900790 semantic_error("Lazy pattern can't be used with"
791 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400792 return -EINVAL;
793 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500794
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400795 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900796 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400797 return -EINVAL;
798 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500799
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400800 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900801 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400802 return -EINVAL;
803 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500804
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400805 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500806 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900807 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400808 return -EINVAL;
809 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500810
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400811 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900812 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400813 return -EINVAL;
814 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500815
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400816 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900817 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400818 return -EINVAL;
819 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500820
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400821 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500822 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900823 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400824 return -EINVAL;
825 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500826
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400827 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500828 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
829 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400830 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500831}
832
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400833/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400834static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400835{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400836 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400837 struct perf_probe_arg_field **fieldp;
838
839 pr_debug("parsing arg: %s into ", str);
840
Masami Hiramatsu48481932010-04-12 13:16:53 -0400841 tmp = strchr(str, '=');
842 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400843 arg->name = strndup(str, tmp - str);
844 if (arg->name == NULL)
845 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400846 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400847 str = tmp + 1;
848 }
849
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400850 tmp = strchr(str, ':');
851 if (tmp) { /* Type setting */
852 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400853 arg->type = strdup(tmp + 1);
854 if (arg->type == NULL)
855 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400856 pr_debug("type:%s ", arg->type);
857 }
858
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400859 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400860 if (!is_c_varname(str) || !tmp) {
861 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400862 arg->var = strdup(str);
863 if (arg->var == NULL)
864 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400865 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400866 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400867 }
868
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400869 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400870 arg->var = strndup(str, tmp - str);
871 if (arg->var == NULL)
872 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400873 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400874 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400875 fieldp = &arg->field;
876
877 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400878 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
879 if (*fieldp == NULL)
880 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400881 if (*tmp == '[') { /* Array */
882 str = tmp;
883 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400884 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400885 if (*tmp != ']' || tmp == str + 1) {
886 semantic_error("Array index must be a"
887 " number.\n");
888 return -EINVAL;
889 }
890 tmp++;
891 if (*tmp == '\0')
892 tmp = NULL;
893 } else { /* Structure */
894 if (*tmp == '.') {
895 str = tmp + 1;
896 (*fieldp)->ref = false;
897 } else if (tmp[1] == '>') {
898 str = tmp + 2;
899 (*fieldp)->ref = true;
900 } else {
901 semantic_error("Argument parse error: %s\n",
902 str);
903 return -EINVAL;
904 }
905 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400906 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400907 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400908 (*fieldp)->name = strndup(str, tmp - str);
909 if ((*fieldp)->name == NULL)
910 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400911 if (*str != '[')
912 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400913 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
914 fieldp = &(*fieldp)->next;
915 }
916 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400917 (*fieldp)->name = strdup(str);
918 if ((*fieldp)->name == NULL)
919 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400920 if (*str != '[')
921 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400922 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -0400923
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400924 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400925 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400926 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400927 if (arg->name == NULL)
928 return -ENOMEM;
929 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400930 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400931}
932
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400933/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400934int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500935{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500936 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400937 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500938
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400939 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400940 if (!argv) {
941 pr_debug("Failed to split arguments.\n");
942 return -ENOMEM;
943 }
944 if (argc - 1 > MAX_PROBE_ARGS) {
945 semantic_error("Too many probe arguments (%d).\n", argc - 1);
946 ret = -ERANGE;
947 goto out;
948 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500949 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400950 ret = parse_perf_probe_point(argv[0], pev);
951 if (ret < 0)
952 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500953
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500954 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400955 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400956 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
957 if (pev->args == NULL) {
958 ret = -ENOMEM;
959 goto out;
960 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400961 for (i = 0; i < pev->nargs && ret >= 0; i++) {
962 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
963 if (ret >= 0 &&
964 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400965 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400966 " kretprobe.\n");
967 ret = -EINVAL;
968 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500969 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400970out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500971 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400972
973 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500974}
975
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400976/* Return true if this perf_probe_event requires debuginfo */
977bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500978{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400979 int i;
980
981 if (pev->point.file || pev->point.line || pev->point.lazy_line)
982 return true;
983
984 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -0400985 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400986 return true;
987
988 return false;
989}
990
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530991/* Parse probe_events event into struct probe_point */
992static int parse_probe_trace_command(const char *cmd,
993 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400994{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530995 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500996 char pr;
997 char *p;
998 int ret, i, argc;
999 char **argv;
1000
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301001 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001002 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001003 if (!argv) {
1004 pr_debug("Failed to split arguments.\n");
1005 return -ENOMEM;
1006 }
1007 if (argc < 2) {
1008 semantic_error("Too few probe arguments.\n");
1009 ret = -ERANGE;
1010 goto out;
1011 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001012
1013 /* Scan event and group name. */
Liming Wang93aaa452009-12-02 16:42:54 +08001014 ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001015 &pr, (float *)(void *)&tev->group,
1016 (float *)(void *)&tev->event);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001017 if (ret != 3) {
1018 semantic_error("Failed to parse event name: %s\n", argv[0]);
1019 ret = -EINVAL;
1020 goto out;
1021 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001022 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001023
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001024 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001025
1026 /* Scan function name and offset */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001027 ret = sscanf(argv[1], "%a[^+]+%lu", (float *)(void *)&tp->symbol,
1028 &tp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001029 if (ret == 1)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001030 tp->offset = 0;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001031
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001032 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301033 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001034 if (tev->args == NULL) {
1035 ret = -ENOMEM;
1036 goto out;
1037 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001038 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001039 p = strchr(argv[i + 2], '=');
1040 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001041 *p++ = '\0';
1042 else
1043 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001044 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001045 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001046 tev->args[i].value = strdup(p);
1047 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1048 ret = -ENOMEM;
1049 goto out;
1050 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001051 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001052 ret = 0;
1053out:
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001054 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001055 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001056}
1057
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001058/* Compose only probe arg */
1059int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1060{
1061 struct perf_probe_arg_field *field = pa->field;
1062 int ret;
1063 char *tmp = buf;
1064
Masami Hiramatsu48481932010-04-12 13:16:53 -04001065 if (pa->name && pa->var)
1066 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1067 else
1068 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001069 if (ret <= 0)
1070 goto error;
1071 tmp += ret;
1072 len -= ret;
1073
1074 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001075 if (field->name[0] == '[')
1076 ret = e_snprintf(tmp, len, "%s", field->name);
1077 else
1078 ret = e_snprintf(tmp, len, "%s%s",
1079 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001080 if (ret <= 0)
1081 goto error;
1082 tmp += ret;
1083 len -= ret;
1084 field = field->next;
1085 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001086
1087 if (pa->type) {
1088 ret = e_snprintf(tmp, len, ":%s", pa->type);
1089 if (ret <= 0)
1090 goto error;
1091 tmp += ret;
1092 len -= ret;
1093 }
1094
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001095 return tmp - buf;
1096error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001097 pr_debug("Failed to synthesize perf probe argument: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001098 strerror(-ret));
1099 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001100}
1101
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001102/* Compose only probe point (not argument) */
1103static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001104{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001105 char *buf, *tmp;
1106 char offs[32] = "", line[32] = "", file[32] = "";
1107 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001108
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001109 buf = zalloc(MAX_CMDLEN);
1110 if (buf == NULL) {
1111 ret = -ENOMEM;
1112 goto error;
1113 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001114 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001115 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001116 if (ret <= 0)
1117 goto error;
1118 }
1119 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001120 ret = e_snprintf(line, 32, ":%d", pp->line);
1121 if (ret <= 0)
1122 goto error;
1123 }
1124 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001125 tmp = pp->file;
1126 len = strlen(tmp);
1127 if (len > 30) {
1128 tmp = strchr(pp->file + len - 30, '/');
1129 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1130 }
1131 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001132 if (ret <= 0)
1133 goto error;
1134 }
1135
1136 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001137 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1138 offs, pp->retprobe ? "%return" : "", line,
1139 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001140 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001141 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001142 if (ret <= 0)
1143 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001144
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001145 return buf;
1146error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001147 pr_debug("Failed to synthesize perf probe point: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001148 strerror(-ret));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001149 if (buf)
1150 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001151 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001152}
1153
1154#if 0
1155char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1156{
1157 char *buf;
1158 int i, len, ret;
1159
1160 buf = synthesize_perf_probe_point(&pev->point);
1161 if (!buf)
1162 return NULL;
1163
1164 len = strlen(buf);
1165 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001166 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001167 pev->args[i].name);
1168 if (ret <= 0) {
1169 free(buf);
1170 return NULL;
1171 }
1172 len += ret;
1173 }
1174
1175 return buf;
1176}
1177#endif
1178
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301179static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001180 char **buf, size_t *buflen,
1181 int depth)
1182{
1183 int ret;
1184 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301185 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001186 buflen, depth + 1);
1187 if (depth < 0)
1188 goto out;
1189 }
1190
1191 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1192 if (ret < 0)
1193 depth = ret;
1194 else {
1195 *buf += ret;
1196 *buflen -= ret;
1197 }
1198out:
1199 return depth;
1200
1201}
1202
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301203static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001204 char *buf, size_t buflen)
1205{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301206 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001207 int ret, depth = 0;
1208 char *tmp = buf;
1209
1210 /* Argument name or separator */
1211 if (arg->name)
1212 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1213 else
1214 ret = e_snprintf(buf, buflen, " ");
1215 if (ret < 0)
1216 return ret;
1217 buf += ret;
1218 buflen -= ret;
1219
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001220 /* Special case: @XXX */
1221 if (arg->value[0] == '@' && arg->ref)
1222 ref = ref->next;
1223
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001224 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001225 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301226 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001227 &buflen, 1);
1228 if (depth < 0)
1229 return depth;
1230 }
1231
1232 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001233 if (arg->value[0] == '@' && arg->ref)
1234 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1235 arg->ref->offset);
1236 else
1237 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001238 if (ret < 0)
1239 return ret;
1240 buf += ret;
1241 buflen -= ret;
1242
1243 /* Closing */
1244 while (depth--) {
1245 ret = e_snprintf(buf, buflen, ")");
1246 if (ret < 0)
1247 return ret;
1248 buf += ret;
1249 buflen -= ret;
1250 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001251 /* Print argument type */
1252 if (arg->type) {
1253 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1254 if (ret <= 0)
1255 return ret;
1256 buf += ret;
1257 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001258
1259 return buf - tmp;
1260}
1261
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301262char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001263{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301264 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001265 char *buf;
1266 int i, len, ret;
1267
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001268 buf = zalloc(MAX_CMDLEN);
1269 if (buf == NULL)
1270 return NULL;
1271
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001272 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s+%lu",
1273 tp->retprobe ? 'r' : 'p',
1274 tev->group, tev->event,
1275 tp->symbol, tp->offset);
1276 if (len <= 0)
1277 goto error;
1278
1279 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301280 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001281 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001282 if (ret <= 0)
1283 goto error;
1284 len += ret;
1285 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001286
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001287 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001288error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001289 free(buf);
1290 return NULL;
1291}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001292
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301293static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001294 struct perf_probe_event *pev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001295{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001296 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001297 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001298
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001299 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001300 pev->event = strdup(tev->event);
1301 pev->group = strdup(tev->group);
1302 if (pev->event == NULL || pev->group == NULL)
1303 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001304
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001305 /* Convert trace_point to probe_point */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301306 ret = kprobe_convert_to_perf_probe(&tev->point, &pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001307 if (ret < 0)
1308 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001309
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001310 /* Convert trace_arg to probe_arg */
1311 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001312 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1313 if (pev->args == NULL)
1314 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001315 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001316 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001317 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001318 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301319 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001320 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001321 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001322 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001323 if (pev->args[i].name == NULL && ret >= 0)
1324 ret = -ENOMEM;
1325 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001326
1327 if (ret < 0)
1328 clear_perf_probe_event(pev);
1329
1330 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001331}
1332
1333void clear_perf_probe_event(struct perf_probe_event *pev)
1334{
1335 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001336 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001337 int i;
1338
1339 if (pev->event)
1340 free(pev->event);
1341 if (pev->group)
1342 free(pev->group);
1343 if (pp->file)
1344 free(pp->file);
1345 if (pp->function)
1346 free(pp->function);
1347 if (pp->lazy_line)
1348 free(pp->lazy_line);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001349 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001350 if (pev->args[i].name)
1351 free(pev->args[i].name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001352 if (pev->args[i].var)
1353 free(pev->args[i].var);
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001354 if (pev->args[i].type)
1355 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001356 field = pev->args[i].field;
1357 while (field) {
1358 next = field->next;
1359 if (field->name)
1360 free(field->name);
1361 free(field);
1362 field = next;
1363 }
1364 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001365 if (pev->args)
1366 free(pev->args);
1367 memset(pev, 0, sizeof(*pev));
1368}
1369
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301370static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001371{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301372 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001373 int i;
1374
1375 if (tev->event)
1376 free(tev->event);
1377 if (tev->group)
1378 free(tev->group);
1379 if (tev->point.symbol)
1380 free(tev->point.symbol);
1381 for (i = 0; i < tev->nargs; i++) {
1382 if (tev->args[i].name)
1383 free(tev->args[i].name);
1384 if (tev->args[i].value)
1385 free(tev->args[i].value);
Masami Hiramatsu49849122010-04-12 13:17:15 -04001386 if (tev->args[i].type)
1387 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001388 ref = tev->args[i].ref;
1389 while (ref) {
1390 next = ref->next;
1391 free(ref);
1392 ref = next;
1393 }
1394 }
1395 if (tev->args)
1396 free(tev->args);
1397 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001398}
1399
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001400static int open_kprobe_events(bool readwrite)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001401{
1402 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001403 const char *__debugfs;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001404 int ret;
1405
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001406 __debugfs = debugfs_find_mountpoint();
1407 if (__debugfs == NULL) {
1408 pr_warning("Debugfs is not mounted.\n");
1409 return -ENOENT;
1410 }
1411
1412 ret = e_snprintf(buf, PATH_MAX, "%stracing/kprobe_events", __debugfs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001413 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001414 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001415 if (readwrite && !probe_event_dry_run)
1416 ret = open(buf, O_RDWR, O_APPEND);
1417 else
1418 ret = open(buf, O_RDONLY, 0);
1419 }
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001420
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001421 if (ret < 0) {
1422 if (errno == ENOENT)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001423 pr_warning("kprobe_events file does not exist - please"
1424 " rebuild kernel with CONFIG_KPROBE_EVENT.\n");
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001425 else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001426 pr_warning("Failed to open kprobe_events file: %s\n",
1427 strerror(errno));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001428 }
1429 return ret;
1430}
1431
1432/* Get raw string list of current kprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301433static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001434{
1435 int ret, idx;
1436 FILE *fp;
1437 char buf[MAX_CMDLEN];
1438 char *p;
1439 struct strlist *sl;
1440
1441 sl = strlist__new(true, NULL);
1442
1443 fp = fdopen(dup(fd), "r");
1444 while (!feof(fp)) {
1445 p = fgets(buf, MAX_CMDLEN, fp);
1446 if (!p)
1447 break;
1448
1449 idx = strlen(p) - 1;
1450 if (p[idx] == '\n')
1451 p[idx] = '\0';
1452 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001453 if (ret < 0) {
1454 pr_debug("strlist__add failed: %s\n", strerror(-ret));
1455 strlist__delete(sl);
1456 return NULL;
1457 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001458 }
1459 fclose(fp);
1460
1461 return sl;
1462}
1463
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001464/* Show an event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001465static int show_perf_probe_event(struct perf_probe_event *pev)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001466{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001467 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001468 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001469 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001470
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001471 /* Synthesize only event probe point */
1472 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001473 if (!place)
1474 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001475
1476 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001477 if (ret < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001478 return ret;
1479
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001480 printf(" %-20s (on %s", buf, place);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001481
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001482 if (pev->nargs > 0) {
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001483 printf(" with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001484 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001485 ret = synthesize_perf_probe_arg(&pev->args[i],
1486 buf, 128);
1487 if (ret < 0)
1488 break;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001489 printf(" %s", buf);
1490 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001491 }
1492 printf(")\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001493 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001494 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001495}
1496
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001497/* List up current perf-probe events */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001498int show_perf_probe_events(void)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001499{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001500 int fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301501 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001502 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001503 struct strlist *rawlist;
1504 struct str_node *ent;
1505
Masami Hiramatsu72041332010-01-05 17:47:10 -05001506 setup_pager();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001507 ret = init_vmlinux();
1508 if (ret < 0)
1509 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001510
1511 memset(&tev, 0, sizeof(tev));
1512 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05001513
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001514 fd = open_kprobe_events(false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001515 if (fd < 0)
1516 return fd;
1517
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301518 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001519 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001520 if (!rawlist)
1521 return -ENOENT;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001522
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001523 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301524 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001525 if (ret >= 0) {
1526 ret = convert_to_perf_probe_event(&tev, &pev);
1527 if (ret >= 0)
1528 ret = show_perf_probe_event(&pev);
1529 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001530 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301531 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001532 if (ret < 0)
1533 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001534 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001535 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001536
1537 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001538}
1539
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001540/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301541static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001542{
Masami Hiramatsufa282442009-12-08 17:03:23 -05001543 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001544 struct strlist *sl, *rawlist;
1545 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301546 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001547 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001548
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001549 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301550 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001551 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001552 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301553 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001554 if (ret < 0)
1555 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001556 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001557 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
1558 tev.event);
1559 if (ret >= 0)
1560 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001561 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001562 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301563 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001564 if (ret < 0)
1565 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001566 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001567 strlist__delete(rawlist);
1568
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001569 if (ret < 0) {
1570 strlist__delete(sl);
1571 return NULL;
1572 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001573 return sl;
1574}
1575
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301576static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001577{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02001578 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301579 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001580
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001581 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301582 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001583 return -EINVAL;
1584 }
1585
Masami Hiramatsufa282442009-12-08 17:03:23 -05001586 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001587 if (!probe_event_dry_run) {
1588 ret = write(fd, buf, strlen(buf));
1589 if (ret <= 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001590 pr_warning("Failed to write event: %s\n",
1591 strerror(errno));
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001592 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001593 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001594 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001595}
1596
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001597static int get_new_event_name(char *buf, size_t len, const char *base,
1598 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001599{
1600 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001601
1602 /* Try no suffix */
1603 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001604 if (ret < 0) {
1605 pr_debug("snprintf() failed: %s\n", strerror(-ret));
1606 return ret;
1607 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001608 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001609 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001610
Masami Hiramatsud761b082009-12-15 10:32:25 -05001611 if (!allow_suffix) {
1612 pr_warning("Error: event \"%s\" already exists. "
1613 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001614 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05001615 }
1616
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001617 /* Try to add suffix */
1618 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001619 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001620 if (ret < 0) {
1621 pr_debug("snprintf() failed: %s\n", strerror(-ret));
1622 return ret;
1623 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001624 if (!strlist__has_entry(namelist, buf))
1625 break;
1626 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001627 if (i == MAX_EVENT_INDEX) {
1628 pr_warning("Too many events are on the same function.\n");
1629 ret = -ERANGE;
1630 }
1631
1632 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001633}
1634
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301635static int __add_probe_trace_events(struct perf_probe_event *pev,
1636 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001637 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001638{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001639 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301640 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001641 char buf[64];
1642 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001643 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001644
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001645 fd = open_kprobe_events(true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001646 if (fd < 0)
1647 return fd;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001648 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301649 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001650 if (!namelist) {
1651 pr_debug("Failed to get current event list.\n");
1652 return -EIO;
1653 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001654
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001655 ret = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001656 printf("Add new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001657 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001658 tev = &tevs[i];
1659 if (pev->event)
1660 event = pev->event;
1661 else
1662 if (pev->point.function)
1663 event = pev->point.function;
1664 else
1665 event = tev->point.symbol;
1666 if (pev->group)
1667 group = pev->group;
1668 else
1669 group = PERFPROBE_GROUP;
1670
1671 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001672 ret = get_new_event_name(buf, 64, event,
1673 namelist, allow_suffix);
1674 if (ret < 0)
1675 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001676 event = buf;
1677
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001678 tev->event = strdup(event);
1679 tev->group = strdup(group);
1680 if (tev->event == NULL || tev->group == NULL) {
1681 ret = -ENOMEM;
1682 break;
1683 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301684 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001685 if (ret < 0)
1686 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001687 /* Add added event name to namelist */
1688 strlist__add(namelist, event);
1689
1690 /* Trick here - save current event/group */
1691 event = pev->event;
1692 group = pev->group;
1693 pev->event = tev->event;
1694 pev->group = tev->group;
1695 show_perf_probe_event(pev);
1696 /* Trick here - restore current event/group */
1697 pev->event = (char *)event;
1698 pev->group = (char *)group;
1699
1700 /*
1701 * Probes after the first probe which comes from same
1702 * user input are always allowed to add suffix, because
1703 * there might be several addresses corresponding to
1704 * one code line.
1705 */
1706 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001707 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001708
1709 if (ret >= 0) {
1710 /* Show how to use the event. */
1711 printf("\nYou can now use it on all perf tools, such as:\n\n");
1712 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
1713 tev->event);
1714 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05001715
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001716 strlist__delete(namelist);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001717 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001718 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001719}
Masami Hiramatsufa282442009-12-08 17:03:23 -05001720
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301721static int convert_to_probe_trace_events(struct perf_probe_event *pev,
1722 struct probe_trace_event **tevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001723 int max_tevs, const char *module)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001724{
1725 struct symbol *sym;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001726 int ret = 0, i;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301727 struct probe_trace_event *tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001728
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001729 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001730 ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, module);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001731 if (ret != 0)
1732 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001733
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001734 /* Allocate trace event buffer */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301735 tev = *tevs = zalloc(sizeof(struct probe_trace_event));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001736 if (tev == NULL)
1737 return -ENOMEM;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001738
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001739 /* Copy parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001740 tev->point.symbol = strdup(pev->point.function);
1741 if (tev->point.symbol == NULL) {
1742 ret = -ENOMEM;
1743 goto error;
1744 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001745 tev->point.offset = pev->point.offset;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09001746 tev->point.retprobe = pev->point.retprobe;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001747 tev->nargs = pev->nargs;
1748 if (tev->nargs) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301749 tev->args = zalloc(sizeof(struct probe_trace_arg)
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001750 * tev->nargs);
1751 if (tev->args == NULL) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001752 ret = -ENOMEM;
1753 goto error;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001754 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04001755 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001756 if (pev->args[i].name) {
1757 tev->args[i].name = strdup(pev->args[i].name);
1758 if (tev->args[i].name == NULL) {
1759 ret = -ENOMEM;
1760 goto error;
1761 }
1762 }
1763 tev->args[i].value = strdup(pev->args[i].var);
1764 if (tev->args[i].value == NULL) {
1765 ret = -ENOMEM;
1766 goto error;
1767 }
1768 if (pev->args[i].type) {
1769 tev->args[i].type = strdup(pev->args[i].type);
1770 if (tev->args[i].type == NULL) {
1771 ret = -ENOMEM;
1772 goto error;
1773 }
1774 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04001775 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001776 }
1777
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001778 /* Currently just checking function name from symbol map */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001779 sym = __find_kernel_function_by_name(tev->point.symbol, NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001780 if (!sym) {
1781 pr_warning("Kernel symbol \'%s\' not found.\n",
1782 tev->point.symbol);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001783 ret = -ENOENT;
1784 goto error;
1785 }
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001786
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001787 return 1;
1788error:
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301789 clear_probe_trace_event(tev);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001790 free(tev);
1791 *tevs = NULL;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001792 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001793}
1794
1795struct __event_package {
1796 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301797 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001798 int ntevs;
1799};
1800
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001801int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001802 int max_tevs, const char *module, bool force_add)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001803{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001804 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001805 struct __event_package *pkgs;
1806
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001807 pkgs = zalloc(sizeof(struct __event_package) * npevs);
1808 if (pkgs == NULL)
1809 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001810
1811 /* Init vmlinux path */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001812 ret = init_vmlinux();
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001813 if (ret < 0) {
1814 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001815 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001816 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001817
1818 /* Loop 1: convert all events */
1819 for (i = 0; i < npevs; i++) {
1820 pkgs[i].pev = &pevs[i];
1821 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301822 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001823 &pkgs[i].tevs,
1824 max_tevs,
1825 module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001826 if (ret < 0)
1827 goto end;
1828 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001829 }
1830
1831 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001832 for (i = 0; i < npevs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301833 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001834 pkgs[i].ntevs, force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001835 if (ret < 0)
1836 break;
1837 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001838end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001839 /* Loop 3: cleanup and free trace events */
1840 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001841 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301842 clear_probe_trace_event(&pkgs[i].tevs[j]);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001843 free(pkgs[i].tevs);
1844 }
1845 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001846
1847 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001848}
1849
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301850static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001851{
1852 char *p;
1853 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001854 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001855
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301856 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001857 ret = e_snprintf(buf, 128, "-:%s", ent->s);
1858 if (ret < 0)
1859 goto error;
1860
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001861 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001862 if (!p) {
1863 pr_debug("Internal error: %s should have ':' but not.\n",
1864 ent->s);
1865 ret = -ENOTSUP;
1866 goto error;
1867 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001868 *p = '/';
1869
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001870 pr_debug("Writing event: %s\n", buf);
1871 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001872 if (ret < 0)
1873 goto error;
1874
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001875 printf("Remove event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001876 return 0;
1877error:
1878 pr_warning("Failed to delete event: %s\n", strerror(-ret));
1879 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001880}
1881
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301882static int del_trace_probe_event(int fd, const char *group,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001883 const char *event, struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05001884{
1885 char buf[128];
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001886 struct str_node *ent, *n;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001887 int found = 0, ret = 0;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001888
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001889 ret = e_snprintf(buf, 128, "%s:%s", group, event);
1890 if (ret < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001891 pr_err("Failed to copy event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001892 return ret;
1893 }
Masami Hiramatsufa282442009-12-08 17:03:23 -05001894
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001895 if (strpbrk(buf, "*?")) { /* Glob-exp */
1896 strlist__for_each_safe(ent, n, namelist)
1897 if (strglobmatch(ent->s, buf)) {
1898 found++;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301899 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001900 if (ret < 0)
1901 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001902 strlist__remove(namelist, ent);
1903 }
1904 } else {
1905 ent = strlist__find(namelist, buf);
1906 if (ent) {
1907 found++;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301908 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001909 if (ret >= 0)
1910 strlist__remove(namelist, ent);
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001911 }
1912 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001913 if (found == 0 && ret >= 0)
1914 pr_info("Info: Event \"%s\" does not exist.\n", buf);
1915
1916 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001917}
1918
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001919int del_perf_probe_events(struct strlist *dellist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05001920{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001921 int fd, ret = 0;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001922 const char *group, *event;
1923 char *p, *str;
1924 struct str_node *ent;
1925 struct strlist *namelist;
1926
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001927 fd = open_kprobe_events(true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001928 if (fd < 0)
1929 return fd;
1930
Masami Hiramatsufa282442009-12-08 17:03:23 -05001931 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301932 namelist = get_probe_trace_event_names(fd, true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001933 if (namelist == NULL)
1934 return -EINVAL;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001935
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001936 strlist__for_each(ent, dellist) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001937 str = strdup(ent->s);
1938 if (str == NULL) {
1939 ret = -ENOMEM;
1940 break;
1941 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001942 pr_debug("Parsing: %s\n", str);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001943 p = strchr(str, ':');
1944 if (p) {
1945 group = str;
1946 *p = '\0';
1947 event = p + 1;
1948 } else {
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001949 group = "*";
Masami Hiramatsufa282442009-12-08 17:03:23 -05001950 event = str;
1951 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001952 pr_debug("Group: %s, Event: %s\n", group, event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301953 ret = del_trace_probe_event(fd, group, event, namelist);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001954 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001955 if (ret < 0)
1956 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001957 }
1958 strlist__delete(namelist);
1959 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001960
1961 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001962}
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001963/* TODO: don't use a global variable for filter ... */
1964static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001965
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001966/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001967 * If a symbol corresponds to a function with global binding and
1968 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001969 */
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001970static int filter_available_functions(struct map *map __unused,
1971 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001972{
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001973 if (sym->binding == STB_GLOBAL &&
1974 strfilter__compare(available_func_filter, sym->name))
1975 return 0;
1976 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001977}
1978
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001979int show_available_funcs(const char *module, struct strfilter *_filter)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001980{
1981 struct map *map;
1982 int ret;
1983
1984 setup_pager();
1985
1986 ret = init_vmlinux();
1987 if (ret < 0)
1988 return ret;
1989
1990 map = kernel_get_module_map(module);
1991 if (!map) {
1992 pr_err("Failed to find %s map.\n", (module) ? : "kernel");
1993 return -EINVAL;
1994 }
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001995 available_func_filter = _filter;
1996 if (map__load(map, filter_available_functions)) {
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001997 pr_err("Failed to load map.\n");
1998 return -EINVAL;
1999 }
2000 if (!dso__sorted_by_name(map->dso, map->type))
2001 dso__sort_by_name(map->dso, map->type);
2002
2003 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2004 return 0;
2005}