blob: 85c8207c25cc333d6666c2fdb9bde5302fbf3b75 [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>
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -050044#include <api/fs/tracefs.h>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030045#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050046#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040047#include "probe-finder.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053048#include "session.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050049
50#define MAX_CMDLEN 256
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050051#define PERFPROBE_GROUP "probe"
52
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040053bool probe_event_dry_run; /* Dry run flag */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +090054struct probe_conf probe_conf;
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040055
Masami Hiramatsu146a1432010-04-12 13:17:42 -040056#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050057
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050058/* If there is no space to write, returns -E2BIG. */
59static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu84988452009-12-07 12:00:53 -050060 __attribute__((format(printf, 3, 4)));
61
62static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050063{
64 int ret;
65 va_list ap;
66 va_start(ap, format);
67 ret = vsnprintf(str, size, format, ap);
68 va_end(ap);
69 if (ret >= (int)size)
70 ret = -E2BIG;
71 return ret;
72}
73
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030074static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +000075static void clear_probe_trace_event(struct probe_trace_event *tev);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000076static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040077
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090078/* Initialize symbol maps and path of vmlinux/modules */
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000079static int init_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040080{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040081 int ret;
82
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040083 symbol_conf.sort_by_name = true;
Namhyung Kim680d9262015-03-06 16:31:27 +090084 symbol_conf.allow_aliases = true;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090085 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040086 if (ret < 0) {
87 pr_debug("Failed to init symbol map.\n");
88 goto out;
89 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040090
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000091 if (host_machine || user_only) /* already initialized */
92 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030093
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000094 if (symbol_conf.vmlinux_name)
95 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
96
97 host_machine = machine__new_host();
98 if (!host_machine) {
99 pr_debug("machine__new_host() failed.\n");
100 symbol__exit();
101 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900102 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400103out:
104 if (ret < 0)
105 pr_warning("Failed to init vmlinux path.\n");
106 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400107}
108
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000109static void exit_symbol_maps(void)
110{
111 if (host_machine) {
112 machine__delete(host_machine);
113 host_machine = NULL;
114 }
115 symbol__exit();
116}
117
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900118static struct symbol *__find_kernel_function_by_name(const char *name,
119 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400120{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000121 return machine__find_kernel_function_by_name(host_machine, name, mapp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900122 NULL);
123}
124
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000125static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
126{
127 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
128}
129
130static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
131{
132 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
133 struct kmap *kmap;
134
135 if (map__load(host_machine->vmlinux_maps[MAP__FUNCTION], NULL) < 0)
136 return NULL;
137
138 kmap = map__kmap(host_machine->vmlinux_maps[MAP__FUNCTION]);
Wang Nanba927322015-04-07 08:22:45 +0000139 if (!kmap)
140 return NULL;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000141 return kmap->ref_reloc_sym;
142}
143
144static u64 kernel_get_symbol_address_by_name(const char *name, bool reloc)
145{
146 struct ref_reloc_sym *reloc_sym;
147 struct symbol *sym;
148 struct map *map;
149
150 /* ref_reloc_sym is just a label. Need a special fix*/
151 reloc_sym = kernel_get_ref_reloc_sym();
152 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
153 return (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
154 else {
155 sym = __find_kernel_function_by_name(name, &map);
156 if (sym)
157 return map->unmap_ip(map, sym->start) -
He Kuangf56847c2015-02-27 18:52:53 +0800158 ((reloc) ? 0 : map->reloc);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000159 }
160 return 0;
161}
162
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900163static struct map *kernel_get_module_map(const char *module)
164{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000165 struct map_groups *grp = &host_machine->kmaps;
Arnaldo Carvalho de Melo1eee78a2015-05-22 12:58:53 -0300166 struct maps *maps = &grp->maps[MAP__FUNCTION];
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300167 struct map *pos;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900168
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900169 /* A file path -- this is an offline module */
170 if (module && strchr(module, '/'))
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300171 return machine__findnew_module_map(host_machine, 0, module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900172
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900173 if (!module)
174 module = "kernel";
175
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300176 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900177 if (strncmp(pos->dso->short_name + 1, module,
178 pos->dso->short_name_len - 2) == 0) {
179 return pos;
180 }
181 }
182 return NULL;
183}
184
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900185static struct map *get_target_map(const char *target, bool user)
186{
187 /* Init maps of given executable or kernel */
188 if (user)
189 return dso__new_map(target);
190 else
191 return kernel_get_module_map(target);
192}
193
194static void put_target_map(struct map *map, bool user)
195{
196 if (map && user) {
197 /* Only the user map needs to be released */
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -0300198 map__put(map);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900199 }
200}
201
202
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000203static int convert_exec_to_group(const char *exec, char **result)
204{
205 char *ptr1, *ptr2, *exec_copy;
206 char buf[64];
207 int ret;
208
209 exec_copy = strdup(exec);
210 if (!exec_copy)
211 return -ENOMEM;
212
213 ptr1 = basename(exec_copy);
214 if (!ptr1) {
215 ret = -EINVAL;
216 goto out;
217 }
218
219 ptr2 = strpbrk(ptr1, "-._");
220 if (ptr2)
221 *ptr2 = '\0';
222 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
223 if (ret < 0)
224 goto out;
225
226 *result = strdup(buf);
227 ret = *result ? 0 : -ENOMEM;
228
229out:
230 free(exec_copy);
231 return ret;
232}
233
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900234static void clear_perf_probe_point(struct perf_probe_point *pp)
235{
236 free(pp->file);
237 free(pp->function);
238 free(pp->lazy_line);
239}
240
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000241static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
242{
243 int i;
244
245 for (i = 0; i < ntevs; i++)
246 clear_probe_trace_event(tevs + i);
247}
248
Masami Hiramatsub0312202015-06-16 20:50:55 +0900249static bool kprobe_blacklist__listed(unsigned long address);
250static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
251{
252 /* Get the address of _etext for checking non-probable text symbol */
253 if (kernel_get_symbol_address_by_name("_etext", false) < address)
254 pr_warning("%s is out of .text, skip it.\n", symbol);
255 else if (kprobe_blacklist__listed(address))
256 pr_warning("%s is blacklisted function, skip it.\n", symbol);
257 else
258 return false;
259
260 return true;
261}
262
Ingo Molnar89fe8082013-09-30 12:07:11 +0200263#ifdef HAVE_DWARF_SUPPORT
Wang Nan60fb7742015-05-28 02:25:05 +0000264
265static int kernel_get_module_dso(const char *module, struct dso **pdso)
266{
267 struct dso *dso;
268 struct map *map;
269 const char *vmlinux_name;
270 int ret = 0;
271
272 if (module) {
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300273 list_for_each_entry(dso, &host_machine->dsos.head, node) {
274 if (!dso->kernel)
275 continue;
Wang Nan60fb7742015-05-28 02:25:05 +0000276 if (strncmp(dso->short_name + 1, module,
277 dso->short_name_len - 2) == 0)
278 goto found;
279 }
280 pr_debug("Failed to find module %s.\n", module);
281 return -ENOENT;
282 }
283
284 map = host_machine->vmlinux_maps[MAP__FUNCTION];
285 dso = map->dso;
286
287 vmlinux_name = symbol_conf.vmlinux_name;
288 dso->load_errno = 0;
289 if (vmlinux_name)
290 ret = dso__load_vmlinux(dso, map, vmlinux_name, false, NULL);
291 else
292 ret = dso__load_vmlinux_path(dso, map, NULL);
293found:
294 *pdso = dso;
295 return ret;
296}
297
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900298/*
299 * Some binaries like glibc have special symbols which are on the symbol
300 * table, but not in the debuginfo. If we can find the address of the
301 * symbol from map, we can translate the address back to the probe point.
302 */
303static int find_alternative_probe_point(struct debuginfo *dinfo,
304 struct perf_probe_point *pp,
305 struct perf_probe_point *result,
306 const char *target, bool uprobes)
307{
308 struct map *map = NULL;
309 struct symbol *sym;
310 u64 address = 0;
311 int ret = -ENOENT;
312
313 /* This can work only for function-name based one */
314 if (!pp->function || pp->file)
315 return -ENOTSUP;
316
317 map = get_target_map(target, uprobes);
318 if (!map)
319 return -EINVAL;
320
321 /* Find the address of given function */
322 map__for_each_symbol_by_name(map, pp->function, sym) {
Masami Hiramatsue6d7c912015-03-22 20:40:22 +0900323 if (uprobes)
324 address = sym->start;
325 else
326 address = map->unmap_ip(map, sym->start);
Namhyung Kime578da32015-03-06 16:31:29 +0900327 break;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900328 }
329 if (!address) {
330 ret = -ENOENT;
331 goto out;
332 }
Wang Nanf6c15622015-04-08 02:14:34 +0000333 pr_debug("Symbol %s address found : %" PRIx64 "\n",
334 pp->function, address);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900335
336 ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
337 result);
338 if (ret <= 0)
339 ret = (!ret) ? -ENOENT : ret;
340 else {
341 result->offset += pp->offset;
342 result->line += pp->line;
He Kuang9d7b45c2015-04-13 19:41:28 +0800343 result->retprobe = pp->retprobe;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900344 ret = 0;
345 }
346
347out:
348 put_target_map(map, uprobes);
349 return ret;
350
351}
352
353static int get_alternative_probe_event(struct debuginfo *dinfo,
354 struct perf_probe_event *pev,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900355 struct perf_probe_point *tmp)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900356{
357 int ret;
358
359 memcpy(tmp, &pev->point, sizeof(*tmp));
360 memset(&pev->point, 0, sizeof(pev->point));
361 ret = find_alternative_probe_point(dinfo, tmp, &pev->point,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900362 pev->target, pev->uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900363 if (ret < 0)
364 memcpy(&pev->point, tmp, sizeof(*tmp));
365
366 return ret;
367}
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000368
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900369static int get_alternative_line_range(struct debuginfo *dinfo,
370 struct line_range *lr,
371 const char *target, bool user)
372{
David Ahern6d4a4892015-03-11 10:36:20 -0400373 struct perf_probe_point pp = { .function = lr->function,
374 .file = lr->file,
375 .line = lr->start };
376 struct perf_probe_point result;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900377 int ret, len = 0;
378
David Ahern6d4a4892015-03-11 10:36:20 -0400379 memset(&result, 0, sizeof(result));
380
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900381 if (lr->end != INT_MAX)
382 len = lr->end - lr->start;
383 ret = find_alternative_probe_point(dinfo, &pp, &result,
384 target, user);
385 if (!ret) {
386 lr->function = result.function;
387 lr->file = result.file;
388 lr->start = result.line;
389 if (lr->end != INT_MAX)
390 lr->end = lr->start + len;
391 clear_perf_probe_point(&pp);
392 }
393 return ret;
394}
395
Masami Hiramatsuff741782011-06-27 16:27:39 +0900396/* Open new debuginfo of given module */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000397static struct debuginfo *open_debuginfo(const char *module, bool silent)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900398{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000399 const char *path = module;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900400 char reason[STRERR_BUFSIZE];
401 struct debuginfo *ret = NULL;
402 struct dso *dso = NULL;
403 int err;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900404
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000405 if (!module || !strchr(module, '/')) {
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900406 err = kernel_get_module_dso(module, &dso);
407 if (err < 0) {
408 if (!dso || dso->load_errno == 0) {
409 if (!strerror_r(-err, reason, STRERR_BUFSIZE))
410 strcpy(reason, "(unknown)");
411 } else
412 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000413 if (!silent)
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900414 pr_err("Failed to find the path for %s: %s\n",
415 module ?: "kernel", reason);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900416 return NULL;
417 }
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900418 path = dso->long_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900419 }
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000420 ret = debuginfo__new(path);
421 if (!ret && !silent) {
422 pr_warning("The %s file has no debug information.\n", path);
423 if (!module || !strtailcmp(path, ".ko"))
424 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
425 else
426 pr_warning("Rebuild with -g, ");
427 pr_warning("or install an appropriate debuginfo package.\n");
428 }
429 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400430}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300431
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000432
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000433static int get_text_start_address(const char *exec, unsigned long *address)
434{
435 Elf *elf;
436 GElf_Ehdr ehdr;
437 GElf_Shdr shdr;
438 int fd, ret = -ENOENT;
439
440 fd = open(exec, O_RDONLY);
441 if (fd < 0)
442 return -errno;
443
444 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
445 if (elf == NULL)
446 return -EINVAL;
447
448 if (gelf_getehdr(elf, &ehdr) == NULL)
449 goto out;
450
451 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
452 goto out;
453
454 *address = shdr.sh_addr - shdr.sh_offset;
455 ret = 0;
456out:
457 elf_end(elf);
458 return ret;
459}
460
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000461/*
462 * Convert trace point to probe point with debuginfo
463 */
464static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
465 struct perf_probe_point *pp,
466 bool is_kprobe)
467{
468 struct debuginfo *dinfo = NULL;
469 unsigned long stext = 0;
470 u64 addr = tp->address;
471 int ret = -ENOENT;
472
473 /* convert the address to dwarf address */
474 if (!is_kprobe) {
475 if (!addr) {
476 ret = -EINVAL;
477 goto error;
478 }
479 ret = get_text_start_address(tp->module, &stext);
480 if (ret < 0)
481 goto error;
482 addr += stext;
483 } else {
484 addr = kernel_get_symbol_address_by_name(tp->symbol, false);
485 if (addr == 0)
486 goto error;
487 addr += tp->offset;
488 }
489
490 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
491 tp->module ? : "kernel");
492
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000493 dinfo = open_debuginfo(tp->module, verbose == 0);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000494 if (dinfo) {
495 ret = debuginfo__find_probe_point(dinfo,
496 (unsigned long)addr, pp);
497 debuginfo__delete(dinfo);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000498 } else
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000499 ret = -ENOENT;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000500
501 if (ret > 0) {
502 pp->retprobe = tp->retprobe;
503 return 0;
504 }
505error:
506 pr_debug("Failed to find corresponding probes from debuginfo.\n");
507 return ret ? : -ENOENT;
508}
509
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000510static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
511 int ntevs, const char *exec)
512{
513 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000514 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000515
516 if (!exec)
517 return 0;
518
519 ret = get_text_start_address(exec, &stext);
520 if (ret < 0)
521 return ret;
522
523 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000524 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000525 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000526 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000527 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000528 ret = -ENOMEM;
529 break;
530 }
531 tevs[i].uprobes = true;
532 }
533
534 return ret;
535}
536
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900537static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
538 int ntevs, const char *module)
539{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900540 int i, ret = 0;
541 char *tmp;
542
543 if (!module)
544 return 0;
545
546 tmp = strrchr(module, '/');
547 if (tmp) {
548 /* This is a module path -- get the module name */
549 module = strdup(tmp + 1);
550 if (!module)
551 return -ENOMEM;
552 tmp = strchr(module, '.');
553 if (tmp)
554 *tmp = '\0';
555 tmp = (char *)module; /* For free() */
556 }
557
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900558 for (i = 0; i < ntevs; i++) {
559 tevs[i].point.module = strdup(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900560 if (!tevs[i].point.module) {
561 ret = -ENOMEM;
562 break;
563 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900564 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900565
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -0300566 free(tmp);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900567 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900568}
569
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000570/* Post processing the probe events */
571static int post_process_probe_trace_events(struct probe_trace_event *tevs,
572 int ntevs, const char *module,
573 bool uprobe)
574{
575 struct ref_reloc_sym *reloc_sym;
576 char *tmp;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900577 int i, skipped = 0;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000578
579 if (uprobe)
580 return add_exec_to_probe_trace_events(tevs, ntevs, module);
581
582 /* Note that currently ref_reloc_sym based probe is not for drivers */
583 if (module)
584 return add_module_to_probe_trace_events(tevs, ntevs, module);
585
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000586 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000587 if (!reloc_sym) {
588 pr_warning("Relocated base symbol is not found!\n");
589 return -EINVAL;
590 }
591
592 for (i = 0; i < ntevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +0900593 if (!tevs[i].point.address || tevs[i].point.retprobe)
594 continue;
595 /* If we found a wrong one, mark it by NULL symbol */
596 if (kprobe_warn_out_range(tevs[i].point.symbol,
597 tevs[i].point.address)) {
598 tmp = NULL;
599 skipped++;
600 } else {
601 tmp = strdup(reloc_sym->name);
602 if (!tmp)
603 return -ENOMEM;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000604 }
Masami Hiramatsub0312202015-06-16 20:50:55 +0900605 /* If we have no realname, use symbol for it */
606 if (!tevs[i].point.realname)
607 tevs[i].point.realname = tevs[i].point.symbol;
608 else
609 free(tevs[i].point.symbol);
610 tevs[i].point.symbol = tmp;
611 tevs[i].point.offset = tevs[i].point.address -
612 reloc_sym->unrelocated_addr;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000613 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900614 return skipped;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000615}
616
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300617/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530618static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900619 struct probe_trace_event **tevs)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300620{
621 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900622 struct perf_probe_point tmp;
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530623 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900624 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300625
Masami Hiramatsu44225522015-05-08 10:03:28 +0900626 dinfo = open_debuginfo(pev->target, !need_dwarf);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900627 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000628 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900629 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900630 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300631 return 0;
632 }
633
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000634 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900635 /* Searching trace events corresponding to a probe event */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900636 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900637
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900638 if (ntevs == 0) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900639 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900640 if (!ret) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900641 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900642 /*
643 * Write back to the original probe_event for
644 * setting appropriate (user given) event name
645 */
646 clear_perf_probe_point(&pev->point);
647 memcpy(&pev->point, &tmp, sizeof(tmp));
648 }
649 }
650
Masami Hiramatsuff741782011-06-27 16:27:39 +0900651 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300652
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400653 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000654 pr_debug("Found %d probe_trace_events.\n", ntevs);
655 ret = post_process_probe_trace_events(*tevs, ntevs,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900656 pev->target, pev->uprobes);
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900657 if (ret < 0 || ret == ntevs) {
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000658 clear_probe_trace_events(*tevs, ntevs);
659 zfree(tevs);
660 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900661 if (ret != ntevs)
662 return ret < 0 ? ret : ntevs;
663 ntevs = 0;
664 /* Fall through */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400665 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300666
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400667 if (ntevs == 0) { /* No error but failed to find probe point. */
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900668 pr_warning("Probe point '%s' not found.\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400669 synthesize_perf_probe_point(&pev->point));
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900670 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400671 }
672 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400673 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
674 if (ntevs == -EBADF) {
675 pr_warning("Warning: No dwarf info found in the vmlinux - "
676 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
677 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900678 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400679 return 0;
680 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300681 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400682 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300683}
684
685#define LINEBUF_SIZE 256
686#define NR_ADDITIONAL_LINES 2
687
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100688static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300689{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000690 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100691 const char *color = show_num ? "" : PERF_COLOR_BLUE;
692 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300693
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100694 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300695 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
696 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100697 if (skip)
698 continue;
699 if (!prefix) {
700 prefix = show_num ? "%7d " : " ";
701 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300702 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100703 color_fprintf(stdout, color, "%s", buf);
704
705 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400706
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100707 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300708error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100709 if (ferror(fp)) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000710 pr_warning("File read error: %s\n",
711 strerror_r(errno, sbuf, sizeof(sbuf)));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100712 return -1;
713 }
714 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300715}
716
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100717static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
718{
719 int rv = __show_one_line(fp, l, skip, show_num);
720 if (rv == 0) {
721 pr_warning("Source file is shorter than expected.\n");
722 rv = -1;
723 }
724 return rv;
725}
726
727#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
728#define show_one_line(f,l) _show_one_line(f,l,false,false)
729#define skip_one_line(f,l) _show_one_line(f,l,true,false)
730#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
731
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300732/*
733 * Show line-range always requires debuginfo to find source file and
734 * line number.
735 */
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900736static int __show_line_range(struct line_range *lr, const char *module,
737 bool user)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300738{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400739 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000740 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900741 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300742 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900743 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900744 char *tmp;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000745 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300746
747 /* Search a line range */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000748 dinfo = open_debuginfo(module, false);
749 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900750 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400751
Masami Hiramatsuff741782011-06-27 16:27:39 +0900752 ret = debuginfo__find_line_range(dinfo, lr);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900753 if (!ret) { /* Not found, retry with an alternative */
754 ret = get_alternative_line_range(dinfo, lr, module, user);
755 if (!ret)
756 ret = debuginfo__find_line_range(dinfo, lr);
757 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900758 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000759 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400760 pr_warning("Specified source line is not found.\n");
761 return -ENOENT;
762 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000763 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400764 return ret;
765 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300766
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900767 /* Convert source file path */
768 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900769 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
He Kuanga78604d2015-03-04 18:01:42 +0800770
771 /* Free old path when new path is assigned */
772 if (tmp != lr->path)
773 free(tmp);
774
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900775 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000776 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900777 return ret;
778 }
779
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300780 setup_pager();
781
782 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900783 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300784 lr->start - lr->offset);
785 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100786 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300787
788 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400789 if (fp == NULL) {
790 pr_warning("Failed to open %s: %s\n", lr->path,
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000791 strerror_r(errno, sbuf, sizeof(sbuf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400792 return -errno;
793 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300794 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100795 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100796 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100797 if (ret < 0)
798 goto end;
799 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300800
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000801 intlist__for_each(ln, lr->line_list) {
802 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100803 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100804 if (ret < 0)
805 goto end;
806 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100807 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400808 if (ret < 0)
809 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300810 }
811
812 if (lr->end == INT_MAX)
813 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100814 while (l <= lr->end) {
815 ret = show_one_line_or_eof(fp, l++ - lr->offset);
816 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100817 break;
818 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400819end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300820 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400821 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300822}
823
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000824int show_line_range(struct line_range *lr, const char *module, bool user)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000825{
826 int ret;
827
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000828 ret = init_symbol_maps(user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000829 if (ret < 0)
830 return ret;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900831 ret = __show_line_range(lr, module, user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000832 exit_symbol_maps();
833
834 return ret;
835}
836
Masami Hiramatsuff741782011-06-27 16:27:39 +0900837static int show_available_vars_at(struct debuginfo *dinfo,
838 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900839 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900840{
841 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900842 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900843 struct str_node *node;
844 struct variable_list *vls = NULL, *vl;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900845 struct perf_probe_point tmp;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900846 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900847
848 buf = synthesize_perf_probe_point(&pev->point);
849 if (!buf)
850 return -EINVAL;
851 pr_debug("Searching variables at %s\n", buf);
852
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900853 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900854 if (!ret) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900855 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900856 if (!ret) {
857 ret = debuginfo__find_available_vars_at(dinfo, pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900858 &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900859 /* Release the old probe_point */
860 clear_perf_probe_point(&tmp);
861 }
862 }
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900863 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000864 if (ret == 0 || ret == -ENOENT) {
865 pr_err("Failed to find the address of %s\n", buf);
866 ret = -ENOENT;
867 } else
868 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900869 goto end;
870 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000871
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900872 /* Some variables are found */
873 fprintf(stdout, "Available variables at %s\n", buf);
874 for (i = 0; i < ret; i++) {
875 vl = &vls[i];
876 /*
877 * A probe point might be converted to
878 * several trace points.
879 */
880 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
881 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300882 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900883 nvars = 0;
884 if (vl->vars) {
885 strlist__for_each(node, vl->vars) {
886 var = strchr(node->s, '\t') + 1;
887 if (strfilter__compare(_filter, var)) {
888 fprintf(stdout, "\t\t%s\n", node->s);
889 nvars++;
890 }
891 }
892 strlist__delete(vl->vars);
893 }
894 if (nvars == 0)
895 fprintf(stdout, "\t\t(No matched variables)\n");
896 }
897 free(vls);
898end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900899 free(buf);
900 return ret;
901}
902
903/* Show available variables on given probe point */
904int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900905 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900906{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900907 int i, ret = 0;
908 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900909
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000910 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900911 if (ret < 0)
912 return ret;
913
Masami Hiramatsu44225522015-05-08 10:03:28 +0900914 dinfo = open_debuginfo(pevs->target, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900915 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000916 ret = -ENOENT;
917 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900918 }
919
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900920 setup_pager();
921
Masami Hiramatsuff741782011-06-27 16:27:39 +0900922 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900923 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900924
925 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000926out:
927 exit_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900928 return ret;
929}
930
Ingo Molnar89fe8082013-09-30 12:07:11 +0200931#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300932
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000933static int
934find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
935 struct perf_probe_point *pp __maybe_unused,
936 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300937{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000938 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300939}
940
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530941static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900942 struct probe_trace_event **tevs __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300943{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400944 if (perf_probe_event_need_dwarf(pev)) {
945 pr_warning("Debuginfo-analysis is not supported.\n");
946 return -ENOSYS;
947 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530948
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300949 return 0;
950}
951
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300952int show_line_range(struct line_range *lr __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000953 const char *module __maybe_unused,
954 bool user __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300955{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400956 pr_warning("Debuginfo-analysis is not supported.\n");
957 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300958}
959
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300960int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900961 int npevs __maybe_unused,
962 struct strfilter *filter __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900963{
964 pr_warning("Debuginfo-analysis is not supported.\n");
965 return -ENOSYS;
966}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400967#endif
968
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000969void line_range__clear(struct line_range *lr)
970{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000971 free(lr->function);
972 free(lr->file);
973 free(lr->path);
974 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000975 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000976 memset(lr, 0, sizeof(*lr));
977}
978
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000979int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000980{
981 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000982 lr->line_list = intlist__new(NULL);
983 if (!lr->line_list)
984 return -ENOMEM;
985 else
986 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000987}
988
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100989static int parse_line_num(char **ptr, int *val, const char *what)
990{
991 const char *start = *ptr;
992
993 errno = 0;
994 *val = strtol(*ptr, ptr, 0);
995 if (errno || *ptr == start) {
996 semantic_error("'%s' is not a valid number.\n", what);
997 return -EINVAL;
998 }
999 return 0;
1000}
1001
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001002/* Check the name is good for event, group or function */
1003static bool is_c_func_name(const char *name)
1004{
1005 if (!isalpha(*name) && *name != '_')
1006 return false;
1007 while (*++name != '\0') {
1008 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1009 return false;
1010 }
1011 return true;
1012}
1013
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001014/*
1015 * Stuff 'lr' according to the line range described by 'arg'.
1016 * The line range syntax is described by:
1017 *
1018 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001019 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001020 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001021int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001022{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001023 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001024 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001025
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001026 if (!name)
1027 return -ENOMEM;
1028
1029 lr->start = 0;
1030 lr->end = INT_MAX;
1031
1032 range = strchr(name, ':');
1033 if (range) {
1034 *range++ = '\0';
1035
1036 err = parse_line_num(&range, &lr->start, "start line");
1037 if (err)
1038 goto err;
1039
1040 if (*range == '+' || *range == '-') {
1041 const char c = *range++;
1042
1043 err = parse_line_num(&range, &lr->end, "end line");
1044 if (err)
1045 goto err;
1046
1047 if (c == '+') {
1048 lr->end += lr->start;
1049 /*
1050 * Adjust the number of lines here.
1051 * If the number of lines == 1, the
1052 * the end of line should be equal to
1053 * the start of line.
1054 */
1055 lr->end--;
1056 }
1057 }
1058
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001059 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001060
1061 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001062 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001063 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001064 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001065 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001066 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001067 if (*range != '\0') {
1068 semantic_error("Tailing with invalid str '%s'.\n", range);
1069 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001070 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001071 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001072
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001073 file = strchr(name, '@');
1074 if (file) {
1075 *file = '\0';
1076 lr->file = strdup(++file);
1077 if (lr->file == NULL) {
1078 err = -ENOMEM;
1079 goto err;
1080 }
1081 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001082 } else if (strchr(name, '/') || strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001083 lr->file = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001084 else if (is_c_func_name(name))/* We reuse it for checking funcname */
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001085 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001086 else { /* Invalid name */
1087 semantic_error("'%s' is not a valid function name.\n", name);
1088 err = -EINVAL;
1089 goto err;
1090 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001091
1092 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001093err:
1094 free(name);
1095 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001096}
1097
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001098/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001099static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001100{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001101 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001102 char *ptr, *tmp;
1103 char c, nc = 0;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301104 bool file_spec = false;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001105 /*
1106 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001107 * perf probe [EVENT=]SRC[:LN|;PTN]
1108 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001109 *
1110 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001111 */
Wang Nane59d29e2015-04-28 08:46:09 +00001112 if (!arg)
1113 return -EINVAL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001114
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001115 ptr = strpbrk(arg, ";=@+%");
1116 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001117 *ptr = '\0';
1118 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001119 if (strchr(arg, ':')) {
1120 semantic_error("Group name is not supported yet.\n");
1121 return -ENOTSUP;
1122 }
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001123 if (!is_c_func_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -05001124 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001125 "follow C symbol-naming rule.\n", arg);
1126 return -EINVAL;
1127 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001128 pev->event = strdup(arg);
1129 if (pev->event == NULL)
1130 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001131 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001132 arg = tmp;
1133 }
1134
Naveen N. Rao3099c022015-04-28 17:35:34 +05301135 /*
1136 * Check arg is function or file name and copy it.
1137 *
1138 * We consider arg to be a file spec if and only if it satisfies
1139 * all of the below criteria::
1140 * - it does not include any of "+@%",
1141 * - it includes one of ":;", and
1142 * - it has a period '.' in the name.
1143 *
1144 * Otherwise, we consider arg to be a function specification.
1145 */
1146 if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) {
1147 /* This is a file spec if it includes a '.' before ; or : */
1148 if (memchr(arg, '.', ptr - arg))
1149 file_spec = true;
1150 }
1151
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001152 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001153 if (ptr) {
1154 nc = *ptr;
1155 *ptr++ = '\0';
1156 }
1157
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001158 tmp = strdup(arg);
1159 if (tmp == NULL)
1160 return -ENOMEM;
1161
Naveen N. Rao3099c022015-04-28 17:35:34 +05301162 if (file_spec)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001163 pp->file = tmp;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301164 else
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001165 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001166
1167 /* Parse other options */
1168 while (ptr) {
1169 arg = ptr;
1170 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001171 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001172 pp->lazy_line = strdup(arg);
1173 if (pp->lazy_line == NULL)
1174 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001175 break;
1176 }
1177 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001178 if (ptr) {
1179 nc = *ptr;
1180 *ptr++ = '\0';
1181 }
1182 switch (c) {
1183 case ':': /* Line number */
1184 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001185 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001186 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001187 " in line number.\n");
1188 return -EINVAL;
1189 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001190 break;
1191 case '+': /* Byte offset from a symbol */
1192 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001193 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001194 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001195 " in offset.\n");
1196 return -EINVAL;
1197 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001198 break;
1199 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001200 if (pp->file) {
1201 semantic_error("SRC@SRC is not allowed.\n");
1202 return -EINVAL;
1203 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001204 pp->file = strdup(arg);
1205 if (pp->file == NULL)
1206 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001207 break;
1208 case '%': /* Probe places */
1209 if (strcmp(arg, "return") == 0) {
1210 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001211 } else { /* Others not supported yet */
1212 semantic_error("%%%s is not supported.\n", arg);
1213 return -ENOTSUP;
1214 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001215 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001216 default: /* Buggy case */
1217 pr_err("This program has a bug at %s:%d.\n",
1218 __FILE__, __LINE__);
1219 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001220 break;
1221 }
1222 }
1223
1224 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001225 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001226 semantic_error("Lazy pattern can't be used with"
1227 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001228 return -EINVAL;
1229 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001230
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001231 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001232 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001233 return -EINVAL;
1234 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001235
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001236 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001237 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001238 return -EINVAL;
1239 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001240
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001241 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001242 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001243 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001244 return -EINVAL;
1245 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001246
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001247 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001248 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001249 return -EINVAL;
1250 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001251
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001252 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001253 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001254 return -EINVAL;
1255 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001256
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001257 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001258 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001259 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001260 return -EINVAL;
1261 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001262
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001263 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001264 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1265 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001266 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001267}
1268
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001269/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001270static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001271{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001272 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001273 struct perf_probe_arg_field **fieldp;
1274
1275 pr_debug("parsing arg: %s into ", str);
1276
Masami Hiramatsu48481932010-04-12 13:16:53 -04001277 tmp = strchr(str, '=');
1278 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001279 arg->name = strndup(str, tmp - str);
1280 if (arg->name == NULL)
1281 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001282 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001283 str = tmp + 1;
1284 }
1285
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001286 tmp = strchr(str, ':');
1287 if (tmp) { /* Type setting */
1288 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001289 arg->type = strdup(tmp + 1);
1290 if (arg->type == NULL)
1291 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001292 pr_debug("type:%s ", arg->type);
1293 }
1294
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001295 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001296 if (!is_c_varname(str) || !tmp) {
1297 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001298 arg->var = strdup(str);
1299 if (arg->var == NULL)
1300 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001301 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001302 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001303 }
1304
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001305 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001306 arg->var = strndup(str, tmp - str);
1307 if (arg->var == NULL)
1308 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001309 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001310 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001311 fieldp = &arg->field;
1312
1313 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001314 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1315 if (*fieldp == NULL)
1316 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001317 if (*tmp == '[') { /* Array */
1318 str = tmp;
1319 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001320 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001321 if (*tmp != ']' || tmp == str + 1) {
1322 semantic_error("Array index must be a"
1323 " number.\n");
1324 return -EINVAL;
1325 }
1326 tmp++;
1327 if (*tmp == '\0')
1328 tmp = NULL;
1329 } else { /* Structure */
1330 if (*tmp == '.') {
1331 str = tmp + 1;
1332 (*fieldp)->ref = false;
1333 } else if (tmp[1] == '>') {
1334 str = tmp + 2;
1335 (*fieldp)->ref = true;
1336 } else {
1337 semantic_error("Argument parse error: %s\n",
1338 str);
1339 return -EINVAL;
1340 }
1341 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001342 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001343 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001344 (*fieldp)->name = strndup(str, tmp - str);
1345 if ((*fieldp)->name == NULL)
1346 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001347 if (*str != '[')
1348 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001349 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1350 fieldp = &(*fieldp)->next;
1351 }
1352 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001353 (*fieldp)->name = strdup(str);
1354 if ((*fieldp)->name == NULL)
1355 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001356 if (*str != '[')
1357 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001358 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001359
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001360 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001361 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001362 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001363 if (arg->name == NULL)
1364 return -ENOMEM;
1365 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001366 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001367}
1368
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001369/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001370int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001371{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001372 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001373 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001374
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001375 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001376 if (!argv) {
1377 pr_debug("Failed to split arguments.\n");
1378 return -ENOMEM;
1379 }
1380 if (argc - 1 > MAX_PROBE_ARGS) {
1381 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1382 ret = -ERANGE;
1383 goto out;
1384 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001385 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001386 ret = parse_perf_probe_point(argv[0], pev);
1387 if (ret < 0)
1388 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001389
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001390 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001391 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001392 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1393 if (pev->args == NULL) {
1394 ret = -ENOMEM;
1395 goto out;
1396 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001397 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1398 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1399 if (ret >= 0 &&
1400 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001401 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001402 " kretprobe.\n");
1403 ret = -EINVAL;
1404 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001405 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001406out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001407 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001408
1409 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001410}
1411
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001412/* Return true if this perf_probe_event requires debuginfo */
1413bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001414{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001415 int i;
1416
1417 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1418 return true;
1419
1420 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -04001421 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001422 return true;
1423
1424 return false;
1425}
1426
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301427/* Parse probe_events event into struct probe_point */
1428static int parse_probe_trace_command(const char *cmd,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001429 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001430{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301431 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001432 char pr;
1433 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001434 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001435 int ret, i, argc;
1436 char **argv;
1437
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301438 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001439 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001440 if (!argv) {
1441 pr_debug("Failed to split arguments.\n");
1442 return -ENOMEM;
1443 }
1444 if (argc < 2) {
1445 semantic_error("Too few probe arguments.\n");
1446 ret = -ERANGE;
1447 goto out;
1448 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001449
1450 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001451 argv0_str = strdup(argv[0]);
1452 if (argv0_str == NULL) {
1453 ret = -ENOMEM;
1454 goto out;
1455 }
1456 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1457 fmt2_str = strtok_r(NULL, "/", &fmt);
1458 fmt3_str = strtok_r(NULL, " \t", &fmt);
1459 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1460 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001461 semantic_error("Failed to parse event name: %s\n", argv[0]);
1462 ret = -EINVAL;
1463 goto out;
1464 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001465 pr = fmt1_str[0];
1466 tev->group = strdup(fmt2_str);
1467 tev->event = strdup(fmt3_str);
1468 if (tev->group == NULL || tev->event == NULL) {
1469 ret = -ENOMEM;
1470 goto out;
1471 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001472 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001473
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001474 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001475
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001476 /* Scan module name(if there), function name and offset */
1477 p = strchr(argv[1], ':');
1478 if (p) {
1479 tp->module = strndup(argv[1], p - argv[1]);
1480 p++;
1481 } else
1482 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001483 fmt1_str = strtok_r(p, "+", &fmt);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001484 if (fmt1_str[0] == '0') /* only the address started with 0x */
1485 tp->address = strtoul(fmt1_str, NULL, 0);
1486 else {
1487 /* Only the symbol-based probe has offset */
1488 tp->symbol = strdup(fmt1_str);
1489 if (tp->symbol == NULL) {
1490 ret = -ENOMEM;
1491 goto out;
1492 }
1493 fmt2_str = strtok_r(NULL, "", &fmt);
1494 if (fmt2_str == NULL)
1495 tp->offset = 0;
1496 else
1497 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001498 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001499
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001500 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301501 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001502 if (tev->args == NULL) {
1503 ret = -ENOMEM;
1504 goto out;
1505 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001506 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001507 p = strchr(argv[i + 2], '=');
1508 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001509 *p++ = '\0';
1510 else
1511 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001512 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001513 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001514 tev->args[i].value = strdup(p);
1515 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1516 ret = -ENOMEM;
1517 goto out;
1518 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001519 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001520 ret = 0;
1521out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001522 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001523 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001524 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001525}
1526
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001527/* Compose only probe arg */
1528int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1529{
1530 struct perf_probe_arg_field *field = pa->field;
1531 int ret;
1532 char *tmp = buf;
1533
Masami Hiramatsu48481932010-04-12 13:16:53 -04001534 if (pa->name && pa->var)
1535 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1536 else
1537 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001538 if (ret <= 0)
1539 goto error;
1540 tmp += ret;
1541 len -= ret;
1542
1543 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001544 if (field->name[0] == '[')
1545 ret = e_snprintf(tmp, len, "%s", field->name);
1546 else
1547 ret = e_snprintf(tmp, len, "%s%s",
1548 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001549 if (ret <= 0)
1550 goto error;
1551 tmp += ret;
1552 len -= ret;
1553 field = field->next;
1554 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001555
1556 if (pa->type) {
1557 ret = e_snprintf(tmp, len, ":%s", pa->type);
1558 if (ret <= 0)
1559 goto error;
1560 tmp += ret;
1561 len -= ret;
1562 }
1563
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001564 return tmp - buf;
1565error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001566 pr_debug("Failed to synthesize perf probe argument: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001567 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001568}
1569
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001570/* Compose only probe point (not argument) */
1571static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001572{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001573 char *buf, *tmp;
1574 char offs[32] = "", line[32] = "", file[32] = "";
1575 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001576
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001577 buf = zalloc(MAX_CMDLEN);
1578 if (buf == NULL) {
1579 ret = -ENOMEM;
1580 goto error;
1581 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001582 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001583 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001584 if (ret <= 0)
1585 goto error;
1586 }
1587 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001588 ret = e_snprintf(line, 32, ":%d", pp->line);
1589 if (ret <= 0)
1590 goto error;
1591 }
1592 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001593 tmp = pp->file;
1594 len = strlen(tmp);
1595 if (len > 30) {
1596 tmp = strchr(pp->file + len - 30, '/');
1597 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1598 }
1599 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001600 if (ret <= 0)
1601 goto error;
1602 }
1603
1604 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001605 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1606 offs, pp->retprobe ? "%return" : "", line,
1607 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001608 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001609 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001610 if (ret <= 0)
1611 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001612
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001613 return buf;
1614error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001615 pr_debug("Failed to synthesize perf probe point: %d\n", ret);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001616 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001617 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001618}
1619
1620#if 0
1621char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1622{
1623 char *buf;
1624 int i, len, ret;
1625
1626 buf = synthesize_perf_probe_point(&pev->point);
1627 if (!buf)
1628 return NULL;
1629
1630 len = strlen(buf);
1631 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001632 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001633 pev->args[i].name);
1634 if (ret <= 0) {
1635 free(buf);
1636 return NULL;
1637 }
1638 len += ret;
1639 }
1640
1641 return buf;
1642}
1643#endif
1644
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301645static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001646 char **buf, size_t *buflen,
1647 int depth)
1648{
1649 int ret;
1650 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301651 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001652 buflen, depth + 1);
1653 if (depth < 0)
1654 goto out;
1655 }
1656
1657 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1658 if (ret < 0)
1659 depth = ret;
1660 else {
1661 *buf += ret;
1662 *buflen -= ret;
1663 }
1664out:
1665 return depth;
1666
1667}
1668
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301669static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001670 char *buf, size_t buflen)
1671{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301672 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001673 int ret, depth = 0;
1674 char *tmp = buf;
1675
1676 /* Argument name or separator */
1677 if (arg->name)
1678 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1679 else
1680 ret = e_snprintf(buf, buflen, " ");
1681 if (ret < 0)
1682 return ret;
1683 buf += ret;
1684 buflen -= ret;
1685
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001686 /* Special case: @XXX */
1687 if (arg->value[0] == '@' && arg->ref)
1688 ref = ref->next;
1689
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001690 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001691 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301692 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001693 &buflen, 1);
1694 if (depth < 0)
1695 return depth;
1696 }
1697
1698 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001699 if (arg->value[0] == '@' && arg->ref)
1700 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1701 arg->ref->offset);
1702 else
1703 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001704 if (ret < 0)
1705 return ret;
1706 buf += ret;
1707 buflen -= ret;
1708
1709 /* Closing */
1710 while (depth--) {
1711 ret = e_snprintf(buf, buflen, ")");
1712 if (ret < 0)
1713 return ret;
1714 buf += ret;
1715 buflen -= ret;
1716 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001717 /* Print argument type */
1718 if (arg->type) {
1719 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1720 if (ret <= 0)
1721 return ret;
1722 buf += ret;
1723 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001724
1725 return buf - tmp;
1726}
1727
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301728char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001729{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301730 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001731 char *buf;
1732 int i, len, ret;
1733
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001734 buf = zalloc(MAX_CMDLEN);
1735 if (buf == NULL)
1736 return NULL;
1737
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001738 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1739 tev->group, tev->event);
1740 if (len <= 0)
1741 goto error;
1742
1743 /* Uprobes must have tp->address and tp->module */
1744 if (tev->uprobes && (!tp->address || !tp->module))
1745 goto error;
1746
1747 /* Use the tp->address for uprobes */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301748 if (tev->uprobes)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001749 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s:0x%lx",
1750 tp->module, tp->address);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301751 else
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001752 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s%s+%lu",
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301753 tp->module ?: "", tp->module ? ":" : "",
1754 tp->symbol, tp->offset);
1755
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001756 if (ret <= 0)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001757 goto error;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001758 len += ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001759
1760 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301761 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001762 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001763 if (ret <= 0)
1764 goto error;
1765 len += ret;
1766 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001767
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001768 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001769error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001770 free(buf);
1771 return NULL;
1772}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001773
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001774static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1775 struct perf_probe_point *pp,
1776 bool is_kprobe)
1777{
1778 struct symbol *sym = NULL;
1779 struct map *map;
1780 u64 addr;
1781 int ret = -ENOENT;
1782
1783 if (!is_kprobe) {
1784 map = dso__new_map(tp->module);
1785 if (!map)
1786 goto out;
1787 addr = tp->address;
1788 sym = map__find_symbol(map, addr, NULL);
1789 } else {
1790 addr = kernel_get_symbol_address_by_name(tp->symbol, true);
1791 if (addr) {
1792 addr += tp->offset;
1793 sym = __find_kernel_function(addr, &map);
1794 }
1795 }
1796 if (!sym)
1797 goto out;
1798
1799 pp->retprobe = tp->retprobe;
1800 pp->offset = addr - map->unmap_ip(map, sym->start);
1801 pp->function = strdup(sym->name);
1802 ret = pp->function ? 0 : -ENOMEM;
1803
1804out:
1805 if (map && !is_kprobe) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001806 map__put(map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001807 }
1808
1809 return ret;
1810}
1811
1812static int convert_to_perf_probe_point(struct probe_trace_point *tp,
1813 struct perf_probe_point *pp,
1814 bool is_kprobe)
1815{
1816 char buf[128];
1817 int ret;
1818
1819 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1820 if (!ret)
1821 return 0;
1822 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1823 if (!ret)
1824 return 0;
1825
1826 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1827
1828 if (tp->symbol) {
1829 pp->function = strdup(tp->symbol);
1830 pp->offset = tp->offset;
1831 } else if (!tp->module && !is_kprobe) {
1832 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
1833 if (ret < 0)
1834 return ret;
1835 pp->function = strdup(buf);
1836 pp->offset = 0;
1837 }
1838 if (pp->function == NULL)
1839 return -ENOMEM;
1840
1841 pp->retprobe = tp->retprobe;
1842
1843 return 0;
1844}
1845
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301846static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301847 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001848{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001849 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001850 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001851
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001852 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001853 pev->event = strdup(tev->event);
1854 pev->group = strdup(tev->group);
1855 if (pev->event == NULL || pev->group == NULL)
1856 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001857
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001858 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001859 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001860 if (ret < 0)
1861 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001862
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001863 /* Convert trace_arg to probe_arg */
1864 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001865 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1866 if (pev->args == NULL)
1867 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001868 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001869 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001870 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001871 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301872 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001873 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001874 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001875 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001876 if (pev->args[i].name == NULL && ret >= 0)
1877 ret = -ENOMEM;
1878 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001879
1880 if (ret < 0)
1881 clear_perf_probe_event(pev);
1882
1883 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001884}
1885
1886void clear_perf_probe_event(struct perf_probe_event *pev)
1887{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001888 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001889 int i;
1890
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001891 free(pev->event);
1892 free(pev->group);
Masami Hiramatsu7afb3fa2015-04-01 19:25:39 +09001893 free(pev->target);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001894 clear_perf_probe_point(&pev->point);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001895
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001896 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001897 free(pev->args[i].name);
1898 free(pev->args[i].var);
1899 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001900 field = pev->args[i].field;
1901 while (field) {
1902 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001903 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001904 free(field);
1905 field = next;
1906 }
1907 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001908 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001909 memset(pev, 0, sizeof(*pev));
1910}
1911
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301912static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001913{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301914 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001915 int i;
1916
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001917 free(tev->event);
1918 free(tev->group);
1919 free(tev->point.symbol);
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001920 free(tev->point.realname);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001921 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001922 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001923 free(tev->args[i].name);
1924 free(tev->args[i].value);
1925 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001926 ref = tev->args[i].ref;
1927 while (ref) {
1928 next = ref->next;
1929 free(ref);
1930 ref = next;
1931 }
1932 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001933 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001934 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001935}
1936
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001937static void print_open_warning(int err, bool is_kprobe)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301938{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001939 char sbuf[STRERR_BUFSIZE];
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301940
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001941 if (err == -ENOENT) {
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301942 const char *config;
1943
1944 if (!is_kprobe)
1945 config = "CONFIG_UPROBE_EVENTS";
1946 else
1947 config = "CONFIG_KPROBE_EVENTS";
1948
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001949 pr_warning("%cprobe_events file does not exist"
1950 " - please rebuild kernel with %s.\n",
1951 is_kprobe ? 'k' : 'u', config);
1952 } else if (err == -ENOTSUP)
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001953 pr_warning("Tracefs or debugfs is not mounted.\n");
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001954 else
1955 pr_warning("Failed to open %cprobe_events: %s\n",
1956 is_kprobe ? 'k' : 'u',
1957 strerror_r(-err, sbuf, sizeof(sbuf)));
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301958}
1959
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001960static void print_both_open_warning(int kerr, int uerr)
1961{
1962 /* Both kprobes and uprobes are disabled, warn it. */
1963 if (kerr == -ENOTSUP && uerr == -ENOTSUP)
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001964 pr_warning("Tracefs or debugfs is not mounted.\n");
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001965 else if (kerr == -ENOENT && uerr == -ENOENT)
1966 pr_warning("Please rebuild kernel with CONFIG_KPROBE_EVENTS "
1967 "or/and CONFIG_UPROBE_EVENTS.\n");
1968 else {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001969 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001970 pr_warning("Failed to open kprobe events: %s.\n",
1971 strerror_r(-kerr, sbuf, sizeof(sbuf)));
1972 pr_warning("Failed to open uprobe events: %s.\n",
1973 strerror_r(-uerr, sbuf, sizeof(sbuf)));
1974 }
1975}
1976
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001977static int open_probe_events(const char *trace_file, bool readwrite)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001978{
1979 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001980 const char *__debugfs;
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001981 const char *tracing_dir = "";
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001982 int ret;
1983
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001984 __debugfs = tracefs_find_mountpoint();
1985 if (__debugfs == NULL) {
1986 tracing_dir = "tracing/";
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001987
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001988 __debugfs = debugfs_find_mountpoint();
1989 if (__debugfs == NULL)
1990 return -ENOTSUP;
1991 }
1992
1993 ret = e_snprintf(buf, PATH_MAX, "%s/%s%s",
1994 __debugfs, tracing_dir, trace_file);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001995 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001996 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001997 if (readwrite && !probe_event_dry_run)
Masami Hiramatsub8dc39842015-05-06 21:46:42 +09001998 ret = open(buf, O_RDWR | O_APPEND, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001999 else
2000 ret = open(buf, O_RDONLY, 0);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002001
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302002 if (ret < 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002003 ret = -errno;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002004 }
2005 return ret;
2006}
2007
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302008static int open_kprobe_events(bool readwrite)
2009{
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05002010 return open_probe_events("kprobe_events", readwrite);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302011}
2012
2013static int open_uprobe_events(bool readwrite)
2014{
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05002015 return open_probe_events("uprobe_events", readwrite);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302016}
2017
2018/* Get raw string list of current kprobe_events or uprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302019static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002020{
2021 int ret, idx;
2022 FILE *fp;
2023 char buf[MAX_CMDLEN];
2024 char *p;
2025 struct strlist *sl;
2026
2027 sl = strlist__new(true, NULL);
2028
2029 fp = fdopen(dup(fd), "r");
2030 while (!feof(fp)) {
2031 p = fgets(buf, MAX_CMDLEN, fp);
2032 if (!p)
2033 break;
2034
2035 idx = strlen(p) - 1;
2036 if (p[idx] == '\n')
2037 p[idx] = '\0';
2038 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002039 if (ret < 0) {
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002040 pr_debug("strlist__add failed (%d)\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002041 strlist__delete(sl);
2042 return NULL;
2043 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002044 }
2045 fclose(fp);
2046
2047 return sl;
2048}
2049
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002050struct kprobe_blacklist_node {
2051 struct list_head list;
2052 unsigned long start;
2053 unsigned long end;
2054 char *symbol;
2055};
2056
2057static void kprobe_blacklist__delete(struct list_head *blacklist)
2058{
2059 struct kprobe_blacklist_node *node;
2060
2061 while (!list_empty(blacklist)) {
2062 node = list_first_entry(blacklist,
2063 struct kprobe_blacklist_node, list);
2064 list_del(&node->list);
2065 free(node->symbol);
2066 free(node);
2067 }
2068}
2069
2070static int kprobe_blacklist__load(struct list_head *blacklist)
2071{
2072 struct kprobe_blacklist_node *node;
2073 const char *__debugfs = debugfs_find_mountpoint();
2074 char buf[PATH_MAX], *p;
2075 FILE *fp;
2076 int ret;
2077
2078 if (__debugfs == NULL)
2079 return -ENOTSUP;
2080
2081 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2082 if (ret < 0)
2083 return ret;
2084
2085 fp = fopen(buf, "r");
2086 if (!fp)
2087 return -errno;
2088
2089 ret = 0;
2090 while (fgets(buf, PATH_MAX, fp)) {
2091 node = zalloc(sizeof(*node));
2092 if (!node) {
2093 ret = -ENOMEM;
2094 break;
2095 }
2096 INIT_LIST_HEAD(&node->list);
2097 list_add_tail(&node->list, blacklist);
2098 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2099 ret = -EINVAL;
2100 break;
2101 }
2102 p = strchr(buf, '\t');
2103 if (p) {
2104 p++;
2105 if (p[strlen(p) - 1] == '\n')
2106 p[strlen(p) - 1] = '\0';
2107 } else
2108 p = (char *)"unknown";
2109 node->symbol = strdup(p);
2110 if (!node->symbol) {
2111 ret = -ENOMEM;
2112 break;
2113 }
2114 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2115 node->start, node->end, node->symbol);
2116 ret++;
2117 }
2118 if (ret < 0)
2119 kprobe_blacklist__delete(blacklist);
2120 fclose(fp);
2121
2122 return ret;
2123}
2124
2125static struct kprobe_blacklist_node *
2126kprobe_blacklist__find_by_address(struct list_head *blacklist,
2127 unsigned long address)
2128{
2129 struct kprobe_blacklist_node *node;
2130
2131 list_for_each_entry(node, blacklist, list) {
2132 if (node->start <= address && address <= node->end)
2133 return node;
2134 }
2135
2136 return NULL;
2137}
2138
Masami Hiramatsub0312202015-06-16 20:50:55 +09002139static LIST_HEAD(kprobe_blacklist);
2140
2141static void kprobe_blacklist__init(void)
2142{
2143 if (!list_empty(&kprobe_blacklist))
2144 return;
2145
2146 if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2147 pr_debug("No kprobe blacklist support, ignored\n");
2148}
2149
2150static void kprobe_blacklist__release(void)
2151{
2152 kprobe_blacklist__delete(&kprobe_blacklist);
2153}
2154
2155static bool kprobe_blacklist__listed(unsigned long address)
2156{
2157 return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2158}
2159
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002160static int perf_probe_event__sprintf(struct perf_probe_event *pev,
2161 const char *module,
2162 struct strbuf *result)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002163{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05002164 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002165 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002166 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002167
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002168 /* Synthesize only event probe point */
2169 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002170 if (!place)
2171 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002172
2173 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05002174 if (ret < 0)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002175 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002176
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002177 strbuf_addf(result, " %-20s (on %s", buf, place);
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002178 if (module)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002179 strbuf_addf(result, " in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002180
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002181 if (pev->nargs > 0) {
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002182 strbuf_addstr(result, " with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002183 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002184 ret = synthesize_perf_probe_arg(&pev->args[i],
2185 buf, 128);
2186 if (ret < 0)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002187 goto out;
2188 strbuf_addf(result, " %s", buf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002189 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002190 }
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002191 strbuf_addch(result, ')');
2192out:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002193 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002194 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002195}
2196
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002197/* Show an event */
2198static int show_perf_probe_event(struct perf_probe_event *pev,
2199 const char *module, bool use_stdout)
2200{
2201 struct strbuf buf = STRBUF_INIT;
2202 int ret;
2203
2204 ret = perf_probe_event__sprintf(pev, module, &buf);
2205 if (ret >= 0) {
2206 if (use_stdout)
2207 printf("%s\n", buf.buf);
2208 else
2209 pr_info("%s\n", buf.buf);
2210 }
2211 strbuf_release(&buf);
2212
2213 return ret;
2214}
2215
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002216static bool filter_probe_trace_event(struct probe_trace_event *tev,
2217 struct strfilter *filter)
2218{
2219 char tmp[128];
2220
2221 /* At first, check the event name itself */
2222 if (strfilter__compare(filter, tev->event))
2223 return true;
2224
2225 /* Next, check the combination of name and group */
2226 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2227 return false;
2228 return strfilter__compare(filter, tmp);
2229}
2230
2231static int __show_perf_probe_events(int fd, bool is_kprobe,
2232 struct strfilter *filter)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002233{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302234 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302235 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002236 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002237 struct strlist *rawlist;
2238 struct str_node *ent;
2239
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002240 memset(&tev, 0, sizeof(tev));
2241 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05002242
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302243 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002244 if (!rawlist)
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002245 return -ENOMEM;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002246
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002247 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302248 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002249 if (ret >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002250 if (!filter_probe_trace_event(&tev, filter))
2251 goto next;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302252 ret = convert_to_perf_probe_event(&tev, &pev,
2253 is_kprobe);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002254 if (ret < 0)
2255 goto next;
2256 ret = show_perf_probe_event(&pev, tev.point.module,
2257 true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002258 }
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002259next:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002260 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302261 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002262 if (ret < 0)
2263 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002264 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002265 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002266
2267 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002268}
2269
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302270/* List up current perf-probe events */
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002271int show_perf_probe_events(struct strfilter *filter)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302272{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002273 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302274
2275 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302276
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002277 ret = init_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302278 if (ret < 0)
2279 return ret;
2280
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002281 kp_fd = open_kprobe_events(false);
2282 if (kp_fd >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002283 ret = __show_perf_probe_events(kp_fd, true, filter);
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002284 close(kp_fd);
2285 if (ret < 0)
2286 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302287 }
2288
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002289 up_fd = open_uprobe_events(false);
2290 if (kp_fd < 0 && up_fd < 0) {
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002291 print_both_open_warning(kp_fd, up_fd);
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002292 ret = kp_fd;
2293 goto out;
2294 }
2295
2296 if (up_fd >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002297 ret = __show_perf_probe_events(up_fd, false, filter);
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002298 close(up_fd);
2299 }
2300out:
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002301 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302302 return ret;
2303}
2304
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002305/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302306static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002307{
Masami Hiramatsufa282442009-12-08 17:03:23 -05002308 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002309 struct strlist *sl, *rawlist;
2310 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302311 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002312 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002313
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002314 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302315 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002316 if (!rawlist)
2317 return NULL;
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002318 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002319 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302320 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002321 if (ret < 0)
2322 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002323 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002324 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
2325 tev.event);
2326 if (ret >= 0)
2327 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05002328 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002329 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302330 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002331 if (ret < 0)
2332 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002333 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002334 strlist__delete(rawlist);
2335
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002336 if (ret < 0) {
2337 strlist__delete(sl);
2338 return NULL;
2339 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002340 return sl;
2341}
2342
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302343static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002344{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02002345 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302346 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002347 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002348
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002349 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302350 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002351 return -EINVAL;
2352 }
2353
Masami Hiramatsufa282442009-12-08 17:03:23 -05002354 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002355 if (!probe_event_dry_run) {
2356 ret = write(fd, buf, strlen(buf));
Namhyung Kim7949ba12015-01-10 19:33:48 +09002357 if (ret <= 0) {
2358 ret = -errno;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002359 pr_warning("Failed to write event: %s\n",
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002360 strerror_r(errno, sbuf, sizeof(sbuf)));
Namhyung Kim7949ba12015-01-10 19:33:48 +09002361 }
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002362 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002363 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002364 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002365}
2366
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002367static int get_new_event_name(char *buf, size_t len, const char *base,
2368 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002369{
2370 int i, ret;
Masami Hiramatsu35a23ff92015-06-12 14:08:20 +09002371 char *p;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002372
Naveen N. Rao3099c022015-04-28 17:35:34 +05302373 if (*base == '.')
2374 base++;
2375
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002376 /* Try no suffix */
2377 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002378 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002379 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002380 return ret;
2381 }
Masami Hiramatsu35a23ff92015-06-12 14:08:20 +09002382 /* Cut off the postfixes (e.g. .const, .isra)*/
2383 p = strchr(buf, '.');
2384 if (p && p != buf)
2385 *p = '\0';
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002386 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002387 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002388
Masami Hiramatsud761b082009-12-15 10:32:25 -05002389 if (!allow_suffix) {
2390 pr_warning("Error: event \"%s\" already exists. "
2391 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002392 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002393 }
2394
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002395 /* Try to add suffix */
2396 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002397 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002398 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002399 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002400 return ret;
2401 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002402 if (!strlist__has_entry(namelist, buf))
2403 break;
2404 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002405 if (i == MAX_EVENT_INDEX) {
2406 pr_warning("Too many events are on the same function.\n");
2407 ret = -ERANGE;
2408 }
2409
2410 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002411}
2412
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002413/* Warn if the current kernel's uprobe implementation is old */
2414static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2415{
2416 int i;
2417 char *buf = synthesize_probe_trace_command(tev);
2418
2419 /* Old uprobe event doesn't support memory dereference */
2420 if (!tev->uprobes || tev->nargs == 0 || !buf)
2421 goto out;
2422
2423 for (i = 0; i < tev->nargs; i++)
2424 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2425 pr_warning("Please upgrade your kernel to at least "
2426 "3.14 to have access to feature %s\n",
2427 tev->args[i].value);
2428 break;
2429 }
2430out:
2431 free(buf);
2432}
2433
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302434static int __add_probe_trace_events(struct perf_probe_event *pev,
2435 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002436 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002437{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002438 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302439 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002440 char buf[64];
2441 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002442 struct strlist *namelist;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002443 bool safename;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002444
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302445 if (pev->uprobes)
2446 fd = open_uprobe_events(true);
2447 else
2448 fd = open_kprobe_events(true);
2449
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002450 if (fd < 0) {
2451 print_open_warning(fd, !pev->uprobes);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002452 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002453 }
2454
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002455 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302456 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002457 if (!namelist) {
2458 pr_debug("Failed to get current event list.\n");
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002459 ret = -ENOMEM;
2460 goto close_out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002461 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002462
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002463 safename = (pev->point.function && !strisglob(pev->point.function));
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002464 ret = 0;
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002465 pr_info("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002466 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002467 tev = &tevs[i];
Masami Hiramatsub0312202015-06-16 20:50:55 +09002468 /* Skip if the symbol is out of .text or blacklisted */
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +09002469 if (!tev->point.symbol)
2470 continue;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002471
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002472 if (pev->event)
2473 event = pev->event;
2474 else
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002475 if (safename)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002476 event = pev->point.function;
2477 else
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002478 event = tev->point.realname;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002479 if (pev->group)
2480 group = pev->group;
2481 else
2482 group = PERFPROBE_GROUP;
2483
2484 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002485 ret = get_new_event_name(buf, 64, event,
2486 namelist, allow_suffix);
2487 if (ret < 0)
2488 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002489 event = buf;
2490
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002491 tev->event = strdup(event);
2492 tev->group = strdup(group);
2493 if (tev->event == NULL || tev->group == NULL) {
2494 ret = -ENOMEM;
2495 break;
2496 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302497 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002498 if (ret < 0)
2499 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002500 /* Add added event name to namelist */
2501 strlist__add(namelist, event);
2502
2503 /* Trick here - save current event/group */
2504 event = pev->event;
2505 group = pev->group;
2506 pev->event = tev->event;
2507 pev->group = tev->group;
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002508 show_perf_probe_event(pev, tev->point.module, false);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002509 /* Trick here - restore current event/group */
2510 pev->event = (char *)event;
2511 pev->group = (char *)group;
2512
2513 /*
2514 * Probes after the first probe which comes from same
2515 * user input are always allowed to add suffix, because
2516 * there might be several addresses corresponding to
2517 * one code line.
2518 */
2519 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002520 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002521 if (ret == -EINVAL && pev->uprobes)
2522 warn_uprobe_event_compat(tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002523
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002524 /* Note that it is possible to skip all events because of blacklist */
2525 if (ret >= 0 && tev->event) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002526 /* Show how to use the event. */
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002527 pr_info("\nYou can now use it in all perf tools, such as:\n\n");
2528 pr_info("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002529 tev->event);
2530 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05002531
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002532 strlist__delete(namelist);
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002533close_out:
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002534 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002535 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002536}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002537
Wang Nan6bb536c2015-05-29 09:45:47 +00002538static int find_probe_functions(struct map *map, char *name,
2539 struct symbol **syms)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002540{
Namhyung Kim564c62a2015-01-14 20:18:07 +09002541 int found = 0;
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002542 struct symbol *sym;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002543 struct rb_node *tmp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002544
Wang Nan75e4a2a2015-05-15 12:14:44 +00002545 if (map__load(map, NULL) < 0)
2546 return 0;
2547
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002548 map__for_each_symbol(map, sym, tmp) {
Wang Nan6bb536c2015-05-29 09:45:47 +00002549 if (strglobmatch(sym->name, name)) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002550 found++;
Wang Nan6bb536c2015-05-29 09:45:47 +00002551 if (syms && found < probe_conf.max_probes)
2552 syms[found - 1] = sym;
2553 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002554 }
Namhyung Kim564c62a2015-01-14 20:18:07 +09002555
2556 return found;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002557}
2558
2559#define strdup_or_goto(str, label) \
2560 ({ char *__p = strdup(str); if (!__p) goto label; __p; })
2561
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302562void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2563 struct probe_trace_event *tev __maybe_unused,
2564 struct map *map __maybe_unused) { }
2565
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002566/*
2567 * Find probe function addresses from map.
2568 * Return an error or the number of found probe_trace_event
2569 */
2570static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002571 struct probe_trace_event **tevs)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002572{
2573 struct map *map = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002574 struct ref_reloc_sym *reloc_sym = NULL;
2575 struct symbol *sym;
Wang Nan6bb536c2015-05-29 09:45:47 +00002576 struct symbol **syms = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002577 struct probe_trace_event *tev;
2578 struct perf_probe_point *pp = &pev->point;
2579 struct probe_trace_point *tp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002580 int num_matched_functions;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002581 int ret, i, j, skipped = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002582
Masami Hiramatsu44225522015-05-08 10:03:28 +09002583 map = get_target_map(pev->target, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002584 if (!map) {
2585 ret = -EINVAL;
2586 goto out;
2587 }
2588
Wang Nan6bb536c2015-05-29 09:45:47 +00002589 syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2590 if (!syms) {
2591 ret = -ENOMEM;
2592 goto out;
2593 }
2594
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002595 /*
2596 * Load matched symbols: Since the different local symbols may have
2597 * same name but different addresses, this lists all the symbols.
2598 */
Wang Nan6bb536c2015-05-29 09:45:47 +00002599 num_matched_functions = find_probe_functions(map, pp->function, syms);
Namhyung Kim564c62a2015-01-14 20:18:07 +09002600 if (num_matched_functions == 0) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002601 pr_err("Failed to find symbol %s in %s\n", pp->function,
Masami Hiramatsu44225522015-05-08 10:03:28 +09002602 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002603 ret = -ENOENT;
2604 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002605 } else if (num_matched_functions > probe_conf.max_probes) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002606 pr_err("Too many functions matched in %s\n",
Masami Hiramatsu44225522015-05-08 10:03:28 +09002607 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002608 ret = -E2BIG;
2609 goto out;
2610 }
2611
Namhyung Kim25dd9172015-01-14 20:18:08 +09002612 if (!pev->uprobes && !pp->retprobe) {
He Kuang0560a0c2015-03-20 09:56:56 +08002613 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002614 if (!reloc_sym) {
2615 pr_warning("Relocated base symbol is not found!\n");
2616 ret = -EINVAL;
2617 goto out;
2618 }
2619 }
2620
2621 /* Setup result trace-probe-events */
2622 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2623 if (!*tevs) {
2624 ret = -ENOMEM;
2625 goto out;
2626 }
2627
2628 ret = 0;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002629
Wang Nan6bb536c2015-05-29 09:45:47 +00002630 for (j = 0; j < num_matched_functions; j++) {
2631 sym = syms[j];
2632
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002633 tev = (*tevs) + ret;
2634 tp = &tev->point;
2635 if (ret == num_matched_functions) {
2636 pr_warning("Too many symbols are listed. Skip it.\n");
2637 break;
2638 }
2639 ret++;
2640
2641 if (pp->offset > sym->end - sym->start) {
2642 pr_warning("Offset %ld is bigger than the size of %s\n",
2643 pp->offset, sym->name);
2644 ret = -ENOENT;
2645 goto err_out;
2646 }
2647 /* Add one probe point */
2648 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002649 /* If we found a wrong one, mark it by NULL symbol */
2650 if (!pev->uprobes &&
2651 kprobe_warn_out_range(sym->name, tp->address)) {
2652 tp->symbol = NULL; /* Skip it */
2653 skipped++;
2654 } else if (reloc_sym) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002655 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2656 tp->offset = tp->address - reloc_sym->addr;
2657 } else {
2658 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2659 tp->offset = pp->offset;
2660 }
Wang Nan6bb536c2015-05-29 09:45:47 +00002661 tp->realname = strdup_or_goto(sym->name, nomem_out);
2662
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002663 tp->retprobe = pp->retprobe;
Masami Hiramatsu44225522015-05-08 10:03:28 +09002664 if (pev->target)
2665 tev->point.module = strdup_or_goto(pev->target,
2666 nomem_out);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002667 tev->uprobes = pev->uprobes;
2668 tev->nargs = pev->nargs;
2669 if (tev->nargs) {
2670 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2671 tev->nargs);
2672 if (tev->args == NULL)
2673 goto nomem_out;
2674 }
2675 for (i = 0; i < tev->nargs; i++) {
2676 if (pev->args[i].name)
2677 tev->args[i].name =
2678 strdup_or_goto(pev->args[i].name,
2679 nomem_out);
2680
2681 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2682 nomem_out);
2683 if (pev->args[i].type)
2684 tev->args[i].type =
2685 strdup_or_goto(pev->args[i].type,
2686 nomem_out);
2687 }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302688 arch__fix_tev_from_maps(pev, tev, map);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002689 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002690 if (ret == skipped) {
2691 ret = -ENOENT;
2692 goto err_out;
2693 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002694
2695out:
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002696 put_target_map(map, pev->uprobes);
Wang Nan6bb536c2015-05-29 09:45:47 +00002697 free(syms);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002698 return ret;
2699
2700nomem_out:
2701 ret = -ENOMEM;
2702err_out:
2703 clear_probe_trace_events(*tevs, num_matched_functions);
2704 zfree(tevs);
2705 goto out;
2706}
2707
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302708bool __weak arch__prefers_symtab(void) { return false; }
2709
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302710static int convert_to_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002711 struct probe_trace_event **tevs)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002712{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002713 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002714
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002715 if (pev->uprobes && !pev->group) {
2716 /* Replace group name if not given */
Masami Hiramatsu44225522015-05-08 10:03:28 +09002717 ret = convert_exec_to_group(pev->target, &pev->group);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002718 if (ret != 0) {
2719 pr_warning("Failed to make a group name.\n");
2720 return ret;
2721 }
2722 }
2723
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302724 if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002725 ret = find_probe_trace_events_from_map(pev, tevs);
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302726 if (ret > 0)
2727 return ret; /* Found in symbol table */
2728 }
2729
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002730 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002731 ret = try_to_find_probe_trace_events(pev, tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002732 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002733 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002734
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002735 return find_probe_trace_events_from_map(pev, tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002736}
2737
2738struct __event_package {
2739 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302740 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002741 int ntevs;
2742};
2743
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002744int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002745{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002746 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002747 struct __event_package *pkgs;
2748
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302749 ret = 0;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002750 pkgs = zalloc(sizeof(struct __event_package) * npevs);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302751
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002752 if (pkgs == NULL)
2753 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002754
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002755 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002756 if (ret < 0) {
2757 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002758 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002759 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002760
2761 /* Loop 1: convert all events */
2762 for (i = 0; i < npevs; i++) {
2763 pkgs[i].pev = &pevs[i];
Masami Hiramatsub0312202015-06-16 20:50:55 +09002764 /* Init kprobe blacklist if needed */
2765 if (!pkgs[i].pev->uprobes)
2766 kprobe_blacklist__init();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002767 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302768 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002769 &pkgs[i].tevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002770 if (ret < 0)
2771 goto end;
2772 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002773 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002774 /* This just release blacklist only if allocated */
2775 kprobe_blacklist__release();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002776
2777 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03002778 for (i = 0; i < npevs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302779 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002780 pkgs[i].ntevs,
2781 probe_conf.force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03002782 if (ret < 0)
2783 break;
2784 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002785end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002786 /* Loop 3: cleanup and free trace events */
2787 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002788 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302789 clear_probe_trace_event(&pkgs[i].tevs[j]);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002790 zfree(&pkgs[i].tevs);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002791 }
2792 free(pkgs);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002793 exit_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002794
2795 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002796}
2797
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302798static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002799{
2800 char *p;
2801 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002802 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002803
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302804 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002805 ret = e_snprintf(buf, 128, "-:%s", ent->s);
2806 if (ret < 0)
2807 goto error;
2808
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002809 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002810 if (!p) {
2811 pr_debug("Internal error: %s should have ':' but not.\n",
2812 ent->s);
2813 ret = -ENOTSUP;
2814 goto error;
2815 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002816 *p = '/';
2817
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002818 pr_debug("Writing event: %s\n", buf);
2819 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002820 if (ret < 0) {
2821 ret = -errno;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002822 goto error;
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002823 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002824
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002825 pr_info("Removed event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002826 return 0;
2827error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002828 pr_warning("Failed to delete event: %s\n",
2829 strerror_r(-ret, buf, sizeof(buf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002830 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002831}
2832
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002833static int del_trace_probe_events(int fd, struct strfilter *filter,
2834 struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002835{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002836 struct str_node *ent;
2837 const char *p;
Masami Hiramatsu6dbe31f2015-04-23 22:46:14 +09002838 int ret = -ENOENT;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002839
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002840 if (!namelist)
2841 return -ENOENT;
2842
2843 strlist__for_each(ent, namelist) {
2844 p = strchr(ent->s, ':');
2845 if ((p && strfilter__compare(filter, p + 1)) ||
2846 strfilter__compare(filter, ent->s)) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302847 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002848 if (ret < 0)
2849 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002850 }
2851 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002852
2853 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002854}
2855
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002856int del_perf_probe_events(struct strfilter *filter)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002857{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002858 int ret, ret2, ufd = -1, kfd = -1;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302859 struct strlist *namelist = NULL, *unamelist = NULL;
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002860 char *str = strfilter__string(filter);
2861
2862 if (!str)
2863 return -EINVAL;
2864
2865 pr_debug("Delete filter: \'%s\'\n", str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002866
Masami Hiramatsufa282442009-12-08 17:03:23 -05002867 /* Get current event names */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302868 kfd = open_kprobe_events(true);
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002869 if (kfd >= 0)
2870 namelist = get_probe_trace_event_names(kfd, true);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302871
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302872 ufd = open_uprobe_events(true);
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002873 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302874 unamelist = get_probe_trace_event_names(ufd, true);
2875
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002876 if (kfd < 0 && ufd < 0) {
2877 print_both_open_warning(kfd, ufd);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002878 ret = kfd;
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002879 goto error;
2880 }
2881
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002882 ret = del_trace_probe_events(kfd, filter, namelist);
2883 if (ret < 0 && ret != -ENOENT)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302884 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002885
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002886 ret2 = del_trace_probe_events(ufd, filter, unamelist);
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002887 if (ret2 < 0 && ret2 != -ENOENT) {
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002888 ret = ret2;
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002889 goto error;
2890 }
2891 if (ret == -ENOENT && ret2 == -ENOENT)
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002892 pr_debug("\"%s\" does not hit any event.\n", str);
2893 /* Note that this is silently ignored */
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002894 ret = 0;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302895
2896error:
2897 if (kfd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302898 strlist__delete(namelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302899 close(kfd);
2900 }
2901
2902 if (ufd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302903 strlist__delete(unamelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302904 close(ufd);
2905 }
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002906 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002907
2908 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002909}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302910
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002911/* TODO: don't use a global variable for filter ... */
2912static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002913
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002914/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002915 * If a symbol corresponds to a function with global binding and
2916 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002917 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002918static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002919 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002920{
Namhyung Kime578da32015-03-06 16:31:29 +09002921 if (strfilter__compare(available_func_filter, sym->name))
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002922 return 0;
2923 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002924}
2925
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002926int show_available_funcs(const char *target, struct strfilter *_filter,
2927 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002928{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002929 struct map *map;
2930 int ret;
2931
2932 ret = init_symbol_maps(user);
2933 if (ret < 0)
2934 return ret;
2935
2936 /* Get a symbol map */
2937 if (user)
2938 map = dso__new_map(target);
2939 else
2940 map = kernel_get_module_map(target);
2941 if (!map) {
2942 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002943 return -EINVAL;
2944 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002945
2946 /* Load symbols with given filter */
2947 available_func_filter = _filter;
2948 if (map__load(map, filter_available_functions)) {
2949 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2950 goto end;
2951 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002952 if (!dso__sorted_by_name(map->dso, map->type))
2953 dso__sort_by_name(map->dso, map->type);
2954
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002955 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302956 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002957 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2958end:
2959 if (user) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03002960 map__put(map);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002961 }
2962 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302963
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002964 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302965}
2966