blob: f7bacbb9886598fad801920cf967bcff76ccd69a [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"
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090048#include "probe-file.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053049#include "session.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050050
51#define MAX_CMDLEN 256
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050052#define PERFPROBE_GROUP "probe"
53
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040054bool probe_event_dry_run; /* Dry run flag */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +090055struct probe_conf probe_conf;
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040056
Masami Hiramatsu146a1432010-04-12 13:17:42 -040057#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050058
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090059int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050060{
61 int ret;
62 va_list ap;
63 va_start(ap, format);
64 ret = vsnprintf(str, size, format, ap);
65 va_end(ap);
66 if (ret >= (int)size)
67 ret = -E2BIG;
68 return ret;
69}
70
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030071static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000072static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040073
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090074/* Initialize symbol maps and path of vmlinux/modules */
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000075static int init_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040076{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040077 int ret;
78
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040079 symbol_conf.sort_by_name = true;
Namhyung Kim680d9262015-03-06 16:31:27 +090080 symbol_conf.allow_aliases = true;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090081 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040082 if (ret < 0) {
83 pr_debug("Failed to init symbol map.\n");
84 goto out;
85 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040086
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000087 if (host_machine || user_only) /* already initialized */
88 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030089
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000090 if (symbol_conf.vmlinux_name)
91 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
92
93 host_machine = machine__new_host();
94 if (!host_machine) {
95 pr_debug("machine__new_host() failed.\n");
96 symbol__exit();
97 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090098 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -040099out:
100 if (ret < 0)
101 pr_warning("Failed to init vmlinux path.\n");
102 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400103}
104
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000105static void exit_symbol_maps(void)
106{
107 if (host_machine) {
108 machine__delete(host_machine);
109 host_machine = NULL;
110 }
111 symbol__exit();
112}
113
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900114static struct symbol *__find_kernel_function_by_name(const char *name,
115 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400116{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000117 return machine__find_kernel_function_by_name(host_machine, name, mapp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900118 NULL);
119}
120
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000121static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
122{
123 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
124}
125
126static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
127{
128 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
129 struct kmap *kmap;
130
131 if (map__load(host_machine->vmlinux_maps[MAP__FUNCTION], NULL) < 0)
132 return NULL;
133
134 kmap = map__kmap(host_machine->vmlinux_maps[MAP__FUNCTION]);
Wang Nanba927322015-04-07 08:22:45 +0000135 if (!kmap)
136 return NULL;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000137 return kmap->ref_reloc_sym;
138}
139
140static u64 kernel_get_symbol_address_by_name(const char *name, bool reloc)
141{
142 struct ref_reloc_sym *reloc_sym;
143 struct symbol *sym;
144 struct map *map;
145
146 /* ref_reloc_sym is just a label. Need a special fix*/
147 reloc_sym = kernel_get_ref_reloc_sym();
148 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
149 return (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
150 else {
151 sym = __find_kernel_function_by_name(name, &map);
152 if (sym)
153 return map->unmap_ip(map, sym->start) -
He Kuangf56847c2015-02-27 18:52:53 +0800154 ((reloc) ? 0 : map->reloc);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000155 }
156 return 0;
157}
158
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900159static struct map *kernel_get_module_map(const char *module)
160{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000161 struct map_groups *grp = &host_machine->kmaps;
Arnaldo Carvalho de Melo1eee78a2015-05-22 12:58:53 -0300162 struct maps *maps = &grp->maps[MAP__FUNCTION];
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300163 struct map *pos;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900164
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900165 /* A file path -- this is an offline module */
166 if (module && strchr(module, '/'))
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300167 return machine__findnew_module_map(host_machine, 0, module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900168
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900169 if (!module)
170 module = "kernel";
171
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300172 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900173 if (strncmp(pos->dso->short_name + 1, module,
174 pos->dso->short_name_len - 2) == 0) {
175 return pos;
176 }
177 }
178 return NULL;
179}
180
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900181static struct map *get_target_map(const char *target, bool user)
182{
183 /* Init maps of given executable or kernel */
184 if (user)
185 return dso__new_map(target);
186 else
187 return kernel_get_module_map(target);
188}
189
190static void put_target_map(struct map *map, bool user)
191{
192 if (map && user) {
193 /* Only the user map needs to be released */
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -0300194 map__put(map);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900195 }
196}
197
198
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000199static int convert_exec_to_group(const char *exec, char **result)
200{
201 char *ptr1, *ptr2, *exec_copy;
202 char buf[64];
203 int ret;
204
205 exec_copy = strdup(exec);
206 if (!exec_copy)
207 return -ENOMEM;
208
209 ptr1 = basename(exec_copy);
210 if (!ptr1) {
211 ret = -EINVAL;
212 goto out;
213 }
214
215 ptr2 = strpbrk(ptr1, "-._");
216 if (ptr2)
217 *ptr2 = '\0';
218 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
219 if (ret < 0)
220 goto out;
221
222 *result = strdup(buf);
223 ret = *result ? 0 : -ENOMEM;
224
225out:
226 free(exec_copy);
227 return ret;
228}
229
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900230static void clear_perf_probe_point(struct perf_probe_point *pp)
231{
232 free(pp->file);
233 free(pp->function);
234 free(pp->lazy_line);
235}
236
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000237static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
238{
239 int i;
240
241 for (i = 0; i < ntevs; i++)
242 clear_probe_trace_event(tevs + i);
243}
244
Masami Hiramatsub0312202015-06-16 20:50:55 +0900245static bool kprobe_blacklist__listed(unsigned long address);
246static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
247{
He Kuang7c31bb82015-06-18 02:49:10 +0000248 u64 etext_addr;
249
Masami Hiramatsub0312202015-06-16 20:50:55 +0900250 /* Get the address of _etext for checking non-probable text symbol */
He Kuang7c31bb82015-06-18 02:49:10 +0000251 etext_addr = kernel_get_symbol_address_by_name("_etext", false);
252
253 if (etext_addr != 0 && etext_addr < address)
Masami Hiramatsub0312202015-06-16 20:50:55 +0900254 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 Hiramatsu7737af02015-06-17 23:58:54 +0900432/* For caching the last debuginfo */
433static struct debuginfo *debuginfo_cache;
434static char *debuginfo_cache_path;
435
436static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
437{
438 if ((debuginfo_cache_path && !strcmp(debuginfo_cache_path, module)) ||
439 (!debuginfo_cache_path && !module && debuginfo_cache))
440 goto out;
441
442 /* Copy module path */
443 free(debuginfo_cache_path);
444 if (module) {
445 debuginfo_cache_path = strdup(module);
446 if (!debuginfo_cache_path) {
447 debuginfo__delete(debuginfo_cache);
448 debuginfo_cache = NULL;
449 goto out;
450 }
451 }
452
453 debuginfo_cache = open_debuginfo(module, silent);
454 if (!debuginfo_cache)
455 zfree(&debuginfo_cache_path);
456out:
457 return debuginfo_cache;
458}
459
460static void debuginfo_cache__exit(void)
461{
462 debuginfo__delete(debuginfo_cache);
463 debuginfo_cache = NULL;
464 zfree(&debuginfo_cache_path);
465}
466
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000467
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000468static int get_text_start_address(const char *exec, unsigned long *address)
469{
470 Elf *elf;
471 GElf_Ehdr ehdr;
472 GElf_Shdr shdr;
473 int fd, ret = -ENOENT;
474
475 fd = open(exec, O_RDONLY);
476 if (fd < 0)
477 return -errno;
478
479 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
480 if (elf == NULL)
481 return -EINVAL;
482
483 if (gelf_getehdr(elf, &ehdr) == NULL)
484 goto out;
485
486 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
487 goto out;
488
489 *address = shdr.sh_addr - shdr.sh_offset;
490 ret = 0;
491out:
492 elf_end(elf);
493 return ret;
494}
495
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000496/*
497 * Convert trace point to probe point with debuginfo
498 */
499static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
500 struct perf_probe_point *pp,
501 bool is_kprobe)
502{
503 struct debuginfo *dinfo = NULL;
504 unsigned long stext = 0;
505 u64 addr = tp->address;
506 int ret = -ENOENT;
507
508 /* convert the address to dwarf address */
509 if (!is_kprobe) {
510 if (!addr) {
511 ret = -EINVAL;
512 goto error;
513 }
514 ret = get_text_start_address(tp->module, &stext);
515 if (ret < 0)
516 goto error;
517 addr += stext;
Wang Nane4863672015-08-25 13:27:35 +0000518 } else if (tp->symbol) {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000519 addr = kernel_get_symbol_address_by_name(tp->symbol, false);
520 if (addr == 0)
521 goto error;
522 addr += tp->offset;
523 }
524
525 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
526 tp->module ? : "kernel");
527
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900528 dinfo = debuginfo_cache__open(tp->module, verbose == 0);
529 if (dinfo)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000530 ret = debuginfo__find_probe_point(dinfo,
531 (unsigned long)addr, pp);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900532 else
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000533 ret = -ENOENT;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000534
535 if (ret > 0) {
536 pp->retprobe = tp->retprobe;
537 return 0;
538 }
539error:
540 pr_debug("Failed to find corresponding probes from debuginfo.\n");
541 return ret ? : -ENOENT;
542}
543
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000544static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
545 int ntevs, const char *exec)
546{
547 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000548 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000549
550 if (!exec)
551 return 0;
552
553 ret = get_text_start_address(exec, &stext);
554 if (ret < 0)
555 return ret;
556
557 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000558 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000559 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000560 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000561 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000562 ret = -ENOMEM;
563 break;
564 }
565 tevs[i].uprobes = true;
566 }
567
568 return ret;
569}
570
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900571static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
572 int ntevs, const char *module)
573{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900574 int i, ret = 0;
575 char *tmp;
576
577 if (!module)
578 return 0;
579
580 tmp = strrchr(module, '/');
581 if (tmp) {
582 /* This is a module path -- get the module name */
583 module = strdup(tmp + 1);
584 if (!module)
585 return -ENOMEM;
586 tmp = strchr(module, '.');
587 if (tmp)
588 *tmp = '\0';
589 tmp = (char *)module; /* For free() */
590 }
591
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900592 for (i = 0; i < ntevs; i++) {
593 tevs[i].point.module = strdup(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900594 if (!tevs[i].point.module) {
595 ret = -ENOMEM;
596 break;
597 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900598 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900599
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -0300600 free(tmp);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900601 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900602}
603
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000604/* Post processing the probe events */
605static int post_process_probe_trace_events(struct probe_trace_event *tevs,
606 int ntevs, const char *module,
607 bool uprobe)
608{
609 struct ref_reloc_sym *reloc_sym;
610 char *tmp;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900611 int i, skipped = 0;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000612
613 if (uprobe)
614 return add_exec_to_probe_trace_events(tevs, ntevs, module);
615
616 /* Note that currently ref_reloc_sym based probe is not for drivers */
617 if (module)
618 return add_module_to_probe_trace_events(tevs, ntevs, module);
619
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000620 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000621 if (!reloc_sym) {
622 pr_warning("Relocated base symbol is not found!\n");
623 return -EINVAL;
624 }
625
626 for (i = 0; i < ntevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +0900627 if (!tevs[i].point.address || tevs[i].point.retprobe)
628 continue;
629 /* If we found a wrong one, mark it by NULL symbol */
630 if (kprobe_warn_out_range(tevs[i].point.symbol,
631 tevs[i].point.address)) {
632 tmp = NULL;
633 skipped++;
634 } else {
635 tmp = strdup(reloc_sym->name);
636 if (!tmp)
637 return -ENOMEM;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000638 }
Masami Hiramatsub0312202015-06-16 20:50:55 +0900639 /* If we have no realname, use symbol for it */
640 if (!tevs[i].point.realname)
641 tevs[i].point.realname = tevs[i].point.symbol;
642 else
643 free(tevs[i].point.symbol);
644 tevs[i].point.symbol = tmp;
645 tevs[i].point.offset = tevs[i].point.address -
646 reloc_sym->unrelocated_addr;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000647 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900648 return skipped;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000649}
650
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300651/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530652static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900653 struct probe_trace_event **tevs)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300654{
655 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900656 struct perf_probe_point tmp;
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530657 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900658 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300659
Masami Hiramatsu44225522015-05-08 10:03:28 +0900660 dinfo = open_debuginfo(pev->target, !need_dwarf);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900661 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000662 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900663 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900664 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300665 return 0;
666 }
667
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000668 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900669 /* Searching trace events corresponding to a probe event */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900670 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900671
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900672 if (ntevs == 0) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900673 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900674 if (!ret) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900675 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900676 /*
677 * Write back to the original probe_event for
678 * setting appropriate (user given) event name
679 */
680 clear_perf_probe_point(&pev->point);
681 memcpy(&pev->point, &tmp, sizeof(tmp));
682 }
683 }
684
Masami Hiramatsuff741782011-06-27 16:27:39 +0900685 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300686
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400687 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000688 pr_debug("Found %d probe_trace_events.\n", ntevs);
689 ret = post_process_probe_trace_events(*tevs, ntevs,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900690 pev->target, pev->uprobes);
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900691 if (ret < 0 || ret == ntevs) {
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000692 clear_probe_trace_events(*tevs, ntevs);
693 zfree(tevs);
694 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900695 if (ret != ntevs)
696 return ret < 0 ? ret : ntevs;
697 ntevs = 0;
698 /* Fall through */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400699 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300700
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400701 if (ntevs == 0) { /* No error but failed to find probe point. */
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900702 pr_warning("Probe point '%s' not found.\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400703 synthesize_perf_probe_point(&pev->point));
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900704 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400705 }
706 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400707 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
Wang Nan1c0bd0e2015-08-21 10:09:02 +0000708 if (ntevs < 0) {
709 if (ntevs == -EBADF)
710 pr_warning("Warning: No dwarf info found in the vmlinux - "
711 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400712 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900713 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400714 return 0;
715 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300716 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400717 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300718}
719
720#define LINEBUF_SIZE 256
721#define NR_ADDITIONAL_LINES 2
722
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100723static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300724{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000725 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100726 const char *color = show_num ? "" : PERF_COLOR_BLUE;
727 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300728
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100729 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300730 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
731 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100732 if (skip)
733 continue;
734 if (!prefix) {
735 prefix = show_num ? "%7d " : " ";
736 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300737 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100738 color_fprintf(stdout, color, "%s", buf);
739
740 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400741
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100742 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300743error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100744 if (ferror(fp)) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000745 pr_warning("File read error: %s\n",
746 strerror_r(errno, sbuf, sizeof(sbuf)));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100747 return -1;
748 }
749 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300750}
751
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100752static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
753{
754 int rv = __show_one_line(fp, l, skip, show_num);
755 if (rv == 0) {
756 pr_warning("Source file is shorter than expected.\n");
757 rv = -1;
758 }
759 return rv;
760}
761
762#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
763#define show_one_line(f,l) _show_one_line(f,l,false,false)
764#define skip_one_line(f,l) _show_one_line(f,l,true,false)
765#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
766
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300767/*
768 * Show line-range always requires debuginfo to find source file and
769 * line number.
770 */
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900771static int __show_line_range(struct line_range *lr, const char *module,
772 bool user)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300773{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400774 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000775 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900776 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300777 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900778 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900779 char *tmp;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000780 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300781
782 /* Search a line range */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000783 dinfo = open_debuginfo(module, false);
784 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900785 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400786
Masami Hiramatsuff741782011-06-27 16:27:39 +0900787 ret = debuginfo__find_line_range(dinfo, lr);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900788 if (!ret) { /* Not found, retry with an alternative */
789 ret = get_alternative_line_range(dinfo, lr, module, user);
790 if (!ret)
791 ret = debuginfo__find_line_range(dinfo, lr);
792 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900793 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000794 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400795 pr_warning("Specified source line is not found.\n");
796 return -ENOENT;
797 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000798 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400799 return ret;
800 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300801
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900802 /* Convert source file path */
803 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900804 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
He Kuanga78604d2015-03-04 18:01:42 +0800805
806 /* Free old path when new path is assigned */
807 if (tmp != lr->path)
808 free(tmp);
809
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900810 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000811 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900812 return ret;
813 }
814
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300815 setup_pager();
816
817 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900818 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300819 lr->start - lr->offset);
820 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100821 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300822
823 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400824 if (fp == NULL) {
825 pr_warning("Failed to open %s: %s\n", lr->path,
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000826 strerror_r(errno, sbuf, sizeof(sbuf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400827 return -errno;
828 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300829 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100830 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100831 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100832 if (ret < 0)
833 goto end;
834 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300835
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000836 intlist__for_each(ln, lr->line_list) {
837 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100838 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100839 if (ret < 0)
840 goto end;
841 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100842 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400843 if (ret < 0)
844 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300845 }
846
847 if (lr->end == INT_MAX)
848 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100849 while (l <= lr->end) {
850 ret = show_one_line_or_eof(fp, l++ - lr->offset);
851 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100852 break;
853 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400854end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300855 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400856 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300857}
858
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000859int show_line_range(struct line_range *lr, const char *module, bool user)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000860{
861 int ret;
862
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000863 ret = init_symbol_maps(user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000864 if (ret < 0)
865 return ret;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900866 ret = __show_line_range(lr, module, user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000867 exit_symbol_maps();
868
869 return ret;
870}
871
Masami Hiramatsuff741782011-06-27 16:27:39 +0900872static int show_available_vars_at(struct debuginfo *dinfo,
873 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900874 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900875{
876 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900877 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900878 struct str_node *node;
879 struct variable_list *vls = NULL, *vl;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900880 struct perf_probe_point tmp;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900881 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900882
883 buf = synthesize_perf_probe_point(&pev->point);
884 if (!buf)
885 return -EINVAL;
886 pr_debug("Searching variables at %s\n", buf);
887
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900888 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900889 if (!ret) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900890 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900891 if (!ret) {
892 ret = debuginfo__find_available_vars_at(dinfo, pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900893 &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900894 /* Release the old probe_point */
895 clear_perf_probe_point(&tmp);
896 }
897 }
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900898 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000899 if (ret == 0 || ret == -ENOENT) {
900 pr_err("Failed to find the address of %s\n", buf);
901 ret = -ENOENT;
902 } else
903 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900904 goto end;
905 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000906
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900907 /* Some variables are found */
908 fprintf(stdout, "Available variables at %s\n", buf);
909 for (i = 0; i < ret; i++) {
910 vl = &vls[i];
911 /*
912 * A probe point might be converted to
913 * several trace points.
914 */
915 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
916 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300917 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900918 nvars = 0;
919 if (vl->vars) {
920 strlist__for_each(node, vl->vars) {
921 var = strchr(node->s, '\t') + 1;
922 if (strfilter__compare(_filter, var)) {
923 fprintf(stdout, "\t\t%s\n", node->s);
924 nvars++;
925 }
926 }
927 strlist__delete(vl->vars);
928 }
929 if (nvars == 0)
930 fprintf(stdout, "\t\t(No matched variables)\n");
931 }
932 free(vls);
933end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900934 free(buf);
935 return ret;
936}
937
938/* Show available variables on given probe point */
939int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900940 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900941{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900942 int i, ret = 0;
943 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900944
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000945 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900946 if (ret < 0)
947 return ret;
948
Masami Hiramatsu44225522015-05-08 10:03:28 +0900949 dinfo = open_debuginfo(pevs->target, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900950 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000951 ret = -ENOENT;
952 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900953 }
954
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900955 setup_pager();
956
Masami Hiramatsuff741782011-06-27 16:27:39 +0900957 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900958 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900959
960 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000961out:
962 exit_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900963 return ret;
964}
965
Ingo Molnar89fe8082013-09-30 12:07:11 +0200966#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300967
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900968static void debuginfo_cache__exit(void)
969{
970}
971
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000972static int
973find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
974 struct perf_probe_point *pp __maybe_unused,
975 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300976{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000977 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300978}
979
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530980static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900981 struct probe_trace_event **tevs __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300982{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400983 if (perf_probe_event_need_dwarf(pev)) {
984 pr_warning("Debuginfo-analysis is not supported.\n");
985 return -ENOSYS;
986 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530987
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300988 return 0;
989}
990
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300991int show_line_range(struct line_range *lr __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000992 const char *module __maybe_unused,
993 bool user __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300994{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400995 pr_warning("Debuginfo-analysis is not supported.\n");
996 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300997}
998
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300999int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001000 int npevs __maybe_unused,
1001 struct strfilter *filter __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001002{
1003 pr_warning("Debuginfo-analysis is not supported.\n");
1004 return -ENOSYS;
1005}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001006#endif
1007
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001008void line_range__clear(struct line_range *lr)
1009{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001010 free(lr->function);
1011 free(lr->file);
1012 free(lr->path);
1013 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001014 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001015 memset(lr, 0, sizeof(*lr));
1016}
1017
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001018int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001019{
1020 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001021 lr->line_list = intlist__new(NULL);
1022 if (!lr->line_list)
1023 return -ENOMEM;
1024 else
1025 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001026}
1027
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001028static int parse_line_num(char **ptr, int *val, const char *what)
1029{
1030 const char *start = *ptr;
1031
1032 errno = 0;
1033 *val = strtol(*ptr, ptr, 0);
1034 if (errno || *ptr == start) {
1035 semantic_error("'%s' is not a valid number.\n", what);
1036 return -EINVAL;
1037 }
1038 return 0;
1039}
1040
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001041/* Check the name is good for event, group or function */
1042static bool is_c_func_name(const char *name)
1043{
1044 if (!isalpha(*name) && *name != '_')
1045 return false;
1046 while (*++name != '\0') {
1047 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1048 return false;
1049 }
1050 return true;
1051}
1052
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001053/*
1054 * Stuff 'lr' according to the line range described by 'arg'.
1055 * The line range syntax is described by:
1056 *
1057 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001058 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001059 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001060int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001061{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001062 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001063 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001064
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001065 if (!name)
1066 return -ENOMEM;
1067
1068 lr->start = 0;
1069 lr->end = INT_MAX;
1070
1071 range = strchr(name, ':');
1072 if (range) {
1073 *range++ = '\0';
1074
1075 err = parse_line_num(&range, &lr->start, "start line");
1076 if (err)
1077 goto err;
1078
1079 if (*range == '+' || *range == '-') {
1080 const char c = *range++;
1081
1082 err = parse_line_num(&range, &lr->end, "end line");
1083 if (err)
1084 goto err;
1085
1086 if (c == '+') {
1087 lr->end += lr->start;
1088 /*
1089 * Adjust the number of lines here.
1090 * If the number of lines == 1, the
1091 * the end of line should be equal to
1092 * the start of line.
1093 */
1094 lr->end--;
1095 }
1096 }
1097
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001098 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001099
1100 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001101 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001102 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001103 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001104 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001105 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001106 if (*range != '\0') {
1107 semantic_error("Tailing with invalid str '%s'.\n", range);
1108 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001109 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001110 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001111
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001112 file = strchr(name, '@');
1113 if (file) {
1114 *file = '\0';
1115 lr->file = strdup(++file);
1116 if (lr->file == NULL) {
1117 err = -ENOMEM;
1118 goto err;
1119 }
1120 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001121 } else if (strchr(name, '/') || strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001122 lr->file = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001123 else if (is_c_func_name(name))/* We reuse it for checking funcname */
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001124 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001125 else { /* Invalid name */
1126 semantic_error("'%s' is not a valid function name.\n", name);
1127 err = -EINVAL;
1128 goto err;
1129 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001130
1131 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001132err:
1133 free(name);
1134 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001135}
1136
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001137/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001138static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001139{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001140 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001141 char *ptr, *tmp;
1142 char c, nc = 0;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301143 bool file_spec = false;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001144 /*
1145 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001146 * perf probe [EVENT=]SRC[:LN|;PTN]
1147 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001148 *
1149 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001150 */
Wang Nane59d29e2015-04-28 08:46:09 +00001151 if (!arg)
1152 return -EINVAL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001153
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001154 ptr = strpbrk(arg, ";=@+%");
1155 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001156 *ptr = '\0';
1157 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001158 if (strchr(arg, ':')) {
1159 semantic_error("Group name is not supported yet.\n");
1160 return -ENOTSUP;
1161 }
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001162 if (!is_c_func_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -05001163 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001164 "follow C symbol-naming rule.\n", arg);
1165 return -EINVAL;
1166 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001167 pev->event = strdup(arg);
1168 if (pev->event == NULL)
1169 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001170 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001171 arg = tmp;
1172 }
1173
Naveen N. Rao3099c022015-04-28 17:35:34 +05301174 /*
1175 * Check arg is function or file name and copy it.
1176 *
1177 * We consider arg to be a file spec if and only if it satisfies
1178 * all of the below criteria::
1179 * - it does not include any of "+@%",
1180 * - it includes one of ":;", and
1181 * - it has a period '.' in the name.
1182 *
1183 * Otherwise, we consider arg to be a function specification.
1184 */
1185 if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) {
1186 /* This is a file spec if it includes a '.' before ; or : */
1187 if (memchr(arg, '.', ptr - arg))
1188 file_spec = true;
1189 }
1190
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001191 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001192 if (ptr) {
1193 nc = *ptr;
1194 *ptr++ = '\0';
1195 }
1196
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001197 tmp = strdup(arg);
1198 if (tmp == NULL)
1199 return -ENOMEM;
1200
Naveen N. Rao3099c022015-04-28 17:35:34 +05301201 if (file_spec)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001202 pp->file = tmp;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301203 else
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001204 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001205
1206 /* Parse other options */
1207 while (ptr) {
1208 arg = ptr;
1209 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001210 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001211 pp->lazy_line = strdup(arg);
1212 if (pp->lazy_line == NULL)
1213 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001214 break;
1215 }
1216 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001217 if (ptr) {
1218 nc = *ptr;
1219 *ptr++ = '\0';
1220 }
1221 switch (c) {
1222 case ':': /* Line number */
1223 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001224 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001225 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001226 " in line number.\n");
1227 return -EINVAL;
1228 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001229 break;
1230 case '+': /* Byte offset from a symbol */
1231 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001232 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001233 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001234 " in offset.\n");
1235 return -EINVAL;
1236 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001237 break;
1238 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001239 if (pp->file) {
1240 semantic_error("SRC@SRC is not allowed.\n");
1241 return -EINVAL;
1242 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001243 pp->file = strdup(arg);
1244 if (pp->file == NULL)
1245 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001246 break;
1247 case '%': /* Probe places */
1248 if (strcmp(arg, "return") == 0) {
1249 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001250 } else { /* Others not supported yet */
1251 semantic_error("%%%s is not supported.\n", arg);
1252 return -ENOTSUP;
1253 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001254 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001255 default: /* Buggy case */
1256 pr_err("This program has a bug at %s:%d.\n",
1257 __FILE__, __LINE__);
1258 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001259 break;
1260 }
1261 }
1262
1263 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001264 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001265 semantic_error("Lazy pattern can't be used with"
1266 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001267 return -EINVAL;
1268 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001269
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001270 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001271 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001272 return -EINVAL;
1273 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001274
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001275 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001276 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001277 return -EINVAL;
1278 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001279
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001280 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001281 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001282 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001283 return -EINVAL;
1284 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001285
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001286 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001287 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001288 return -EINVAL;
1289 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001290
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001291 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001292 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001293 return -EINVAL;
1294 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001295
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001296 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001297 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001298 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001299 return -EINVAL;
1300 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001301
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001302 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001303 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1304 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001305 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001306}
1307
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001308/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001309static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001310{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001311 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001312 struct perf_probe_arg_field **fieldp;
1313
1314 pr_debug("parsing arg: %s into ", str);
1315
Masami Hiramatsu48481932010-04-12 13:16:53 -04001316 tmp = strchr(str, '=');
1317 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001318 arg->name = strndup(str, tmp - str);
1319 if (arg->name == NULL)
1320 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001321 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001322 str = tmp + 1;
1323 }
1324
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001325 tmp = strchr(str, ':');
1326 if (tmp) { /* Type setting */
1327 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001328 arg->type = strdup(tmp + 1);
1329 if (arg->type == NULL)
1330 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001331 pr_debug("type:%s ", arg->type);
1332 }
1333
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001334 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001335 if (!is_c_varname(str) || !tmp) {
1336 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001337 arg->var = strdup(str);
1338 if (arg->var == NULL)
1339 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001340 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001341 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001342 }
1343
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001344 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001345 arg->var = strndup(str, tmp - str);
1346 if (arg->var == NULL)
1347 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001348 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001349 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001350 fieldp = &arg->field;
1351
1352 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001353 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1354 if (*fieldp == NULL)
1355 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001356 if (*tmp == '[') { /* Array */
1357 str = tmp;
1358 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001359 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001360 if (*tmp != ']' || tmp == str + 1) {
1361 semantic_error("Array index must be a"
1362 " number.\n");
1363 return -EINVAL;
1364 }
1365 tmp++;
1366 if (*tmp == '\0')
1367 tmp = NULL;
1368 } else { /* Structure */
1369 if (*tmp == '.') {
1370 str = tmp + 1;
1371 (*fieldp)->ref = false;
1372 } else if (tmp[1] == '>') {
1373 str = tmp + 2;
1374 (*fieldp)->ref = true;
1375 } else {
1376 semantic_error("Argument parse error: %s\n",
1377 str);
1378 return -EINVAL;
1379 }
1380 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001381 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001382 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001383 (*fieldp)->name = strndup(str, tmp - str);
1384 if ((*fieldp)->name == NULL)
1385 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001386 if (*str != '[')
1387 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001388 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1389 fieldp = &(*fieldp)->next;
1390 }
1391 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001392 (*fieldp)->name = strdup(str);
1393 if ((*fieldp)->name == NULL)
1394 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001395 if (*str != '[')
1396 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001397 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001398
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001399 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001400 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001401 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001402 if (arg->name == NULL)
1403 return -ENOMEM;
1404 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001405 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001406}
1407
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001408/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001409int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001410{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001411 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001412 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001413
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001414 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001415 if (!argv) {
1416 pr_debug("Failed to split arguments.\n");
1417 return -ENOMEM;
1418 }
1419 if (argc - 1 > MAX_PROBE_ARGS) {
1420 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1421 ret = -ERANGE;
1422 goto out;
1423 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001424 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001425 ret = parse_perf_probe_point(argv[0], pev);
1426 if (ret < 0)
1427 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001428
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001429 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001430 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001431 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1432 if (pev->args == NULL) {
1433 ret = -ENOMEM;
1434 goto out;
1435 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001436 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1437 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1438 if (ret >= 0 &&
1439 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001440 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001441 " kretprobe.\n");
1442 ret = -EINVAL;
1443 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001444 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001445out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001446 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001447
1448 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001449}
1450
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001451/* Return true if this perf_probe_event requires debuginfo */
1452bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001453{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001454 int i;
1455
1456 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1457 return true;
1458
1459 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -04001460 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001461 return true;
1462
1463 return false;
1464}
1465
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301466/* Parse probe_events event into struct probe_point */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09001467int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001468{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301469 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001470 char pr;
1471 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001472 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001473 int ret, i, argc;
1474 char **argv;
1475
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301476 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001477 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001478 if (!argv) {
1479 pr_debug("Failed to split arguments.\n");
1480 return -ENOMEM;
1481 }
1482 if (argc < 2) {
1483 semantic_error("Too few probe arguments.\n");
1484 ret = -ERANGE;
1485 goto out;
1486 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001487
1488 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001489 argv0_str = strdup(argv[0]);
1490 if (argv0_str == NULL) {
1491 ret = -ENOMEM;
1492 goto out;
1493 }
1494 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1495 fmt2_str = strtok_r(NULL, "/", &fmt);
1496 fmt3_str = strtok_r(NULL, " \t", &fmt);
1497 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1498 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001499 semantic_error("Failed to parse event name: %s\n", argv[0]);
1500 ret = -EINVAL;
1501 goto out;
1502 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001503 pr = fmt1_str[0];
1504 tev->group = strdup(fmt2_str);
1505 tev->event = strdup(fmt3_str);
1506 if (tev->group == NULL || tev->event == NULL) {
1507 ret = -ENOMEM;
1508 goto out;
1509 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001510 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001511
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001512 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001513
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001514 /* Scan module name(if there), function name and offset */
1515 p = strchr(argv[1], ':');
1516 if (p) {
1517 tp->module = strndup(argv[1], p - argv[1]);
1518 p++;
1519 } else
1520 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001521 fmt1_str = strtok_r(p, "+", &fmt);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001522 if (fmt1_str[0] == '0') /* only the address started with 0x */
1523 tp->address = strtoul(fmt1_str, NULL, 0);
1524 else {
1525 /* Only the symbol-based probe has offset */
1526 tp->symbol = strdup(fmt1_str);
1527 if (tp->symbol == NULL) {
1528 ret = -ENOMEM;
1529 goto out;
1530 }
1531 fmt2_str = strtok_r(NULL, "", &fmt);
1532 if (fmt2_str == NULL)
1533 tp->offset = 0;
1534 else
1535 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001536 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001537
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001538 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301539 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001540 if (tev->args == NULL) {
1541 ret = -ENOMEM;
1542 goto out;
1543 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001544 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001545 p = strchr(argv[i + 2], '=');
1546 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001547 *p++ = '\0';
1548 else
1549 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001550 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001551 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001552 tev->args[i].value = strdup(p);
1553 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1554 ret = -ENOMEM;
1555 goto out;
1556 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001557 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001558 ret = 0;
1559out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001560 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001561 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001562 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001563}
1564
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001565/* Compose only probe arg */
1566int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1567{
1568 struct perf_probe_arg_field *field = pa->field;
1569 int ret;
1570 char *tmp = buf;
1571
Masami Hiramatsu48481932010-04-12 13:16:53 -04001572 if (pa->name && pa->var)
1573 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1574 else
1575 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001576 if (ret <= 0)
1577 goto error;
1578 tmp += ret;
1579 len -= ret;
1580
1581 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001582 if (field->name[0] == '[')
1583 ret = e_snprintf(tmp, len, "%s", field->name);
1584 else
1585 ret = e_snprintf(tmp, len, "%s%s",
1586 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001587 if (ret <= 0)
1588 goto error;
1589 tmp += ret;
1590 len -= ret;
1591 field = field->next;
1592 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001593
1594 if (pa->type) {
1595 ret = e_snprintf(tmp, len, ":%s", pa->type);
1596 if (ret <= 0)
1597 goto error;
1598 tmp += ret;
1599 len -= ret;
1600 }
1601
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001602 return tmp - buf;
1603error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001604 pr_debug("Failed to synthesize perf probe argument: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001605 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001606}
1607
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001608/* Compose only probe point (not argument) */
1609static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001610{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001611 char *buf, *tmp;
1612 char offs[32] = "", line[32] = "", file[32] = "";
1613 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001614
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001615 buf = zalloc(MAX_CMDLEN);
1616 if (buf == NULL) {
1617 ret = -ENOMEM;
1618 goto error;
1619 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001620 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001621 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001622 if (ret <= 0)
1623 goto error;
1624 }
1625 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001626 ret = e_snprintf(line, 32, ":%d", pp->line);
1627 if (ret <= 0)
1628 goto error;
1629 }
1630 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001631 tmp = pp->file;
1632 len = strlen(tmp);
1633 if (len > 30) {
1634 tmp = strchr(pp->file + len - 30, '/');
1635 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1636 }
1637 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001638 if (ret <= 0)
1639 goto error;
1640 }
1641
1642 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001643 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1644 offs, pp->retprobe ? "%return" : "", line,
1645 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001646 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001647 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001648 if (ret <= 0)
1649 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001650
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001651 return buf;
1652error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001653 pr_debug("Failed to synthesize perf probe point: %d\n", ret);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001654 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001655 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001656}
1657
1658#if 0
1659char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1660{
1661 char *buf;
1662 int i, len, ret;
1663
1664 buf = synthesize_perf_probe_point(&pev->point);
1665 if (!buf)
1666 return NULL;
1667
1668 len = strlen(buf);
1669 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001670 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001671 pev->args[i].name);
1672 if (ret <= 0) {
1673 free(buf);
1674 return NULL;
1675 }
1676 len += ret;
1677 }
1678
1679 return buf;
1680}
1681#endif
1682
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301683static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001684 char **buf, size_t *buflen,
1685 int depth)
1686{
1687 int ret;
1688 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301689 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001690 buflen, depth + 1);
1691 if (depth < 0)
1692 goto out;
1693 }
1694
1695 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1696 if (ret < 0)
1697 depth = ret;
1698 else {
1699 *buf += ret;
1700 *buflen -= ret;
1701 }
1702out:
1703 return depth;
1704
1705}
1706
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301707static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001708 char *buf, size_t buflen)
1709{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301710 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001711 int ret, depth = 0;
1712 char *tmp = buf;
1713
1714 /* Argument name or separator */
1715 if (arg->name)
1716 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1717 else
1718 ret = e_snprintf(buf, buflen, " ");
1719 if (ret < 0)
1720 return ret;
1721 buf += ret;
1722 buflen -= ret;
1723
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001724 /* Special case: @XXX */
1725 if (arg->value[0] == '@' && arg->ref)
1726 ref = ref->next;
1727
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001728 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001729 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301730 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001731 &buflen, 1);
1732 if (depth < 0)
1733 return depth;
1734 }
1735
1736 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001737 if (arg->value[0] == '@' && arg->ref)
1738 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1739 arg->ref->offset);
1740 else
1741 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001742 if (ret < 0)
1743 return ret;
1744 buf += ret;
1745 buflen -= ret;
1746
1747 /* Closing */
1748 while (depth--) {
1749 ret = e_snprintf(buf, buflen, ")");
1750 if (ret < 0)
1751 return ret;
1752 buf += ret;
1753 buflen -= ret;
1754 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001755 /* Print argument type */
1756 if (arg->type) {
1757 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1758 if (ret <= 0)
1759 return ret;
1760 buf += ret;
1761 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001762
1763 return buf - tmp;
1764}
1765
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301766char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001767{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301768 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001769 char *buf;
1770 int i, len, ret;
1771
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001772 buf = zalloc(MAX_CMDLEN);
1773 if (buf == NULL)
1774 return NULL;
1775
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001776 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1777 tev->group, tev->event);
1778 if (len <= 0)
1779 goto error;
1780
1781 /* Uprobes must have tp->address and tp->module */
1782 if (tev->uprobes && (!tp->address || !tp->module))
1783 goto error;
1784
1785 /* Use the tp->address for uprobes */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301786 if (tev->uprobes)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001787 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s:0x%lx",
1788 tp->module, tp->address);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301789 else
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001790 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s%s+%lu",
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301791 tp->module ?: "", tp->module ? ":" : "",
1792 tp->symbol, tp->offset);
1793
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001794 if (ret <= 0)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001795 goto error;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001796 len += ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001797
1798 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301799 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001800 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001801 if (ret <= 0)
1802 goto error;
1803 len += ret;
1804 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001805
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001806 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001807error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001808 free(buf);
1809 return NULL;
1810}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001811
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001812static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1813 struct perf_probe_point *pp,
1814 bool is_kprobe)
1815{
1816 struct symbol *sym = NULL;
1817 struct map *map;
Wang Nane4863672015-08-25 13:27:35 +00001818 u64 addr = tp->address;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001819 int ret = -ENOENT;
1820
1821 if (!is_kprobe) {
1822 map = dso__new_map(tp->module);
1823 if (!map)
1824 goto out;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001825 sym = map__find_symbol(map, addr, NULL);
1826 } else {
Wang Nane4863672015-08-25 13:27:35 +00001827 if (tp->symbol)
1828 addr = kernel_get_symbol_address_by_name(tp->symbol, true);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001829 if (addr) {
1830 addr += tp->offset;
1831 sym = __find_kernel_function(addr, &map);
1832 }
1833 }
1834 if (!sym)
1835 goto out;
1836
1837 pp->retprobe = tp->retprobe;
1838 pp->offset = addr - map->unmap_ip(map, sym->start);
1839 pp->function = strdup(sym->name);
1840 ret = pp->function ? 0 : -ENOMEM;
1841
1842out:
1843 if (map && !is_kprobe) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001844 map__put(map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001845 }
1846
1847 return ret;
1848}
1849
1850static int convert_to_perf_probe_point(struct probe_trace_point *tp,
1851 struct perf_probe_point *pp,
1852 bool is_kprobe)
1853{
1854 char buf[128];
1855 int ret;
1856
1857 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1858 if (!ret)
1859 return 0;
1860 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1861 if (!ret)
1862 return 0;
1863
1864 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1865
1866 if (tp->symbol) {
1867 pp->function = strdup(tp->symbol);
1868 pp->offset = tp->offset;
Wang Nan614e2fd2015-08-26 10:57:42 +00001869 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001870 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
1871 if (ret < 0)
1872 return ret;
1873 pp->function = strdup(buf);
1874 pp->offset = 0;
1875 }
1876 if (pp->function == NULL)
1877 return -ENOMEM;
1878
1879 pp->retprobe = tp->retprobe;
1880
1881 return 0;
1882}
1883
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301884static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301885 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001886{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001887 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001888 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001889
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001890 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001891 pev->event = strdup(tev->event);
1892 pev->group = strdup(tev->group);
1893 if (pev->event == NULL || pev->group == NULL)
1894 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001895
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001896 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001897 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001898 if (ret < 0)
1899 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001900
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001901 /* Convert trace_arg to probe_arg */
1902 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001903 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1904 if (pev->args == NULL)
1905 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001906 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001907 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001908 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001909 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301910 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001911 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001912 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001913 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001914 if (pev->args[i].name == NULL && ret >= 0)
1915 ret = -ENOMEM;
1916 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001917
1918 if (ret < 0)
1919 clear_perf_probe_event(pev);
1920
1921 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001922}
1923
1924void clear_perf_probe_event(struct perf_probe_event *pev)
1925{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001926 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001927 int i;
1928
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001929 free(pev->event);
1930 free(pev->group);
Masami Hiramatsu7afb3fa2015-04-01 19:25:39 +09001931 free(pev->target);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001932 clear_perf_probe_point(&pev->point);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001933
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001934 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001935 free(pev->args[i].name);
1936 free(pev->args[i].var);
1937 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001938 field = pev->args[i].field;
1939 while (field) {
1940 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001941 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001942 free(field);
1943 field = next;
1944 }
1945 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001946 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001947 memset(pev, 0, sizeof(*pev));
1948}
1949
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09001950void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001951{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301952 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001953 int i;
1954
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001955 free(tev->event);
1956 free(tev->group);
1957 free(tev->point.symbol);
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001958 free(tev->point.realname);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001959 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001960 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001961 free(tev->args[i].name);
1962 free(tev->args[i].value);
1963 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001964 ref = tev->args[i].ref;
1965 while (ref) {
1966 next = ref->next;
1967 free(ref);
1968 ref = next;
1969 }
1970 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001971 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001972 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001973}
1974
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09001975struct kprobe_blacklist_node {
1976 struct list_head list;
1977 unsigned long start;
1978 unsigned long end;
1979 char *symbol;
1980};
1981
1982static void kprobe_blacklist__delete(struct list_head *blacklist)
1983{
1984 struct kprobe_blacklist_node *node;
1985
1986 while (!list_empty(blacklist)) {
1987 node = list_first_entry(blacklist,
1988 struct kprobe_blacklist_node, list);
1989 list_del(&node->list);
1990 free(node->symbol);
1991 free(node);
1992 }
1993}
1994
1995static int kprobe_blacklist__load(struct list_head *blacklist)
1996{
1997 struct kprobe_blacklist_node *node;
1998 const char *__debugfs = debugfs_find_mountpoint();
1999 char buf[PATH_MAX], *p;
2000 FILE *fp;
2001 int ret;
2002
2003 if (__debugfs == NULL)
2004 return -ENOTSUP;
2005
2006 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2007 if (ret < 0)
2008 return ret;
2009
2010 fp = fopen(buf, "r");
2011 if (!fp)
2012 return -errno;
2013
2014 ret = 0;
2015 while (fgets(buf, PATH_MAX, fp)) {
2016 node = zalloc(sizeof(*node));
2017 if (!node) {
2018 ret = -ENOMEM;
2019 break;
2020 }
2021 INIT_LIST_HEAD(&node->list);
2022 list_add_tail(&node->list, blacklist);
2023 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2024 ret = -EINVAL;
2025 break;
2026 }
2027 p = strchr(buf, '\t');
2028 if (p) {
2029 p++;
2030 if (p[strlen(p) - 1] == '\n')
2031 p[strlen(p) - 1] = '\0';
2032 } else
2033 p = (char *)"unknown";
2034 node->symbol = strdup(p);
2035 if (!node->symbol) {
2036 ret = -ENOMEM;
2037 break;
2038 }
2039 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2040 node->start, node->end, node->symbol);
2041 ret++;
2042 }
2043 if (ret < 0)
2044 kprobe_blacklist__delete(blacklist);
2045 fclose(fp);
2046
2047 return ret;
2048}
2049
2050static struct kprobe_blacklist_node *
2051kprobe_blacklist__find_by_address(struct list_head *blacklist,
2052 unsigned long address)
2053{
2054 struct kprobe_blacklist_node *node;
2055
2056 list_for_each_entry(node, blacklist, list) {
2057 if (node->start <= address && address <= node->end)
2058 return node;
2059 }
2060
2061 return NULL;
2062}
2063
Masami Hiramatsub0312202015-06-16 20:50:55 +09002064static LIST_HEAD(kprobe_blacklist);
2065
2066static void kprobe_blacklist__init(void)
2067{
2068 if (!list_empty(&kprobe_blacklist))
2069 return;
2070
2071 if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2072 pr_debug("No kprobe blacklist support, ignored\n");
2073}
2074
2075static void kprobe_blacklist__release(void)
2076{
2077 kprobe_blacklist__delete(&kprobe_blacklist);
2078}
2079
2080static bool kprobe_blacklist__listed(unsigned long address)
2081{
2082 return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2083}
2084
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002085static int perf_probe_event__sprintf(const char *group, const char *event,
2086 struct perf_probe_event *pev,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002087 const char *module,
2088 struct strbuf *result)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002089{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05002090 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002091 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002092 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002093
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002094 /* Synthesize only event probe point */
2095 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002096 if (!place)
2097 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002098
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002099 ret = e_snprintf(buf, 128, "%s:%s", group, event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05002100 if (ret < 0)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002101 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002102
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002103 strbuf_addf(result, " %-20s (on %s", buf, place);
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002104 if (module)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002105 strbuf_addf(result, " in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002106
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002107 if (pev->nargs > 0) {
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002108 strbuf_addstr(result, " with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002109 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002110 ret = synthesize_perf_probe_arg(&pev->args[i],
2111 buf, 128);
2112 if (ret < 0)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002113 goto out;
2114 strbuf_addf(result, " %s", buf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002115 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002116 }
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002117 strbuf_addch(result, ')');
2118out:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002119 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002120 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002121}
2122
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002123/* Show an event */
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002124static int show_perf_probe_event(const char *group, const char *event,
2125 struct perf_probe_event *pev,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002126 const char *module, bool use_stdout)
2127{
2128 struct strbuf buf = STRBUF_INIT;
2129 int ret;
2130
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002131 ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002132 if (ret >= 0) {
2133 if (use_stdout)
2134 printf("%s\n", buf.buf);
2135 else
2136 pr_info("%s\n", buf.buf);
2137 }
2138 strbuf_release(&buf);
2139
2140 return ret;
2141}
2142
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002143static bool filter_probe_trace_event(struct probe_trace_event *tev,
2144 struct strfilter *filter)
2145{
2146 char tmp[128];
2147
2148 /* At first, check the event name itself */
2149 if (strfilter__compare(filter, tev->event))
2150 return true;
2151
2152 /* Next, check the combination of name and group */
2153 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2154 return false;
2155 return strfilter__compare(filter, tmp);
2156}
2157
2158static int __show_perf_probe_events(int fd, bool is_kprobe,
2159 struct strfilter *filter)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002160{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302161 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302162 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002163 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002164 struct strlist *rawlist;
2165 struct str_node *ent;
2166
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002167 memset(&tev, 0, sizeof(tev));
2168 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05002169
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002170 rawlist = probe_file__get_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002171 if (!rawlist)
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002172 return -ENOMEM;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002173
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002174 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302175 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002176 if (ret >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002177 if (!filter_probe_trace_event(&tev, filter))
2178 goto next;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302179 ret = convert_to_perf_probe_event(&tev, &pev,
2180 is_kprobe);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002181 if (ret < 0)
2182 goto next;
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002183 ret = show_perf_probe_event(pev.group, pev.event,
2184 &pev, tev.point.module,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002185 true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002186 }
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002187next:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002188 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302189 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002190 if (ret < 0)
2191 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002192 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002193 strlist__delete(rawlist);
Masami Hiramatsu7737af02015-06-17 23:58:54 +09002194 /* Cleanup cached debuginfo if needed */
2195 debuginfo_cache__exit();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002196
2197 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002198}
2199
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302200/* List up current perf-probe events */
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002201int show_perf_probe_events(struct strfilter *filter)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302202{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002203 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302204
2205 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302206
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002207 ret = init_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302208 if (ret < 0)
2209 return ret;
2210
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002211 ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2212 if (ret < 0)
2213 return ret;
2214
2215 if (kp_fd >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002216 ret = __show_perf_probe_events(kp_fd, true, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002217 if (up_fd >= 0 && ret >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002218 ret = __show_perf_probe_events(up_fd, false, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002219 if (kp_fd > 0)
2220 close(kp_fd);
2221 if (up_fd > 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002222 close(up_fd);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002223 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302224
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002225 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002226}
2227
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002228static int get_new_event_name(char *buf, size_t len, const char *base,
2229 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002230{
2231 int i, ret;
Masami Hiramatsu35a23ff92015-06-12 14:08:20 +09002232 char *p;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002233
Naveen N. Rao3099c022015-04-28 17:35:34 +05302234 if (*base == '.')
2235 base++;
2236
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002237 /* Try no suffix */
2238 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002239 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002240 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002241 return ret;
2242 }
Masami Hiramatsu35a23ff92015-06-12 14:08:20 +09002243 /* Cut off the postfixes (e.g. .const, .isra)*/
2244 p = strchr(buf, '.');
2245 if (p && p != buf)
2246 *p = '\0';
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002247 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002248 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002249
Masami Hiramatsud761b082009-12-15 10:32:25 -05002250 if (!allow_suffix) {
2251 pr_warning("Error: event \"%s\" already exists. "
2252 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002253 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002254 }
2255
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002256 /* Try to add suffix */
2257 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002258 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002259 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002260 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002261 return ret;
2262 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002263 if (!strlist__has_entry(namelist, buf))
2264 break;
2265 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002266 if (i == MAX_EVENT_INDEX) {
2267 pr_warning("Too many events are on the same function.\n");
2268 ret = -ERANGE;
2269 }
2270
2271 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002272}
2273
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002274/* Warn if the current kernel's uprobe implementation is old */
2275static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2276{
2277 int i;
2278 char *buf = synthesize_probe_trace_command(tev);
2279
2280 /* Old uprobe event doesn't support memory dereference */
2281 if (!tev->uprobes || tev->nargs == 0 || !buf)
2282 goto out;
2283
2284 for (i = 0; i < tev->nargs; i++)
2285 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2286 pr_warning("Please upgrade your kernel to at least "
2287 "3.14 to have access to feature %s\n",
2288 tev->args[i].value);
2289 break;
2290 }
2291out:
2292 free(buf);
2293}
2294
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002295/* Set new name from original perf_probe_event and namelist */
2296static int probe_trace_event__set_name(struct probe_trace_event *tev,
2297 struct perf_probe_event *pev,
2298 struct strlist *namelist,
2299 bool allow_suffix)
2300{
2301 const char *event, *group;
2302 char buf[64];
2303 int ret;
2304
2305 if (pev->event)
2306 event = pev->event;
2307 else
2308 if (pev->point.function && !strisglob(pev->point.function))
2309 event = pev->point.function;
2310 else
2311 event = tev->point.realname;
2312 if (pev->group)
2313 group = pev->group;
2314 else
2315 group = PERFPROBE_GROUP;
2316
2317 /* Get an unused new event name */
2318 ret = get_new_event_name(buf, 64, event,
2319 namelist, allow_suffix);
2320 if (ret < 0)
2321 return ret;
2322
2323 event = buf;
2324
2325 tev->event = strdup(event);
2326 tev->group = strdup(group);
2327 if (tev->event == NULL || tev->group == NULL)
2328 return -ENOMEM;
2329
2330 /* Add added event name to namelist */
2331 strlist__add(namelist, event);
2332 return 0;
2333}
2334
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302335static int __add_probe_trace_events(struct perf_probe_event *pev,
2336 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002337 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002338{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002339 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302340 struct probe_trace_event *tev = NULL;
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002341 const char *event = NULL, *group = NULL;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002342 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002343
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002344 fd = probe_file__open(PF_FL_RW | (pev->uprobes ? PF_FL_UPROBE : 0));
2345 if (fd < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002346 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002347
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002348 /* Get current event names */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002349 namelist = probe_file__get_namelist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002350 if (!namelist) {
2351 pr_debug("Failed to get current event list.\n");
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002352 ret = -ENOMEM;
2353 goto close_out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002354 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002355
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002356 ret = 0;
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002357 pr_info("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002358 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002359 tev = &tevs[i];
Masami Hiramatsub0312202015-06-16 20:50:55 +09002360 /* Skip if the symbol is out of .text or blacklisted */
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +09002361 if (!tev->point.symbol)
2362 continue;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002363
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002364 /* Set new name for tev (and update namelist) */
2365 ret = probe_trace_event__set_name(tev, pev, namelist,
2366 allow_suffix);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002367 if (ret < 0)
2368 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002369
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002370 ret = probe_file__add_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002371 if (ret < 0)
2372 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002373
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002374 /* We use tev's name for showing new events */
2375 show_perf_probe_event(tev->group, tev->event, pev,
2376 tev->point.module, false);
2377 /* Save the last valid name */
2378 event = tev->event;
2379 group = tev->group;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002380
2381 /*
2382 * Probes after the first probe which comes from same
2383 * user input are always allowed to add suffix, because
2384 * there might be several addresses corresponding to
2385 * one code line.
2386 */
2387 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002388 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002389 if (ret == -EINVAL && pev->uprobes)
2390 warn_uprobe_event_compat(tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002391
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002392 /* Note that it is possible to skip all events because of blacklist */
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002393 if (ret >= 0 && event) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002394 /* Show how to use the event. */
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002395 pr_info("\nYou can now use it in all perf tools, such as:\n\n");
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002396 pr_info("\tperf record -e %s:%s -aR sleep 1\n\n", group, event);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002397 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05002398
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002399 strlist__delete(namelist);
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002400close_out:
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002401 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002402 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002403}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002404
Wang Nan6bb536c2015-05-29 09:45:47 +00002405static int find_probe_functions(struct map *map, char *name,
2406 struct symbol **syms)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002407{
Namhyung Kim564c62a2015-01-14 20:18:07 +09002408 int found = 0;
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002409 struct symbol *sym;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002410 struct rb_node *tmp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002411
Wang Nan75e4a2a2015-05-15 12:14:44 +00002412 if (map__load(map, NULL) < 0)
2413 return 0;
2414
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002415 map__for_each_symbol(map, sym, tmp) {
Wang Nan6bb536c2015-05-29 09:45:47 +00002416 if (strglobmatch(sym->name, name)) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002417 found++;
Wang Nan6bb536c2015-05-29 09:45:47 +00002418 if (syms && found < probe_conf.max_probes)
2419 syms[found - 1] = sym;
2420 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002421 }
Namhyung Kim564c62a2015-01-14 20:18:07 +09002422
2423 return found;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002424}
2425
2426#define strdup_or_goto(str, label) \
2427 ({ char *__p = strdup(str); if (!__p) goto label; __p; })
2428
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302429void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2430 struct probe_trace_event *tev __maybe_unused,
2431 struct map *map __maybe_unused) { }
2432
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002433/*
2434 * Find probe function addresses from map.
2435 * Return an error or the number of found probe_trace_event
2436 */
2437static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002438 struct probe_trace_event **tevs)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002439{
2440 struct map *map = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002441 struct ref_reloc_sym *reloc_sym = NULL;
2442 struct symbol *sym;
Wang Nan6bb536c2015-05-29 09:45:47 +00002443 struct symbol **syms = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002444 struct probe_trace_event *tev;
2445 struct perf_probe_point *pp = &pev->point;
2446 struct probe_trace_point *tp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002447 int num_matched_functions;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002448 int ret, i, j, skipped = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002449
Masami Hiramatsu44225522015-05-08 10:03:28 +09002450 map = get_target_map(pev->target, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002451 if (!map) {
2452 ret = -EINVAL;
2453 goto out;
2454 }
2455
Wang Nan6bb536c2015-05-29 09:45:47 +00002456 syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2457 if (!syms) {
2458 ret = -ENOMEM;
2459 goto out;
2460 }
2461
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002462 /*
2463 * Load matched symbols: Since the different local symbols may have
2464 * same name but different addresses, this lists all the symbols.
2465 */
Wang Nan6bb536c2015-05-29 09:45:47 +00002466 num_matched_functions = find_probe_functions(map, pp->function, syms);
Namhyung Kim564c62a2015-01-14 20:18:07 +09002467 if (num_matched_functions == 0) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002468 pr_err("Failed to find symbol %s in %s\n", pp->function,
Masami Hiramatsu44225522015-05-08 10:03:28 +09002469 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002470 ret = -ENOENT;
2471 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002472 } else if (num_matched_functions > probe_conf.max_probes) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002473 pr_err("Too many functions matched in %s\n",
Masami Hiramatsu44225522015-05-08 10:03:28 +09002474 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002475 ret = -E2BIG;
2476 goto out;
2477 }
2478
Namhyung Kim25dd9172015-01-14 20:18:08 +09002479 if (!pev->uprobes && !pp->retprobe) {
He Kuang0560a0c2015-03-20 09:56:56 +08002480 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002481 if (!reloc_sym) {
2482 pr_warning("Relocated base symbol is not found!\n");
2483 ret = -EINVAL;
2484 goto out;
2485 }
2486 }
2487
2488 /* Setup result trace-probe-events */
2489 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2490 if (!*tevs) {
2491 ret = -ENOMEM;
2492 goto out;
2493 }
2494
2495 ret = 0;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002496
Wang Nan6bb536c2015-05-29 09:45:47 +00002497 for (j = 0; j < num_matched_functions; j++) {
2498 sym = syms[j];
2499
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002500 tev = (*tevs) + ret;
2501 tp = &tev->point;
2502 if (ret == num_matched_functions) {
2503 pr_warning("Too many symbols are listed. Skip it.\n");
2504 break;
2505 }
2506 ret++;
2507
2508 if (pp->offset > sym->end - sym->start) {
2509 pr_warning("Offset %ld is bigger than the size of %s\n",
2510 pp->offset, sym->name);
2511 ret = -ENOENT;
2512 goto err_out;
2513 }
2514 /* Add one probe point */
2515 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002516 /* If we found a wrong one, mark it by NULL symbol */
2517 if (!pev->uprobes &&
2518 kprobe_warn_out_range(sym->name, tp->address)) {
2519 tp->symbol = NULL; /* Skip it */
2520 skipped++;
2521 } else if (reloc_sym) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002522 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2523 tp->offset = tp->address - reloc_sym->addr;
2524 } else {
2525 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2526 tp->offset = pp->offset;
2527 }
Wang Nan6bb536c2015-05-29 09:45:47 +00002528 tp->realname = strdup_or_goto(sym->name, nomem_out);
2529
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002530 tp->retprobe = pp->retprobe;
Masami Hiramatsu44225522015-05-08 10:03:28 +09002531 if (pev->target)
2532 tev->point.module = strdup_or_goto(pev->target,
2533 nomem_out);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002534 tev->uprobes = pev->uprobes;
2535 tev->nargs = pev->nargs;
2536 if (tev->nargs) {
2537 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2538 tev->nargs);
2539 if (tev->args == NULL)
2540 goto nomem_out;
2541 }
2542 for (i = 0; i < tev->nargs; i++) {
2543 if (pev->args[i].name)
2544 tev->args[i].name =
2545 strdup_or_goto(pev->args[i].name,
2546 nomem_out);
2547
2548 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2549 nomem_out);
2550 if (pev->args[i].type)
2551 tev->args[i].type =
2552 strdup_or_goto(pev->args[i].type,
2553 nomem_out);
2554 }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302555 arch__fix_tev_from_maps(pev, tev, map);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002556 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002557 if (ret == skipped) {
2558 ret = -ENOENT;
2559 goto err_out;
2560 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002561
2562out:
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002563 put_target_map(map, pev->uprobes);
Wang Nan6bb536c2015-05-29 09:45:47 +00002564 free(syms);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002565 return ret;
2566
2567nomem_out:
2568 ret = -ENOMEM;
2569err_out:
2570 clear_probe_trace_events(*tevs, num_matched_functions);
2571 zfree(tevs);
2572 goto out;
2573}
2574
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302575bool __weak arch__prefers_symtab(void) { return false; }
2576
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302577static int convert_to_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002578 struct probe_trace_event **tevs)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002579{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002580 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002581
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002582 if (pev->uprobes && !pev->group) {
2583 /* Replace group name if not given */
Masami Hiramatsu44225522015-05-08 10:03:28 +09002584 ret = convert_exec_to_group(pev->target, &pev->group);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002585 if (ret != 0) {
2586 pr_warning("Failed to make a group name.\n");
2587 return ret;
2588 }
2589 }
2590
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302591 if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002592 ret = find_probe_trace_events_from_map(pev, tevs);
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302593 if (ret > 0)
2594 return ret; /* Found in symbol table */
2595 }
2596
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002597 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002598 ret = try_to_find_probe_trace_events(pev, tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002599 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002600 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002601
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002602 return find_probe_trace_events_from_map(pev, tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002603}
2604
2605struct __event_package {
2606 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302607 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002608 int ntevs;
2609};
2610
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002611int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002612{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002613 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002614 struct __event_package *pkgs;
2615
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302616 ret = 0;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002617 pkgs = zalloc(sizeof(struct __event_package) * npevs);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302618
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002619 if (pkgs == NULL)
2620 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002621
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002622 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002623 if (ret < 0) {
2624 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002625 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002626 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002627
2628 /* Loop 1: convert all events */
2629 for (i = 0; i < npevs; i++) {
2630 pkgs[i].pev = &pevs[i];
Masami Hiramatsub0312202015-06-16 20:50:55 +09002631 /* Init kprobe blacklist if needed */
2632 if (!pkgs[i].pev->uprobes)
2633 kprobe_blacklist__init();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002634 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302635 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002636 &pkgs[i].tevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002637 if (ret < 0)
2638 goto end;
2639 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002640 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002641 /* This just release blacklist only if allocated */
2642 kprobe_blacklist__release();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002643
2644 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03002645 for (i = 0; i < npevs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302646 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002647 pkgs[i].ntevs,
2648 probe_conf.force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03002649 if (ret < 0)
2650 break;
2651 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002652end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002653 /* Loop 3: cleanup and free trace events */
2654 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002655 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302656 clear_probe_trace_event(&pkgs[i].tevs[j]);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002657 zfree(&pkgs[i].tevs);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002658 }
2659 free(pkgs);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002660 exit_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002661
2662 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002663}
2664
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002665int del_perf_probe_events(struct strfilter *filter)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002666{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002667 int ret, ret2, ufd = -1, kfd = -1;
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002668 char *str = strfilter__string(filter);
2669
2670 if (!str)
2671 return -EINVAL;
2672
2673 pr_debug("Delete filter: \'%s\'\n", str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002674
Masami Hiramatsufa282442009-12-08 17:03:23 -05002675 /* Get current event names */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002676 ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
2677 if (ret < 0)
2678 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302679
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002680 ret = probe_file__del_events(kfd, filter);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002681 if (ret < 0 && ret != -ENOENT)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302682 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002683
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002684 ret2 = probe_file__del_events(ufd, filter);
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002685 if (ret2 < 0 && ret2 != -ENOENT) {
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002686 ret = ret2;
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002687 goto error;
2688 }
2689 if (ret == -ENOENT && ret2 == -ENOENT)
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002690 pr_debug("\"%s\" does not hit any event.\n", str);
2691 /* Note that this is silently ignored */
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002692 ret = 0;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302693
2694error:
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002695 if (kfd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302696 close(kfd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002697 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302698 close(ufd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002699out:
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002700 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002701
2702 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002703}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302704
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002705/* TODO: don't use a global variable for filter ... */
2706static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002707
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002708/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002709 * If a symbol corresponds to a function with global binding and
2710 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002711 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002712static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002713 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002714{
Namhyung Kime578da32015-03-06 16:31:29 +09002715 if (strfilter__compare(available_func_filter, sym->name))
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002716 return 0;
2717 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002718}
2719
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002720int show_available_funcs(const char *target, struct strfilter *_filter,
2721 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002722{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002723 struct map *map;
2724 int ret;
2725
2726 ret = init_symbol_maps(user);
2727 if (ret < 0)
2728 return ret;
2729
2730 /* Get a symbol map */
2731 if (user)
2732 map = dso__new_map(target);
2733 else
2734 map = kernel_get_module_map(target);
2735 if (!map) {
2736 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002737 return -EINVAL;
2738 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002739
2740 /* Load symbols with given filter */
2741 available_func_filter = _filter;
2742 if (map__load(map, filter_available_functions)) {
2743 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2744 goto end;
2745 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002746 if (!dso__sorted_by_name(map->dso, map->type))
2747 dso__sort_by_name(map->dso, map->type);
2748
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002749 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302750 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002751 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2752end:
2753 if (user) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03002754 map__put(map);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002755 }
2756 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302757
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002758 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302759}
2760