blob: ac15ff7800099f04f2ff28a428175800b058da82 [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;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090082 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040083 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 */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000261static struct debuginfo *open_debuginfo(const char *module, bool silent)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900262{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000263 const char *path = module;
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000264 struct debuginfo *ret;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900265
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000266 if (!module || !strchr(module, '/')) {
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900267 path = kernel_get_module_path(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900268 if (!path) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000269 if (!silent)
270 pr_err("Failed to find path of %s module.\n",
271 module ?: "kernel");
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900272 return NULL;
273 }
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900274 }
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000275 ret = debuginfo__new(path);
276 if (!ret && !silent) {
277 pr_warning("The %s file has no debug information.\n", path);
278 if (!module || !strtailcmp(path, ".ko"))
279 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
280 else
281 pr_warning("Rebuild with -g, ");
282 pr_warning("or install an appropriate debuginfo package.\n");
283 }
284 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400285}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300286
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000287
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000288static int get_text_start_address(const char *exec, unsigned long *address)
289{
290 Elf *elf;
291 GElf_Ehdr ehdr;
292 GElf_Shdr shdr;
293 int fd, ret = -ENOENT;
294
295 fd = open(exec, O_RDONLY);
296 if (fd < 0)
297 return -errno;
298
299 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
300 if (elf == NULL)
301 return -EINVAL;
302
303 if (gelf_getehdr(elf, &ehdr) == NULL)
304 goto out;
305
306 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
307 goto out;
308
309 *address = shdr.sh_addr - shdr.sh_offset;
310 ret = 0;
311out:
312 elf_end(elf);
313 return ret;
314}
315
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000316/*
317 * Convert trace point to probe point with debuginfo
318 */
319static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
320 struct perf_probe_point *pp,
321 bool is_kprobe)
322{
323 struct debuginfo *dinfo = NULL;
324 unsigned long stext = 0;
325 u64 addr = tp->address;
326 int ret = -ENOENT;
327
328 /* convert the address to dwarf address */
329 if (!is_kprobe) {
330 if (!addr) {
331 ret = -EINVAL;
332 goto error;
333 }
334 ret = get_text_start_address(tp->module, &stext);
335 if (ret < 0)
336 goto error;
337 addr += stext;
338 } else {
339 addr = kernel_get_symbol_address_by_name(tp->symbol, false);
340 if (addr == 0)
341 goto error;
342 addr += tp->offset;
343 }
344
345 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
346 tp->module ? : "kernel");
347
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000348 dinfo = open_debuginfo(tp->module, verbose == 0);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000349 if (dinfo) {
350 ret = debuginfo__find_probe_point(dinfo,
351 (unsigned long)addr, pp);
352 debuginfo__delete(dinfo);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000353 } else
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000354 ret = -ENOENT;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000355
356 if (ret > 0) {
357 pp->retprobe = tp->retprobe;
358 return 0;
359 }
360error:
361 pr_debug("Failed to find corresponding probes from debuginfo.\n");
362 return ret ? : -ENOENT;
363}
364
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000365static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
366 int ntevs, const char *exec)
367{
368 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000369 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000370
371 if (!exec)
372 return 0;
373
374 ret = get_text_start_address(exec, &stext);
375 if (ret < 0)
376 return ret;
377
378 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000379 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000380 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000381 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000382 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000383 ret = -ENOMEM;
384 break;
385 }
386 tevs[i].uprobes = true;
387 }
388
389 return ret;
390}
391
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900392static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
393 int ntevs, const char *module)
394{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900395 int i, ret = 0;
396 char *tmp;
397
398 if (!module)
399 return 0;
400
401 tmp = strrchr(module, '/');
402 if (tmp) {
403 /* This is a module path -- get the module name */
404 module = strdup(tmp + 1);
405 if (!module)
406 return -ENOMEM;
407 tmp = strchr(module, '.');
408 if (tmp)
409 *tmp = '\0';
410 tmp = (char *)module; /* For free() */
411 }
412
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900413 for (i = 0; i < ntevs; i++) {
414 tevs[i].point.module = strdup(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900415 if (!tevs[i].point.module) {
416 ret = -ENOMEM;
417 break;
418 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900419 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900420
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -0300421 free(tmp);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900422 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900423}
424
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000425/* Post processing the probe events */
426static int post_process_probe_trace_events(struct probe_trace_event *tevs,
427 int ntevs, const char *module,
428 bool uprobe)
429{
430 struct ref_reloc_sym *reloc_sym;
431 char *tmp;
432 int i;
433
434 if (uprobe)
435 return add_exec_to_probe_trace_events(tevs, ntevs, module);
436
437 /* Note that currently ref_reloc_sym based probe is not for drivers */
438 if (module)
439 return add_module_to_probe_trace_events(tevs, ntevs, module);
440
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000441 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000442 if (!reloc_sym) {
443 pr_warning("Relocated base symbol is not found!\n");
444 return -EINVAL;
445 }
446
447 for (i = 0; i < ntevs; i++) {
448 if (tevs[i].point.address) {
449 tmp = strdup(reloc_sym->name);
450 if (!tmp)
451 return -ENOMEM;
452 free(tevs[i].point.symbol);
453 tevs[i].point.symbol = tmp;
454 tevs[i].point.offset = tevs[i].point.address -
455 reloc_sym->unrelocated_addr;
456 }
457 }
458 return 0;
459}
460
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300461/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530462static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900463 struct probe_trace_event **tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +0530464 int max_tevs, const char *target)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300465{
466 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530467 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900468 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300469
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000470 dinfo = open_debuginfo(target, !need_dwarf);
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530471
Masami Hiramatsuff741782011-06-27 16:27:39 +0900472 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000473 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900474 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900475 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300476 return 0;
477 }
478
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000479 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900480 /* Searching trace events corresponding to a probe event */
481 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs, max_tevs);
482
483 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300484
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400485 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000486 pr_debug("Found %d probe_trace_events.\n", ntevs);
487 ret = post_process_probe_trace_events(*tevs, ntevs,
488 target, pev->uprobes);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000489 if (ret < 0) {
490 clear_probe_trace_events(*tevs, ntevs);
491 zfree(tevs);
492 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900493 return ret < 0 ? ret : ntevs;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400494 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300495
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400496 if (ntevs == 0) { /* No error but failed to find probe point. */
497 pr_warning("Probe point '%s' not found.\n",
498 synthesize_perf_probe_point(&pev->point));
499 return -ENOENT;
500 }
501 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400502 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
503 if (ntevs == -EBADF) {
504 pr_warning("Warning: No dwarf info found in the vmlinux - "
505 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
506 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900507 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400508 return 0;
509 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300510 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400511 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300512}
513
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900514/*
515 * Find a src file from a DWARF tag path. Prepend optional source path prefix
516 * and chop off leading directories that do not exist. Result is passed back as
517 * a newly allocated path on success.
518 * Return 0 if file was found and readable, -errno otherwise.
519 */
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900520static int get_real_path(const char *raw_path, const char *comp_dir,
521 char **new_path)
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900522{
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900523 const char *prefix = symbol_conf.source_prefix;
524
525 if (!prefix) {
526 if (raw_path[0] != '/' && comp_dir)
527 /* If not an absolute path, try to use comp_dir */
528 prefix = comp_dir;
529 else {
530 if (access(raw_path, R_OK) == 0) {
531 *new_path = strdup(raw_path);
532 return 0;
533 } else
534 return -errno;
535 }
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900536 }
537
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900538 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900539 if (!*new_path)
540 return -ENOMEM;
541
542 for (;;) {
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900543 sprintf(*new_path, "%s/%s", prefix, raw_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900544
545 if (access(*new_path, R_OK) == 0)
546 return 0;
547
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900548 if (!symbol_conf.source_prefix)
549 /* In case of searching comp_dir, don't retry */
550 return -errno;
551
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900552 switch (errno) {
553 case ENAMETOOLONG:
554 case ENOENT:
555 case EROFS:
556 case EFAULT:
557 raw_path = strchr(++raw_path, '/');
558 if (!raw_path) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300559 zfree(new_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900560 return -ENOENT;
561 }
562 continue;
563
564 default:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300565 zfree(new_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900566 return -errno;
567 }
568 }
569}
570
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300571#define LINEBUF_SIZE 256
572#define NR_ADDITIONAL_LINES 2
573
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100574static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300575{
576 char buf[LINEBUF_SIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100577 const char *color = show_num ? "" : PERF_COLOR_BLUE;
578 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300579
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100580 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300581 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
582 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100583 if (skip)
584 continue;
585 if (!prefix) {
586 prefix = show_num ? "%7d " : " ";
587 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300588 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100589 color_fprintf(stdout, color, "%s", buf);
590
591 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400592
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100593 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300594error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100595 if (ferror(fp)) {
Franck Bui-Huu32b2b6e2010-12-22 17:37:13 +0100596 pr_warning("File read error: %s\n", strerror(errno));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100597 return -1;
598 }
599 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300600}
601
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100602static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
603{
604 int rv = __show_one_line(fp, l, skip, show_num);
605 if (rv == 0) {
606 pr_warning("Source file is shorter than expected.\n");
607 rv = -1;
608 }
609 return rv;
610}
611
612#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
613#define show_one_line(f,l) _show_one_line(f,l,false,false)
614#define skip_one_line(f,l) _show_one_line(f,l,true,false)
615#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
616
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300617/*
618 * Show line-range always requires debuginfo to find source file and
619 * line number.
620 */
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000621static int __show_line_range(struct line_range *lr, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300622{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400623 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000624 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900625 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300626 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900627 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900628 char *tmp;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300629
630 /* Search a line range */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000631 dinfo = open_debuginfo(module, false);
632 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900633 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400634
Masami Hiramatsuff741782011-06-27 16:27:39 +0900635 ret = debuginfo__find_line_range(dinfo, lr);
636 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000637 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400638 pr_warning("Specified source line is not found.\n");
639 return -ENOENT;
640 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000641 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400642 return ret;
643 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300644
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900645 /* Convert source file path */
646 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900647 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900648 free(tmp); /* Free old path */
649 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000650 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900651 return ret;
652 }
653
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300654 setup_pager();
655
656 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900657 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300658 lr->start - lr->offset);
659 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100660 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300661
662 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400663 if (fp == NULL) {
664 pr_warning("Failed to open %s: %s\n", lr->path,
665 strerror(errno));
666 return -errno;
667 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300668 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100669 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100670 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100671 if (ret < 0)
672 goto end;
673 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300674
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000675 intlist__for_each(ln, lr->line_list) {
676 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100677 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100678 if (ret < 0)
679 goto end;
680 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100681 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400682 if (ret < 0)
683 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300684 }
685
686 if (lr->end == INT_MAX)
687 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100688 while (l <= lr->end) {
689 ret = show_one_line_or_eof(fp, l++ - lr->offset);
690 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100691 break;
692 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400693end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300694 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400695 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300696}
697
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000698int show_line_range(struct line_range *lr, const char *module)
699{
700 int ret;
701
702 ret = init_symbol_maps(false);
703 if (ret < 0)
704 return ret;
705 ret = __show_line_range(lr, module);
706 exit_symbol_maps();
707
708 return ret;
709}
710
Masami Hiramatsuff741782011-06-27 16:27:39 +0900711static int show_available_vars_at(struct debuginfo *dinfo,
712 struct perf_probe_event *pev,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900713 int max_vls, struct strfilter *_filter,
714 bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900715{
716 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900717 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900718 struct str_node *node;
719 struct variable_list *vls = NULL, *vl;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900720 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900721
722 buf = synthesize_perf_probe_point(&pev->point);
723 if (!buf)
724 return -EINVAL;
725 pr_debug("Searching variables at %s\n", buf);
726
Masami Hiramatsuff741782011-06-27 16:27:39 +0900727 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls,
728 max_vls, externs);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900729 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000730 if (ret == 0 || ret == -ENOENT) {
731 pr_err("Failed to find the address of %s\n", buf);
732 ret = -ENOENT;
733 } else
734 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900735 goto end;
736 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000737
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900738 /* Some variables are found */
739 fprintf(stdout, "Available variables at %s\n", buf);
740 for (i = 0; i < ret; i++) {
741 vl = &vls[i];
742 /*
743 * A probe point might be converted to
744 * several trace points.
745 */
746 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
747 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300748 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900749 nvars = 0;
750 if (vl->vars) {
751 strlist__for_each(node, vl->vars) {
752 var = strchr(node->s, '\t') + 1;
753 if (strfilter__compare(_filter, var)) {
754 fprintf(stdout, "\t\t%s\n", node->s);
755 nvars++;
756 }
757 }
758 strlist__delete(vl->vars);
759 }
760 if (nvars == 0)
761 fprintf(stdout, "\t\t(No matched variables)\n");
762 }
763 free(vls);
764end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900765 free(buf);
766 return ret;
767}
768
769/* Show available variables on given probe point */
770int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900771 int max_vls, const char *module,
772 struct strfilter *_filter, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900773{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900774 int i, ret = 0;
775 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900776
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000777 ret = init_symbol_maps(false);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900778 if (ret < 0)
779 return ret;
780
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000781 dinfo = open_debuginfo(module, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900782 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000783 ret = -ENOENT;
784 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900785 }
786
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900787 setup_pager();
788
Masami Hiramatsuff741782011-06-27 16:27:39 +0900789 for (i = 0; i < npevs && ret >= 0; i++)
790 ret = show_available_vars_at(dinfo, &pevs[i], max_vls, _filter,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900791 externs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900792
793 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000794out:
795 exit_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900796 return ret;
797}
798
Ingo Molnar89fe8082013-09-30 12:07:11 +0200799#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300800
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000801static int
802find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
803 struct perf_probe_point *pp __maybe_unused,
804 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300805{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000806 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300807}
808
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530809static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300810 struct probe_trace_event **tevs __maybe_unused,
Arnaldo Carvalho de Melo1d027ee2014-01-13 15:15:25 -0300811 int max_tevs __maybe_unused,
812 const char *target __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300813{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400814 if (perf_probe_event_need_dwarf(pev)) {
815 pr_warning("Debuginfo-analysis is not supported.\n");
816 return -ENOSYS;
817 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530818
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300819 return 0;
820}
821
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300822int show_line_range(struct line_range *lr __maybe_unused,
823 const char *module __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300824{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400825 pr_warning("Debuginfo-analysis is not supported.\n");
826 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300827}
828
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300829int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
830 int npevs __maybe_unused, int max_vls __maybe_unused,
831 const char *module __maybe_unused,
832 struct strfilter *filter __maybe_unused,
833 bool externs __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900834{
835 pr_warning("Debuginfo-analysis is not supported.\n");
836 return -ENOSYS;
837}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400838#endif
839
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000840void line_range__clear(struct line_range *lr)
841{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000842 free(lr->function);
843 free(lr->file);
844 free(lr->path);
845 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000846 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000847 memset(lr, 0, sizeof(*lr));
848}
849
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000850int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000851{
852 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000853 lr->line_list = intlist__new(NULL);
854 if (!lr->line_list)
855 return -ENOMEM;
856 else
857 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000858}
859
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100860static int parse_line_num(char **ptr, int *val, const char *what)
861{
862 const char *start = *ptr;
863
864 errno = 0;
865 *val = strtol(*ptr, ptr, 0);
866 if (errno || *ptr == start) {
867 semantic_error("'%s' is not a valid number.\n", what);
868 return -EINVAL;
869 }
870 return 0;
871}
872
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100873/*
874 * Stuff 'lr' according to the line range described by 'arg'.
875 * The line range syntax is described by:
876 *
877 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900878 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100879 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400880int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500881{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900882 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100883 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100884
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100885 if (!name)
886 return -ENOMEM;
887
888 lr->start = 0;
889 lr->end = INT_MAX;
890
891 range = strchr(name, ':');
892 if (range) {
893 *range++ = '\0';
894
895 err = parse_line_num(&range, &lr->start, "start line");
896 if (err)
897 goto err;
898
899 if (*range == '+' || *range == '-') {
900 const char c = *range++;
901
902 err = parse_line_num(&range, &lr->end, "end line");
903 if (err)
904 goto err;
905
906 if (c == '+') {
907 lr->end += lr->start;
908 /*
909 * Adjust the number of lines here.
910 * If the number of lines == 1, the
911 * the end of line should be equal to
912 * the start of line.
913 */
914 lr->end--;
915 }
916 }
917
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400918 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100919
920 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400921 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500922 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400923 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100924 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400925 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100926 if (*range != '\0') {
927 semantic_error("Tailing with invalid str '%s'.\n", range);
928 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400929 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400930 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400931
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900932 file = strchr(name, '@');
933 if (file) {
934 *file = '\0';
935 lr->file = strdup(++file);
936 if (lr->file == NULL) {
937 err = -ENOMEM;
938 goto err;
939 }
940 lr->function = name;
941 } else if (strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100942 lr->file = name;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500943 else
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100944 lr->function = name;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400945
946 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100947err:
948 free(name);
949 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500950}
951
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500952/* Check the name is good for event/group */
953static bool check_event_name(const char *name)
954{
955 if (!isalpha(*name) && *name != '_')
956 return false;
957 while (*++name != '\0') {
958 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
959 return false;
960 }
961 return true;
962}
963
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500964/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400965static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500966{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400967 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500968 char *ptr, *tmp;
969 char c, nc = 0;
970 /*
971 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500972 * perf probe [EVENT=]SRC[:LN|;PTN]
973 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500974 *
975 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500976 */
977
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500978 ptr = strpbrk(arg, ";=@+%");
979 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500980 *ptr = '\0';
981 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400982 if (strchr(arg, ':')) {
983 semantic_error("Group name is not supported yet.\n");
984 return -ENOTSUP;
985 }
986 if (!check_event_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500987 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400988 "follow C symbol-naming rule.\n", arg);
989 return -EINVAL;
990 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400991 pev->event = strdup(arg);
992 if (pev->event == NULL)
993 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400994 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500995 arg = tmp;
996 }
997
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500998 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500999 if (ptr) {
1000 nc = *ptr;
1001 *ptr++ = '\0';
1002 }
1003
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001004 tmp = strdup(arg);
1005 if (tmp == NULL)
1006 return -ENOMEM;
1007
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001008 /* Check arg is function or file and copy it */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001009 if (strchr(tmp, '.')) /* File */
1010 pp->file = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001011 else /* Function */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001012 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001013
1014 /* Parse other options */
1015 while (ptr) {
1016 arg = ptr;
1017 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001018 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001019 pp->lazy_line = strdup(arg);
1020 if (pp->lazy_line == NULL)
1021 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001022 break;
1023 }
1024 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001025 if (ptr) {
1026 nc = *ptr;
1027 *ptr++ = '\0';
1028 }
1029 switch (c) {
1030 case ':': /* Line number */
1031 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001032 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001033 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001034 " in line number.\n");
1035 return -EINVAL;
1036 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001037 break;
1038 case '+': /* Byte offset from a symbol */
1039 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001040 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001041 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001042 " in offset.\n");
1043 return -EINVAL;
1044 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001045 break;
1046 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001047 if (pp->file) {
1048 semantic_error("SRC@SRC is not allowed.\n");
1049 return -EINVAL;
1050 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001051 pp->file = strdup(arg);
1052 if (pp->file == NULL)
1053 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001054 break;
1055 case '%': /* Probe places */
1056 if (strcmp(arg, "return") == 0) {
1057 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001058 } else { /* Others not supported yet */
1059 semantic_error("%%%s is not supported.\n", arg);
1060 return -ENOTSUP;
1061 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001062 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001063 default: /* Buggy case */
1064 pr_err("This program has a bug at %s:%d.\n",
1065 __FILE__, __LINE__);
1066 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001067 break;
1068 }
1069 }
1070
1071 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001072 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001073 semantic_error("Lazy pattern can't be used with"
1074 " line number.\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->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001079 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001080 return -EINVAL;
1081 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001082
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001083 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001084 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001085 return -EINVAL;
1086 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001087
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001088 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001089 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001090 "lazy pattern.\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->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001095 semantic_error("Offset 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->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001100 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001101 return -EINVAL;
1102 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001103
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001104 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001105 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001106 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001107 return -EINVAL;
1108 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001109
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001110 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001111 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1112 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001113 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001114}
1115
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001116/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001117static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001118{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001119 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001120 struct perf_probe_arg_field **fieldp;
1121
1122 pr_debug("parsing arg: %s into ", str);
1123
Masami Hiramatsu48481932010-04-12 13:16:53 -04001124 tmp = strchr(str, '=');
1125 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001126 arg->name = strndup(str, tmp - str);
1127 if (arg->name == NULL)
1128 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001129 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001130 str = tmp + 1;
1131 }
1132
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001133 tmp = strchr(str, ':');
1134 if (tmp) { /* Type setting */
1135 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001136 arg->type = strdup(tmp + 1);
1137 if (arg->type == NULL)
1138 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001139 pr_debug("type:%s ", arg->type);
1140 }
1141
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001142 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001143 if (!is_c_varname(str) || !tmp) {
1144 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001145 arg->var = strdup(str);
1146 if (arg->var == NULL)
1147 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001148 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001149 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001150 }
1151
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001152 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001153 arg->var = strndup(str, tmp - str);
1154 if (arg->var == NULL)
1155 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001156 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001157 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001158 fieldp = &arg->field;
1159
1160 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001161 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1162 if (*fieldp == NULL)
1163 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001164 if (*tmp == '[') { /* Array */
1165 str = tmp;
1166 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001167 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001168 if (*tmp != ']' || tmp == str + 1) {
1169 semantic_error("Array index must be a"
1170 " number.\n");
1171 return -EINVAL;
1172 }
1173 tmp++;
1174 if (*tmp == '\0')
1175 tmp = NULL;
1176 } else { /* Structure */
1177 if (*tmp == '.') {
1178 str = tmp + 1;
1179 (*fieldp)->ref = false;
1180 } else if (tmp[1] == '>') {
1181 str = tmp + 2;
1182 (*fieldp)->ref = true;
1183 } else {
1184 semantic_error("Argument parse error: %s\n",
1185 str);
1186 return -EINVAL;
1187 }
1188 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001189 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001190 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001191 (*fieldp)->name = strndup(str, tmp - str);
1192 if ((*fieldp)->name == NULL)
1193 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001194 if (*str != '[')
1195 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001196 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1197 fieldp = &(*fieldp)->next;
1198 }
1199 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001200 (*fieldp)->name = strdup(str);
1201 if ((*fieldp)->name == NULL)
1202 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001203 if (*str != '[')
1204 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001205 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001206
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001207 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001208 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001209 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001210 if (arg->name == NULL)
1211 return -ENOMEM;
1212 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001213 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001214}
1215
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001216/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001217int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001218{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001219 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001220 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001221
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001222 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001223 if (!argv) {
1224 pr_debug("Failed to split arguments.\n");
1225 return -ENOMEM;
1226 }
1227 if (argc - 1 > MAX_PROBE_ARGS) {
1228 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1229 ret = -ERANGE;
1230 goto out;
1231 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001232 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001233 ret = parse_perf_probe_point(argv[0], pev);
1234 if (ret < 0)
1235 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001236
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001237 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001238 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001239 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1240 if (pev->args == NULL) {
1241 ret = -ENOMEM;
1242 goto out;
1243 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001244 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1245 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1246 if (ret >= 0 &&
1247 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001248 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001249 " kretprobe.\n");
1250 ret = -EINVAL;
1251 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001252 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001253out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001254 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001255
1256 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001257}
1258
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001259/* Return true if this perf_probe_event requires debuginfo */
1260bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001261{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001262 int i;
1263
1264 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1265 return true;
1266
1267 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -04001268 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001269 return true;
1270
1271 return false;
1272}
1273
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301274/* Parse probe_events event into struct probe_point */
1275static int parse_probe_trace_command(const char *cmd,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001276 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001277{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301278 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001279 char pr;
1280 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001281 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001282 int ret, i, argc;
1283 char **argv;
1284
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301285 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001286 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001287 if (!argv) {
1288 pr_debug("Failed to split arguments.\n");
1289 return -ENOMEM;
1290 }
1291 if (argc < 2) {
1292 semantic_error("Too few probe arguments.\n");
1293 ret = -ERANGE;
1294 goto out;
1295 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001296
1297 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001298 argv0_str = strdup(argv[0]);
1299 if (argv0_str == NULL) {
1300 ret = -ENOMEM;
1301 goto out;
1302 }
1303 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1304 fmt2_str = strtok_r(NULL, "/", &fmt);
1305 fmt3_str = strtok_r(NULL, " \t", &fmt);
1306 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1307 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001308 semantic_error("Failed to parse event name: %s\n", argv[0]);
1309 ret = -EINVAL;
1310 goto out;
1311 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001312 pr = fmt1_str[0];
1313 tev->group = strdup(fmt2_str);
1314 tev->event = strdup(fmt3_str);
1315 if (tev->group == NULL || tev->event == NULL) {
1316 ret = -ENOMEM;
1317 goto out;
1318 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001319 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001320
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001321 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001322
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001323 /* Scan module name(if there), function name and offset */
1324 p = strchr(argv[1], ':');
1325 if (p) {
1326 tp->module = strndup(argv[1], p - argv[1]);
1327 p++;
1328 } else
1329 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001330 fmt1_str = strtok_r(p, "+", &fmt);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001331 if (fmt1_str[0] == '0') /* only the address started with 0x */
1332 tp->address = strtoul(fmt1_str, NULL, 0);
1333 else {
1334 /* Only the symbol-based probe has offset */
1335 tp->symbol = strdup(fmt1_str);
1336 if (tp->symbol == NULL) {
1337 ret = -ENOMEM;
1338 goto out;
1339 }
1340 fmt2_str = strtok_r(NULL, "", &fmt);
1341 if (fmt2_str == NULL)
1342 tp->offset = 0;
1343 else
1344 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001345 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001346
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001347 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301348 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001349 if (tev->args == NULL) {
1350 ret = -ENOMEM;
1351 goto out;
1352 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001353 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001354 p = strchr(argv[i + 2], '=');
1355 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001356 *p++ = '\0';
1357 else
1358 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001359 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001360 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001361 tev->args[i].value = strdup(p);
1362 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1363 ret = -ENOMEM;
1364 goto out;
1365 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001366 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001367 ret = 0;
1368out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001369 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001370 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001371 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001372}
1373
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001374/* Compose only probe arg */
1375int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1376{
1377 struct perf_probe_arg_field *field = pa->field;
1378 int ret;
1379 char *tmp = buf;
1380
Masami Hiramatsu48481932010-04-12 13:16:53 -04001381 if (pa->name && pa->var)
1382 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1383 else
1384 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001385 if (ret <= 0)
1386 goto error;
1387 tmp += ret;
1388 len -= ret;
1389
1390 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001391 if (field->name[0] == '[')
1392 ret = e_snprintf(tmp, len, "%s", field->name);
1393 else
1394 ret = e_snprintf(tmp, len, "%s%s",
1395 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001396 if (ret <= 0)
1397 goto error;
1398 tmp += ret;
1399 len -= ret;
1400 field = field->next;
1401 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001402
1403 if (pa->type) {
1404 ret = e_snprintf(tmp, len, ":%s", pa->type);
1405 if (ret <= 0)
1406 goto error;
1407 tmp += ret;
1408 len -= ret;
1409 }
1410
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001411 return tmp - buf;
1412error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001413 pr_debug("Failed to synthesize perf probe argument: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001414 strerror(-ret));
1415 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001416}
1417
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001418/* Compose only probe point (not argument) */
1419static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001420{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001421 char *buf, *tmp;
1422 char offs[32] = "", line[32] = "", file[32] = "";
1423 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001424
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001425 buf = zalloc(MAX_CMDLEN);
1426 if (buf == NULL) {
1427 ret = -ENOMEM;
1428 goto error;
1429 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001430 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001431 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001432 if (ret <= 0)
1433 goto error;
1434 }
1435 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001436 ret = e_snprintf(line, 32, ":%d", pp->line);
1437 if (ret <= 0)
1438 goto error;
1439 }
1440 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001441 tmp = pp->file;
1442 len = strlen(tmp);
1443 if (len > 30) {
1444 tmp = strchr(pp->file + len - 30, '/');
1445 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1446 }
1447 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001448 if (ret <= 0)
1449 goto error;
1450 }
1451
1452 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001453 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1454 offs, pp->retprobe ? "%return" : "", line,
1455 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001456 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001457 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001458 if (ret <= 0)
1459 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001460
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001461 return buf;
1462error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001463 pr_debug("Failed to synthesize perf probe point: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001464 strerror(-ret));
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001465 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001466 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001467}
1468
1469#if 0
1470char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1471{
1472 char *buf;
1473 int i, len, ret;
1474
1475 buf = synthesize_perf_probe_point(&pev->point);
1476 if (!buf)
1477 return NULL;
1478
1479 len = strlen(buf);
1480 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001481 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001482 pev->args[i].name);
1483 if (ret <= 0) {
1484 free(buf);
1485 return NULL;
1486 }
1487 len += ret;
1488 }
1489
1490 return buf;
1491}
1492#endif
1493
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301494static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001495 char **buf, size_t *buflen,
1496 int depth)
1497{
1498 int ret;
1499 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301500 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001501 buflen, depth + 1);
1502 if (depth < 0)
1503 goto out;
1504 }
1505
1506 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1507 if (ret < 0)
1508 depth = ret;
1509 else {
1510 *buf += ret;
1511 *buflen -= ret;
1512 }
1513out:
1514 return depth;
1515
1516}
1517
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301518static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001519 char *buf, size_t buflen)
1520{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301521 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001522 int ret, depth = 0;
1523 char *tmp = buf;
1524
1525 /* Argument name or separator */
1526 if (arg->name)
1527 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1528 else
1529 ret = e_snprintf(buf, buflen, " ");
1530 if (ret < 0)
1531 return ret;
1532 buf += ret;
1533 buflen -= ret;
1534
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001535 /* Special case: @XXX */
1536 if (arg->value[0] == '@' && arg->ref)
1537 ref = ref->next;
1538
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001539 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001540 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301541 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001542 &buflen, 1);
1543 if (depth < 0)
1544 return depth;
1545 }
1546
1547 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001548 if (arg->value[0] == '@' && arg->ref)
1549 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1550 arg->ref->offset);
1551 else
1552 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001553 if (ret < 0)
1554 return ret;
1555 buf += ret;
1556 buflen -= ret;
1557
1558 /* Closing */
1559 while (depth--) {
1560 ret = e_snprintf(buf, buflen, ")");
1561 if (ret < 0)
1562 return ret;
1563 buf += ret;
1564 buflen -= ret;
1565 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001566 /* Print argument type */
1567 if (arg->type) {
1568 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1569 if (ret <= 0)
1570 return ret;
1571 buf += ret;
1572 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001573
1574 return buf - tmp;
1575}
1576
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301577char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001578{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301579 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001580 char *buf;
1581 int i, len, ret;
1582
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001583 buf = zalloc(MAX_CMDLEN);
1584 if (buf == NULL)
1585 return NULL;
1586
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001587 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1588 tev->group, tev->event);
1589 if (len <= 0)
1590 goto error;
1591
1592 /* Uprobes must have tp->address and tp->module */
1593 if (tev->uprobes && (!tp->address || !tp->module))
1594 goto error;
1595
1596 /* Use the tp->address for uprobes */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301597 if (tev->uprobes)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001598 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s:0x%lx",
1599 tp->module, tp->address);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301600 else
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001601 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s%s+%lu",
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301602 tp->module ?: "", tp->module ? ":" : "",
1603 tp->symbol, tp->offset);
1604
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001605 if (ret <= 0)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001606 goto error;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001607 len += ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001608
1609 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301610 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001611 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001612 if (ret <= 0)
1613 goto error;
1614 len += ret;
1615 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001616
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001617 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001618error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001619 free(buf);
1620 return NULL;
1621}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001622
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001623static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1624 struct perf_probe_point *pp,
1625 bool is_kprobe)
1626{
1627 struct symbol *sym = NULL;
1628 struct map *map;
1629 u64 addr;
1630 int ret = -ENOENT;
1631
1632 if (!is_kprobe) {
1633 map = dso__new_map(tp->module);
1634 if (!map)
1635 goto out;
1636 addr = tp->address;
1637 sym = map__find_symbol(map, addr, NULL);
1638 } else {
1639 addr = kernel_get_symbol_address_by_name(tp->symbol, true);
1640 if (addr) {
1641 addr += tp->offset;
1642 sym = __find_kernel_function(addr, &map);
1643 }
1644 }
1645 if (!sym)
1646 goto out;
1647
1648 pp->retprobe = tp->retprobe;
1649 pp->offset = addr - map->unmap_ip(map, sym->start);
1650 pp->function = strdup(sym->name);
1651 ret = pp->function ? 0 : -ENOMEM;
1652
1653out:
1654 if (map && !is_kprobe) {
1655 dso__delete(map->dso);
1656 map__delete(map);
1657 }
1658
1659 return ret;
1660}
1661
1662static int convert_to_perf_probe_point(struct probe_trace_point *tp,
1663 struct perf_probe_point *pp,
1664 bool is_kprobe)
1665{
1666 char buf[128];
1667 int ret;
1668
1669 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1670 if (!ret)
1671 return 0;
1672 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1673 if (!ret)
1674 return 0;
1675
1676 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1677
1678 if (tp->symbol) {
1679 pp->function = strdup(tp->symbol);
1680 pp->offset = tp->offset;
1681 } else if (!tp->module && !is_kprobe) {
1682 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
1683 if (ret < 0)
1684 return ret;
1685 pp->function = strdup(buf);
1686 pp->offset = 0;
1687 }
1688 if (pp->function == NULL)
1689 return -ENOMEM;
1690
1691 pp->retprobe = tp->retprobe;
1692
1693 return 0;
1694}
1695
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301696static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301697 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001698{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001699 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001700 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001701
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001702 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001703 pev->event = strdup(tev->event);
1704 pev->group = strdup(tev->group);
1705 if (pev->event == NULL || pev->group == NULL)
1706 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001707
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001708 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001709 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001710 if (ret < 0)
1711 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001712
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001713 /* Convert trace_arg to probe_arg */
1714 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001715 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1716 if (pev->args == NULL)
1717 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001718 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001719 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001720 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001721 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301722 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001723 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001724 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001725 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001726 if (pev->args[i].name == NULL && ret >= 0)
1727 ret = -ENOMEM;
1728 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001729
1730 if (ret < 0)
1731 clear_perf_probe_event(pev);
1732
1733 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001734}
1735
1736void clear_perf_probe_event(struct perf_probe_event *pev)
1737{
1738 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001739 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001740 int i;
1741
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001742 free(pev->event);
1743 free(pev->group);
1744 free(pp->file);
1745 free(pp->function);
1746 free(pp->lazy_line);
1747
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001748 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001749 free(pev->args[i].name);
1750 free(pev->args[i].var);
1751 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001752 field = pev->args[i].field;
1753 while (field) {
1754 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001755 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001756 free(field);
1757 field = next;
1758 }
1759 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001760 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001761 memset(pev, 0, sizeof(*pev));
1762}
1763
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301764static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001765{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301766 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001767 int i;
1768
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001769 free(tev->event);
1770 free(tev->group);
1771 free(tev->point.symbol);
1772 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001773 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001774 free(tev->args[i].name);
1775 free(tev->args[i].value);
1776 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001777 ref = tev->args[i].ref;
1778 while (ref) {
1779 next = ref->next;
1780 free(ref);
1781 ref = next;
1782 }
1783 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001784 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001785 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001786}
1787
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001788static void print_open_warning(int err, bool is_kprobe)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301789{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001790 char sbuf[128];
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301791
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001792 if (err == -ENOENT) {
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301793 const char *config;
1794
1795 if (!is_kprobe)
1796 config = "CONFIG_UPROBE_EVENTS";
1797 else
1798 config = "CONFIG_KPROBE_EVENTS";
1799
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001800 pr_warning("%cprobe_events file does not exist"
1801 " - please rebuild kernel with %s.\n",
1802 is_kprobe ? 'k' : 'u', config);
1803 } else if (err == -ENOTSUP)
1804 pr_warning("Debugfs is not mounted.\n");
1805 else
1806 pr_warning("Failed to open %cprobe_events: %s\n",
1807 is_kprobe ? 'k' : 'u',
1808 strerror_r(-err, sbuf, sizeof(sbuf)));
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301809}
1810
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001811static void print_both_open_warning(int kerr, int uerr)
1812{
1813 /* Both kprobes and uprobes are disabled, warn it. */
1814 if (kerr == -ENOTSUP && uerr == -ENOTSUP)
1815 pr_warning("Debugfs is not mounted.\n");
1816 else if (kerr == -ENOENT && uerr == -ENOENT)
1817 pr_warning("Please rebuild kernel with CONFIG_KPROBE_EVENTS "
1818 "or/and CONFIG_UPROBE_EVENTS.\n");
1819 else {
1820 char sbuf[128];
1821 pr_warning("Failed to open kprobe events: %s.\n",
1822 strerror_r(-kerr, sbuf, sizeof(sbuf)));
1823 pr_warning("Failed to open uprobe events: %s.\n",
1824 strerror_r(-uerr, sbuf, sizeof(sbuf)));
1825 }
1826}
1827
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001828static int open_probe_events(const char *trace_file, bool readwrite)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001829{
1830 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001831 const char *__debugfs;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001832 int ret;
1833
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001834 __debugfs = debugfs_find_mountpoint();
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001835 if (__debugfs == NULL)
1836 return -ENOTSUP;
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001837
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301838 ret = e_snprintf(buf, PATH_MAX, "%s/%s", __debugfs, trace_file);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001839 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001840 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001841 if (readwrite && !probe_event_dry_run)
1842 ret = open(buf, O_RDWR, O_APPEND);
1843 else
1844 ret = open(buf, O_RDONLY, 0);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001845
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301846 if (ret < 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001847 ret = -errno;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001848 }
1849 return ret;
1850}
1851
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301852static int open_kprobe_events(bool readwrite)
1853{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001854 return open_probe_events("tracing/kprobe_events", readwrite);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301855}
1856
1857static int open_uprobe_events(bool readwrite)
1858{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001859 return open_probe_events("tracing/uprobe_events", readwrite);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301860}
1861
1862/* Get raw string list of current kprobe_events or uprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301863static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001864{
1865 int ret, idx;
1866 FILE *fp;
1867 char buf[MAX_CMDLEN];
1868 char *p;
1869 struct strlist *sl;
1870
1871 sl = strlist__new(true, NULL);
1872
1873 fp = fdopen(dup(fd), "r");
1874 while (!feof(fp)) {
1875 p = fgets(buf, MAX_CMDLEN, fp);
1876 if (!p)
1877 break;
1878
1879 idx = strlen(p) - 1;
1880 if (p[idx] == '\n')
1881 p[idx] = '\0';
1882 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001883 if (ret < 0) {
1884 pr_debug("strlist__add failed: %s\n", strerror(-ret));
1885 strlist__delete(sl);
1886 return NULL;
1887 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001888 }
1889 fclose(fp);
1890
1891 return sl;
1892}
1893
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001894/* Show an event */
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001895static int show_perf_probe_event(struct perf_probe_event *pev,
1896 const char *module)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001897{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001898 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001899 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001900 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001901
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001902 /* Synthesize only event probe point */
1903 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001904 if (!place)
1905 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001906
1907 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001908 if (ret < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001909 return ret;
1910
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001911 printf(" %-20s (on %s", buf, place);
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001912 if (module)
1913 printf(" in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001914
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001915 if (pev->nargs > 0) {
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001916 printf(" with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001917 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001918 ret = synthesize_perf_probe_arg(&pev->args[i],
1919 buf, 128);
1920 if (ret < 0)
1921 break;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001922 printf(" %s", buf);
1923 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001924 }
1925 printf(")\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001926 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001927 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001928}
1929
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301930static int __show_perf_probe_events(int fd, bool is_kprobe)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001931{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301932 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301933 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001934 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001935 struct strlist *rawlist;
1936 struct str_node *ent;
1937
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001938 memset(&tev, 0, sizeof(tev));
1939 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05001940
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301941 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001942 if (!rawlist)
1943 return -ENOENT;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001944
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001945 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301946 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001947 if (ret >= 0) {
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301948 ret = convert_to_perf_probe_event(&tev, &pev,
1949 is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001950 if (ret >= 0)
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001951 ret = show_perf_probe_event(&pev,
1952 tev.point.module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001953 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001954 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301955 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001956 if (ret < 0)
1957 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001958 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001959 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001960
1961 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001962}
1963
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301964/* List up current perf-probe events */
1965int show_perf_probe_events(void)
1966{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001967 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301968
1969 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301970
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001971 ret = init_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301972 if (ret < 0)
1973 return ret;
1974
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001975 kp_fd = open_kprobe_events(false);
1976 if (kp_fd >= 0) {
1977 ret = __show_perf_probe_events(kp_fd, true);
1978 close(kp_fd);
1979 if (ret < 0)
1980 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301981 }
1982
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001983 up_fd = open_uprobe_events(false);
1984 if (kp_fd < 0 && up_fd < 0) {
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001985 print_both_open_warning(kp_fd, up_fd);
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001986 ret = kp_fd;
1987 goto out;
1988 }
1989
1990 if (up_fd >= 0) {
1991 ret = __show_perf_probe_events(up_fd, false);
1992 close(up_fd);
1993 }
1994out:
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001995 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301996 return ret;
1997}
1998
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001999/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302000static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002001{
Masami Hiramatsufa282442009-12-08 17:03:23 -05002002 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002003 struct strlist *sl, *rawlist;
2004 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302005 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002006 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002007
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002008 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302009 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002010 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002011 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302012 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002013 if (ret < 0)
2014 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002015 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002016 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
2017 tev.event);
2018 if (ret >= 0)
2019 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05002020 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002021 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302022 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002023 if (ret < 0)
2024 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002025 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002026 strlist__delete(rawlist);
2027
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002028 if (ret < 0) {
2029 strlist__delete(sl);
2030 return NULL;
2031 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002032 return sl;
2033}
2034
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302035static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002036{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02002037 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302038 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002039
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002040 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302041 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002042 return -EINVAL;
2043 }
2044
Masami Hiramatsufa282442009-12-08 17:03:23 -05002045 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002046 if (!probe_event_dry_run) {
2047 ret = write(fd, buf, strlen(buf));
2048 if (ret <= 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002049 pr_warning("Failed to write event: %s\n",
2050 strerror(errno));
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002051 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002052 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002053 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002054}
2055
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002056static int get_new_event_name(char *buf, size_t len, const char *base,
2057 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002058{
2059 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002060
2061 /* Try no suffix */
2062 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002063 if (ret < 0) {
2064 pr_debug("snprintf() failed: %s\n", strerror(-ret));
2065 return ret;
2066 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002067 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002068 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002069
Masami Hiramatsud761b082009-12-15 10:32:25 -05002070 if (!allow_suffix) {
2071 pr_warning("Error: event \"%s\" already exists. "
2072 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002073 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002074 }
2075
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002076 /* Try to add suffix */
2077 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002078 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002079 if (ret < 0) {
2080 pr_debug("snprintf() failed: %s\n", strerror(-ret));
2081 return ret;
2082 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002083 if (!strlist__has_entry(namelist, buf))
2084 break;
2085 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002086 if (i == MAX_EVENT_INDEX) {
2087 pr_warning("Too many events are on the same function.\n");
2088 ret = -ERANGE;
2089 }
2090
2091 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002092}
2093
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302094static int __add_probe_trace_events(struct perf_probe_event *pev,
2095 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002096 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002097{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002098 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302099 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002100 char buf[64];
2101 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002102 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002103
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302104 if (pev->uprobes)
2105 fd = open_uprobe_events(true);
2106 else
2107 fd = open_kprobe_events(true);
2108
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002109 if (fd < 0) {
2110 print_open_warning(fd, !pev->uprobes);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002111 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002112 }
2113
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002114 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302115 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002116 if (!namelist) {
2117 pr_debug("Failed to get current event list.\n");
2118 return -EIO;
2119 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002120
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002121 ret = 0;
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302122 printf("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002123 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002124 tev = &tevs[i];
2125 if (pev->event)
2126 event = pev->event;
2127 else
2128 if (pev->point.function)
2129 event = pev->point.function;
2130 else
2131 event = tev->point.symbol;
2132 if (pev->group)
2133 group = pev->group;
2134 else
2135 group = PERFPROBE_GROUP;
2136
2137 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002138 ret = get_new_event_name(buf, 64, event,
2139 namelist, allow_suffix);
2140 if (ret < 0)
2141 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002142 event = buf;
2143
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002144 tev->event = strdup(event);
2145 tev->group = strdup(group);
2146 if (tev->event == NULL || tev->group == NULL) {
2147 ret = -ENOMEM;
2148 break;
2149 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302150 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002151 if (ret < 0)
2152 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002153 /* Add added event name to namelist */
2154 strlist__add(namelist, event);
2155
2156 /* Trick here - save current event/group */
2157 event = pev->event;
2158 group = pev->group;
2159 pev->event = tev->event;
2160 pev->group = tev->group;
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002161 show_perf_probe_event(pev, tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002162 /* Trick here - restore current event/group */
2163 pev->event = (char *)event;
2164 pev->group = (char *)group;
2165
2166 /*
2167 * Probes after the first probe which comes from same
2168 * user input are always allowed to add suffix, because
2169 * there might be several addresses corresponding to
2170 * one code line.
2171 */
2172 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002173 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002174
2175 if (ret >= 0) {
2176 /* Show how to use the event. */
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302177 printf("\nYou can now use it in all perf tools, such as:\n\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002178 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
2179 tev->event);
2180 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05002181
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002182 strlist__delete(namelist);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002183 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002184 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002185}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002186
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002187static char *looking_function_name;
2188static int num_matched_functions;
2189
2190static int probe_function_filter(struct map *map __maybe_unused,
2191 struct symbol *sym)
2192{
2193 if ((sym->binding == STB_GLOBAL || sym->binding == STB_LOCAL) &&
2194 strcmp(looking_function_name, sym->name) == 0) {
2195 num_matched_functions++;
2196 return 0;
2197 }
2198 return 1;
2199}
2200
2201#define strdup_or_goto(str, label) \
2202 ({ char *__p = strdup(str); if (!__p) goto label; __p; })
2203
2204/*
2205 * Find probe function addresses from map.
2206 * Return an error or the number of found probe_trace_event
2207 */
2208static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
2209 struct probe_trace_event **tevs,
2210 int max_tevs, const char *target)
2211{
2212 struct map *map = NULL;
2213 struct kmap *kmap = NULL;
2214 struct ref_reloc_sym *reloc_sym = NULL;
2215 struct symbol *sym;
2216 struct rb_node *nd;
2217 struct probe_trace_event *tev;
2218 struct perf_probe_point *pp = &pev->point;
2219 struct probe_trace_point *tp;
2220 int ret, i;
2221
2222 /* Init maps of given executable or kernel */
2223 if (pev->uprobes)
2224 map = dso__new_map(target);
2225 else
2226 map = kernel_get_module_map(target);
2227 if (!map) {
2228 ret = -EINVAL;
2229 goto out;
2230 }
2231
2232 /*
2233 * Load matched symbols: Since the different local symbols may have
2234 * same name but different addresses, this lists all the symbols.
2235 */
2236 num_matched_functions = 0;
2237 looking_function_name = pp->function;
2238 ret = map__load(map, probe_function_filter);
2239 if (ret || num_matched_functions == 0) {
2240 pr_err("Failed to find symbol %s in %s\n", pp->function,
2241 target ? : "kernel");
2242 ret = -ENOENT;
2243 goto out;
2244 } else if (num_matched_functions > max_tevs) {
2245 pr_err("Too many functions matched in %s\n",
2246 target ? : "kernel");
2247 ret = -E2BIG;
2248 goto out;
2249 }
2250
2251 if (!pev->uprobes) {
2252 kmap = map__kmap(map);
2253 reloc_sym = kmap->ref_reloc_sym;
2254 if (!reloc_sym) {
2255 pr_warning("Relocated base symbol is not found!\n");
2256 ret = -EINVAL;
2257 goto out;
2258 }
2259 }
2260
2261 /* Setup result trace-probe-events */
2262 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2263 if (!*tevs) {
2264 ret = -ENOMEM;
2265 goto out;
2266 }
2267
2268 ret = 0;
2269 map__for_each_symbol(map, sym, nd) {
2270 tev = (*tevs) + ret;
2271 tp = &tev->point;
2272 if (ret == num_matched_functions) {
2273 pr_warning("Too many symbols are listed. Skip it.\n");
2274 break;
2275 }
2276 ret++;
2277
2278 if (pp->offset > sym->end - sym->start) {
2279 pr_warning("Offset %ld is bigger than the size of %s\n",
2280 pp->offset, sym->name);
2281 ret = -ENOENT;
2282 goto err_out;
2283 }
2284 /* Add one probe point */
2285 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
2286 if (reloc_sym) {
2287 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2288 tp->offset = tp->address - reloc_sym->addr;
2289 } else {
2290 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2291 tp->offset = pp->offset;
2292 }
2293 tp->retprobe = pp->retprobe;
2294 if (target)
2295 tev->point.module = strdup_or_goto(target, nomem_out);
2296 tev->uprobes = pev->uprobes;
2297 tev->nargs = pev->nargs;
2298 if (tev->nargs) {
2299 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2300 tev->nargs);
2301 if (tev->args == NULL)
2302 goto nomem_out;
2303 }
2304 for (i = 0; i < tev->nargs; i++) {
2305 if (pev->args[i].name)
2306 tev->args[i].name =
2307 strdup_or_goto(pev->args[i].name,
2308 nomem_out);
2309
2310 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2311 nomem_out);
2312 if (pev->args[i].type)
2313 tev->args[i].type =
2314 strdup_or_goto(pev->args[i].type,
2315 nomem_out);
2316 }
2317 }
2318
2319out:
2320 if (map && pev->uprobes) {
2321 /* Only when using uprobe(exec) map needs to be released */
2322 dso__delete(map->dso);
2323 map__delete(map);
2324 }
2325 return ret;
2326
2327nomem_out:
2328 ret = -ENOMEM;
2329err_out:
2330 clear_probe_trace_events(*tevs, num_matched_functions);
2331 zfree(tevs);
2332 goto out;
2333}
2334
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302335static int convert_to_probe_trace_events(struct perf_probe_event *pev,
2336 struct probe_trace_event **tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302337 int max_tevs, const char *target)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002338{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002339 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002340
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002341 if (pev->uprobes && !pev->group) {
2342 /* Replace group name if not given */
2343 ret = convert_exec_to_group(target, &pev->group);
2344 if (ret != 0) {
2345 pr_warning("Failed to make a group name.\n");
2346 return ret;
2347 }
2348 }
2349
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002350 /* Convert perf_probe_event with debuginfo */
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302351 ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, target);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002352 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002353 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002354
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002355 return find_probe_trace_events_from_map(pev, tevs, max_tevs, target);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002356}
2357
2358struct __event_package {
2359 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302360 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002361 int ntevs;
2362};
2363
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002364int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302365 int max_tevs, const char *target, bool force_add)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002366{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002367 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002368 struct __event_package *pkgs;
2369
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302370 ret = 0;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002371 pkgs = zalloc(sizeof(struct __event_package) * npevs);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302372
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002373 if (pkgs == NULL)
2374 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002375
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002376 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002377 if (ret < 0) {
2378 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002379 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002380 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002381
2382 /* Loop 1: convert all events */
2383 for (i = 0; i < npevs; i++) {
2384 pkgs[i].pev = &pevs[i];
2385 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302386 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09002387 &pkgs[i].tevs,
2388 max_tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302389 target);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002390 if (ret < 0)
2391 goto end;
2392 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002393 }
2394
2395 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03002396 for (i = 0; i < npevs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302397 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002398 pkgs[i].ntevs, force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03002399 if (ret < 0)
2400 break;
2401 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002402end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002403 /* Loop 3: cleanup and free trace events */
2404 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002405 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302406 clear_probe_trace_event(&pkgs[i].tevs[j]);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002407 zfree(&pkgs[i].tevs);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002408 }
2409 free(pkgs);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002410 exit_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002411
2412 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002413}
2414
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302415static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002416{
2417 char *p;
2418 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002419 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002420
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302421 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002422 ret = e_snprintf(buf, 128, "-:%s", ent->s);
2423 if (ret < 0)
2424 goto error;
2425
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002426 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002427 if (!p) {
2428 pr_debug("Internal error: %s should have ':' but not.\n",
2429 ent->s);
2430 ret = -ENOTSUP;
2431 goto error;
2432 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002433 *p = '/';
2434
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002435 pr_debug("Writing event: %s\n", buf);
2436 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002437 if (ret < 0) {
2438 ret = -errno;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002439 goto error;
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002440 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002441
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302442 printf("Removed event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002443 return 0;
2444error:
2445 pr_warning("Failed to delete event: %s\n", strerror(-ret));
2446 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002447}
2448
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302449static int del_trace_probe_event(int fd, const char *buf,
2450 struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002451{
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002452 struct str_node *ent, *n;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302453 int ret = -1;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002454
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002455 if (strpbrk(buf, "*?")) { /* Glob-exp */
2456 strlist__for_each_safe(ent, n, namelist)
2457 if (strglobmatch(ent->s, buf)) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302458 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002459 if (ret < 0)
2460 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002461 strlist__remove(namelist, ent);
2462 }
2463 } else {
2464 ent = strlist__find(namelist, buf);
2465 if (ent) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302466 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002467 if (ret >= 0)
2468 strlist__remove(namelist, ent);
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002469 }
2470 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002471
2472 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002473}
2474
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002475int del_perf_probe_events(struct strlist *dellist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002476{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302477 int ret = -1, ufd = -1, kfd = -1;
2478 char buf[128];
Masami Hiramatsufa282442009-12-08 17:03:23 -05002479 const char *group, *event;
2480 char *p, *str;
2481 struct str_node *ent;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302482 struct strlist *namelist = NULL, *unamelist = NULL;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002483
Masami Hiramatsufa282442009-12-08 17:03:23 -05002484 /* Get current event names */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302485 kfd = open_kprobe_events(true);
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002486 if (kfd >= 0)
2487 namelist = get_probe_trace_event_names(kfd, true);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302488
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302489 ufd = open_uprobe_events(true);
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002490 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302491 unamelist = get_probe_trace_event_names(ufd, true);
2492
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002493 if (kfd < 0 && ufd < 0) {
2494 print_both_open_warning(kfd, ufd);
2495 goto error;
2496 }
2497
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302498 if (namelist == NULL && unamelist == NULL)
2499 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002500
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002501 strlist__for_each(ent, dellist) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002502 str = strdup(ent->s);
2503 if (str == NULL) {
2504 ret = -ENOMEM;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302505 goto error;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002506 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002507 pr_debug("Parsing: %s\n", str);
Masami Hiramatsufa282442009-12-08 17:03:23 -05002508 p = strchr(str, ':');
2509 if (p) {
2510 group = str;
2511 *p = '\0';
2512 event = p + 1;
2513 } else {
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002514 group = "*";
Masami Hiramatsufa282442009-12-08 17:03:23 -05002515 event = str;
2516 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302517
2518 ret = e_snprintf(buf, 128, "%s:%s", group, event);
2519 if (ret < 0) {
2520 pr_err("Failed to copy event.");
2521 free(str);
2522 goto error;
2523 }
2524
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002525 pr_debug("Group: %s, Event: %s\n", group, event);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302526
2527 if (namelist)
2528 ret = del_trace_probe_event(kfd, buf, namelist);
2529
2530 if (unamelist && ret != 0)
2531 ret = del_trace_probe_event(ufd, buf, unamelist);
2532
2533 if (ret != 0)
2534 pr_info("Info: Event \"%s\" does not exist.\n", buf);
2535
Masami Hiramatsufa282442009-12-08 17:03:23 -05002536 free(str);
2537 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302538
2539error:
2540 if (kfd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302541 strlist__delete(namelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302542 close(kfd);
2543 }
2544
2545 if (ufd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302546 strlist__delete(unamelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302547 close(ufd);
2548 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002549
2550 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002551}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302552
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002553/* TODO: don't use a global variable for filter ... */
2554static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002555
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002556/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002557 * If a symbol corresponds to a function with global binding and
2558 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002559 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002560static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002561 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002562{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002563 if ((sym->binding == STB_GLOBAL || sym->binding == STB_LOCAL) &&
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002564 strfilter__compare(available_func_filter, sym->name))
2565 return 0;
2566 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002567}
2568
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002569int show_available_funcs(const char *target, struct strfilter *_filter,
2570 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002571{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002572 struct map *map;
2573 int ret;
2574
2575 ret = init_symbol_maps(user);
2576 if (ret < 0)
2577 return ret;
2578
2579 /* Get a symbol map */
2580 if (user)
2581 map = dso__new_map(target);
2582 else
2583 map = kernel_get_module_map(target);
2584 if (!map) {
2585 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002586 return -EINVAL;
2587 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002588
2589 /* Load symbols with given filter */
2590 available_func_filter = _filter;
2591 if (map__load(map, filter_available_functions)) {
2592 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2593 goto end;
2594 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002595 if (!dso__sorted_by_name(map->dso, map->type))
2596 dso__sort_by_name(map->dso, map->type);
2597
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002598 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302599 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002600 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2601end:
2602 if (user) {
2603 dso__delete(map->dso);
2604 map__delete(map);
2605 }
2606 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302607
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002608 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302609}
2610