blob: 9a0a1839a3772689e0dce818a5c16807edc6c10f [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
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050022#include <sys/utsname.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <errno.h>
27#include <stdio.h>
28#include <unistd.h>
29#include <stdlib.h>
30#include <string.h>
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050031#include <stdarg.h>
32#include <limits.h>
Masami Hiramatsue80711c2011-01-13 21:46:11 +090033#include <elf.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050034
Masami Hiramatsu31facc52010-03-16 18:05:30 -040035#include "util.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050036#include "event.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050037#include "strlist.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050038#include "debug.h"
Masami Hiramatsu72041332010-01-05 17:47:10 -050039#include "cache.h"
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050040#include "color.h"
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040041#include "symbol.h"
42#include "thread.h"
Borislav Petkov553873e2013-12-09 17:14:23 +010043#include <api/fs/debugfs.h>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030044#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050045#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040046#include "probe-finder.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053047#include "session.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050048
49#define MAX_CMDLEN 256
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050050#define PERFPROBE_GROUP "probe"
51
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040052bool probe_event_dry_run; /* Dry run flag */
53
Masami Hiramatsu146a1432010-04-12 13:17:42 -040054#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050055
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050056/* If there is no space to write, returns -E2BIG. */
57static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu84988452009-12-07 12:00:53 -050058 __attribute__((format(printf, 3, 4)));
59
60static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050061{
62 int ret;
63 va_list ap;
64 va_start(ap, format);
65 ret = vsnprintf(str, size, format, ap);
66 va_end(ap);
67 if (ret >= (int)size)
68 ret = -E2BIG;
69 return ret;
70}
71
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030072static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +000073static void clear_probe_trace_event(struct probe_trace_event *tev);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000074static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040075
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090076/* Initialize symbol maps and path of vmlinux/modules */
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000077static int init_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040078{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040079 int ret;
80
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040081 symbol_conf.sort_by_name = true;
Masami Hiramatsu146a1432010-04-12 13:17:42 -040082 ret = symbol__init();
83 if (ret < 0) {
84 pr_debug("Failed to init symbol map.\n");
85 goto out;
86 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040087
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000088 if (host_machine || user_only) /* already initialized */
89 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030090
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000091 if (symbol_conf.vmlinux_name)
92 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
93
94 host_machine = machine__new_host();
95 if (!host_machine) {
96 pr_debug("machine__new_host() failed.\n");
97 symbol__exit();
98 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090099 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400100out:
101 if (ret < 0)
102 pr_warning("Failed to init vmlinux path.\n");
103 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400104}
105
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000106static void exit_symbol_maps(void)
107{
108 if (host_machine) {
109 machine__delete(host_machine);
110 host_machine = NULL;
111 }
112 symbol__exit();
113}
114
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900115static struct symbol *__find_kernel_function_by_name(const char *name,
116 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400117{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000118 return machine__find_kernel_function_by_name(host_machine, name, mapp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900119 NULL);
120}
121
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000122static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
123{
124 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
125}
126
127static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
128{
129 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
130 struct kmap *kmap;
131
132 if (map__load(host_machine->vmlinux_maps[MAP__FUNCTION], NULL) < 0)
133 return NULL;
134
135 kmap = map__kmap(host_machine->vmlinux_maps[MAP__FUNCTION]);
136 return kmap->ref_reloc_sym;
137}
138
139static u64 kernel_get_symbol_address_by_name(const char *name, bool reloc)
140{
141 struct ref_reloc_sym *reloc_sym;
142 struct symbol *sym;
143 struct map *map;
144
145 /* ref_reloc_sym is just a label. Need a special fix*/
146 reloc_sym = kernel_get_ref_reloc_sym();
147 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
148 return (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
149 else {
150 sym = __find_kernel_function_by_name(name, &map);
151 if (sym)
152 return map->unmap_ip(map, sym->start) -
153 (reloc) ? 0 : map->reloc;
154 }
155 return 0;
156}
157
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900158static struct map *kernel_get_module_map(const char *module)
159{
160 struct rb_node *nd;
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000161 struct map_groups *grp = &host_machine->kmaps;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900162
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900163 /* A file path -- this is an offline module */
164 if (module && strchr(module, '/'))
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000165 return machine__new_module(host_machine, 0, module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900166
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900167 if (!module)
168 module = "kernel";
169
170 for (nd = rb_first(&grp->maps[MAP__FUNCTION]); nd; nd = rb_next(nd)) {
171 struct map *pos = rb_entry(nd, struct map, rb_node);
172 if (strncmp(pos->dso->short_name + 1, module,
173 pos->dso->short_name_len - 2) == 0) {
174 return pos;
175 }
176 }
177 return NULL;
178}
179
180static struct dso *kernel_get_module_dso(const char *module)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900181{
182 struct dso *dso;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100183 struct map *map;
184 const char *vmlinux_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900185
186 if (module) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000187 list_for_each_entry(dso, &host_machine->kernel_dsos, node) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900188 if (strncmp(dso->short_name + 1, module,
189 dso->short_name_len - 2) == 0)
190 goto found;
191 }
192 pr_debug("Failed to find module %s.\n", module);
193 return NULL;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100194 }
195
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000196 map = host_machine->vmlinux_maps[MAP__FUNCTION];
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100197 dso = map->dso;
198
199 vmlinux_name = symbol_conf.vmlinux_name;
200 if (vmlinux_name) {
Arnaldo Carvalho de Melo5230fb72013-12-10 11:58:52 -0300201 if (dso__load_vmlinux(dso, map, vmlinux_name, false, NULL) <= 0)
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100202 return NULL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900203 } else {
Franck Bui-Huuc3a34e02010-12-10 14:07:14 +0100204 if (dso__load_vmlinux_path(dso, map, NULL) <= 0) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900205 pr_debug("Failed to load kernel map.\n");
206 return NULL;
207 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400208 }
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900209found:
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900210 return dso;
211}
212
213const char *kernel_get_module_path(const char *module)
214{
215 struct dso *dso = kernel_get_module_dso(module);
216 return (dso) ? dso->long_name : NULL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900217}
218
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000219static int convert_exec_to_group(const char *exec, char **result)
220{
221 char *ptr1, *ptr2, *exec_copy;
222 char buf[64];
223 int ret;
224
225 exec_copy = strdup(exec);
226 if (!exec_copy)
227 return -ENOMEM;
228
229 ptr1 = basename(exec_copy);
230 if (!ptr1) {
231 ret = -EINVAL;
232 goto out;
233 }
234
235 ptr2 = strpbrk(ptr1, "-._");
236 if (ptr2)
237 *ptr2 = '\0';
238 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
239 if (ret < 0)
240 goto out;
241
242 *result = strdup(buf);
243 ret = *result ? 0 : -ENOMEM;
244
245out:
246 free(exec_copy);
247 return ret;
248}
249
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000250static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
251{
252 int i;
253
254 for (i = 0; i < ntevs; i++)
255 clear_probe_trace_event(tevs + i);
256}
257
Ingo Molnar89fe8082013-09-30 12:07:11 +0200258#ifdef HAVE_DWARF_SUPPORT
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000259
Masami Hiramatsuff741782011-06-27 16:27:39 +0900260/* Open new debuginfo of given module */
261static struct debuginfo *open_debuginfo(const char *module)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900262{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000263 const char *path = module;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900264
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000265 if (!module || !strchr(module, '/')) {
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900266 path = kernel_get_module_path(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900267 if (!path) {
268 pr_err("Failed to find path of %s module.\n",
269 module ?: "kernel");
270 return NULL;
271 }
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900272 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900273 return debuginfo__new(path);
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400274}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300275
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000276static int get_text_start_address(const char *exec, unsigned long *address)
277{
278 Elf *elf;
279 GElf_Ehdr ehdr;
280 GElf_Shdr shdr;
281 int fd, ret = -ENOENT;
282
283 fd = open(exec, O_RDONLY);
284 if (fd < 0)
285 return -errno;
286
287 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
288 if (elf == NULL)
289 return -EINVAL;
290
291 if (gelf_getehdr(elf, &ehdr) == NULL)
292 goto out;
293
294 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
295 goto out;
296
297 *address = shdr.sh_addr - shdr.sh_offset;
298 ret = 0;
299out:
300 elf_end(elf);
301 return ret;
302}
303
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000304/*
305 * Convert trace point to probe point with debuginfo
306 */
307static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
308 struct perf_probe_point *pp,
309 bool is_kprobe)
310{
311 struct debuginfo *dinfo = NULL;
312 unsigned long stext = 0;
313 u64 addr = tp->address;
314 int ret = -ENOENT;
315
316 /* convert the address to dwarf address */
317 if (!is_kprobe) {
318 if (!addr) {
319 ret = -EINVAL;
320 goto error;
321 }
322 ret = get_text_start_address(tp->module, &stext);
323 if (ret < 0)
324 goto error;
325 addr += stext;
326 } else {
327 addr = kernel_get_symbol_address_by_name(tp->symbol, false);
328 if (addr == 0)
329 goto error;
330 addr += tp->offset;
331 }
332
333 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
334 tp->module ? : "kernel");
335
336 dinfo = open_debuginfo(tp->module);
337 if (dinfo) {
338 ret = debuginfo__find_probe_point(dinfo,
339 (unsigned long)addr, pp);
340 debuginfo__delete(dinfo);
341 } else {
342 pr_debug("Failed to open debuginfo at 0x%" PRIx64 "\n", addr);
343 ret = -ENOENT;
344 }
345
346 if (ret > 0) {
347 pp->retprobe = tp->retprobe;
348 return 0;
349 }
350error:
351 pr_debug("Failed to find corresponding probes from debuginfo.\n");
352 return ret ? : -ENOENT;
353}
354
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000355static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
356 int ntevs, const char *exec)
357{
358 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000359 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000360
361 if (!exec)
362 return 0;
363
364 ret = get_text_start_address(exec, &stext);
365 if (ret < 0)
366 return ret;
367
368 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000369 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000370 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000371 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000372 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000373 ret = -ENOMEM;
374 break;
375 }
376 tevs[i].uprobes = true;
377 }
378
379 return ret;
380}
381
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900382static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
383 int ntevs, const char *module)
384{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900385 int i, ret = 0;
386 char *tmp;
387
388 if (!module)
389 return 0;
390
391 tmp = strrchr(module, '/');
392 if (tmp) {
393 /* This is a module path -- get the module name */
394 module = strdup(tmp + 1);
395 if (!module)
396 return -ENOMEM;
397 tmp = strchr(module, '.');
398 if (tmp)
399 *tmp = '\0';
400 tmp = (char *)module; /* For free() */
401 }
402
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900403 for (i = 0; i < ntevs; i++) {
404 tevs[i].point.module = strdup(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900405 if (!tevs[i].point.module) {
406 ret = -ENOMEM;
407 break;
408 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900409 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900410
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -0300411 free(tmp);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900412 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900413}
414
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000415/* Post processing the probe events */
416static int post_process_probe_trace_events(struct probe_trace_event *tevs,
417 int ntevs, const char *module,
418 bool uprobe)
419{
420 struct ref_reloc_sym *reloc_sym;
421 char *tmp;
422 int i;
423
424 if (uprobe)
425 return add_exec_to_probe_trace_events(tevs, ntevs, module);
426
427 /* Note that currently ref_reloc_sym based probe is not for drivers */
428 if (module)
429 return add_module_to_probe_trace_events(tevs, ntevs, module);
430
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000431 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000432 if (!reloc_sym) {
433 pr_warning("Relocated base symbol is not found!\n");
434 return -EINVAL;
435 }
436
437 for (i = 0; i < ntevs; i++) {
438 if (tevs[i].point.address) {
439 tmp = strdup(reloc_sym->name);
440 if (!tmp)
441 return -ENOMEM;
442 free(tevs[i].point.symbol);
443 tevs[i].point.symbol = tmp;
444 tevs[i].point.offset = tevs[i].point.address -
445 reloc_sym->unrelocated_addr;
446 }
447 }
448 return 0;
449}
450
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300451/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530452static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900453 struct probe_trace_event **tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +0530454 int max_tevs, const char *target)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300455{
456 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530457 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900458 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300459
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530460 dinfo = open_debuginfo(target);
461
Masami Hiramatsuff741782011-06-27 16:27:39 +0900462 if (!dinfo) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400463 if (need_dwarf) {
464 pr_warning("Failed to open debuginfo file.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900465 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400466 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900467 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300468 return 0;
469 }
470
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000471 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900472 /* Searching trace events corresponding to a probe event */
473 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs, max_tevs);
474
475 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300476
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400477 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000478 pr_debug("Found %d probe_trace_events.\n", ntevs);
479 ret = post_process_probe_trace_events(*tevs, ntevs,
480 target, pev->uprobes);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000481 if (ret < 0) {
482 clear_probe_trace_events(*tevs, ntevs);
483 zfree(tevs);
484 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900485 return ret < 0 ? ret : ntevs;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400486 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300487
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400488 if (ntevs == 0) { /* No error but failed to find probe point. */
489 pr_warning("Probe point '%s' not found.\n",
490 synthesize_perf_probe_point(&pev->point));
491 return -ENOENT;
492 }
493 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400494 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
495 if (ntevs == -EBADF) {
496 pr_warning("Warning: No dwarf info found in the vmlinux - "
497 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
498 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900499 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400500 return 0;
501 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300502 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400503 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300504}
505
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900506/*
507 * Find a src file from a DWARF tag path. Prepend optional source path prefix
508 * and chop off leading directories that do not exist. Result is passed back as
509 * a newly allocated path on success.
510 * Return 0 if file was found and readable, -errno otherwise.
511 */
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900512static int get_real_path(const char *raw_path, const char *comp_dir,
513 char **new_path)
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900514{
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900515 const char *prefix = symbol_conf.source_prefix;
516
517 if (!prefix) {
518 if (raw_path[0] != '/' && comp_dir)
519 /* If not an absolute path, try to use comp_dir */
520 prefix = comp_dir;
521 else {
522 if (access(raw_path, R_OK) == 0) {
523 *new_path = strdup(raw_path);
524 return 0;
525 } else
526 return -errno;
527 }
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900528 }
529
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900530 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900531 if (!*new_path)
532 return -ENOMEM;
533
534 for (;;) {
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900535 sprintf(*new_path, "%s/%s", prefix, raw_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900536
537 if (access(*new_path, R_OK) == 0)
538 return 0;
539
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900540 if (!symbol_conf.source_prefix)
541 /* In case of searching comp_dir, don't retry */
542 return -errno;
543
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900544 switch (errno) {
545 case ENAMETOOLONG:
546 case ENOENT:
547 case EROFS:
548 case EFAULT:
549 raw_path = strchr(++raw_path, '/');
550 if (!raw_path) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300551 zfree(new_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900552 return -ENOENT;
553 }
554 continue;
555
556 default:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300557 zfree(new_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900558 return -errno;
559 }
560 }
561}
562
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300563#define LINEBUF_SIZE 256
564#define NR_ADDITIONAL_LINES 2
565
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100566static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300567{
568 char buf[LINEBUF_SIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100569 const char *color = show_num ? "" : PERF_COLOR_BLUE;
570 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300571
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100572 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300573 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
574 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100575 if (skip)
576 continue;
577 if (!prefix) {
578 prefix = show_num ? "%7d " : " ";
579 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300580 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100581 color_fprintf(stdout, color, "%s", buf);
582
583 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400584
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100585 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300586error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100587 if (ferror(fp)) {
Franck Bui-Huu32b2b6e2010-12-22 17:37:13 +0100588 pr_warning("File read error: %s\n", strerror(errno));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100589 return -1;
590 }
591 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300592}
593
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100594static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
595{
596 int rv = __show_one_line(fp, l, skip, show_num);
597 if (rv == 0) {
598 pr_warning("Source file is shorter than expected.\n");
599 rv = -1;
600 }
601 return rv;
602}
603
604#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
605#define show_one_line(f,l) _show_one_line(f,l,false,false)
606#define skip_one_line(f,l) _show_one_line(f,l,true,false)
607#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
608
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300609/*
610 * Show line-range always requires debuginfo to find source file and
611 * line number.
612 */
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000613static int __show_line_range(struct line_range *lr, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300614{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400615 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000616 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900617 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300618 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900619 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900620 char *tmp;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300621
622 /* Search a line range */
Masami Hiramatsuff741782011-06-27 16:27:39 +0900623 dinfo = open_debuginfo(module);
624 if (!dinfo) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400625 pr_warning("Failed to open debuginfo file.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900626 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400627 }
628
Masami Hiramatsuff741782011-06-27 16:27:39 +0900629 ret = debuginfo__find_line_range(dinfo, lr);
630 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000631 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400632 pr_warning("Specified source line is not found.\n");
633 return -ENOENT;
634 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000635 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400636 return ret;
637 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300638
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900639 /* Convert source file path */
640 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900641 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900642 free(tmp); /* Free old path */
643 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000644 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900645 return ret;
646 }
647
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300648 setup_pager();
649
650 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900651 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300652 lr->start - lr->offset);
653 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100654 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300655
656 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400657 if (fp == NULL) {
658 pr_warning("Failed to open %s: %s\n", lr->path,
659 strerror(errno));
660 return -errno;
661 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300662 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100663 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100664 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100665 if (ret < 0)
666 goto end;
667 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300668
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000669 intlist__for_each(ln, lr->line_list) {
670 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100671 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100672 if (ret < 0)
673 goto end;
674 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100675 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400676 if (ret < 0)
677 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300678 }
679
680 if (lr->end == INT_MAX)
681 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100682 while (l <= lr->end) {
683 ret = show_one_line_or_eof(fp, l++ - lr->offset);
684 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100685 break;
686 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400687end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300688 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400689 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300690}
691
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000692int show_line_range(struct line_range *lr, const char *module)
693{
694 int ret;
695
696 ret = init_symbol_maps(false);
697 if (ret < 0)
698 return ret;
699 ret = __show_line_range(lr, module);
700 exit_symbol_maps();
701
702 return ret;
703}
704
Masami Hiramatsuff741782011-06-27 16:27:39 +0900705static int show_available_vars_at(struct debuginfo *dinfo,
706 struct perf_probe_event *pev,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900707 int max_vls, struct strfilter *_filter,
708 bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900709{
710 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900711 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900712 struct str_node *node;
713 struct variable_list *vls = NULL, *vl;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900714 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900715
716 buf = synthesize_perf_probe_point(&pev->point);
717 if (!buf)
718 return -EINVAL;
719 pr_debug("Searching variables at %s\n", buf);
720
Masami Hiramatsuff741782011-06-27 16:27:39 +0900721 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls,
722 max_vls, externs);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900723 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000724 if (ret == 0 || ret == -ENOENT) {
725 pr_err("Failed to find the address of %s\n", buf);
726 ret = -ENOENT;
727 } else
728 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900729 goto end;
730 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000731
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900732 /* Some variables are found */
733 fprintf(stdout, "Available variables at %s\n", buf);
734 for (i = 0; i < ret; i++) {
735 vl = &vls[i];
736 /*
737 * A probe point might be converted to
738 * several trace points.
739 */
740 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
741 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300742 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900743 nvars = 0;
744 if (vl->vars) {
745 strlist__for_each(node, vl->vars) {
746 var = strchr(node->s, '\t') + 1;
747 if (strfilter__compare(_filter, var)) {
748 fprintf(stdout, "\t\t%s\n", node->s);
749 nvars++;
750 }
751 }
752 strlist__delete(vl->vars);
753 }
754 if (nvars == 0)
755 fprintf(stdout, "\t\t(No matched variables)\n");
756 }
757 free(vls);
758end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900759 free(buf);
760 return ret;
761}
762
763/* Show available variables on given probe point */
764int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900765 int max_vls, const char *module,
766 struct strfilter *_filter, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900767{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900768 int i, ret = 0;
769 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900770
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000771 ret = init_symbol_maps(false);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900772 if (ret < 0)
773 return ret;
774
Masami Hiramatsuff741782011-06-27 16:27:39 +0900775 dinfo = open_debuginfo(module);
776 if (!dinfo) {
777 pr_warning("Failed to open debuginfo file.\n");
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000778 ret = -ENOENT;
779 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900780 }
781
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900782 setup_pager();
783
Masami Hiramatsuff741782011-06-27 16:27:39 +0900784 for (i = 0; i < npevs && ret >= 0; i++)
785 ret = show_available_vars_at(dinfo, &pevs[i], max_vls, _filter,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900786 externs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900787
788 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000789out:
790 exit_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900791 return ret;
792}
793
Ingo Molnar89fe8082013-09-30 12:07:11 +0200794#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300795
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000796static int
797find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
798 struct perf_probe_point *pp __maybe_unused,
799 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300800{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000801 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300802}
803
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530804static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300805 struct probe_trace_event **tevs __maybe_unused,
Arnaldo Carvalho de Melo1d027ee2014-01-13 15:15:25 -0300806 int max_tevs __maybe_unused,
807 const char *target __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300808{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400809 if (perf_probe_event_need_dwarf(pev)) {
810 pr_warning("Debuginfo-analysis is not supported.\n");
811 return -ENOSYS;
812 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530813
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300814 return 0;
815}
816
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300817int show_line_range(struct line_range *lr __maybe_unused,
818 const char *module __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300819{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400820 pr_warning("Debuginfo-analysis is not supported.\n");
821 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300822}
823
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300824int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
825 int npevs __maybe_unused, int max_vls __maybe_unused,
826 const char *module __maybe_unused,
827 struct strfilter *filter __maybe_unused,
828 bool externs __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900829{
830 pr_warning("Debuginfo-analysis is not supported.\n");
831 return -ENOSYS;
832}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400833#endif
834
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000835void line_range__clear(struct line_range *lr)
836{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000837 free(lr->function);
838 free(lr->file);
839 free(lr->path);
840 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000841 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000842 memset(lr, 0, sizeof(*lr));
843}
844
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000845int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000846{
847 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000848 lr->line_list = intlist__new(NULL);
849 if (!lr->line_list)
850 return -ENOMEM;
851 else
852 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000853}
854
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100855static int parse_line_num(char **ptr, int *val, const char *what)
856{
857 const char *start = *ptr;
858
859 errno = 0;
860 *val = strtol(*ptr, ptr, 0);
861 if (errno || *ptr == start) {
862 semantic_error("'%s' is not a valid number.\n", what);
863 return -EINVAL;
864 }
865 return 0;
866}
867
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100868/*
869 * Stuff 'lr' according to the line range described by 'arg'.
870 * The line range syntax is described by:
871 *
872 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900873 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100874 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400875int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500876{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900877 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100878 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100879
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100880 if (!name)
881 return -ENOMEM;
882
883 lr->start = 0;
884 lr->end = INT_MAX;
885
886 range = strchr(name, ':');
887 if (range) {
888 *range++ = '\0';
889
890 err = parse_line_num(&range, &lr->start, "start line");
891 if (err)
892 goto err;
893
894 if (*range == '+' || *range == '-') {
895 const char c = *range++;
896
897 err = parse_line_num(&range, &lr->end, "end line");
898 if (err)
899 goto err;
900
901 if (c == '+') {
902 lr->end += lr->start;
903 /*
904 * Adjust the number of lines here.
905 * If the number of lines == 1, the
906 * the end of line should be equal to
907 * the start of line.
908 */
909 lr->end--;
910 }
911 }
912
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400913 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100914
915 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400916 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500917 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400918 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100919 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400920 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100921 if (*range != '\0') {
922 semantic_error("Tailing with invalid str '%s'.\n", range);
923 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400924 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400925 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400926
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900927 file = strchr(name, '@');
928 if (file) {
929 *file = '\0';
930 lr->file = strdup(++file);
931 if (lr->file == NULL) {
932 err = -ENOMEM;
933 goto err;
934 }
935 lr->function = name;
936 } else if (strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100937 lr->file = name;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500938 else
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100939 lr->function = name;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400940
941 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100942err:
943 free(name);
944 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500945}
946
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500947/* Check the name is good for event/group */
948static bool check_event_name(const char *name)
949{
950 if (!isalpha(*name) && *name != '_')
951 return false;
952 while (*++name != '\0') {
953 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
954 return false;
955 }
956 return true;
957}
958
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500959/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400960static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500961{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400962 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500963 char *ptr, *tmp;
964 char c, nc = 0;
965 /*
966 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500967 * perf probe [EVENT=]SRC[:LN|;PTN]
968 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500969 *
970 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500971 */
972
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500973 ptr = strpbrk(arg, ";=@+%");
974 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500975 *ptr = '\0';
976 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400977 if (strchr(arg, ':')) {
978 semantic_error("Group name is not supported yet.\n");
979 return -ENOTSUP;
980 }
981 if (!check_event_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500982 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400983 "follow C symbol-naming rule.\n", arg);
984 return -EINVAL;
985 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400986 pev->event = strdup(arg);
987 if (pev->event == NULL)
988 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400989 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500990 arg = tmp;
991 }
992
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500993 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500994 if (ptr) {
995 nc = *ptr;
996 *ptr++ = '\0';
997 }
998
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400999 tmp = strdup(arg);
1000 if (tmp == NULL)
1001 return -ENOMEM;
1002
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001003 /* Check arg is function or file and copy it */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001004 if (strchr(tmp, '.')) /* File */
1005 pp->file = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001006 else /* Function */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001007 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001008
1009 /* Parse other options */
1010 while (ptr) {
1011 arg = ptr;
1012 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001013 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001014 pp->lazy_line = strdup(arg);
1015 if (pp->lazy_line == NULL)
1016 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001017 break;
1018 }
1019 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001020 if (ptr) {
1021 nc = *ptr;
1022 *ptr++ = '\0';
1023 }
1024 switch (c) {
1025 case ':': /* Line number */
1026 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001027 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001028 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001029 " in line number.\n");
1030 return -EINVAL;
1031 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001032 break;
1033 case '+': /* Byte offset from a symbol */
1034 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001035 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001036 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001037 " in offset.\n");
1038 return -EINVAL;
1039 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001040 break;
1041 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001042 if (pp->file) {
1043 semantic_error("SRC@SRC is not allowed.\n");
1044 return -EINVAL;
1045 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001046 pp->file = strdup(arg);
1047 if (pp->file == NULL)
1048 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001049 break;
1050 case '%': /* Probe places */
1051 if (strcmp(arg, "return") == 0) {
1052 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001053 } else { /* Others not supported yet */
1054 semantic_error("%%%s is not supported.\n", arg);
1055 return -ENOTSUP;
1056 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001057 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001058 default: /* Buggy case */
1059 pr_err("This program has a bug at %s:%d.\n",
1060 __FILE__, __LINE__);
1061 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001062 break;
1063 }
1064 }
1065
1066 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001067 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001068 semantic_error("Lazy pattern can't be used with"
1069 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001070 return -EINVAL;
1071 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001072
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001073 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001074 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001075 return -EINVAL;
1076 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001077
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001078 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001079 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001080 return -EINVAL;
1081 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001082
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001083 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001084 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001085 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001086 return -EINVAL;
1087 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001088
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001089 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001090 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001091 return -EINVAL;
1092 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001093
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001094 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001095 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001096 return -EINVAL;
1097 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001098
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001099 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001100 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001101 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001102 return -EINVAL;
1103 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001104
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001105 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001106 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1107 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001108 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001109}
1110
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001111/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001112static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001113{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001114 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001115 struct perf_probe_arg_field **fieldp;
1116
1117 pr_debug("parsing arg: %s into ", str);
1118
Masami Hiramatsu48481932010-04-12 13:16:53 -04001119 tmp = strchr(str, '=');
1120 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001121 arg->name = strndup(str, tmp - str);
1122 if (arg->name == NULL)
1123 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001124 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001125 str = tmp + 1;
1126 }
1127
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001128 tmp = strchr(str, ':');
1129 if (tmp) { /* Type setting */
1130 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001131 arg->type = strdup(tmp + 1);
1132 if (arg->type == NULL)
1133 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001134 pr_debug("type:%s ", arg->type);
1135 }
1136
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001137 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001138 if (!is_c_varname(str) || !tmp) {
1139 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001140 arg->var = strdup(str);
1141 if (arg->var == NULL)
1142 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001143 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001144 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001145 }
1146
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001147 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001148 arg->var = strndup(str, tmp - str);
1149 if (arg->var == NULL)
1150 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001151 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001152 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001153 fieldp = &arg->field;
1154
1155 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001156 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1157 if (*fieldp == NULL)
1158 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001159 if (*tmp == '[') { /* Array */
1160 str = tmp;
1161 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001162 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001163 if (*tmp != ']' || tmp == str + 1) {
1164 semantic_error("Array index must be a"
1165 " number.\n");
1166 return -EINVAL;
1167 }
1168 tmp++;
1169 if (*tmp == '\0')
1170 tmp = NULL;
1171 } else { /* Structure */
1172 if (*tmp == '.') {
1173 str = tmp + 1;
1174 (*fieldp)->ref = false;
1175 } else if (tmp[1] == '>') {
1176 str = tmp + 2;
1177 (*fieldp)->ref = true;
1178 } else {
1179 semantic_error("Argument parse error: %s\n",
1180 str);
1181 return -EINVAL;
1182 }
1183 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001184 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001185 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001186 (*fieldp)->name = strndup(str, tmp - str);
1187 if ((*fieldp)->name == NULL)
1188 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001189 if (*str != '[')
1190 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001191 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1192 fieldp = &(*fieldp)->next;
1193 }
1194 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001195 (*fieldp)->name = strdup(str);
1196 if ((*fieldp)->name == NULL)
1197 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001198 if (*str != '[')
1199 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001200 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001201
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001202 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001203 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001204 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001205 if (arg->name == NULL)
1206 return -ENOMEM;
1207 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001208 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001209}
1210
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001211/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001212int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001213{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001214 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001215 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001216
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001217 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001218 if (!argv) {
1219 pr_debug("Failed to split arguments.\n");
1220 return -ENOMEM;
1221 }
1222 if (argc - 1 > MAX_PROBE_ARGS) {
1223 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1224 ret = -ERANGE;
1225 goto out;
1226 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001227 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001228 ret = parse_perf_probe_point(argv[0], pev);
1229 if (ret < 0)
1230 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001231
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001232 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001233 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001234 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1235 if (pev->args == NULL) {
1236 ret = -ENOMEM;
1237 goto out;
1238 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001239 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1240 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1241 if (ret >= 0 &&
1242 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001243 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001244 " kretprobe.\n");
1245 ret = -EINVAL;
1246 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001247 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001248out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001249 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001250
1251 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001252}
1253
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001254/* Return true if this perf_probe_event requires debuginfo */
1255bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001256{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001257 int i;
1258
1259 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1260 return true;
1261
1262 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -04001263 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001264 return true;
1265
1266 return false;
1267}
1268
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301269/* Parse probe_events event into struct probe_point */
1270static int parse_probe_trace_command(const char *cmd,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001271 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001272{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301273 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001274 char pr;
1275 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001276 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001277 int ret, i, argc;
1278 char **argv;
1279
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301280 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001281 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001282 if (!argv) {
1283 pr_debug("Failed to split arguments.\n");
1284 return -ENOMEM;
1285 }
1286 if (argc < 2) {
1287 semantic_error("Too few probe arguments.\n");
1288 ret = -ERANGE;
1289 goto out;
1290 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001291
1292 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001293 argv0_str = strdup(argv[0]);
1294 if (argv0_str == NULL) {
1295 ret = -ENOMEM;
1296 goto out;
1297 }
1298 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1299 fmt2_str = strtok_r(NULL, "/", &fmt);
1300 fmt3_str = strtok_r(NULL, " \t", &fmt);
1301 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1302 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001303 semantic_error("Failed to parse event name: %s\n", argv[0]);
1304 ret = -EINVAL;
1305 goto out;
1306 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001307 pr = fmt1_str[0];
1308 tev->group = strdup(fmt2_str);
1309 tev->event = strdup(fmt3_str);
1310 if (tev->group == NULL || tev->event == NULL) {
1311 ret = -ENOMEM;
1312 goto out;
1313 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001314 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001315
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001316 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001317
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001318 /* Scan module name(if there), function name and offset */
1319 p = strchr(argv[1], ':');
1320 if (p) {
1321 tp->module = strndup(argv[1], p - argv[1]);
1322 p++;
1323 } else
1324 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001325 fmt1_str = strtok_r(p, "+", &fmt);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001326 if (fmt1_str[0] == '0') /* only the address started with 0x */
1327 tp->address = strtoul(fmt1_str, NULL, 0);
1328 else {
1329 /* Only the symbol-based probe has offset */
1330 tp->symbol = strdup(fmt1_str);
1331 if (tp->symbol == NULL) {
1332 ret = -ENOMEM;
1333 goto out;
1334 }
1335 fmt2_str = strtok_r(NULL, "", &fmt);
1336 if (fmt2_str == NULL)
1337 tp->offset = 0;
1338 else
1339 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001340 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001341
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001342 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301343 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001344 if (tev->args == NULL) {
1345 ret = -ENOMEM;
1346 goto out;
1347 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001348 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001349 p = strchr(argv[i + 2], '=');
1350 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001351 *p++ = '\0';
1352 else
1353 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001354 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001355 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001356 tev->args[i].value = strdup(p);
1357 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1358 ret = -ENOMEM;
1359 goto out;
1360 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001361 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001362 ret = 0;
1363out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001364 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001365 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001366 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001367}
1368
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001369/* Compose only probe arg */
1370int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1371{
1372 struct perf_probe_arg_field *field = pa->field;
1373 int ret;
1374 char *tmp = buf;
1375
Masami Hiramatsu48481932010-04-12 13:16:53 -04001376 if (pa->name && pa->var)
1377 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1378 else
1379 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001380 if (ret <= 0)
1381 goto error;
1382 tmp += ret;
1383 len -= ret;
1384
1385 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001386 if (field->name[0] == '[')
1387 ret = e_snprintf(tmp, len, "%s", field->name);
1388 else
1389 ret = e_snprintf(tmp, len, "%s%s",
1390 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001391 if (ret <= 0)
1392 goto error;
1393 tmp += ret;
1394 len -= ret;
1395 field = field->next;
1396 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001397
1398 if (pa->type) {
1399 ret = e_snprintf(tmp, len, ":%s", pa->type);
1400 if (ret <= 0)
1401 goto error;
1402 tmp += ret;
1403 len -= ret;
1404 }
1405
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001406 return tmp - buf;
1407error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001408 pr_debug("Failed to synthesize perf probe argument: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001409 strerror(-ret));
1410 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001411}
1412
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001413/* Compose only probe point (not argument) */
1414static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001415{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001416 char *buf, *tmp;
1417 char offs[32] = "", line[32] = "", file[32] = "";
1418 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001419
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001420 buf = zalloc(MAX_CMDLEN);
1421 if (buf == NULL) {
1422 ret = -ENOMEM;
1423 goto error;
1424 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001425 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001426 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001427 if (ret <= 0)
1428 goto error;
1429 }
1430 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001431 ret = e_snprintf(line, 32, ":%d", pp->line);
1432 if (ret <= 0)
1433 goto error;
1434 }
1435 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001436 tmp = pp->file;
1437 len = strlen(tmp);
1438 if (len > 30) {
1439 tmp = strchr(pp->file + len - 30, '/');
1440 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1441 }
1442 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001443 if (ret <= 0)
1444 goto error;
1445 }
1446
1447 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001448 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1449 offs, pp->retprobe ? "%return" : "", line,
1450 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001451 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001452 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001453 if (ret <= 0)
1454 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001455
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001456 return buf;
1457error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001458 pr_debug("Failed to synthesize perf probe point: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001459 strerror(-ret));
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001460 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001461 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001462}
1463
1464#if 0
1465char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1466{
1467 char *buf;
1468 int i, len, ret;
1469
1470 buf = synthesize_perf_probe_point(&pev->point);
1471 if (!buf)
1472 return NULL;
1473
1474 len = strlen(buf);
1475 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001476 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001477 pev->args[i].name);
1478 if (ret <= 0) {
1479 free(buf);
1480 return NULL;
1481 }
1482 len += ret;
1483 }
1484
1485 return buf;
1486}
1487#endif
1488
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301489static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001490 char **buf, size_t *buflen,
1491 int depth)
1492{
1493 int ret;
1494 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301495 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001496 buflen, depth + 1);
1497 if (depth < 0)
1498 goto out;
1499 }
1500
1501 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1502 if (ret < 0)
1503 depth = ret;
1504 else {
1505 *buf += ret;
1506 *buflen -= ret;
1507 }
1508out:
1509 return depth;
1510
1511}
1512
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301513static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001514 char *buf, size_t buflen)
1515{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301516 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001517 int ret, depth = 0;
1518 char *tmp = buf;
1519
1520 /* Argument name or separator */
1521 if (arg->name)
1522 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1523 else
1524 ret = e_snprintf(buf, buflen, " ");
1525 if (ret < 0)
1526 return ret;
1527 buf += ret;
1528 buflen -= ret;
1529
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001530 /* Special case: @XXX */
1531 if (arg->value[0] == '@' && arg->ref)
1532 ref = ref->next;
1533
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001534 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001535 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301536 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001537 &buflen, 1);
1538 if (depth < 0)
1539 return depth;
1540 }
1541
1542 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001543 if (arg->value[0] == '@' && arg->ref)
1544 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1545 arg->ref->offset);
1546 else
1547 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001548 if (ret < 0)
1549 return ret;
1550 buf += ret;
1551 buflen -= ret;
1552
1553 /* Closing */
1554 while (depth--) {
1555 ret = e_snprintf(buf, buflen, ")");
1556 if (ret < 0)
1557 return ret;
1558 buf += ret;
1559 buflen -= ret;
1560 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001561 /* Print argument type */
1562 if (arg->type) {
1563 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1564 if (ret <= 0)
1565 return ret;
1566 buf += ret;
1567 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001568
1569 return buf - tmp;
1570}
1571
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301572char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001573{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301574 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001575 char *buf;
1576 int i, len, ret;
1577
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001578 buf = zalloc(MAX_CMDLEN);
1579 if (buf == NULL)
1580 return NULL;
1581
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001582 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1583 tev->group, tev->event);
1584 if (len <= 0)
1585 goto error;
1586
1587 /* Uprobes must have tp->address and tp->module */
1588 if (tev->uprobes && (!tp->address || !tp->module))
1589 goto error;
1590
1591 /* Use the tp->address for uprobes */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301592 if (tev->uprobes)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001593 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s:0x%lx",
1594 tp->module, tp->address);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301595 else
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001596 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s%s+%lu",
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301597 tp->module ?: "", tp->module ? ":" : "",
1598 tp->symbol, tp->offset);
1599
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001600 if (ret <= 0)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001601 goto error;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001602 len += ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001603
1604 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301605 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001606 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001607 if (ret <= 0)
1608 goto error;
1609 len += ret;
1610 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001611
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001612 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001613error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001614 free(buf);
1615 return NULL;
1616}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001617
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001618static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1619 struct perf_probe_point *pp,
1620 bool is_kprobe)
1621{
1622 struct symbol *sym = NULL;
1623 struct map *map;
1624 u64 addr;
1625 int ret = -ENOENT;
1626
1627 if (!is_kprobe) {
1628 map = dso__new_map(tp->module);
1629 if (!map)
1630 goto out;
1631 addr = tp->address;
1632 sym = map__find_symbol(map, addr, NULL);
1633 } else {
1634 addr = kernel_get_symbol_address_by_name(tp->symbol, true);
1635 if (addr) {
1636 addr += tp->offset;
1637 sym = __find_kernel_function(addr, &map);
1638 }
1639 }
1640 if (!sym)
1641 goto out;
1642
1643 pp->retprobe = tp->retprobe;
1644 pp->offset = addr - map->unmap_ip(map, sym->start);
1645 pp->function = strdup(sym->name);
1646 ret = pp->function ? 0 : -ENOMEM;
1647
1648out:
1649 if (map && !is_kprobe) {
1650 dso__delete(map->dso);
1651 map__delete(map);
1652 }
1653
1654 return ret;
1655}
1656
1657static int convert_to_perf_probe_point(struct probe_trace_point *tp,
1658 struct perf_probe_point *pp,
1659 bool is_kprobe)
1660{
1661 char buf[128];
1662 int ret;
1663
1664 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1665 if (!ret)
1666 return 0;
1667 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1668 if (!ret)
1669 return 0;
1670
1671 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1672
1673 if (tp->symbol) {
1674 pp->function = strdup(tp->symbol);
1675 pp->offset = tp->offset;
1676 } else if (!tp->module && !is_kprobe) {
1677 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
1678 if (ret < 0)
1679 return ret;
1680 pp->function = strdup(buf);
1681 pp->offset = 0;
1682 }
1683 if (pp->function == NULL)
1684 return -ENOMEM;
1685
1686 pp->retprobe = tp->retprobe;
1687
1688 return 0;
1689}
1690
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301691static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301692 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001693{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001694 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001695 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001696
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001697 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001698 pev->event = strdup(tev->event);
1699 pev->group = strdup(tev->group);
1700 if (pev->event == NULL || pev->group == NULL)
1701 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001702
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001703 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001704 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001705 if (ret < 0)
1706 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001707
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001708 /* Convert trace_arg to probe_arg */
1709 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001710 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1711 if (pev->args == NULL)
1712 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001713 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001714 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001715 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001716 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301717 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001718 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001719 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001720 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001721 if (pev->args[i].name == NULL && ret >= 0)
1722 ret = -ENOMEM;
1723 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001724
1725 if (ret < 0)
1726 clear_perf_probe_event(pev);
1727
1728 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001729}
1730
1731void clear_perf_probe_event(struct perf_probe_event *pev)
1732{
1733 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001734 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001735 int i;
1736
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001737 free(pev->event);
1738 free(pev->group);
1739 free(pp->file);
1740 free(pp->function);
1741 free(pp->lazy_line);
1742
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001743 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001744 free(pev->args[i].name);
1745 free(pev->args[i].var);
1746 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001747 field = pev->args[i].field;
1748 while (field) {
1749 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001750 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001751 free(field);
1752 field = next;
1753 }
1754 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001755 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001756 memset(pev, 0, sizeof(*pev));
1757}
1758
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301759static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001760{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301761 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001762 int i;
1763
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001764 free(tev->event);
1765 free(tev->group);
1766 free(tev->point.symbol);
1767 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001768 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001769 free(tev->args[i].name);
1770 free(tev->args[i].value);
1771 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001772 ref = tev->args[i].ref;
1773 while (ref) {
1774 next = ref->next;
1775 free(ref);
1776 ref = next;
1777 }
1778 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001779 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001780 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001781}
1782
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301783static void print_warn_msg(const char *file, bool is_kprobe)
1784{
1785
1786 if (errno == ENOENT) {
1787 const char *config;
1788
1789 if (!is_kprobe)
1790 config = "CONFIG_UPROBE_EVENTS";
1791 else
1792 config = "CONFIG_KPROBE_EVENTS";
1793
1794 pr_warning("%s file does not exist - please rebuild kernel"
1795 " with %s.\n", file, config);
1796 } else
1797 pr_warning("Failed to open %s file: %s\n", file,
1798 strerror(errno));
1799}
1800
1801static int open_probe_events(const char *trace_file, bool readwrite,
1802 bool is_kprobe)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001803{
1804 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001805 const char *__debugfs;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001806 int ret;
1807
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001808 __debugfs = debugfs_find_mountpoint();
1809 if (__debugfs == NULL) {
1810 pr_warning("Debugfs is not mounted.\n");
1811 return -ENOENT;
1812 }
1813
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301814 ret = e_snprintf(buf, PATH_MAX, "%s/%s", __debugfs, trace_file);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001815 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001816 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001817 if (readwrite && !probe_event_dry_run)
1818 ret = open(buf, O_RDWR, O_APPEND);
1819 else
1820 ret = open(buf, O_RDONLY, 0);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001821
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301822 if (ret < 0)
1823 print_warn_msg(buf, is_kprobe);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001824 }
1825 return ret;
1826}
1827
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301828static int open_kprobe_events(bool readwrite)
1829{
1830 return open_probe_events("tracing/kprobe_events", readwrite, true);
1831}
1832
1833static int open_uprobe_events(bool readwrite)
1834{
1835 return open_probe_events("tracing/uprobe_events", readwrite, false);
1836}
1837
1838/* Get raw string list of current kprobe_events or uprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301839static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001840{
1841 int ret, idx;
1842 FILE *fp;
1843 char buf[MAX_CMDLEN];
1844 char *p;
1845 struct strlist *sl;
1846
1847 sl = strlist__new(true, NULL);
1848
1849 fp = fdopen(dup(fd), "r");
1850 while (!feof(fp)) {
1851 p = fgets(buf, MAX_CMDLEN, fp);
1852 if (!p)
1853 break;
1854
1855 idx = strlen(p) - 1;
1856 if (p[idx] == '\n')
1857 p[idx] = '\0';
1858 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001859 if (ret < 0) {
1860 pr_debug("strlist__add failed: %s\n", strerror(-ret));
1861 strlist__delete(sl);
1862 return NULL;
1863 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001864 }
1865 fclose(fp);
1866
1867 return sl;
1868}
1869
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001870/* Show an event */
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001871static int show_perf_probe_event(struct perf_probe_event *pev,
1872 const char *module)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001873{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001874 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001875 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001876 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001877
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001878 /* Synthesize only event probe point */
1879 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001880 if (!place)
1881 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001882
1883 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001884 if (ret < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001885 return ret;
1886
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001887 printf(" %-20s (on %s", buf, place);
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001888 if (module)
1889 printf(" in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001890
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001891 if (pev->nargs > 0) {
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001892 printf(" with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001893 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001894 ret = synthesize_perf_probe_arg(&pev->args[i],
1895 buf, 128);
1896 if (ret < 0)
1897 break;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001898 printf(" %s", buf);
1899 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001900 }
1901 printf(")\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001902 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001903 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001904}
1905
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301906static int __show_perf_probe_events(int fd, bool is_kprobe)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001907{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301908 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301909 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001910 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001911 struct strlist *rawlist;
1912 struct str_node *ent;
1913
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001914 memset(&tev, 0, sizeof(tev));
1915 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05001916
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301917 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001918 if (!rawlist)
1919 return -ENOENT;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001920
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001921 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301922 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001923 if (ret >= 0) {
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301924 ret = convert_to_perf_probe_event(&tev, &pev,
1925 is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001926 if (ret >= 0)
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001927 ret = show_perf_probe_event(&pev,
1928 tev.point.module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001929 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001930 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301931 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001932 if (ret < 0)
1933 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001934 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001935 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001936
1937 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001938}
1939
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301940/* List up current perf-probe events */
1941int show_perf_probe_events(void)
1942{
1943 int fd, ret;
1944
1945 setup_pager();
1946 fd = open_kprobe_events(false);
1947
1948 if (fd < 0)
1949 return fd;
1950
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001951 ret = init_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301952 if (ret < 0)
1953 return ret;
1954
1955 ret = __show_perf_probe_events(fd, true);
1956 close(fd);
1957
1958 fd = open_uprobe_events(false);
1959 if (fd >= 0) {
1960 ret = __show_perf_probe_events(fd, false);
1961 close(fd);
1962 }
1963
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001964 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301965 return ret;
1966}
1967
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001968/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301969static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001970{
Masami Hiramatsufa282442009-12-08 17:03:23 -05001971 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001972 struct strlist *sl, *rawlist;
1973 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301974 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001975 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001976
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001977 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301978 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001979 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001980 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301981 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001982 if (ret < 0)
1983 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001984 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001985 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
1986 tev.event);
1987 if (ret >= 0)
1988 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001989 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001990 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301991 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001992 if (ret < 0)
1993 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001994 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001995 strlist__delete(rawlist);
1996
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001997 if (ret < 0) {
1998 strlist__delete(sl);
1999 return NULL;
2000 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002001 return sl;
2002}
2003
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302004static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002005{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02002006 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302007 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002008
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002009 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302010 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002011 return -EINVAL;
2012 }
2013
Masami Hiramatsufa282442009-12-08 17:03:23 -05002014 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002015 if (!probe_event_dry_run) {
2016 ret = write(fd, buf, strlen(buf));
2017 if (ret <= 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002018 pr_warning("Failed to write event: %s\n",
2019 strerror(errno));
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002020 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002021 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002022 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002023}
2024
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002025static int get_new_event_name(char *buf, size_t len, const char *base,
2026 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002027{
2028 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002029
2030 /* Try no suffix */
2031 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002032 if (ret < 0) {
2033 pr_debug("snprintf() failed: %s\n", strerror(-ret));
2034 return ret;
2035 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002036 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002037 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002038
Masami Hiramatsud761b082009-12-15 10:32:25 -05002039 if (!allow_suffix) {
2040 pr_warning("Error: event \"%s\" already exists. "
2041 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002042 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002043 }
2044
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002045 /* Try to add suffix */
2046 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002047 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002048 if (ret < 0) {
2049 pr_debug("snprintf() failed: %s\n", strerror(-ret));
2050 return ret;
2051 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002052 if (!strlist__has_entry(namelist, buf))
2053 break;
2054 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002055 if (i == MAX_EVENT_INDEX) {
2056 pr_warning("Too many events are on the same function.\n");
2057 ret = -ERANGE;
2058 }
2059
2060 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002061}
2062
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302063static int __add_probe_trace_events(struct perf_probe_event *pev,
2064 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002065 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002066{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002067 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302068 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002069 char buf[64];
2070 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002071 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002072
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302073 if (pev->uprobes)
2074 fd = open_uprobe_events(true);
2075 else
2076 fd = open_kprobe_events(true);
2077
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002078 if (fd < 0)
2079 return fd;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002080 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302081 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002082 if (!namelist) {
2083 pr_debug("Failed to get current event list.\n");
2084 return -EIO;
2085 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002086
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002087 ret = 0;
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302088 printf("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002089 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002090 tev = &tevs[i];
2091 if (pev->event)
2092 event = pev->event;
2093 else
2094 if (pev->point.function)
2095 event = pev->point.function;
2096 else
2097 event = tev->point.symbol;
2098 if (pev->group)
2099 group = pev->group;
2100 else
2101 group = PERFPROBE_GROUP;
2102
2103 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002104 ret = get_new_event_name(buf, 64, event,
2105 namelist, allow_suffix);
2106 if (ret < 0)
2107 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002108 event = buf;
2109
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002110 tev->event = strdup(event);
2111 tev->group = strdup(group);
2112 if (tev->event == NULL || tev->group == NULL) {
2113 ret = -ENOMEM;
2114 break;
2115 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302116 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002117 if (ret < 0)
2118 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002119 /* Add added event name to namelist */
2120 strlist__add(namelist, event);
2121
2122 /* Trick here - save current event/group */
2123 event = pev->event;
2124 group = pev->group;
2125 pev->event = tev->event;
2126 pev->group = tev->group;
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002127 show_perf_probe_event(pev, tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002128 /* Trick here - restore current event/group */
2129 pev->event = (char *)event;
2130 pev->group = (char *)group;
2131
2132 /*
2133 * Probes after the first probe which comes from same
2134 * user input are always allowed to add suffix, because
2135 * there might be several addresses corresponding to
2136 * one code line.
2137 */
2138 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002139 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002140
2141 if (ret >= 0) {
2142 /* Show how to use the event. */
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302143 printf("\nYou can now use it in all perf tools, such as:\n\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002144 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
2145 tev->event);
2146 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05002147
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002148 strlist__delete(namelist);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002149 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002150 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002151}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002152
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002153static char *looking_function_name;
2154static int num_matched_functions;
2155
2156static int probe_function_filter(struct map *map __maybe_unused,
2157 struct symbol *sym)
2158{
2159 if ((sym->binding == STB_GLOBAL || sym->binding == STB_LOCAL) &&
2160 strcmp(looking_function_name, sym->name) == 0) {
2161 num_matched_functions++;
2162 return 0;
2163 }
2164 return 1;
2165}
2166
2167#define strdup_or_goto(str, label) \
2168 ({ char *__p = strdup(str); if (!__p) goto label; __p; })
2169
2170/*
2171 * Find probe function addresses from map.
2172 * Return an error or the number of found probe_trace_event
2173 */
2174static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
2175 struct probe_trace_event **tevs,
2176 int max_tevs, const char *target)
2177{
2178 struct map *map = NULL;
2179 struct kmap *kmap = NULL;
2180 struct ref_reloc_sym *reloc_sym = NULL;
2181 struct symbol *sym;
2182 struct rb_node *nd;
2183 struct probe_trace_event *tev;
2184 struct perf_probe_point *pp = &pev->point;
2185 struct probe_trace_point *tp;
2186 int ret, i;
2187
2188 /* Init maps of given executable or kernel */
2189 if (pev->uprobes)
2190 map = dso__new_map(target);
2191 else
2192 map = kernel_get_module_map(target);
2193 if (!map) {
2194 ret = -EINVAL;
2195 goto out;
2196 }
2197
2198 /*
2199 * Load matched symbols: Since the different local symbols may have
2200 * same name but different addresses, this lists all the symbols.
2201 */
2202 num_matched_functions = 0;
2203 looking_function_name = pp->function;
2204 ret = map__load(map, probe_function_filter);
2205 if (ret || num_matched_functions == 0) {
2206 pr_err("Failed to find symbol %s in %s\n", pp->function,
2207 target ? : "kernel");
2208 ret = -ENOENT;
2209 goto out;
2210 } else if (num_matched_functions > max_tevs) {
2211 pr_err("Too many functions matched in %s\n",
2212 target ? : "kernel");
2213 ret = -E2BIG;
2214 goto out;
2215 }
2216
2217 if (!pev->uprobes) {
2218 kmap = map__kmap(map);
2219 reloc_sym = kmap->ref_reloc_sym;
2220 if (!reloc_sym) {
2221 pr_warning("Relocated base symbol is not found!\n");
2222 ret = -EINVAL;
2223 goto out;
2224 }
2225 }
2226
2227 /* Setup result trace-probe-events */
2228 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2229 if (!*tevs) {
2230 ret = -ENOMEM;
2231 goto out;
2232 }
2233
2234 ret = 0;
2235 map__for_each_symbol(map, sym, nd) {
2236 tev = (*tevs) + ret;
2237 tp = &tev->point;
2238 if (ret == num_matched_functions) {
2239 pr_warning("Too many symbols are listed. Skip it.\n");
2240 break;
2241 }
2242 ret++;
2243
2244 if (pp->offset > sym->end - sym->start) {
2245 pr_warning("Offset %ld is bigger than the size of %s\n",
2246 pp->offset, sym->name);
2247 ret = -ENOENT;
2248 goto err_out;
2249 }
2250 /* Add one probe point */
2251 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
2252 if (reloc_sym) {
2253 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2254 tp->offset = tp->address - reloc_sym->addr;
2255 } else {
2256 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2257 tp->offset = pp->offset;
2258 }
2259 tp->retprobe = pp->retprobe;
2260 if (target)
2261 tev->point.module = strdup_or_goto(target, nomem_out);
2262 tev->uprobes = pev->uprobes;
2263 tev->nargs = pev->nargs;
2264 if (tev->nargs) {
2265 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2266 tev->nargs);
2267 if (tev->args == NULL)
2268 goto nomem_out;
2269 }
2270 for (i = 0; i < tev->nargs; i++) {
2271 if (pev->args[i].name)
2272 tev->args[i].name =
2273 strdup_or_goto(pev->args[i].name,
2274 nomem_out);
2275
2276 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2277 nomem_out);
2278 if (pev->args[i].type)
2279 tev->args[i].type =
2280 strdup_or_goto(pev->args[i].type,
2281 nomem_out);
2282 }
2283 }
2284
2285out:
2286 if (map && pev->uprobes) {
2287 /* Only when using uprobe(exec) map needs to be released */
2288 dso__delete(map->dso);
2289 map__delete(map);
2290 }
2291 return ret;
2292
2293nomem_out:
2294 ret = -ENOMEM;
2295err_out:
2296 clear_probe_trace_events(*tevs, num_matched_functions);
2297 zfree(tevs);
2298 goto out;
2299}
2300
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302301static int convert_to_probe_trace_events(struct perf_probe_event *pev,
2302 struct probe_trace_event **tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302303 int max_tevs, const char *target)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002304{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002305 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002306
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002307 if (pev->uprobes && !pev->group) {
2308 /* Replace group name if not given */
2309 ret = convert_exec_to_group(target, &pev->group);
2310 if (ret != 0) {
2311 pr_warning("Failed to make a group name.\n");
2312 return ret;
2313 }
2314 }
2315
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002316 /* Convert perf_probe_event with debuginfo */
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302317 ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, target);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002318 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002319 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002320
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002321 return find_probe_trace_events_from_map(pev, tevs, max_tevs, target);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002322}
2323
2324struct __event_package {
2325 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302326 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002327 int ntevs;
2328};
2329
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002330int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302331 int max_tevs, const char *target, bool force_add)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002332{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002333 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002334 struct __event_package *pkgs;
2335
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302336 ret = 0;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002337 pkgs = zalloc(sizeof(struct __event_package) * npevs);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302338
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002339 if (pkgs == NULL)
2340 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002341
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002342 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002343 if (ret < 0) {
2344 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002345 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002346 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002347
2348 /* Loop 1: convert all events */
2349 for (i = 0; i < npevs; i++) {
2350 pkgs[i].pev = &pevs[i];
2351 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302352 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09002353 &pkgs[i].tevs,
2354 max_tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302355 target);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002356 if (ret < 0)
2357 goto end;
2358 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002359 }
2360
2361 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03002362 for (i = 0; i < npevs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302363 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002364 pkgs[i].ntevs, force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03002365 if (ret < 0)
2366 break;
2367 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002368end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002369 /* Loop 3: cleanup and free trace events */
2370 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002371 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302372 clear_probe_trace_event(&pkgs[i].tevs[j]);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002373 zfree(&pkgs[i].tevs);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002374 }
2375 free(pkgs);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002376 exit_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002377
2378 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002379}
2380
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302381static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002382{
2383 char *p;
2384 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002385 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002386
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302387 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002388 ret = e_snprintf(buf, 128, "-:%s", ent->s);
2389 if (ret < 0)
2390 goto error;
2391
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002392 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002393 if (!p) {
2394 pr_debug("Internal error: %s should have ':' but not.\n",
2395 ent->s);
2396 ret = -ENOTSUP;
2397 goto error;
2398 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002399 *p = '/';
2400
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002401 pr_debug("Writing event: %s\n", buf);
2402 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002403 if (ret < 0) {
2404 ret = -errno;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002405 goto error;
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002406 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002407
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302408 printf("Removed event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002409 return 0;
2410error:
2411 pr_warning("Failed to delete event: %s\n", strerror(-ret));
2412 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002413}
2414
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302415static int del_trace_probe_event(int fd, const char *buf,
2416 struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002417{
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002418 struct str_node *ent, *n;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302419 int ret = -1;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002420
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002421 if (strpbrk(buf, "*?")) { /* Glob-exp */
2422 strlist__for_each_safe(ent, n, namelist)
2423 if (strglobmatch(ent->s, buf)) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302424 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002425 if (ret < 0)
2426 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002427 strlist__remove(namelist, ent);
2428 }
2429 } else {
2430 ent = strlist__find(namelist, buf);
2431 if (ent) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302432 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002433 if (ret >= 0)
2434 strlist__remove(namelist, ent);
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002435 }
2436 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002437
2438 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002439}
2440
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002441int del_perf_probe_events(struct strlist *dellist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002442{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302443 int ret = -1, ufd = -1, kfd = -1;
2444 char buf[128];
Masami Hiramatsufa282442009-12-08 17:03:23 -05002445 const char *group, *event;
2446 char *p, *str;
2447 struct str_node *ent;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302448 struct strlist *namelist = NULL, *unamelist = NULL;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002449
Masami Hiramatsufa282442009-12-08 17:03:23 -05002450 /* Get current event names */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302451 kfd = open_kprobe_events(true);
2452 if (kfd < 0)
2453 return kfd;
2454
2455 namelist = get_probe_trace_event_names(kfd, true);
2456 ufd = open_uprobe_events(true);
2457
2458 if (ufd >= 0)
2459 unamelist = get_probe_trace_event_names(ufd, true);
2460
2461 if (namelist == NULL && unamelist == NULL)
2462 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002463
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002464 strlist__for_each(ent, dellist) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002465 str = strdup(ent->s);
2466 if (str == NULL) {
2467 ret = -ENOMEM;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302468 goto error;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002469 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002470 pr_debug("Parsing: %s\n", str);
Masami Hiramatsufa282442009-12-08 17:03:23 -05002471 p = strchr(str, ':');
2472 if (p) {
2473 group = str;
2474 *p = '\0';
2475 event = p + 1;
2476 } else {
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002477 group = "*";
Masami Hiramatsufa282442009-12-08 17:03:23 -05002478 event = str;
2479 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302480
2481 ret = e_snprintf(buf, 128, "%s:%s", group, event);
2482 if (ret < 0) {
2483 pr_err("Failed to copy event.");
2484 free(str);
2485 goto error;
2486 }
2487
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002488 pr_debug("Group: %s, Event: %s\n", group, event);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302489
2490 if (namelist)
2491 ret = del_trace_probe_event(kfd, buf, namelist);
2492
2493 if (unamelist && ret != 0)
2494 ret = del_trace_probe_event(ufd, buf, unamelist);
2495
2496 if (ret != 0)
2497 pr_info("Info: Event \"%s\" does not exist.\n", buf);
2498
Masami Hiramatsufa282442009-12-08 17:03:23 -05002499 free(str);
2500 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302501
2502error:
2503 if (kfd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302504 strlist__delete(namelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302505 close(kfd);
2506 }
2507
2508 if (ufd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302509 strlist__delete(unamelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302510 close(ufd);
2511 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002512
2513 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002514}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302515
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002516/* TODO: don't use a global variable for filter ... */
2517static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002518
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002519/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002520 * If a symbol corresponds to a function with global binding and
2521 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002522 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002523static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002524 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002525{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002526 if ((sym->binding == STB_GLOBAL || sym->binding == STB_LOCAL) &&
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002527 strfilter__compare(available_func_filter, sym->name))
2528 return 0;
2529 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002530}
2531
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002532int show_available_funcs(const char *target, struct strfilter *_filter,
2533 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002534{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002535 struct map *map;
2536 int ret;
2537
2538 ret = init_symbol_maps(user);
2539 if (ret < 0)
2540 return ret;
2541
2542 /* Get a symbol map */
2543 if (user)
2544 map = dso__new_map(target);
2545 else
2546 map = kernel_get_module_map(target);
2547 if (!map) {
2548 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002549 return -EINVAL;
2550 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002551
2552 /* Load symbols with given filter */
2553 available_func_filter = _filter;
2554 if (map__load(map, filter_available_functions)) {
2555 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2556 goto end;
2557 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002558 if (!dso__sorted_by_name(map->dso, map->type))
2559 dso__sort_by_name(map->dso, map->type);
2560
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002561 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302562 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002563 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2564end:
2565 if (user) {
2566 dso__delete(map->dso);
2567 map__delete(map);
2568 }
2569 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302570
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002571 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302572}
2573