blob: b812f1412c3ad8101cb417a9aef2b576b6302457 [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 Hiramatsu50656ee2009-11-30 19:19:58 -050034
35#undef _GNU_SOURCE
Masami Hiramatsu31facc52010-03-16 18:05:30 -040036#include "util.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050037#include "event.h"
Masami Hiramatsue1c01d62009-11-30 19:20:05 -050038#include "string.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050039#include "strlist.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050040#include "debug.h"
Masami Hiramatsu72041332010-01-05 17:47:10 -050041#include "cache.h"
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050042#include "color.h"
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040043#include "symbol.h"
44#include "thread.h"
Masami Hiramatsu7ca59892010-04-14 18:39:28 -040045#include "debugfs.h"
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030046#include "trace-event.h" /* For __unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050047#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040048#include "probe-finder.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050049
50#define MAX_CMDLEN 256
51#define MAX_PROBE_ARGS 128
52#define PERFPROBE_GROUP "probe"
53
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040054bool probe_event_dry_run; /* Dry run flag */
55
Masami Hiramatsu146a1432010-04-12 13:17:42 -040056#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050057
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050058/* If there is no space to write, returns -E2BIG. */
59static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu84988452009-12-07 12:00:53 -050060 __attribute__((format(printf, 3, 4)));
61
62static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050063{
64 int ret;
65 va_list ap;
66 va_start(ap, format);
67 ret = vsnprintf(str, size, format, ap);
68 va_end(ap);
69 if (ret >= (int)size)
70 ret = -E2BIG;
71 return ret;
72}
73
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030074static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030075static struct machine machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040076
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090077/* Initialize symbol maps and path of vmlinux/modules */
Masami Hiramatsu146a1432010-04-12 13:17:42 -040078static int init_vmlinux(void)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040079{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040080 int ret;
81
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040082 symbol_conf.sort_by_name = true;
83 if (symbol_conf.vmlinux_name == NULL)
84 symbol_conf.try_vmlinux_path = true;
85 else
86 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040087 ret = symbol__init();
88 if (ret < 0) {
89 pr_debug("Failed to init symbol map.\n");
90 goto out;
91 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040092
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090093 ret = machine__init(&machine, "", HOST_KERNEL_ID);
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030094 if (ret < 0)
95 goto out;
96
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090097 if (machine__create_kernel_maps(&machine) < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +090098 pr_debug("machine__create_kernel_maps() failed.\n");
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090099 goto out;
100 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400101out:
102 if (ret < 0)
103 pr_warning("Failed to init vmlinux path.\n");
104 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400105}
106
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900107static struct symbol *__find_kernel_function_by_name(const char *name,
108 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400109{
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900110 return machine__find_kernel_function_by_name(&machine, name, mapp,
111 NULL);
112}
113
114const char *kernel_get_module_path(const char *module)
115{
116 struct dso *dso;
117
118 if (module) {
119 list_for_each_entry(dso, &machine.kernel_dsos, node) {
120 if (strncmp(dso->short_name + 1, module,
121 dso->short_name_len - 2) == 0)
122 goto found;
123 }
124 pr_debug("Failed to find module %s.\n", module);
125 return NULL;
126 } else {
127 dso = machine.vmlinux_maps[MAP__FUNCTION]->dso;
128 if (dso__load_vmlinux_path(dso,
129 machine.vmlinux_maps[MAP__FUNCTION], NULL) < 0) {
130 pr_debug("Failed to load kernel map.\n");
131 return NULL;
132 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400133 }
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900134found:
135 return dso->long_name;
136}
137
138#ifdef DWARF_SUPPORT
139static int open_vmlinux(const char *module)
140{
141 const char *path = kernel_get_module_path(module);
142 if (!path) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900143 pr_err("Failed to find path of %s module.\n",
144 module ?: "kernel");
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900145 return -ENOENT;
146 }
147 pr_debug("Try to open %s\n", path);
148 return open(path, O_RDONLY);
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400149}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300150
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530151/*
152 * Convert trace point to probe point with debuginfo
153 * Currently only handles kprobes.
154 */
155static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900156 struct perf_probe_point *pp)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300157{
158 struct symbol *sym;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900159 struct map *map;
160 u64 addr;
161 int ret = -ENOENT;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300162
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900163 sym = __find_kernel_function_by_name(tp->symbol, &map);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300164 if (sym) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900165 addr = map->unmap_ip(map, sym->start + tp->offset);
166 pr_debug("try to find %s+%ld@%llx\n", tp->symbol,
167 tp->offset, addr);
168 ret = find_perf_probe_point((unsigned long)addr, pp);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300169 }
170 if (ret <= 0) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400171 pr_debug("Failed to find corresponding probes from "
172 "debuginfo. Use kprobe event information.\n");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400173 pp->function = strdup(tp->symbol);
174 if (pp->function == NULL)
175 return -ENOMEM;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300176 pp->offset = tp->offset;
177 }
178 pp->retprobe = tp->retprobe;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400179
180 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300181}
182
183/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530184static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
185 struct probe_trace_event **tevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900186 int max_tevs, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300187{
188 bool need_dwarf = perf_probe_event_need_dwarf(pev);
189 int fd, ntevs;
190
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900191 fd = open_vmlinux(module);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300192 if (fd < 0) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400193 if (need_dwarf) {
194 pr_warning("Failed to open debuginfo file.\n");
195 return fd;
196 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300197 pr_debug("Could not open vmlinux. Try to use symbols.\n");
198 return 0;
199 }
200
201 /* Searching trace events corresponding to probe event */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530202 ntevs = find_probe_trace_events(fd, pev, tevs, max_tevs);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300203 close(fd);
204
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400205 if (ntevs > 0) { /* Succeeded to find trace events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530206 pr_debug("find %d probe_trace_events.\n", ntevs);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300207 return ntevs;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400208 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300209
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400210 if (ntevs == 0) { /* No error but failed to find probe point. */
211 pr_warning("Probe point '%s' not found.\n",
212 synthesize_perf_probe_point(&pev->point));
213 return -ENOENT;
214 }
215 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400216 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
217 if (ntevs == -EBADF) {
218 pr_warning("Warning: No dwarf info found in the vmlinux - "
219 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
220 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900221 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400222 return 0;
223 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300224 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400225 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300226}
227
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900228/*
229 * Find a src file from a DWARF tag path. Prepend optional source path prefix
230 * and chop off leading directories that do not exist. Result is passed back as
231 * a newly allocated path on success.
232 * Return 0 if file was found and readable, -errno otherwise.
233 */
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900234static int get_real_path(const char *raw_path, const char *comp_dir,
235 char **new_path)
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900236{
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900237 const char *prefix = symbol_conf.source_prefix;
238
239 if (!prefix) {
240 if (raw_path[0] != '/' && comp_dir)
241 /* If not an absolute path, try to use comp_dir */
242 prefix = comp_dir;
243 else {
244 if (access(raw_path, R_OK) == 0) {
245 *new_path = strdup(raw_path);
246 return 0;
247 } else
248 return -errno;
249 }
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900250 }
251
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900252 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900253 if (!*new_path)
254 return -ENOMEM;
255
256 for (;;) {
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900257 sprintf(*new_path, "%s/%s", prefix, raw_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900258
259 if (access(*new_path, R_OK) == 0)
260 return 0;
261
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900262 if (!symbol_conf.source_prefix)
263 /* In case of searching comp_dir, don't retry */
264 return -errno;
265
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900266 switch (errno) {
267 case ENAMETOOLONG:
268 case ENOENT:
269 case EROFS:
270 case EFAULT:
271 raw_path = strchr(++raw_path, '/');
272 if (!raw_path) {
273 free(*new_path);
274 *new_path = NULL;
275 return -ENOENT;
276 }
277 continue;
278
279 default:
280 free(*new_path);
281 *new_path = NULL;
282 return -errno;
283 }
284 }
285}
286
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300287#define LINEBUF_SIZE 256
288#define NR_ADDITIONAL_LINES 2
289
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400290static int show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300291{
292 char buf[LINEBUF_SIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100293 const char *color = show_num ? "" : PERF_COLOR_BLUE;
294 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300295
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100296 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300297 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
298 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100299 if (skip)
300 continue;
301 if (!prefix) {
302 prefix = show_num ? "%7d " : " ";
303 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300304 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100305 color_fprintf(stdout, color, "%s", buf);
306
307 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400308
309 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300310error:
311 if (feof(fp))
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400312 pr_warning("Source file is shorter than expected.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300313 else
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400314 pr_warning("File read error: %s\n", strerror(errno));
315
316 return -1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300317}
318
319/*
320 * Show line-range always requires debuginfo to find source file and
321 * line number.
322 */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900323int show_line_range(struct line_range *lr, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300324{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400325 int l = 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300326 struct line_node *ln;
327 FILE *fp;
328 int fd, ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900329 char *tmp;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300330
331 /* Search a line range */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400332 ret = init_vmlinux();
333 if (ret < 0)
334 return ret;
335
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900336 fd = open_vmlinux(module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400337 if (fd < 0) {
338 pr_warning("Failed to open debuginfo file.\n");
339 return fd;
340 }
341
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300342 ret = find_line_range(fd, lr);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300343 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400344 if (ret == 0) {
345 pr_warning("Specified source line is not found.\n");
346 return -ENOENT;
347 } else if (ret < 0) {
348 pr_warning("Debuginfo analysis failed. (%d)\n", ret);
349 return ret;
350 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300351
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900352 /* Convert source file path */
353 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900354 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900355 free(tmp); /* Free old path */
356 if (ret < 0) {
357 pr_warning("Failed to find source file. (%d)\n", ret);
358 return ret;
359 }
360
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300361 setup_pager();
362
363 if (lr->function)
364 fprintf(stdout, "<%s:%d>\n", lr->function,
365 lr->start - lr->offset);
366 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100367 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300368
369 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400370 if (fp == NULL) {
371 pr_warning("Failed to open %s: %s\n", lr->path,
372 strerror(errno));
373 return -errno;
374 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300375 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100376 while (l < lr->start) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400377 ret = show_one_line(fp, l++, true, false);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100378 if (ret < 0)
379 goto end;
380 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300381
382 list_for_each_entry(ln, &lr->line_list, list) {
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100383 for (; ln->line > l; l++) {
384 ret = show_one_line(fp, l - lr->offset, false, false);
385 if (ret < 0)
386 goto end;
387 }
388 ret = show_one_line(fp, l++ - lr->offset, false, true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400389 if (ret < 0)
390 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300391 }
392
393 if (lr->end == INT_MAX)
394 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100395 while (l <= lr->end && !feof(fp)) {
396 ret = show_one_line(fp, l++ - lr->offset, false, false);
397 if (ret < 0)
398 break;
399 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400400end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300401 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400402 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300403}
404
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900405static int show_available_vars_at(int fd, struct perf_probe_event *pev,
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +0900406 int max_vls, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900407{
408 char *buf;
409 int ret, i;
410 struct str_node *node;
411 struct variable_list *vls = NULL, *vl;
412
413 buf = synthesize_perf_probe_point(&pev->point);
414 if (!buf)
415 return -EINVAL;
416 pr_debug("Searching variables at %s\n", buf);
417
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +0900418 ret = find_available_vars_at(fd, pev, &vls, max_vls, externs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900419 if (ret > 0) {
420 /* Some variables were found */
421 fprintf(stdout, "Available variables at %s\n", buf);
422 for (i = 0; i < ret; i++) {
423 vl = &vls[i];
424 /*
425 * A probe point might be converted to
426 * several trace points.
427 */
428 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
429 vl->point.offset);
430 free(vl->point.symbol);
431 if (vl->vars) {
432 strlist__for_each(node, vl->vars)
433 fprintf(stdout, "\t\t%s\n", node->s);
434 strlist__delete(vl->vars);
435 } else
436 fprintf(stdout, "(No variables)\n");
437 }
438 free(vls);
439 } else
440 pr_err("Failed to find variables at %s (%d)\n", buf, ret);
441
442 free(buf);
443 return ret;
444}
445
446/* Show available variables on given probe point */
447int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900448 int max_vls, const char *module, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900449{
450 int i, fd, ret = 0;
451
452 ret = init_vmlinux();
453 if (ret < 0)
454 return ret;
455
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900456 fd = open_vmlinux(module);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900457 if (fd < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900458 pr_warning("Failed to open debug information file.\n");
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900459 return fd;
460 }
461
462 setup_pager();
463
464 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +0900465 ret = show_available_vars_at(fd, &pevs[i], max_vls, externs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900466
467 close(fd);
468 return ret;
469}
470
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300471#else /* !DWARF_SUPPORT */
472
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530473static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900474 struct perf_probe_point *pp)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300475{
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900476 struct symbol *sym;
477
478 sym = __find_kernel_function_by_name(tp->symbol, NULL);
479 if (!sym) {
480 pr_err("Failed to find symbol %s in kernel.\n", tp->symbol);
481 return -ENOENT;
482 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400483 pp->function = strdup(tp->symbol);
484 if (pp->function == NULL)
485 return -ENOMEM;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300486 pp->offset = tp->offset;
487 pp->retprobe = tp->retprobe;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400488
489 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300490}
491
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530492static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
493 struct probe_trace_event **tevs __unused,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900494 int max_tevs __unused, const char *mod __unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300495{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400496 if (perf_probe_event_need_dwarf(pev)) {
497 pr_warning("Debuginfo-analysis is not supported.\n");
498 return -ENOSYS;
499 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300500 return 0;
501}
502
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900503int show_line_range(struct line_range *lr __unused, const char *module __unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300504{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400505 pr_warning("Debuginfo-analysis is not supported.\n");
506 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300507}
508
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900509int show_available_vars(struct perf_probe_event *pevs __unused,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900510 int npevs __unused, int max_vls __unused,
511 const char *module __unused, bool externs __unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900512{
513 pr_warning("Debuginfo-analysis is not supported.\n");
514 return -ENOSYS;
515}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400516#endif
517
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400518int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500519{
520 const char *ptr;
521 char *tmp;
522 /*
523 * <Syntax>
524 * SRC:SLN[+NUM|-ELN]
525 * FUNC[:SLN[+NUM|-ELN]]
526 */
527 ptr = strchr(arg, ':');
528 if (ptr) {
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400529 lr->start = (int)strtoul(ptr + 1, &tmp, 0);
Masami Hiramatsudda4ab32010-04-14 18:39:50 -0400530 if (*tmp == '+') {
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400531 lr->end = lr->start + (int)strtoul(tmp + 1, &tmp, 0);
Masami Hiramatsudda4ab32010-04-14 18:39:50 -0400532 lr->end--; /*
533 * Adjust the number of lines here.
534 * If the number of lines == 1, the
535 * the end of line should be equal to
536 * the start of line.
537 */
538 } else if (*tmp == '-')
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400539 lr->end = (int)strtoul(tmp + 1, &tmp, 0);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500540 else
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400541 lr->end = INT_MAX;
542 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
543 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500544 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400545 " than end line.\n");
546 return -EINVAL;
547 }
548 if (*tmp != '\0') {
549 semantic_error("Tailing with invalid character '%d'.\n",
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500550 *tmp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400551 return -EINVAL;
552 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400553 tmp = strndup(arg, (ptr - arg));
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400554 } else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400555 tmp = strdup(arg);
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400556 lr->end = INT_MAX;
557 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400558
559 if (tmp == NULL)
560 return -ENOMEM;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500561
562 if (strchr(tmp, '.'))
563 lr->file = tmp;
564 else
565 lr->function = tmp;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400566
567 return 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500568}
569
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500570/* Check the name is good for event/group */
571static bool check_event_name(const char *name)
572{
573 if (!isalpha(*name) && *name != '_')
574 return false;
575 while (*++name != '\0') {
576 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
577 return false;
578 }
579 return true;
580}
581
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500582/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400583static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500584{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400585 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500586 char *ptr, *tmp;
587 char c, nc = 0;
588 /*
589 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500590 * perf probe [EVENT=]SRC[:LN|;PTN]
591 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500592 *
593 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500594 */
595
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500596 ptr = strpbrk(arg, ";=@+%");
597 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500598 *ptr = '\0';
599 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400600 if (strchr(arg, ':')) {
601 semantic_error("Group name is not supported yet.\n");
602 return -ENOTSUP;
603 }
604 if (!check_event_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500605 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400606 "follow C symbol-naming rule.\n", arg);
607 return -EINVAL;
608 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400609 pev->event = strdup(arg);
610 if (pev->event == NULL)
611 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400612 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500613 arg = tmp;
614 }
615
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500616 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500617 if (ptr) {
618 nc = *ptr;
619 *ptr++ = '\0';
620 }
621
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400622 tmp = strdup(arg);
623 if (tmp == NULL)
624 return -ENOMEM;
625
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500626 /* Check arg is function or file and copy it */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400627 if (strchr(tmp, '.')) /* File */
628 pp->file = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500629 else /* Function */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400630 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500631
632 /* Parse other options */
633 while (ptr) {
634 arg = ptr;
635 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500636 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400637 pp->lazy_line = strdup(arg);
638 if (pp->lazy_line == NULL)
639 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500640 break;
641 }
642 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500643 if (ptr) {
644 nc = *ptr;
645 *ptr++ = '\0';
646 }
647 switch (c) {
648 case ':': /* Line number */
649 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400650 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500651 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400652 " in line number.\n");
653 return -EINVAL;
654 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500655 break;
656 case '+': /* Byte offset from a symbol */
657 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400658 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500659 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400660 " in offset.\n");
661 return -EINVAL;
662 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500663 break;
664 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400665 if (pp->file) {
666 semantic_error("SRC@SRC is not allowed.\n");
667 return -EINVAL;
668 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400669 pp->file = strdup(arg);
670 if (pp->file == NULL)
671 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500672 break;
673 case '%': /* Probe places */
674 if (strcmp(arg, "return") == 0) {
675 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400676 } else { /* Others not supported yet */
677 semantic_error("%%%s is not supported.\n", arg);
678 return -ENOTSUP;
679 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500680 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400681 default: /* Buggy case */
682 pr_err("This program has a bug at %s:%d.\n",
683 __FILE__, __LINE__);
684 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500685 break;
686 }
687 }
688
689 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400690 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900691 semantic_error("Lazy pattern can't be used with"
692 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400693 return -EINVAL;
694 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500695
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400696 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900697 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400698 return -EINVAL;
699 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500700
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400701 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900702 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400703 return -EINVAL;
704 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500705
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400706 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500707 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900708 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400709 return -EINVAL;
710 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500711
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400712 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900713 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400714 return -EINVAL;
715 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500716
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400717 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900718 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400719 return -EINVAL;
720 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500721
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400722 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500723 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900724 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400725 return -EINVAL;
726 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500727
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400728 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500729 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
730 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400731 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500732}
733
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400734/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400735static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400736{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400737 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400738 struct perf_probe_arg_field **fieldp;
739
740 pr_debug("parsing arg: %s into ", str);
741
Masami Hiramatsu48481932010-04-12 13:16:53 -0400742 tmp = strchr(str, '=');
743 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400744 arg->name = strndup(str, tmp - str);
745 if (arg->name == NULL)
746 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400747 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400748 str = tmp + 1;
749 }
750
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400751 tmp = strchr(str, ':');
752 if (tmp) { /* Type setting */
753 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400754 arg->type = strdup(tmp + 1);
755 if (arg->type == NULL)
756 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400757 pr_debug("type:%s ", arg->type);
758 }
759
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400760 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400761 if (!is_c_varname(str) || !tmp) {
762 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400763 arg->var = strdup(str);
764 if (arg->var == NULL)
765 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400766 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400767 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400768 }
769
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400770 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400771 arg->var = strndup(str, tmp - str);
772 if (arg->var == NULL)
773 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400774 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400775 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400776 fieldp = &arg->field;
777
778 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400779 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
780 if (*fieldp == NULL)
781 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400782 if (*tmp == '[') { /* Array */
783 str = tmp;
784 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400785 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400786 if (*tmp != ']' || tmp == str + 1) {
787 semantic_error("Array index must be a"
788 " number.\n");
789 return -EINVAL;
790 }
791 tmp++;
792 if (*tmp == '\0')
793 tmp = NULL;
794 } else { /* Structure */
795 if (*tmp == '.') {
796 str = tmp + 1;
797 (*fieldp)->ref = false;
798 } else if (tmp[1] == '>') {
799 str = tmp + 2;
800 (*fieldp)->ref = true;
801 } else {
802 semantic_error("Argument parse error: %s\n",
803 str);
804 return -EINVAL;
805 }
806 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400807 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400808 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400809 (*fieldp)->name = strndup(str, tmp - str);
810 if ((*fieldp)->name == NULL)
811 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400812 if (*str != '[')
813 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400814 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
815 fieldp = &(*fieldp)->next;
816 }
817 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400818 (*fieldp)->name = strdup(str);
819 if ((*fieldp)->name == NULL)
820 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400821 if (*str != '[')
822 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400823 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -0400824
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400825 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400826 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400827 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400828 if (arg->name == NULL)
829 return -ENOMEM;
830 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400831 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400832}
833
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400834/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400835int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500836{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500837 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400838 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500839
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400840 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400841 if (!argv) {
842 pr_debug("Failed to split arguments.\n");
843 return -ENOMEM;
844 }
845 if (argc - 1 > MAX_PROBE_ARGS) {
846 semantic_error("Too many probe arguments (%d).\n", argc - 1);
847 ret = -ERANGE;
848 goto out;
849 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500850 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400851 ret = parse_perf_probe_point(argv[0], pev);
852 if (ret < 0)
853 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500854
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500855 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400856 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400857 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
858 if (pev->args == NULL) {
859 ret = -ENOMEM;
860 goto out;
861 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400862 for (i = 0; i < pev->nargs && ret >= 0; i++) {
863 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
864 if (ret >= 0 &&
865 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400866 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400867 " kretprobe.\n");
868 ret = -EINVAL;
869 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500870 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400871out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500872 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400873
874 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500875}
876
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400877/* Return true if this perf_probe_event requires debuginfo */
878bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500879{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400880 int i;
881
882 if (pev->point.file || pev->point.line || pev->point.lazy_line)
883 return true;
884
885 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -0400886 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400887 return true;
888
889 return false;
890}
891
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530892/* Parse probe_events event into struct probe_point */
893static int parse_probe_trace_command(const char *cmd,
894 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400895{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530896 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500897 char pr;
898 char *p;
899 int ret, i, argc;
900 char **argv;
901
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530902 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400903 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400904 if (!argv) {
905 pr_debug("Failed to split arguments.\n");
906 return -ENOMEM;
907 }
908 if (argc < 2) {
909 semantic_error("Too few probe arguments.\n");
910 ret = -ERANGE;
911 goto out;
912 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500913
914 /* Scan event and group name. */
Liming Wang93aaa452009-12-02 16:42:54 +0800915 ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400916 &pr, (float *)(void *)&tev->group,
917 (float *)(void *)&tev->event);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400918 if (ret != 3) {
919 semantic_error("Failed to parse event name: %s\n", argv[0]);
920 ret = -EINVAL;
921 goto out;
922 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400923 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500924
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400925 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500926
927 /* Scan function name and offset */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400928 ret = sscanf(argv[1], "%a[^+]+%lu", (float *)(void *)&tp->symbol,
929 &tp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500930 if (ret == 1)
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400931 tp->offset = 0;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500932
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400933 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530934 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400935 if (tev->args == NULL) {
936 ret = -ENOMEM;
937 goto out;
938 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400939 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500940 p = strchr(argv[i + 2], '=');
941 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400942 *p++ = '\0';
943 else
944 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400945 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400946 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400947 tev->args[i].value = strdup(p);
948 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
949 ret = -ENOMEM;
950 goto out;
951 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500952 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400953 ret = 0;
954out:
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500955 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400956 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500957}
958
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400959/* Compose only probe arg */
960int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
961{
962 struct perf_probe_arg_field *field = pa->field;
963 int ret;
964 char *tmp = buf;
965
Masami Hiramatsu48481932010-04-12 13:16:53 -0400966 if (pa->name && pa->var)
967 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
968 else
969 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400970 if (ret <= 0)
971 goto error;
972 tmp += ret;
973 len -= ret;
974
975 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400976 if (field->name[0] == '[')
977 ret = e_snprintf(tmp, len, "%s", field->name);
978 else
979 ret = e_snprintf(tmp, len, "%s%s",
980 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400981 if (ret <= 0)
982 goto error;
983 tmp += ret;
984 len -= ret;
985 field = field->next;
986 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400987
988 if (pa->type) {
989 ret = e_snprintf(tmp, len, ":%s", pa->type);
990 if (ret <= 0)
991 goto error;
992 tmp += ret;
993 len -= ret;
994 }
995
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400996 return tmp - buf;
997error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900998 pr_debug("Failed to synthesize perf probe argument: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400999 strerror(-ret));
1000 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001001}
1002
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001003/* Compose only probe point (not argument) */
1004static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001005{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001006 char *buf, *tmp;
1007 char offs[32] = "", line[32] = "", file[32] = "";
1008 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001009
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001010 buf = zalloc(MAX_CMDLEN);
1011 if (buf == NULL) {
1012 ret = -ENOMEM;
1013 goto error;
1014 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001015 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001016 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001017 if (ret <= 0)
1018 goto error;
1019 }
1020 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001021 ret = e_snprintf(line, 32, ":%d", pp->line);
1022 if (ret <= 0)
1023 goto error;
1024 }
1025 if (pp->file) {
Masami Hiramatsudd259c52010-04-14 18:39:35 -04001026 len = strlen(pp->file) - 31;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001027 if (len < 0)
1028 len = 0;
1029 tmp = strchr(pp->file + len, '/');
1030 if (!tmp)
Masami Hiramatsudd259c52010-04-14 18:39:35 -04001031 tmp = pp->file + len;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001032 ret = e_snprintf(file, 32, "@%s", tmp + 1);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001033 if (ret <= 0)
1034 goto error;
1035 }
1036
1037 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001038 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1039 offs, pp->retprobe ? "%return" : "", line,
1040 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001041 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001042 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001043 if (ret <= 0)
1044 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001045
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001046 return buf;
1047error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001048 pr_debug("Failed to synthesize perf probe point: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001049 strerror(-ret));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001050 if (buf)
1051 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001052 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001053}
1054
1055#if 0
1056char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1057{
1058 char *buf;
1059 int i, len, ret;
1060
1061 buf = synthesize_perf_probe_point(&pev->point);
1062 if (!buf)
1063 return NULL;
1064
1065 len = strlen(buf);
1066 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001067 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001068 pev->args[i].name);
1069 if (ret <= 0) {
1070 free(buf);
1071 return NULL;
1072 }
1073 len += ret;
1074 }
1075
1076 return buf;
1077}
1078#endif
1079
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301080static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001081 char **buf, size_t *buflen,
1082 int depth)
1083{
1084 int ret;
1085 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301086 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001087 buflen, depth + 1);
1088 if (depth < 0)
1089 goto out;
1090 }
1091
1092 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1093 if (ret < 0)
1094 depth = ret;
1095 else {
1096 *buf += ret;
1097 *buflen -= ret;
1098 }
1099out:
1100 return depth;
1101
1102}
1103
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301104static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001105 char *buf, size_t buflen)
1106{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301107 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001108 int ret, depth = 0;
1109 char *tmp = buf;
1110
1111 /* Argument name or separator */
1112 if (arg->name)
1113 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1114 else
1115 ret = e_snprintf(buf, buflen, " ");
1116 if (ret < 0)
1117 return ret;
1118 buf += ret;
1119 buflen -= ret;
1120
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001121 /* Special case: @XXX */
1122 if (arg->value[0] == '@' && arg->ref)
1123 ref = ref->next;
1124
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001125 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001126 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301127 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001128 &buflen, 1);
1129 if (depth < 0)
1130 return depth;
1131 }
1132
1133 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001134 if (arg->value[0] == '@' && arg->ref)
1135 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1136 arg->ref->offset);
1137 else
1138 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001139 if (ret < 0)
1140 return ret;
1141 buf += ret;
1142 buflen -= ret;
1143
1144 /* Closing */
1145 while (depth--) {
1146 ret = e_snprintf(buf, buflen, ")");
1147 if (ret < 0)
1148 return ret;
1149 buf += ret;
1150 buflen -= ret;
1151 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001152 /* Print argument type */
1153 if (arg->type) {
1154 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1155 if (ret <= 0)
1156 return ret;
1157 buf += ret;
1158 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001159
1160 return buf - tmp;
1161}
1162
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301163char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001164{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301165 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001166 char *buf;
1167 int i, len, ret;
1168
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001169 buf = zalloc(MAX_CMDLEN);
1170 if (buf == NULL)
1171 return NULL;
1172
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001173 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s+%lu",
1174 tp->retprobe ? 'r' : 'p',
1175 tev->group, tev->event,
1176 tp->symbol, tp->offset);
1177 if (len <= 0)
1178 goto error;
1179
1180 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301181 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001182 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001183 if (ret <= 0)
1184 goto error;
1185 len += ret;
1186 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001187
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001188 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001189error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001190 free(buf);
1191 return NULL;
1192}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001193
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301194static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001195 struct perf_probe_event *pev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001196{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001197 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001198 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001199
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001200 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001201 pev->event = strdup(tev->event);
1202 pev->group = strdup(tev->group);
1203 if (pev->event == NULL || pev->group == NULL)
1204 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001205
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001206 /* Convert trace_point to probe_point */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301207 ret = kprobe_convert_to_perf_probe(&tev->point, &pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001208 if (ret < 0)
1209 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001210
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001211 /* Convert trace_arg to probe_arg */
1212 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001213 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1214 if (pev->args == NULL)
1215 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001216 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001217 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001218 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001219 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301220 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001221 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001222 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001223 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001224 if (pev->args[i].name == NULL && ret >= 0)
1225 ret = -ENOMEM;
1226 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001227
1228 if (ret < 0)
1229 clear_perf_probe_event(pev);
1230
1231 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001232}
1233
1234void clear_perf_probe_event(struct perf_probe_event *pev)
1235{
1236 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001237 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001238 int i;
1239
1240 if (pev->event)
1241 free(pev->event);
1242 if (pev->group)
1243 free(pev->group);
1244 if (pp->file)
1245 free(pp->file);
1246 if (pp->function)
1247 free(pp->function);
1248 if (pp->lazy_line)
1249 free(pp->lazy_line);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001250 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001251 if (pev->args[i].name)
1252 free(pev->args[i].name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001253 if (pev->args[i].var)
1254 free(pev->args[i].var);
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001255 if (pev->args[i].type)
1256 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001257 field = pev->args[i].field;
1258 while (field) {
1259 next = field->next;
1260 if (field->name)
1261 free(field->name);
1262 free(field);
1263 field = next;
1264 }
1265 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001266 if (pev->args)
1267 free(pev->args);
1268 memset(pev, 0, sizeof(*pev));
1269}
1270
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301271static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001272{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301273 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001274 int i;
1275
1276 if (tev->event)
1277 free(tev->event);
1278 if (tev->group)
1279 free(tev->group);
1280 if (tev->point.symbol)
1281 free(tev->point.symbol);
1282 for (i = 0; i < tev->nargs; i++) {
1283 if (tev->args[i].name)
1284 free(tev->args[i].name);
1285 if (tev->args[i].value)
1286 free(tev->args[i].value);
Masami Hiramatsu49849122010-04-12 13:17:15 -04001287 if (tev->args[i].type)
1288 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001289 ref = tev->args[i].ref;
1290 while (ref) {
1291 next = ref->next;
1292 free(ref);
1293 ref = next;
1294 }
1295 }
1296 if (tev->args)
1297 free(tev->args);
1298 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001299}
1300
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001301static int open_kprobe_events(bool readwrite)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001302{
1303 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001304 const char *__debugfs;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001305 int ret;
1306
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001307 __debugfs = debugfs_find_mountpoint();
1308 if (__debugfs == NULL) {
1309 pr_warning("Debugfs is not mounted.\n");
1310 return -ENOENT;
1311 }
1312
1313 ret = e_snprintf(buf, PATH_MAX, "%stracing/kprobe_events", __debugfs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001314 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001315 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001316 if (readwrite && !probe_event_dry_run)
1317 ret = open(buf, O_RDWR, O_APPEND);
1318 else
1319 ret = open(buf, O_RDONLY, 0);
1320 }
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001321
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001322 if (ret < 0) {
1323 if (errno == ENOENT)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001324 pr_warning("kprobe_events file does not exist - please"
1325 " rebuild kernel with CONFIG_KPROBE_EVENT.\n");
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001326 else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001327 pr_warning("Failed to open kprobe_events file: %s\n",
1328 strerror(errno));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001329 }
1330 return ret;
1331}
1332
1333/* Get raw string list of current kprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301334static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001335{
1336 int ret, idx;
1337 FILE *fp;
1338 char buf[MAX_CMDLEN];
1339 char *p;
1340 struct strlist *sl;
1341
1342 sl = strlist__new(true, NULL);
1343
1344 fp = fdopen(dup(fd), "r");
1345 while (!feof(fp)) {
1346 p = fgets(buf, MAX_CMDLEN, fp);
1347 if (!p)
1348 break;
1349
1350 idx = strlen(p) - 1;
1351 if (p[idx] == '\n')
1352 p[idx] = '\0';
1353 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001354 if (ret < 0) {
1355 pr_debug("strlist__add failed: %s\n", strerror(-ret));
1356 strlist__delete(sl);
1357 return NULL;
1358 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001359 }
1360 fclose(fp);
1361
1362 return sl;
1363}
1364
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001365/* Show an event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001366static int show_perf_probe_event(struct perf_probe_event *pev)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001367{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001368 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001369 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001370 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001371
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001372 /* Synthesize only event probe point */
1373 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001374 if (!place)
1375 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001376
1377 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001378 if (ret < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001379 return ret;
1380
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001381 printf(" %-20s (on %s", buf, place);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001382
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001383 if (pev->nargs > 0) {
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001384 printf(" with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001385 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001386 ret = synthesize_perf_probe_arg(&pev->args[i],
1387 buf, 128);
1388 if (ret < 0)
1389 break;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001390 printf(" %s", buf);
1391 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001392 }
1393 printf(")\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001394 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001395 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001396}
1397
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001398/* List up current perf-probe events */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001399int show_perf_probe_events(void)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001400{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001401 int fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301402 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001403 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001404 struct strlist *rawlist;
1405 struct str_node *ent;
1406
Masami Hiramatsu72041332010-01-05 17:47:10 -05001407 setup_pager();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001408 ret = init_vmlinux();
1409 if (ret < 0)
1410 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001411
1412 memset(&tev, 0, sizeof(tev));
1413 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05001414
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001415 fd = open_kprobe_events(false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001416 if (fd < 0)
1417 return fd;
1418
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301419 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001420 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001421 if (!rawlist)
1422 return -ENOENT;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001423
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001424 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301425 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001426 if (ret >= 0) {
1427 ret = convert_to_perf_probe_event(&tev, &pev);
1428 if (ret >= 0)
1429 ret = show_perf_probe_event(&pev);
1430 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001431 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301432 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001433 if (ret < 0)
1434 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001435 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001436 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001437
1438 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001439}
1440
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001441/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301442static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001443{
Masami Hiramatsufa282442009-12-08 17:03:23 -05001444 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001445 struct strlist *sl, *rawlist;
1446 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301447 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001448 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001449
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001450 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301451 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001452 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001453 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301454 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001455 if (ret < 0)
1456 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001457 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001458 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
1459 tev.event);
1460 if (ret >= 0)
1461 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001462 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001463 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301464 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001465 if (ret < 0)
1466 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001467 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001468 strlist__delete(rawlist);
1469
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001470 if (ret < 0) {
1471 strlist__delete(sl);
1472 return NULL;
1473 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001474 return sl;
1475}
1476
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301477static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001478{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02001479 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301480 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001481
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001482 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301483 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001484 return -EINVAL;
1485 }
1486
Masami Hiramatsufa282442009-12-08 17:03:23 -05001487 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001488 if (!probe_event_dry_run) {
1489 ret = write(fd, buf, strlen(buf));
1490 if (ret <= 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001491 pr_warning("Failed to write event: %s\n",
1492 strerror(errno));
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001493 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001494 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001495 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001496}
1497
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001498static int get_new_event_name(char *buf, size_t len, const char *base,
1499 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001500{
1501 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001502
1503 /* Try no suffix */
1504 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001505 if (ret < 0) {
1506 pr_debug("snprintf() failed: %s\n", strerror(-ret));
1507 return ret;
1508 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001509 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001510 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001511
Masami Hiramatsud761b082009-12-15 10:32:25 -05001512 if (!allow_suffix) {
1513 pr_warning("Error: event \"%s\" already exists. "
1514 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001515 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05001516 }
1517
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001518 /* Try to add suffix */
1519 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001520 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001521 if (ret < 0) {
1522 pr_debug("snprintf() failed: %s\n", strerror(-ret));
1523 return ret;
1524 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001525 if (!strlist__has_entry(namelist, buf))
1526 break;
1527 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001528 if (i == MAX_EVENT_INDEX) {
1529 pr_warning("Too many events are on the same function.\n");
1530 ret = -ERANGE;
1531 }
1532
1533 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001534}
1535
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301536static int __add_probe_trace_events(struct perf_probe_event *pev,
1537 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001538 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001539{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001540 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301541 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001542 char buf[64];
1543 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001544 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001545
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001546 fd = open_kprobe_events(true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001547 if (fd < 0)
1548 return fd;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001549 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301550 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001551 if (!namelist) {
1552 pr_debug("Failed to get current event list.\n");
1553 return -EIO;
1554 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001555
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001556 ret = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001557 printf("Add new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001558 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001559 tev = &tevs[i];
1560 if (pev->event)
1561 event = pev->event;
1562 else
1563 if (pev->point.function)
1564 event = pev->point.function;
1565 else
1566 event = tev->point.symbol;
1567 if (pev->group)
1568 group = pev->group;
1569 else
1570 group = PERFPROBE_GROUP;
1571
1572 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001573 ret = get_new_event_name(buf, 64, event,
1574 namelist, allow_suffix);
1575 if (ret < 0)
1576 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001577 event = buf;
1578
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001579 tev->event = strdup(event);
1580 tev->group = strdup(group);
1581 if (tev->event == NULL || tev->group == NULL) {
1582 ret = -ENOMEM;
1583 break;
1584 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301585 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001586 if (ret < 0)
1587 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001588 /* Add added event name to namelist */
1589 strlist__add(namelist, event);
1590
1591 /* Trick here - save current event/group */
1592 event = pev->event;
1593 group = pev->group;
1594 pev->event = tev->event;
1595 pev->group = tev->group;
1596 show_perf_probe_event(pev);
1597 /* Trick here - restore current event/group */
1598 pev->event = (char *)event;
1599 pev->group = (char *)group;
1600
1601 /*
1602 * Probes after the first probe which comes from same
1603 * user input are always allowed to add suffix, because
1604 * there might be several addresses corresponding to
1605 * one code line.
1606 */
1607 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001608 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001609
1610 if (ret >= 0) {
1611 /* Show how to use the event. */
1612 printf("\nYou can now use it on all perf tools, such as:\n\n");
1613 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
1614 tev->event);
1615 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05001616
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001617 strlist__delete(namelist);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001618 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001619 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001620}
Masami Hiramatsufa282442009-12-08 17:03:23 -05001621
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301622static int convert_to_probe_trace_events(struct perf_probe_event *pev,
1623 struct probe_trace_event **tevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001624 int max_tevs, const char *module)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001625{
1626 struct symbol *sym;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001627 int ret = 0, i;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301628 struct probe_trace_event *tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001629
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001630 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001631 ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, module);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001632 if (ret != 0)
1633 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001634
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001635 /* Allocate trace event buffer */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301636 tev = *tevs = zalloc(sizeof(struct probe_trace_event));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001637 if (tev == NULL)
1638 return -ENOMEM;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001639
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001640 /* Copy parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001641 tev->point.symbol = strdup(pev->point.function);
1642 if (tev->point.symbol == NULL) {
1643 ret = -ENOMEM;
1644 goto error;
1645 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001646 tev->point.offset = pev->point.offset;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09001647 tev->point.retprobe = pev->point.retprobe;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001648 tev->nargs = pev->nargs;
1649 if (tev->nargs) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301650 tev->args = zalloc(sizeof(struct probe_trace_arg)
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001651 * tev->nargs);
1652 if (tev->args == NULL) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001653 ret = -ENOMEM;
1654 goto error;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001655 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04001656 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001657 if (pev->args[i].name) {
1658 tev->args[i].name = strdup(pev->args[i].name);
1659 if (tev->args[i].name == NULL) {
1660 ret = -ENOMEM;
1661 goto error;
1662 }
1663 }
1664 tev->args[i].value = strdup(pev->args[i].var);
1665 if (tev->args[i].value == NULL) {
1666 ret = -ENOMEM;
1667 goto error;
1668 }
1669 if (pev->args[i].type) {
1670 tev->args[i].type = strdup(pev->args[i].type);
1671 if (tev->args[i].type == NULL) {
1672 ret = -ENOMEM;
1673 goto error;
1674 }
1675 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04001676 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001677 }
1678
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001679 /* Currently just checking function name from symbol map */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001680 sym = __find_kernel_function_by_name(tev->point.symbol, NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001681 if (!sym) {
1682 pr_warning("Kernel symbol \'%s\' not found.\n",
1683 tev->point.symbol);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001684 ret = -ENOENT;
1685 goto error;
1686 }
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001687
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001688 return 1;
1689error:
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301690 clear_probe_trace_event(tev);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001691 free(tev);
1692 *tevs = NULL;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001693 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001694}
1695
1696struct __event_package {
1697 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301698 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001699 int ntevs;
1700};
1701
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001702int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001703 int max_tevs, const char *module, bool force_add)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001704{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001705 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001706 struct __event_package *pkgs;
1707
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001708 pkgs = zalloc(sizeof(struct __event_package) * npevs);
1709 if (pkgs == NULL)
1710 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001711
1712 /* Init vmlinux path */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001713 ret = init_vmlinux();
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001714 if (ret < 0) {
1715 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001716 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001717 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001718
1719 /* Loop 1: convert all events */
1720 for (i = 0; i < npevs; i++) {
1721 pkgs[i].pev = &pevs[i];
1722 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301723 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001724 &pkgs[i].tevs,
1725 max_tevs,
1726 module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001727 if (ret < 0)
1728 goto end;
1729 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001730 }
1731
1732 /* Loop 2: add all events */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001733 for (i = 0; i < npevs && ret >= 0; i++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301734 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001735 pkgs[i].ntevs, force_add);
1736end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001737 /* Loop 3: cleanup and free trace events */
1738 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001739 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301740 clear_probe_trace_event(&pkgs[i].tevs[j]);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001741 free(pkgs[i].tevs);
1742 }
1743 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001744
1745 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001746}
1747
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301748static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001749{
1750 char *p;
1751 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001752 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001753
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301754 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001755 ret = e_snprintf(buf, 128, "-:%s", ent->s);
1756 if (ret < 0)
1757 goto error;
1758
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001759 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001760 if (!p) {
1761 pr_debug("Internal error: %s should have ':' but not.\n",
1762 ent->s);
1763 ret = -ENOTSUP;
1764 goto error;
1765 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001766 *p = '/';
1767
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001768 pr_debug("Writing event: %s\n", buf);
1769 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001770 if (ret < 0)
1771 goto error;
1772
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001773 printf("Remove event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001774 return 0;
1775error:
1776 pr_warning("Failed to delete event: %s\n", strerror(-ret));
1777 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001778}
1779
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301780static int del_trace_probe_event(int fd, const char *group,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001781 const char *event, struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05001782{
1783 char buf[128];
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001784 struct str_node *ent, *n;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001785 int found = 0, ret = 0;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001786
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001787 ret = e_snprintf(buf, 128, "%s:%s", group, event);
1788 if (ret < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001789 pr_err("Failed to copy event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001790 return ret;
1791 }
Masami Hiramatsufa282442009-12-08 17:03:23 -05001792
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001793 if (strpbrk(buf, "*?")) { /* Glob-exp */
1794 strlist__for_each_safe(ent, n, namelist)
1795 if (strglobmatch(ent->s, buf)) {
1796 found++;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301797 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001798 if (ret < 0)
1799 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001800 strlist__remove(namelist, ent);
1801 }
1802 } else {
1803 ent = strlist__find(namelist, buf);
1804 if (ent) {
1805 found++;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301806 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001807 if (ret >= 0)
1808 strlist__remove(namelist, ent);
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001809 }
1810 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001811 if (found == 0 && ret >= 0)
1812 pr_info("Info: Event \"%s\" does not exist.\n", buf);
1813
1814 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001815}
1816
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001817int del_perf_probe_events(struct strlist *dellist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05001818{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001819 int fd, ret = 0;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001820 const char *group, *event;
1821 char *p, *str;
1822 struct str_node *ent;
1823 struct strlist *namelist;
1824
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001825 fd = open_kprobe_events(true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001826 if (fd < 0)
1827 return fd;
1828
Masami Hiramatsufa282442009-12-08 17:03:23 -05001829 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301830 namelist = get_probe_trace_event_names(fd, true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001831 if (namelist == NULL)
1832 return -EINVAL;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001833
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001834 strlist__for_each(ent, dellist) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001835 str = strdup(ent->s);
1836 if (str == NULL) {
1837 ret = -ENOMEM;
1838 break;
1839 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001840 pr_debug("Parsing: %s\n", str);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001841 p = strchr(str, ':');
1842 if (p) {
1843 group = str;
1844 *p = '\0';
1845 event = p + 1;
1846 } else {
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001847 group = "*";
Masami Hiramatsufa282442009-12-08 17:03:23 -05001848 event = str;
1849 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001850 pr_debug("Group: %s, Event: %s\n", group, event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301851 ret = del_trace_probe_event(fd, group, event, namelist);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001852 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001853 if (ret < 0)
1854 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001855 }
1856 strlist__delete(namelist);
1857 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001858
1859 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001860}
1861