blob: 9d237e3cff5d72cf4548a21f004f472b4ac35365 [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 close(fd);
238
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400239 if (ntevs > 0) { /* Succeeded to find trace events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530240 pr_debug("find %d probe_trace_events.\n", ntevs);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300241 return ntevs;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400242 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300243
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400244 if (ntevs == 0) { /* No error but failed to find probe point. */
245 pr_warning("Probe point '%s' not found.\n",
246 synthesize_perf_probe_point(&pev->point));
247 return -ENOENT;
248 }
249 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400250 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
251 if (ntevs == -EBADF) {
252 pr_warning("Warning: No dwarf info found in the vmlinux - "
253 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
254 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900255 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400256 return 0;
257 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300258 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400259 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300260}
261
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900262/*
263 * Find a src file from a DWARF tag path. Prepend optional source path prefix
264 * and chop off leading directories that do not exist. Result is passed back as
265 * a newly allocated path on success.
266 * Return 0 if file was found and readable, -errno otherwise.
267 */
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900268static int get_real_path(const char *raw_path, const char *comp_dir,
269 char **new_path)
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900270{
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900271 const char *prefix = symbol_conf.source_prefix;
272
273 if (!prefix) {
274 if (raw_path[0] != '/' && comp_dir)
275 /* If not an absolute path, try to use comp_dir */
276 prefix = comp_dir;
277 else {
278 if (access(raw_path, R_OK) == 0) {
279 *new_path = strdup(raw_path);
280 return 0;
281 } else
282 return -errno;
283 }
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900284 }
285
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900286 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900287 if (!*new_path)
288 return -ENOMEM;
289
290 for (;;) {
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900291 sprintf(*new_path, "%s/%s", prefix, raw_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900292
293 if (access(*new_path, R_OK) == 0)
294 return 0;
295
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900296 if (!symbol_conf.source_prefix)
297 /* In case of searching comp_dir, don't retry */
298 return -errno;
299
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900300 switch (errno) {
301 case ENAMETOOLONG:
302 case ENOENT:
303 case EROFS:
304 case EFAULT:
305 raw_path = strchr(++raw_path, '/');
306 if (!raw_path) {
307 free(*new_path);
308 *new_path = NULL;
309 return -ENOENT;
310 }
311 continue;
312
313 default:
314 free(*new_path);
315 *new_path = NULL;
316 return -errno;
317 }
318 }
319}
320
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300321#define LINEBUF_SIZE 256
322#define NR_ADDITIONAL_LINES 2
323
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100324static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300325{
326 char buf[LINEBUF_SIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100327 const char *color = show_num ? "" : PERF_COLOR_BLUE;
328 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300329
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100330 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300331 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
332 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100333 if (skip)
334 continue;
335 if (!prefix) {
336 prefix = show_num ? "%7d " : " ";
337 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300338 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100339 color_fprintf(stdout, color, "%s", buf);
340
341 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400342
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100343 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300344error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100345 if (ferror(fp)) {
Franck Bui-Huu32b2b6e2010-12-22 17:37:13 +0100346 pr_warning("File read error: %s\n", strerror(errno));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100347 return -1;
348 }
349 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300350}
351
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100352static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
353{
354 int rv = __show_one_line(fp, l, skip, show_num);
355 if (rv == 0) {
356 pr_warning("Source file is shorter than expected.\n");
357 rv = -1;
358 }
359 return rv;
360}
361
362#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
363#define show_one_line(f,l) _show_one_line(f,l,false,false)
364#define skip_one_line(f,l) _show_one_line(f,l,true,false)
365#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
366
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300367/*
368 * Show line-range always requires debuginfo to find source file and
369 * line number.
370 */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900371int show_line_range(struct line_range *lr, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300372{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400373 int l = 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300374 struct line_node *ln;
375 FILE *fp;
376 int fd, ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900377 char *tmp;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300378
379 /* Search a line range */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400380 ret = init_vmlinux();
381 if (ret < 0)
382 return ret;
383
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900384 fd = open_vmlinux(module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400385 if (fd < 0) {
386 pr_warning("Failed to open debuginfo file.\n");
387 return fd;
388 }
389
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300390 ret = find_line_range(fd, lr);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300391 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400392 if (ret == 0) {
393 pr_warning("Specified source line is not found.\n");
394 return -ENOENT;
395 } else if (ret < 0) {
396 pr_warning("Debuginfo analysis failed. (%d)\n", ret);
397 return ret;
398 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300399
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900400 /* Convert source file path */
401 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900402 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900403 free(tmp); /* Free old path */
404 if (ret < 0) {
405 pr_warning("Failed to find source file. (%d)\n", ret);
406 return ret;
407 }
408
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300409 setup_pager();
410
411 if (lr->function)
412 fprintf(stdout, "<%s:%d>\n", lr->function,
413 lr->start - lr->offset);
414 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100415 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300416
417 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400418 if (fp == NULL) {
419 pr_warning("Failed to open %s: %s\n", lr->path,
420 strerror(errno));
421 return -errno;
422 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300423 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100424 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100425 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100426 if (ret < 0)
427 goto end;
428 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300429
430 list_for_each_entry(ln, &lr->line_list, list) {
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100431 for (; ln->line > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100432 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100433 if (ret < 0)
434 goto end;
435 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100436 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400437 if (ret < 0)
438 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300439 }
440
441 if (lr->end == INT_MAX)
442 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100443 while (l <= lr->end) {
444 ret = show_one_line_or_eof(fp, l++ - lr->offset);
445 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100446 break;
447 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400448end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300449 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400450 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300451}
452
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900453static int show_available_vars_at(int fd, struct perf_probe_event *pev,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900454 int max_vls, struct strfilter *_filter,
455 bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900456{
457 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900458 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900459 struct str_node *node;
460 struct variable_list *vls = NULL, *vl;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900461 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900462
463 buf = synthesize_perf_probe_point(&pev->point);
464 if (!buf)
465 return -EINVAL;
466 pr_debug("Searching variables at %s\n", buf);
467
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +0900468 ret = find_available_vars_at(fd, pev, &vls, max_vls, externs);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900469 if (ret <= 0) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900470 pr_err("Failed to find variables at %s (%d)\n", buf, ret);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900471 goto end;
472 }
473 /* Some variables are found */
474 fprintf(stdout, "Available variables at %s\n", buf);
475 for (i = 0; i < ret; i++) {
476 vl = &vls[i];
477 /*
478 * A probe point might be converted to
479 * several trace points.
480 */
481 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
482 vl->point.offset);
483 free(vl->point.symbol);
484 nvars = 0;
485 if (vl->vars) {
486 strlist__for_each(node, vl->vars) {
487 var = strchr(node->s, '\t') + 1;
488 if (strfilter__compare(_filter, var)) {
489 fprintf(stdout, "\t\t%s\n", node->s);
490 nvars++;
491 }
492 }
493 strlist__delete(vl->vars);
494 }
495 if (nvars == 0)
496 fprintf(stdout, "\t\t(No matched variables)\n");
497 }
498 free(vls);
499end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900500 free(buf);
501 return ret;
502}
503
504/* Show available variables on given probe point */
505int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900506 int max_vls, const char *module,
507 struct strfilter *_filter, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900508{
509 int i, fd, ret = 0;
510
511 ret = init_vmlinux();
512 if (ret < 0)
513 return ret;
514
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900515 fd = open_vmlinux(module);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900516 if (fd < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900517 pr_warning("Failed to open debug information file.\n");
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900518 return fd;
519 }
520
521 setup_pager();
522
523 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900524 ret = show_available_vars_at(fd, &pevs[i], max_vls, _filter,
525 externs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900526
527 close(fd);
528 return ret;
529}
530
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300531#else /* !DWARF_SUPPORT */
532
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530533static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900534 struct perf_probe_point *pp)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300535{
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900536 struct symbol *sym;
537
538 sym = __find_kernel_function_by_name(tp->symbol, NULL);
539 if (!sym) {
540 pr_err("Failed to find symbol %s in kernel.\n", tp->symbol);
541 return -ENOENT;
542 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400543 pp->function = strdup(tp->symbol);
544 if (pp->function == NULL)
545 return -ENOMEM;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300546 pp->offset = tp->offset;
547 pp->retprobe = tp->retprobe;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400548
549 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300550}
551
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530552static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
553 struct probe_trace_event **tevs __unused,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900554 int max_tevs __unused, const char *mod __unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300555{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400556 if (perf_probe_event_need_dwarf(pev)) {
557 pr_warning("Debuginfo-analysis is not supported.\n");
558 return -ENOSYS;
559 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300560 return 0;
561}
562
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900563int show_line_range(struct line_range *lr __unused, const char *module __unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300564{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400565 pr_warning("Debuginfo-analysis is not supported.\n");
566 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300567}
568
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900569int show_available_vars(struct perf_probe_event *pevs __unused,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900570 int npevs __unused, int max_vls __unused,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900571 const char *module __unused,
572 struct strfilter *filter __unused,
573 bool externs __unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900574{
575 pr_warning("Debuginfo-analysis is not supported.\n");
576 return -ENOSYS;
577}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400578#endif
579
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100580static int parse_line_num(char **ptr, int *val, const char *what)
581{
582 const char *start = *ptr;
583
584 errno = 0;
585 *val = strtol(*ptr, ptr, 0);
586 if (errno || *ptr == start) {
587 semantic_error("'%s' is not a valid number.\n", what);
588 return -EINVAL;
589 }
590 return 0;
591}
592
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100593/*
594 * Stuff 'lr' according to the line range described by 'arg'.
595 * The line range syntax is described by:
596 *
597 * SRC[:SLN[+NUM|-ELN]]
598 * FNC[:SLN[+NUM|-ELN]]
599 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400600int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500601{
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100602 char *range, *name = strdup(arg);
603 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100604
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100605 if (!name)
606 return -ENOMEM;
607
608 lr->start = 0;
609 lr->end = INT_MAX;
610
611 range = strchr(name, ':');
612 if (range) {
613 *range++ = '\0';
614
615 err = parse_line_num(&range, &lr->start, "start line");
616 if (err)
617 goto err;
618
619 if (*range == '+' || *range == '-') {
620 const char c = *range++;
621
622 err = parse_line_num(&range, &lr->end, "end line");
623 if (err)
624 goto err;
625
626 if (c == '+') {
627 lr->end += lr->start;
628 /*
629 * Adjust the number of lines here.
630 * If the number of lines == 1, the
631 * the end of line should be equal to
632 * the start of line.
633 */
634 lr->end--;
635 }
636 }
637
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400638 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100639
640 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400641 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500642 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400643 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100644 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400645 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100646 if (*range != '\0') {
647 semantic_error("Tailing with invalid str '%s'.\n", range);
648 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400649 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400650 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400651
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100652 if (strchr(name, '.'))
653 lr->file = name;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500654 else
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100655 lr->function = name;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400656
657 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100658err:
659 free(name);
660 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500661}
662
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500663/* Check the name is good for event/group */
664static bool check_event_name(const char *name)
665{
666 if (!isalpha(*name) && *name != '_')
667 return false;
668 while (*++name != '\0') {
669 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
670 return false;
671 }
672 return true;
673}
674
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500675/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400676static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500677{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400678 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500679 char *ptr, *tmp;
680 char c, nc = 0;
681 /*
682 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500683 * perf probe [EVENT=]SRC[:LN|;PTN]
684 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500685 *
686 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500687 */
688
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500689 ptr = strpbrk(arg, ";=@+%");
690 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500691 *ptr = '\0';
692 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400693 if (strchr(arg, ':')) {
694 semantic_error("Group name is not supported yet.\n");
695 return -ENOTSUP;
696 }
697 if (!check_event_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500698 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400699 "follow C symbol-naming rule.\n", arg);
700 return -EINVAL;
701 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400702 pev->event = strdup(arg);
703 if (pev->event == NULL)
704 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400705 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500706 arg = tmp;
707 }
708
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500709 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500710 if (ptr) {
711 nc = *ptr;
712 *ptr++ = '\0';
713 }
714
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400715 tmp = strdup(arg);
716 if (tmp == NULL)
717 return -ENOMEM;
718
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500719 /* Check arg is function or file and copy it */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400720 if (strchr(tmp, '.')) /* File */
721 pp->file = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500722 else /* Function */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400723 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500724
725 /* Parse other options */
726 while (ptr) {
727 arg = ptr;
728 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500729 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400730 pp->lazy_line = strdup(arg);
731 if (pp->lazy_line == NULL)
732 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500733 break;
734 }
735 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500736 if (ptr) {
737 nc = *ptr;
738 *ptr++ = '\0';
739 }
740 switch (c) {
741 case ':': /* Line number */
742 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400743 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500744 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400745 " in line number.\n");
746 return -EINVAL;
747 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500748 break;
749 case '+': /* Byte offset from a symbol */
750 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400751 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500752 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400753 " in offset.\n");
754 return -EINVAL;
755 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500756 break;
757 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400758 if (pp->file) {
759 semantic_error("SRC@SRC is not allowed.\n");
760 return -EINVAL;
761 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400762 pp->file = strdup(arg);
763 if (pp->file == NULL)
764 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500765 break;
766 case '%': /* Probe places */
767 if (strcmp(arg, "return") == 0) {
768 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400769 } else { /* Others not supported yet */
770 semantic_error("%%%s is not supported.\n", arg);
771 return -ENOTSUP;
772 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500773 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400774 default: /* Buggy case */
775 pr_err("This program has a bug at %s:%d.\n",
776 __FILE__, __LINE__);
777 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500778 break;
779 }
780 }
781
782 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400783 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900784 semantic_error("Lazy pattern can't be used with"
785 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400786 return -EINVAL;
787 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500788
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400789 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900790 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400791 return -EINVAL;
792 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500793
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400794 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900795 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400796 return -EINVAL;
797 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500798
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400799 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500800 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900801 "lazy pattern.\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->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900806 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400807 return -EINVAL;
808 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500809
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400810 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900811 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400812 return -EINVAL;
813 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500814
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400815 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500816 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900817 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400818 return -EINVAL;
819 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500820
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400821 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500822 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
823 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400824 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500825}
826
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400827/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400828static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400829{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400830 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400831 struct perf_probe_arg_field **fieldp;
832
833 pr_debug("parsing arg: %s into ", str);
834
Masami Hiramatsu48481932010-04-12 13:16:53 -0400835 tmp = strchr(str, '=');
836 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400837 arg->name = strndup(str, tmp - str);
838 if (arg->name == NULL)
839 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400840 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400841 str = tmp + 1;
842 }
843
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400844 tmp = strchr(str, ':');
845 if (tmp) { /* Type setting */
846 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400847 arg->type = strdup(tmp + 1);
848 if (arg->type == NULL)
849 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400850 pr_debug("type:%s ", arg->type);
851 }
852
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400853 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400854 if (!is_c_varname(str) || !tmp) {
855 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400856 arg->var = strdup(str);
857 if (arg->var == NULL)
858 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400859 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400860 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400861 }
862
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400863 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400864 arg->var = strndup(str, tmp - str);
865 if (arg->var == NULL)
866 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400867 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400868 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400869 fieldp = &arg->field;
870
871 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400872 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
873 if (*fieldp == NULL)
874 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400875 if (*tmp == '[') { /* Array */
876 str = tmp;
877 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400878 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400879 if (*tmp != ']' || tmp == str + 1) {
880 semantic_error("Array index must be a"
881 " number.\n");
882 return -EINVAL;
883 }
884 tmp++;
885 if (*tmp == '\0')
886 tmp = NULL;
887 } else { /* Structure */
888 if (*tmp == '.') {
889 str = tmp + 1;
890 (*fieldp)->ref = false;
891 } else if (tmp[1] == '>') {
892 str = tmp + 2;
893 (*fieldp)->ref = true;
894 } else {
895 semantic_error("Argument parse error: %s\n",
896 str);
897 return -EINVAL;
898 }
899 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400900 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400901 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400902 (*fieldp)->name = strndup(str, tmp - str);
903 if ((*fieldp)->name == NULL)
904 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400905 if (*str != '[')
906 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400907 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
908 fieldp = &(*fieldp)->next;
909 }
910 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400911 (*fieldp)->name = strdup(str);
912 if ((*fieldp)->name == NULL)
913 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400914 if (*str != '[')
915 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400916 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -0400917
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400918 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400919 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400920 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400921 if (arg->name == NULL)
922 return -ENOMEM;
923 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400924 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400925}
926
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400927/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400928int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500929{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500930 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400931 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500932
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400933 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400934 if (!argv) {
935 pr_debug("Failed to split arguments.\n");
936 return -ENOMEM;
937 }
938 if (argc - 1 > MAX_PROBE_ARGS) {
939 semantic_error("Too many probe arguments (%d).\n", argc - 1);
940 ret = -ERANGE;
941 goto out;
942 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500943 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400944 ret = parse_perf_probe_point(argv[0], pev);
945 if (ret < 0)
946 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500947
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500948 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400949 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400950 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
951 if (pev->args == NULL) {
952 ret = -ENOMEM;
953 goto out;
954 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400955 for (i = 0; i < pev->nargs && ret >= 0; i++) {
956 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
957 if (ret >= 0 &&
958 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400959 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400960 " kretprobe.\n");
961 ret = -EINVAL;
962 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500963 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400964out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500965 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400966
967 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500968}
969
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400970/* Return true if this perf_probe_event requires debuginfo */
971bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500972{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400973 int i;
974
975 if (pev->point.file || pev->point.line || pev->point.lazy_line)
976 return true;
977
978 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -0400979 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400980 return true;
981
982 return false;
983}
984
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530985/* Parse probe_events event into struct probe_point */
986static int parse_probe_trace_command(const char *cmd,
987 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400988{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530989 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500990 char pr;
991 char *p;
992 int ret, i, argc;
993 char **argv;
994
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530995 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400996 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400997 if (!argv) {
998 pr_debug("Failed to split arguments.\n");
999 return -ENOMEM;
1000 }
1001 if (argc < 2) {
1002 semantic_error("Too few probe arguments.\n");
1003 ret = -ERANGE;
1004 goto out;
1005 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001006
1007 /* Scan event and group name. */
Liming Wang93aaa452009-12-02 16:42:54 +08001008 ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001009 &pr, (float *)(void *)&tev->group,
1010 (float *)(void *)&tev->event);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001011 if (ret != 3) {
1012 semantic_error("Failed to parse event name: %s\n", argv[0]);
1013 ret = -EINVAL;
1014 goto out;
1015 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001016 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001017
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001018 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001019
1020 /* Scan function name and offset */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001021 ret = sscanf(argv[1], "%a[^+]+%lu", (float *)(void *)&tp->symbol,
1022 &tp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001023 if (ret == 1)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001024 tp->offset = 0;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001025
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001026 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301027 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001028 if (tev->args == NULL) {
1029 ret = -ENOMEM;
1030 goto out;
1031 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001032 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001033 p = strchr(argv[i + 2], '=');
1034 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001035 *p++ = '\0';
1036 else
1037 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001038 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001039 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001040 tev->args[i].value = strdup(p);
1041 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1042 ret = -ENOMEM;
1043 goto out;
1044 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001045 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001046 ret = 0;
1047out:
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001048 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001049 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001050}
1051
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001052/* Compose only probe arg */
1053int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1054{
1055 struct perf_probe_arg_field *field = pa->field;
1056 int ret;
1057 char *tmp = buf;
1058
Masami Hiramatsu48481932010-04-12 13:16:53 -04001059 if (pa->name && pa->var)
1060 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1061 else
1062 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001063 if (ret <= 0)
1064 goto error;
1065 tmp += ret;
1066 len -= ret;
1067
1068 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001069 if (field->name[0] == '[')
1070 ret = e_snprintf(tmp, len, "%s", field->name);
1071 else
1072 ret = e_snprintf(tmp, len, "%s%s",
1073 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001074 if (ret <= 0)
1075 goto error;
1076 tmp += ret;
1077 len -= ret;
1078 field = field->next;
1079 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001080
1081 if (pa->type) {
1082 ret = e_snprintf(tmp, len, ":%s", pa->type);
1083 if (ret <= 0)
1084 goto error;
1085 tmp += ret;
1086 len -= ret;
1087 }
1088
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001089 return tmp - buf;
1090error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001091 pr_debug("Failed to synthesize perf probe argument: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001092 strerror(-ret));
1093 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001094}
1095
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001096/* Compose only probe point (not argument) */
1097static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001098{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001099 char *buf, *tmp;
1100 char offs[32] = "", line[32] = "", file[32] = "";
1101 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001102
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001103 buf = zalloc(MAX_CMDLEN);
1104 if (buf == NULL) {
1105 ret = -ENOMEM;
1106 goto error;
1107 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001108 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001109 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001110 if (ret <= 0)
1111 goto error;
1112 }
1113 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001114 ret = e_snprintf(line, 32, ":%d", pp->line);
1115 if (ret <= 0)
1116 goto error;
1117 }
1118 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001119 tmp = pp->file;
1120 len = strlen(tmp);
1121 if (len > 30) {
1122 tmp = strchr(pp->file + len - 30, '/');
1123 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1124 }
1125 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001126 if (ret <= 0)
1127 goto error;
1128 }
1129
1130 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001131 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1132 offs, pp->retprobe ? "%return" : "", line,
1133 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001134 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001135 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001136 if (ret <= 0)
1137 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001138
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001139 return buf;
1140error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001141 pr_debug("Failed to synthesize perf probe point: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001142 strerror(-ret));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001143 if (buf)
1144 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001145 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001146}
1147
1148#if 0
1149char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1150{
1151 char *buf;
1152 int i, len, ret;
1153
1154 buf = synthesize_perf_probe_point(&pev->point);
1155 if (!buf)
1156 return NULL;
1157
1158 len = strlen(buf);
1159 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001160 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001161 pev->args[i].name);
1162 if (ret <= 0) {
1163 free(buf);
1164 return NULL;
1165 }
1166 len += ret;
1167 }
1168
1169 return buf;
1170}
1171#endif
1172
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301173static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001174 char **buf, size_t *buflen,
1175 int depth)
1176{
1177 int ret;
1178 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301179 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001180 buflen, depth + 1);
1181 if (depth < 0)
1182 goto out;
1183 }
1184
1185 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1186 if (ret < 0)
1187 depth = ret;
1188 else {
1189 *buf += ret;
1190 *buflen -= ret;
1191 }
1192out:
1193 return depth;
1194
1195}
1196
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301197static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001198 char *buf, size_t buflen)
1199{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301200 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001201 int ret, depth = 0;
1202 char *tmp = buf;
1203
1204 /* Argument name or separator */
1205 if (arg->name)
1206 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1207 else
1208 ret = e_snprintf(buf, buflen, " ");
1209 if (ret < 0)
1210 return ret;
1211 buf += ret;
1212 buflen -= ret;
1213
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001214 /* Special case: @XXX */
1215 if (arg->value[0] == '@' && arg->ref)
1216 ref = ref->next;
1217
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001218 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001219 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301220 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001221 &buflen, 1);
1222 if (depth < 0)
1223 return depth;
1224 }
1225
1226 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001227 if (arg->value[0] == '@' && arg->ref)
1228 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1229 arg->ref->offset);
1230 else
1231 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001232 if (ret < 0)
1233 return ret;
1234 buf += ret;
1235 buflen -= ret;
1236
1237 /* Closing */
1238 while (depth--) {
1239 ret = e_snprintf(buf, buflen, ")");
1240 if (ret < 0)
1241 return ret;
1242 buf += ret;
1243 buflen -= ret;
1244 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001245 /* Print argument type */
1246 if (arg->type) {
1247 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1248 if (ret <= 0)
1249 return ret;
1250 buf += ret;
1251 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001252
1253 return buf - tmp;
1254}
1255
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301256char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001257{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301258 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001259 char *buf;
1260 int i, len, ret;
1261
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001262 buf = zalloc(MAX_CMDLEN);
1263 if (buf == NULL)
1264 return NULL;
1265
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001266 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s+%lu",
1267 tp->retprobe ? 'r' : 'p',
1268 tev->group, tev->event,
1269 tp->symbol, tp->offset);
1270 if (len <= 0)
1271 goto error;
1272
1273 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301274 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001275 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001276 if (ret <= 0)
1277 goto error;
1278 len += ret;
1279 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001280
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001281 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001282error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001283 free(buf);
1284 return NULL;
1285}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001286
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301287static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001288 struct perf_probe_event *pev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001289{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001290 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001291 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001292
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001293 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001294 pev->event = strdup(tev->event);
1295 pev->group = strdup(tev->group);
1296 if (pev->event == NULL || pev->group == NULL)
1297 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001298
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001299 /* Convert trace_point to probe_point */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301300 ret = kprobe_convert_to_perf_probe(&tev->point, &pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001301 if (ret < 0)
1302 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001303
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001304 /* Convert trace_arg to probe_arg */
1305 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001306 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1307 if (pev->args == NULL)
1308 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001309 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001310 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001311 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001312 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301313 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001314 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001315 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001316 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001317 if (pev->args[i].name == NULL && ret >= 0)
1318 ret = -ENOMEM;
1319 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001320
1321 if (ret < 0)
1322 clear_perf_probe_event(pev);
1323
1324 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001325}
1326
1327void clear_perf_probe_event(struct perf_probe_event *pev)
1328{
1329 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001330 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001331 int i;
1332
1333 if (pev->event)
1334 free(pev->event);
1335 if (pev->group)
1336 free(pev->group);
1337 if (pp->file)
1338 free(pp->file);
1339 if (pp->function)
1340 free(pp->function);
1341 if (pp->lazy_line)
1342 free(pp->lazy_line);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001343 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001344 if (pev->args[i].name)
1345 free(pev->args[i].name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001346 if (pev->args[i].var)
1347 free(pev->args[i].var);
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001348 if (pev->args[i].type)
1349 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001350 field = pev->args[i].field;
1351 while (field) {
1352 next = field->next;
1353 if (field->name)
1354 free(field->name);
1355 free(field);
1356 field = next;
1357 }
1358 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001359 if (pev->args)
1360 free(pev->args);
1361 memset(pev, 0, sizeof(*pev));
1362}
1363
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301364static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001365{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301366 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001367 int i;
1368
1369 if (tev->event)
1370 free(tev->event);
1371 if (tev->group)
1372 free(tev->group);
1373 if (tev->point.symbol)
1374 free(tev->point.symbol);
1375 for (i = 0; i < tev->nargs; i++) {
1376 if (tev->args[i].name)
1377 free(tev->args[i].name);
1378 if (tev->args[i].value)
1379 free(tev->args[i].value);
Masami Hiramatsu49849122010-04-12 13:17:15 -04001380 if (tev->args[i].type)
1381 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001382 ref = tev->args[i].ref;
1383 while (ref) {
1384 next = ref->next;
1385 free(ref);
1386 ref = next;
1387 }
1388 }
1389 if (tev->args)
1390 free(tev->args);
1391 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001392}
1393
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001394static int open_kprobe_events(bool readwrite)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001395{
1396 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001397 const char *__debugfs;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001398 int ret;
1399
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001400 __debugfs = debugfs_find_mountpoint();
1401 if (__debugfs == NULL) {
1402 pr_warning("Debugfs is not mounted.\n");
1403 return -ENOENT;
1404 }
1405
1406 ret = e_snprintf(buf, PATH_MAX, "%stracing/kprobe_events", __debugfs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001407 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001408 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001409 if (readwrite && !probe_event_dry_run)
1410 ret = open(buf, O_RDWR, O_APPEND);
1411 else
1412 ret = open(buf, O_RDONLY, 0);
1413 }
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001414
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001415 if (ret < 0) {
1416 if (errno == ENOENT)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001417 pr_warning("kprobe_events file does not exist - please"
1418 " rebuild kernel with CONFIG_KPROBE_EVENT.\n");
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001419 else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001420 pr_warning("Failed to open kprobe_events file: %s\n",
1421 strerror(errno));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001422 }
1423 return ret;
1424}
1425
1426/* Get raw string list of current kprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301427static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001428{
1429 int ret, idx;
1430 FILE *fp;
1431 char buf[MAX_CMDLEN];
1432 char *p;
1433 struct strlist *sl;
1434
1435 sl = strlist__new(true, NULL);
1436
1437 fp = fdopen(dup(fd), "r");
1438 while (!feof(fp)) {
1439 p = fgets(buf, MAX_CMDLEN, fp);
1440 if (!p)
1441 break;
1442
1443 idx = strlen(p) - 1;
1444 if (p[idx] == '\n')
1445 p[idx] = '\0';
1446 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001447 if (ret < 0) {
1448 pr_debug("strlist__add failed: %s\n", strerror(-ret));
1449 strlist__delete(sl);
1450 return NULL;
1451 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001452 }
1453 fclose(fp);
1454
1455 return sl;
1456}
1457
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001458/* Show an event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001459static int show_perf_probe_event(struct perf_probe_event *pev)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001460{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001461 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001462 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001463 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001464
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001465 /* Synthesize only event probe point */
1466 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001467 if (!place)
1468 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001469
1470 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001471 if (ret < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001472 return ret;
1473
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001474 printf(" %-20s (on %s", buf, place);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001475
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001476 if (pev->nargs > 0) {
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001477 printf(" with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001478 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001479 ret = synthesize_perf_probe_arg(&pev->args[i],
1480 buf, 128);
1481 if (ret < 0)
1482 break;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001483 printf(" %s", buf);
1484 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001485 }
1486 printf(")\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001487 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001488 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001489}
1490
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001491/* List up current perf-probe events */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001492int show_perf_probe_events(void)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001493{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001494 int fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301495 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001496 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001497 struct strlist *rawlist;
1498 struct str_node *ent;
1499
Masami Hiramatsu72041332010-01-05 17:47:10 -05001500 setup_pager();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001501 ret = init_vmlinux();
1502 if (ret < 0)
1503 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001504
1505 memset(&tev, 0, sizeof(tev));
1506 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05001507
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001508 fd = open_kprobe_events(false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001509 if (fd < 0)
1510 return fd;
1511
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301512 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001513 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001514 if (!rawlist)
1515 return -ENOENT;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001516
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001517 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301518 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001519 if (ret >= 0) {
1520 ret = convert_to_perf_probe_event(&tev, &pev);
1521 if (ret >= 0)
1522 ret = show_perf_probe_event(&pev);
1523 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001524 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301525 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001526 if (ret < 0)
1527 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001528 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001529 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001530
1531 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001532}
1533
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001534/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301535static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001536{
Masami Hiramatsufa282442009-12-08 17:03:23 -05001537 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001538 struct strlist *sl, *rawlist;
1539 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301540 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001541 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001542
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001543 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301544 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001545 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001546 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301547 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001548 if (ret < 0)
1549 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001550 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001551 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
1552 tev.event);
1553 if (ret >= 0)
1554 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001555 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001556 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301557 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001558 if (ret < 0)
1559 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001560 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001561 strlist__delete(rawlist);
1562
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001563 if (ret < 0) {
1564 strlist__delete(sl);
1565 return NULL;
1566 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001567 return sl;
1568}
1569
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301570static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001571{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02001572 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301573 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001574
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001575 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301576 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001577 return -EINVAL;
1578 }
1579
Masami Hiramatsufa282442009-12-08 17:03:23 -05001580 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001581 if (!probe_event_dry_run) {
1582 ret = write(fd, buf, strlen(buf));
1583 if (ret <= 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001584 pr_warning("Failed to write event: %s\n",
1585 strerror(errno));
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001586 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001587 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001588 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001589}
1590
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001591static int get_new_event_name(char *buf, size_t len, const char *base,
1592 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001593{
1594 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001595
1596 /* Try no suffix */
1597 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001598 if (ret < 0) {
1599 pr_debug("snprintf() failed: %s\n", strerror(-ret));
1600 return ret;
1601 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001602 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001603 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001604
Masami Hiramatsud761b082009-12-15 10:32:25 -05001605 if (!allow_suffix) {
1606 pr_warning("Error: event \"%s\" already exists. "
1607 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001608 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05001609 }
1610
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05001611 /* Try to add suffix */
1612 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001613 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001614 if (ret < 0) {
1615 pr_debug("snprintf() failed: %s\n", strerror(-ret));
1616 return ret;
1617 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001618 if (!strlist__has_entry(namelist, buf))
1619 break;
1620 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001621 if (i == MAX_EVENT_INDEX) {
1622 pr_warning("Too many events are on the same function.\n");
1623 ret = -ERANGE;
1624 }
1625
1626 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001627}
1628
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301629static int __add_probe_trace_events(struct perf_probe_event *pev,
1630 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001631 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001632{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001633 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301634 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001635 char buf[64];
1636 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001637 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001638
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001639 fd = open_kprobe_events(true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001640 if (fd < 0)
1641 return fd;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001642 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301643 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001644 if (!namelist) {
1645 pr_debug("Failed to get current event list.\n");
1646 return -EIO;
1647 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001648
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001649 ret = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001650 printf("Add new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001651 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001652 tev = &tevs[i];
1653 if (pev->event)
1654 event = pev->event;
1655 else
1656 if (pev->point.function)
1657 event = pev->point.function;
1658 else
1659 event = tev->point.symbol;
1660 if (pev->group)
1661 group = pev->group;
1662 else
1663 group = PERFPROBE_GROUP;
1664
1665 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001666 ret = get_new_event_name(buf, 64, event,
1667 namelist, allow_suffix);
1668 if (ret < 0)
1669 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001670 event = buf;
1671
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001672 tev->event = strdup(event);
1673 tev->group = strdup(group);
1674 if (tev->event == NULL || tev->group == NULL) {
1675 ret = -ENOMEM;
1676 break;
1677 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301678 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001679 if (ret < 0)
1680 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001681 /* Add added event name to namelist */
1682 strlist__add(namelist, event);
1683
1684 /* Trick here - save current event/group */
1685 event = pev->event;
1686 group = pev->group;
1687 pev->event = tev->event;
1688 pev->group = tev->group;
1689 show_perf_probe_event(pev);
1690 /* Trick here - restore current event/group */
1691 pev->event = (char *)event;
1692 pev->group = (char *)group;
1693
1694 /*
1695 * Probes after the first probe which comes from same
1696 * user input are always allowed to add suffix, because
1697 * there might be several addresses corresponding to
1698 * one code line.
1699 */
1700 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001701 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001702
1703 if (ret >= 0) {
1704 /* Show how to use the event. */
1705 printf("\nYou can now use it on all perf tools, such as:\n\n");
1706 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
1707 tev->event);
1708 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05001709
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001710 strlist__delete(namelist);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001711 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001712 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001713}
Masami Hiramatsufa282442009-12-08 17:03:23 -05001714
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301715static int convert_to_probe_trace_events(struct perf_probe_event *pev,
1716 struct probe_trace_event **tevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001717 int max_tevs, const char *module)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001718{
1719 struct symbol *sym;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001720 int ret = 0, i;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301721 struct probe_trace_event *tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001722
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001723 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001724 ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, module);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001725 if (ret != 0)
1726 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001727
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001728 /* Allocate trace event buffer */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301729 tev = *tevs = zalloc(sizeof(struct probe_trace_event));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001730 if (tev == NULL)
1731 return -ENOMEM;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001732
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001733 /* Copy parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001734 tev->point.symbol = strdup(pev->point.function);
1735 if (tev->point.symbol == NULL) {
1736 ret = -ENOMEM;
1737 goto error;
1738 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001739 tev->point.offset = pev->point.offset;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09001740 tev->point.retprobe = pev->point.retprobe;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001741 tev->nargs = pev->nargs;
1742 if (tev->nargs) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301743 tev->args = zalloc(sizeof(struct probe_trace_arg)
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001744 * tev->nargs);
1745 if (tev->args == NULL) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001746 ret = -ENOMEM;
1747 goto error;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001748 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04001749 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001750 if (pev->args[i].name) {
1751 tev->args[i].name = strdup(pev->args[i].name);
1752 if (tev->args[i].name == NULL) {
1753 ret = -ENOMEM;
1754 goto error;
1755 }
1756 }
1757 tev->args[i].value = strdup(pev->args[i].var);
1758 if (tev->args[i].value == NULL) {
1759 ret = -ENOMEM;
1760 goto error;
1761 }
1762 if (pev->args[i].type) {
1763 tev->args[i].type = strdup(pev->args[i].type);
1764 if (tev->args[i].type == NULL) {
1765 ret = -ENOMEM;
1766 goto error;
1767 }
1768 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04001769 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001770 }
1771
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001772 /* Currently just checking function name from symbol map */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001773 sym = __find_kernel_function_by_name(tev->point.symbol, NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001774 if (!sym) {
1775 pr_warning("Kernel symbol \'%s\' not found.\n",
1776 tev->point.symbol);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001777 ret = -ENOENT;
1778 goto error;
1779 }
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001780
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001781 return 1;
1782error:
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301783 clear_probe_trace_event(tev);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001784 free(tev);
1785 *tevs = NULL;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001786 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001787}
1788
1789struct __event_package {
1790 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301791 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001792 int ntevs;
1793};
1794
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001795int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001796 int max_tevs, const char *module, bool force_add)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001797{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001798 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001799 struct __event_package *pkgs;
1800
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001801 pkgs = zalloc(sizeof(struct __event_package) * npevs);
1802 if (pkgs == NULL)
1803 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001804
1805 /* Init vmlinux path */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001806 ret = init_vmlinux();
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001807 if (ret < 0) {
1808 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001809 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001810 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001811
1812 /* Loop 1: convert all events */
1813 for (i = 0; i < npevs; i++) {
1814 pkgs[i].pev = &pevs[i];
1815 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301816 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001817 &pkgs[i].tevs,
1818 max_tevs,
1819 module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001820 if (ret < 0)
1821 goto end;
1822 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001823 }
1824
1825 /* Loop 2: add all events */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001826 for (i = 0; i < npevs && ret >= 0; i++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301827 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001828 pkgs[i].ntevs, force_add);
1829end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001830 /* Loop 3: cleanup and free trace events */
1831 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001832 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301833 clear_probe_trace_event(&pkgs[i].tevs[j]);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09001834 free(pkgs[i].tevs);
1835 }
1836 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001837
1838 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001839}
1840
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301841static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001842{
1843 char *p;
1844 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001845 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001846
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301847 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001848 ret = e_snprintf(buf, 128, "-:%s", ent->s);
1849 if (ret < 0)
1850 goto error;
1851
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001852 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001853 if (!p) {
1854 pr_debug("Internal error: %s should have ':' but not.\n",
1855 ent->s);
1856 ret = -ENOTSUP;
1857 goto error;
1858 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001859 *p = '/';
1860
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001861 pr_debug("Writing event: %s\n", buf);
1862 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001863 if (ret < 0)
1864 goto error;
1865
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001866 printf("Remove event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001867 return 0;
1868error:
1869 pr_warning("Failed to delete event: %s\n", strerror(-ret));
1870 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001871}
1872
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301873static int del_trace_probe_event(int fd, const char *group,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001874 const char *event, struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05001875{
1876 char buf[128];
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001877 struct str_node *ent, *n;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001878 int found = 0, ret = 0;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001879
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001880 ret = e_snprintf(buf, 128, "%s:%s", group, event);
1881 if (ret < 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001882 pr_err("Failed to copy event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001883 return ret;
1884 }
Masami Hiramatsufa282442009-12-08 17:03:23 -05001885
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001886 if (strpbrk(buf, "*?")) { /* Glob-exp */
1887 strlist__for_each_safe(ent, n, namelist)
1888 if (strglobmatch(ent->s, buf)) {
1889 found++;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301890 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001891 if (ret < 0)
1892 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001893 strlist__remove(namelist, ent);
1894 }
1895 } else {
1896 ent = strlist__find(namelist, buf);
1897 if (ent) {
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 strlist__remove(namelist, ent);
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001902 }
1903 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001904 if (found == 0 && ret >= 0)
1905 pr_info("Info: Event \"%s\" does not exist.\n", buf);
1906
1907 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001908}
1909
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001910int del_perf_probe_events(struct strlist *dellist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05001911{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001912 int fd, ret = 0;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001913 const char *group, *event;
1914 char *p, *str;
1915 struct str_node *ent;
1916 struct strlist *namelist;
1917
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001918 fd = open_kprobe_events(true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001919 if (fd < 0)
1920 return fd;
1921
Masami Hiramatsufa282442009-12-08 17:03:23 -05001922 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301923 namelist = get_probe_trace_event_names(fd, true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001924 if (namelist == NULL)
1925 return -EINVAL;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001926
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001927 strlist__for_each(ent, dellist) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001928 str = strdup(ent->s);
1929 if (str == NULL) {
1930 ret = -ENOMEM;
1931 break;
1932 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001933 pr_debug("Parsing: %s\n", str);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001934 p = strchr(str, ':');
1935 if (p) {
1936 group = str;
1937 *p = '\0';
1938 event = p + 1;
1939 } else {
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001940 group = "*";
Masami Hiramatsufa282442009-12-08 17:03:23 -05001941 event = str;
1942 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05001943 pr_debug("Group: %s, Event: %s\n", group, event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301944 ret = del_trace_probe_event(fd, group, event, namelist);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001945 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001946 if (ret < 0)
1947 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001948 }
1949 strlist__delete(namelist);
1950 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001951
1952 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001953}
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001954/* TODO: don't use a global variable for filter ... */
1955static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001956
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001957/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001958 * If a symbol corresponds to a function with global binding and
1959 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001960 */
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001961static int filter_available_functions(struct map *map __unused,
1962 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001963{
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001964 if (sym->binding == STB_GLOBAL &&
1965 strfilter__compare(available_func_filter, sym->name))
1966 return 0;
1967 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001968}
1969
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001970int show_available_funcs(const char *module, struct strfilter *_filter)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001971{
1972 struct map *map;
1973 int ret;
1974
1975 setup_pager();
1976
1977 ret = init_vmlinux();
1978 if (ret < 0)
1979 return ret;
1980
1981 map = kernel_get_module_map(module);
1982 if (!map) {
1983 pr_err("Failed to find %s map.\n", (module) ? : "kernel");
1984 return -EINVAL;
1985 }
Masami Hiramatsu3c422582011-01-20 23:15:45 +09001986 available_func_filter = _filter;
1987 if (map__load(map, filter_available_functions)) {
Masami Hiramatsue80711c2011-01-13 21:46:11 +09001988 pr_err("Failed to load map.\n");
1989 return -EINVAL;
1990 }
1991 if (!dso__sorted_by_name(map->dso, map->type))
1992 dso__sort_by_name(map->dso, map->type);
1993
1994 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
1995 return 0;
1996}