blob: cbc8a8bf0f362812d9e906773fc7c8d4b2a7a297 [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"
Jiri Olsa4605eab2015-09-02 09:56:43 +020043#include <api/fs/fs.h>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030044#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050045#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040046#include "probe-finder.h"
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090047#include "probe-file.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053048#include "session.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050049
50#define MAX_CMDLEN 256
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050051#define PERFPROBE_GROUP "probe"
52
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040053bool probe_event_dry_run; /* Dry run flag */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +090054struct probe_conf probe_conf;
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040055
Masami Hiramatsu146a1432010-04-12 13:17:42 -040056#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050057
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090058int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050059{
60 int ret;
61 va_list ap;
62 va_start(ap, format);
63 ret = vsnprintf(str, size, format, ap);
64 va_end(ap);
65 if (ret >= (int)size)
66 ret = -E2BIG;
67 return ret;
68}
69
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000070static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040071
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090072/* Initialize symbol maps and path of vmlinux/modules */
Namhyung Kim9bae1e82015-09-10 11:27:05 +090073int init_probe_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040074{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040075 int ret;
76
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040077 symbol_conf.sort_by_name = true;
Namhyung Kim680d9262015-03-06 16:31:27 +090078 symbol_conf.allow_aliases = true;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090079 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040080 if (ret < 0) {
81 pr_debug("Failed to init symbol map.\n");
82 goto out;
83 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040084
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000085 if (host_machine || user_only) /* already initialized */
86 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030087
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000088 if (symbol_conf.vmlinux_name)
89 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
90
91 host_machine = machine__new_host();
92 if (!host_machine) {
93 pr_debug("machine__new_host() failed.\n");
94 symbol__exit();
95 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090096 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -040097out:
98 if (ret < 0)
99 pr_warning("Failed to init vmlinux path.\n");
100 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400101}
102
Namhyung Kim9bae1e82015-09-10 11:27:05 +0900103void exit_probe_symbol_maps(void)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000104{
105 if (host_machine) {
106 machine__delete(host_machine);
107 host_machine = NULL;
108 }
109 symbol__exit();
110}
111
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900112static struct symbol *__find_kernel_function_by_name(const char *name,
113 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400114{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000115 return machine__find_kernel_function_by_name(host_machine, name, mapp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900116 NULL);
117}
118
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000119static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
120{
121 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
122}
123
124static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
125{
126 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
127 struct kmap *kmap;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300128 struct map *map = machine__kernel_map(host_machine);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000129
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300130 if (map__load(map, NULL) < 0)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000131 return NULL;
132
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300133 kmap = map__kmap(map);
Wang Nanba927322015-04-07 08:22:45 +0000134 if (!kmap)
135 return NULL;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000136 return kmap->ref_reloc_sym;
137}
138
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900139static int kernel_get_symbol_address_by_name(const char *name, u64 *addr,
140 bool reloc, bool reladdr)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000141{
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)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900149 *addr = (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000150 else {
151 sym = __find_kernel_function_by_name(name, &map);
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900152 if (!sym)
153 return -ENOENT;
154 *addr = map->unmap_ip(map, sym->start) -
155 ((reloc) ? 0 : map->reloc) -
156 ((reladdr) ? map->start : 0);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000157 }
158 return 0;
159}
160
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900161static struct map *kernel_get_module_map(const char *module)
162{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000163 struct map_groups *grp = &host_machine->kmaps;
Arnaldo Carvalho de Melo1eee78a2015-05-22 12:58:53 -0300164 struct maps *maps = &grp->maps[MAP__FUNCTION];
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300165 struct map *pos;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900166
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900167 /* A file path -- this is an offline module */
168 if (module && strchr(module, '/'))
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300169 return machine__findnew_module_map(host_machine, 0, module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900170
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900171 if (!module)
172 module = "kernel";
173
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300174 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900175 if (strncmp(pos->dso->short_name + 1, module,
176 pos->dso->short_name_len - 2) == 0) {
177 return pos;
178 }
179 }
180 return NULL;
181}
182
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900183static struct map *get_target_map(const char *target, bool user)
184{
185 /* Init maps of given executable or kernel */
186 if (user)
187 return dso__new_map(target);
188 else
189 return kernel_get_module_map(target);
190}
191
192static void put_target_map(struct map *map, bool user)
193{
194 if (map && user) {
195 /* Only the user map needs to be released */
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -0300196 map__put(map);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900197 }
198}
199
200
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000201static int convert_exec_to_group(const char *exec, char **result)
202{
203 char *ptr1, *ptr2, *exec_copy;
204 char buf[64];
205 int ret;
206
207 exec_copy = strdup(exec);
208 if (!exec_copy)
209 return -ENOMEM;
210
211 ptr1 = basename(exec_copy);
212 if (!ptr1) {
213 ret = -EINVAL;
214 goto out;
215 }
216
217 ptr2 = strpbrk(ptr1, "-._");
218 if (ptr2)
219 *ptr2 = '\0';
220 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
221 if (ret < 0)
222 goto out;
223
224 *result = strdup(buf);
225 ret = *result ? 0 : -ENOMEM;
226
227out:
228 free(exec_copy);
229 return ret;
230}
231
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900232static void clear_perf_probe_point(struct perf_probe_point *pp)
233{
234 free(pp->file);
235 free(pp->function);
236 free(pp->lazy_line);
237}
238
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000239static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
240{
241 int i;
242
243 for (i = 0; i < ntevs; i++)
244 clear_probe_trace_event(tevs + i);
245}
246
Masami Hiramatsub0312202015-06-16 20:50:55 +0900247static bool kprobe_blacklist__listed(unsigned long address);
248static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
249{
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900250 u64 etext_addr = 0;
251 int ret;
He Kuang7c31bb82015-06-18 02:49:10 +0000252
Masami Hiramatsub0312202015-06-16 20:50:55 +0900253 /* Get the address of _etext for checking non-probable text symbol */
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900254 ret = kernel_get_symbol_address_by_name("_etext", &etext_addr,
255 false, false);
He Kuang7c31bb82015-06-18 02:49:10 +0000256
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900257 if (ret == 0 && etext_addr < address)
Masami Hiramatsub0312202015-06-16 20:50:55 +0900258 pr_warning("%s is out of .text, skip it.\n", symbol);
259 else if (kprobe_blacklist__listed(address))
260 pr_warning("%s is blacklisted function, skip it.\n", symbol);
261 else
262 return false;
263
264 return true;
265}
266
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530267/*
268 * NOTE:
269 * '.gnu.linkonce.this_module' section of kernel module elf directly
270 * maps to 'struct module' from linux/module.h. This section contains
271 * actual module name which will be used by kernel after loading it.
272 * But, we cannot use 'struct module' here since linux/module.h is not
273 * exposed to user-space. Offset of 'name' has remained same from long
274 * time, so hardcoding it here.
275 */
276#ifdef __LP64__
277#define MOD_NAME_OFFSET 24
278#else
279#define MOD_NAME_OFFSET 12
280#endif
281
282/*
283 * @module can be module name of module file path. In case of path,
284 * inspect elf and find out what is actual module name.
285 * Caller has to free mod_name after using it.
286 */
287static char *find_module_name(const char *module)
288{
289 int fd;
290 Elf *elf;
291 GElf_Ehdr ehdr;
292 GElf_Shdr shdr;
293 Elf_Data *data;
294 Elf_Scn *sec;
295 char *mod_name = NULL;
296
297 fd = open(module, O_RDONLY);
298 if (fd < 0)
299 return NULL;
300
301 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
302 if (elf == NULL)
303 goto elf_err;
304
305 if (gelf_getehdr(elf, &ehdr) == NULL)
306 goto ret_err;
307
308 sec = elf_section_by_name(elf, &ehdr, &shdr,
309 ".gnu.linkonce.this_module", NULL);
310 if (!sec)
311 goto ret_err;
312
313 data = elf_getdata(sec, NULL);
314 if (!data || !data->d_buf)
315 goto ret_err;
316
317 mod_name = strdup((char *)data->d_buf + MOD_NAME_OFFSET);
318
319ret_err:
320 elf_end(elf);
321elf_err:
322 close(fd);
323 return mod_name;
324}
325
Ingo Molnar89fe8082013-09-30 12:07:11 +0200326#ifdef HAVE_DWARF_SUPPORT
Wang Nan60fb7742015-05-28 02:25:05 +0000327
328static int kernel_get_module_dso(const char *module, struct dso **pdso)
329{
330 struct dso *dso;
331 struct map *map;
332 const char *vmlinux_name;
333 int ret = 0;
334
335 if (module) {
Arnaldo Carvalho de Melo266fa2b2015-09-24 11:24:18 -0300336 char module_name[128];
337
338 snprintf(module_name, sizeof(module_name), "[%s]", module);
339 map = map_groups__find_by_name(&host_machine->kmaps, MAP__FUNCTION, module_name);
340 if (map) {
341 dso = map->dso;
342 goto found;
Wang Nan60fb7742015-05-28 02:25:05 +0000343 }
344 pr_debug("Failed to find module %s.\n", module);
345 return -ENOENT;
346 }
347
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300348 map = machine__kernel_map(host_machine);
Wang Nan60fb7742015-05-28 02:25:05 +0000349 dso = map->dso;
350
351 vmlinux_name = symbol_conf.vmlinux_name;
352 dso->load_errno = 0;
353 if (vmlinux_name)
354 ret = dso__load_vmlinux(dso, map, vmlinux_name, false, NULL);
355 else
356 ret = dso__load_vmlinux_path(dso, map, NULL);
357found:
358 *pdso = dso;
359 return ret;
360}
361
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900362/*
363 * Some binaries like glibc have special symbols which are on the symbol
364 * table, but not in the debuginfo. If we can find the address of the
365 * symbol from map, we can translate the address back to the probe point.
366 */
367static int find_alternative_probe_point(struct debuginfo *dinfo,
368 struct perf_probe_point *pp,
369 struct perf_probe_point *result,
370 const char *target, bool uprobes)
371{
372 struct map *map = NULL;
373 struct symbol *sym;
374 u64 address = 0;
375 int ret = -ENOENT;
376
377 /* This can work only for function-name based one */
378 if (!pp->function || pp->file)
379 return -ENOTSUP;
380
381 map = get_target_map(target, uprobes);
382 if (!map)
383 return -EINVAL;
384
385 /* Find the address of given function */
386 map__for_each_symbol_by_name(map, pp->function, sym) {
Masami Hiramatsue6d7c912015-03-22 20:40:22 +0900387 if (uprobes)
388 address = sym->start;
389 else
390 address = map->unmap_ip(map, sym->start);
Namhyung Kime578da32015-03-06 16:31:29 +0900391 break;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900392 }
393 if (!address) {
394 ret = -ENOENT;
395 goto out;
396 }
Wang Nanf6c15622015-04-08 02:14:34 +0000397 pr_debug("Symbol %s address found : %" PRIx64 "\n",
398 pp->function, address);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900399
400 ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
401 result);
402 if (ret <= 0)
403 ret = (!ret) ? -ENOENT : ret;
404 else {
405 result->offset += pp->offset;
406 result->line += pp->line;
He Kuang9d7b45c2015-04-13 19:41:28 +0800407 result->retprobe = pp->retprobe;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900408 ret = 0;
409 }
410
411out:
412 put_target_map(map, uprobes);
413 return ret;
414
415}
416
417static int get_alternative_probe_event(struct debuginfo *dinfo,
418 struct perf_probe_event *pev,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900419 struct perf_probe_point *tmp)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900420{
421 int ret;
422
423 memcpy(tmp, &pev->point, sizeof(*tmp));
424 memset(&pev->point, 0, sizeof(pev->point));
425 ret = find_alternative_probe_point(dinfo, tmp, &pev->point,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900426 pev->target, pev->uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900427 if (ret < 0)
428 memcpy(&pev->point, tmp, sizeof(*tmp));
429
430 return ret;
431}
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000432
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900433static int get_alternative_line_range(struct debuginfo *dinfo,
434 struct line_range *lr,
435 const char *target, bool user)
436{
David Ahern6d4a4892015-03-11 10:36:20 -0400437 struct perf_probe_point pp = { .function = lr->function,
438 .file = lr->file,
439 .line = lr->start };
440 struct perf_probe_point result;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900441 int ret, len = 0;
442
David Ahern6d4a4892015-03-11 10:36:20 -0400443 memset(&result, 0, sizeof(result));
444
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900445 if (lr->end != INT_MAX)
446 len = lr->end - lr->start;
447 ret = find_alternative_probe_point(dinfo, &pp, &result,
448 target, user);
449 if (!ret) {
450 lr->function = result.function;
451 lr->file = result.file;
452 lr->start = result.line;
453 if (lr->end != INT_MAX)
454 lr->end = lr->start + len;
455 clear_perf_probe_point(&pp);
456 }
457 return ret;
458}
459
Masami Hiramatsuff741782011-06-27 16:27:39 +0900460/* Open new debuginfo of given module */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000461static struct debuginfo *open_debuginfo(const char *module, bool silent)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900462{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000463 const char *path = module;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900464 char reason[STRERR_BUFSIZE];
465 struct debuginfo *ret = NULL;
466 struct dso *dso = NULL;
467 int err;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900468
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000469 if (!module || !strchr(module, '/')) {
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900470 err = kernel_get_module_dso(module, &dso);
471 if (err < 0) {
472 if (!dso || dso->load_errno == 0) {
473 if (!strerror_r(-err, reason, STRERR_BUFSIZE))
474 strcpy(reason, "(unknown)");
475 } else
476 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000477 if (!silent)
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900478 pr_err("Failed to find the path for %s: %s\n",
479 module ?: "kernel", reason);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900480 return NULL;
481 }
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900482 path = dso->long_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900483 }
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000484 ret = debuginfo__new(path);
485 if (!ret && !silent) {
486 pr_warning("The %s file has no debug information.\n", path);
487 if (!module || !strtailcmp(path, ".ko"))
488 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
489 else
490 pr_warning("Rebuild with -g, ");
491 pr_warning("or install an appropriate debuginfo package.\n");
492 }
493 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400494}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300495
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900496/* For caching the last debuginfo */
497static struct debuginfo *debuginfo_cache;
498static char *debuginfo_cache_path;
499
500static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
501{
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900502 const char *path = module;
503
504 /* If the module is NULL, it should be the kernel. */
505 if (!module)
506 path = "kernel";
507
508 if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900509 goto out;
510
511 /* Copy module path */
512 free(debuginfo_cache_path);
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900513 debuginfo_cache_path = strdup(path);
514 if (!debuginfo_cache_path) {
515 debuginfo__delete(debuginfo_cache);
516 debuginfo_cache = NULL;
517 goto out;
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900518 }
519
520 debuginfo_cache = open_debuginfo(module, silent);
521 if (!debuginfo_cache)
522 zfree(&debuginfo_cache_path);
523out:
524 return debuginfo_cache;
525}
526
527static void debuginfo_cache__exit(void)
528{
529 debuginfo__delete(debuginfo_cache);
530 debuginfo_cache = NULL;
531 zfree(&debuginfo_cache_path);
532}
533
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000534
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000535static int get_text_start_address(const char *exec, unsigned long *address)
536{
537 Elf *elf;
538 GElf_Ehdr ehdr;
539 GElf_Shdr shdr;
540 int fd, ret = -ENOENT;
541
542 fd = open(exec, O_RDONLY);
543 if (fd < 0)
544 return -errno;
545
546 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900547 if (elf == NULL) {
548 ret = -EINVAL;
549 goto out_close;
550 }
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000551
552 if (gelf_getehdr(elf, &ehdr) == NULL)
553 goto out;
554
555 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
556 goto out;
557
558 *address = shdr.sh_addr - shdr.sh_offset;
559 ret = 0;
560out:
561 elf_end(elf);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900562out_close:
563 close(fd);
564
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000565 return ret;
566}
567
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000568/*
569 * Convert trace point to probe point with debuginfo
570 */
571static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
572 struct perf_probe_point *pp,
573 bool is_kprobe)
574{
575 struct debuginfo *dinfo = NULL;
576 unsigned long stext = 0;
577 u64 addr = tp->address;
578 int ret = -ENOENT;
579
580 /* convert the address to dwarf address */
581 if (!is_kprobe) {
582 if (!addr) {
583 ret = -EINVAL;
584 goto error;
585 }
586 ret = get_text_start_address(tp->module, &stext);
587 if (ret < 0)
588 goto error;
589 addr += stext;
Wang Nane4863672015-08-25 13:27:35 +0000590 } else if (tp->symbol) {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900591 /* If the module is given, this returns relative address */
592 ret = kernel_get_symbol_address_by_name(tp->symbol, &addr,
593 false, !!tp->module);
594 if (ret != 0)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000595 goto error;
596 addr += tp->offset;
597 }
598
599 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
600 tp->module ? : "kernel");
601
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900602 dinfo = debuginfo_cache__open(tp->module, verbose == 0);
603 if (dinfo)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000604 ret = debuginfo__find_probe_point(dinfo,
605 (unsigned long)addr, pp);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900606 else
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000607 ret = -ENOENT;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000608
609 if (ret > 0) {
610 pp->retprobe = tp->retprobe;
611 return 0;
612 }
613error:
614 pr_debug("Failed to find corresponding probes from debuginfo.\n");
615 return ret ? : -ENOENT;
616}
617
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000618static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
619 int ntevs, const char *exec)
620{
621 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000622 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000623
624 if (!exec)
625 return 0;
626
627 ret = get_text_start_address(exec, &stext);
628 if (ret < 0)
629 return ret;
630
631 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000632 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000633 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000634 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000635 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000636 ret = -ENOMEM;
637 break;
638 }
639 tevs[i].uprobes = true;
640 }
641
642 return ret;
643}
644
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900645static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
646 int ntevs, const char *module)
647{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900648 int i, ret = 0;
Ravi Bangoria63a29612016-04-26 19:55:41 +0530649 char *mod_name = NULL;
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900650
651 if (!module)
652 return 0;
653
Ravi Bangoria63a29612016-04-26 19:55:41 +0530654 mod_name = find_module_name(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900655
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900656 for (i = 0; i < ntevs; i++) {
Ravi Bangoria63a29612016-04-26 19:55:41 +0530657 tevs[i].point.module =
658 strdup(mod_name ? mod_name : module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900659 if (!tevs[i].point.module) {
660 ret = -ENOMEM;
661 break;
662 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900663 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900664
Ravi Bangoria63a29612016-04-26 19:55:41 +0530665 free(mod_name);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900666 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900667}
668
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000669/* Post processing the probe events */
670static int post_process_probe_trace_events(struct probe_trace_event *tevs,
671 int ntevs, const char *module,
672 bool uprobe)
673{
674 struct ref_reloc_sym *reloc_sym;
675 char *tmp;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900676 int i, skipped = 0;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000677
678 if (uprobe)
679 return add_exec_to_probe_trace_events(tevs, ntevs, module);
680
681 /* Note that currently ref_reloc_sym based probe is not for drivers */
682 if (module)
683 return add_module_to_probe_trace_events(tevs, ntevs, module);
684
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000685 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000686 if (!reloc_sym) {
687 pr_warning("Relocated base symbol is not found!\n");
688 return -EINVAL;
689 }
690
691 for (i = 0; i < ntevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +0900692 if (!tevs[i].point.address || tevs[i].point.retprobe)
693 continue;
694 /* If we found a wrong one, mark it by NULL symbol */
695 if (kprobe_warn_out_range(tevs[i].point.symbol,
696 tevs[i].point.address)) {
697 tmp = NULL;
698 skipped++;
699 } else {
700 tmp = strdup(reloc_sym->name);
701 if (!tmp)
702 return -ENOMEM;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000703 }
Masami Hiramatsub0312202015-06-16 20:50:55 +0900704 /* If we have no realname, use symbol for it */
705 if (!tevs[i].point.realname)
706 tevs[i].point.realname = tevs[i].point.symbol;
707 else
708 free(tevs[i].point.symbol);
709 tevs[i].point.symbol = tmp;
710 tevs[i].point.offset = tevs[i].point.address -
711 reloc_sym->unrelocated_addr;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000712 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900713 return skipped;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000714}
715
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300716/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530717static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900718 struct probe_trace_event **tevs)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300719{
720 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900721 struct perf_probe_point tmp;
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530722 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900723 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300724
Masami Hiramatsu44225522015-05-08 10:03:28 +0900725 dinfo = open_debuginfo(pev->target, !need_dwarf);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900726 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000727 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900728 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900729 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300730 return 0;
731 }
732
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000733 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900734 /* Searching trace events corresponding to a probe event */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900735 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900736
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900737 if (ntevs == 0) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900738 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900739 if (!ret) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900740 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900741 /*
742 * Write back to the original probe_event for
743 * setting appropriate (user given) event name
744 */
745 clear_perf_probe_point(&pev->point);
746 memcpy(&pev->point, &tmp, sizeof(tmp));
747 }
748 }
749
Masami Hiramatsuff741782011-06-27 16:27:39 +0900750 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300751
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400752 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000753 pr_debug("Found %d probe_trace_events.\n", ntevs);
754 ret = post_process_probe_trace_events(*tevs, ntevs,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900755 pev->target, pev->uprobes);
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900756 if (ret < 0 || ret == ntevs) {
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000757 clear_probe_trace_events(*tevs, ntevs);
758 zfree(tevs);
759 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900760 if (ret != ntevs)
761 return ret < 0 ? ret : ntevs;
762 ntevs = 0;
763 /* Fall through */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400764 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300765
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400766 if (ntevs == 0) { /* No error but failed to find probe point. */
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900767 pr_warning("Probe point '%s' not found.\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400768 synthesize_perf_probe_point(&pev->point));
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900769 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400770 }
771 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400772 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
Wang Nan1c0bd0e2015-08-21 10:09:02 +0000773 if (ntevs < 0) {
774 if (ntevs == -EBADF)
775 pr_warning("Warning: No dwarf info found in the vmlinux - "
776 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400777 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900778 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400779 return 0;
780 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300781 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400782 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300783}
784
785#define LINEBUF_SIZE 256
786#define NR_ADDITIONAL_LINES 2
787
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100788static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300789{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000790 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100791 const char *color = show_num ? "" : PERF_COLOR_BLUE;
792 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300793
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100794 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300795 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
796 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100797 if (skip)
798 continue;
799 if (!prefix) {
800 prefix = show_num ? "%7d " : " ";
801 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300802 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100803 color_fprintf(stdout, color, "%s", buf);
804
805 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400806
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100807 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300808error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100809 if (ferror(fp)) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000810 pr_warning("File read error: %s\n",
811 strerror_r(errno, sbuf, sizeof(sbuf)));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100812 return -1;
813 }
814 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300815}
816
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100817static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
818{
819 int rv = __show_one_line(fp, l, skip, show_num);
820 if (rv == 0) {
821 pr_warning("Source file is shorter than expected.\n");
822 rv = -1;
823 }
824 return rv;
825}
826
827#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
828#define show_one_line(f,l) _show_one_line(f,l,false,false)
829#define skip_one_line(f,l) _show_one_line(f,l,true,false)
830#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
831
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300832/*
833 * Show line-range always requires debuginfo to find source file and
834 * line number.
835 */
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900836static int __show_line_range(struct line_range *lr, const char *module,
837 bool user)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300838{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400839 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000840 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900841 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300842 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900843 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900844 char *tmp;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000845 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300846
847 /* Search a line range */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000848 dinfo = open_debuginfo(module, false);
849 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900850 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400851
Masami Hiramatsuff741782011-06-27 16:27:39 +0900852 ret = debuginfo__find_line_range(dinfo, lr);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900853 if (!ret) { /* Not found, retry with an alternative */
854 ret = get_alternative_line_range(dinfo, lr, module, user);
855 if (!ret)
856 ret = debuginfo__find_line_range(dinfo, lr);
857 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900858 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000859 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400860 pr_warning("Specified source line is not found.\n");
861 return -ENOENT;
862 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000863 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400864 return ret;
865 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300866
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900867 /* Convert source file path */
868 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900869 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
He Kuanga78604d2015-03-04 18:01:42 +0800870
871 /* Free old path when new path is assigned */
872 if (tmp != lr->path)
873 free(tmp);
874
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900875 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000876 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900877 return ret;
878 }
879
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300880 setup_pager();
881
882 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900883 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300884 lr->start - lr->offset);
885 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100886 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300887
888 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400889 if (fp == NULL) {
890 pr_warning("Failed to open %s: %s\n", lr->path,
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000891 strerror_r(errno, sbuf, sizeof(sbuf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400892 return -errno;
893 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300894 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100895 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100896 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100897 if (ret < 0)
898 goto end;
899 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300900
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000901 intlist__for_each(ln, lr->line_list) {
902 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100903 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100904 if (ret < 0)
905 goto end;
906 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100907 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400908 if (ret < 0)
909 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300910 }
911
912 if (lr->end == INT_MAX)
913 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100914 while (l <= lr->end) {
915 ret = show_one_line_or_eof(fp, l++ - lr->offset);
916 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100917 break;
918 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400919end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300920 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400921 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300922}
923
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000924int show_line_range(struct line_range *lr, const char *module, bool user)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000925{
926 int ret;
927
Namhyung Kim9bae1e82015-09-10 11:27:05 +0900928 ret = init_probe_symbol_maps(user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000929 if (ret < 0)
930 return ret;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900931 ret = __show_line_range(lr, module, user);
Namhyung Kim9bae1e82015-09-10 11:27:05 +0900932 exit_probe_symbol_maps();
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000933
934 return ret;
935}
936
Masami Hiramatsuff741782011-06-27 16:27:39 +0900937static int show_available_vars_at(struct debuginfo *dinfo,
938 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900939 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900940{
941 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900942 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900943 struct str_node *node;
944 struct variable_list *vls = NULL, *vl;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900945 struct perf_probe_point tmp;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900946 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900947
948 buf = synthesize_perf_probe_point(&pev->point);
949 if (!buf)
950 return -EINVAL;
951 pr_debug("Searching variables at %s\n", buf);
952
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900953 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900954 if (!ret) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900955 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900956 if (!ret) {
957 ret = debuginfo__find_available_vars_at(dinfo, pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900958 &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900959 /* Release the old probe_point */
960 clear_perf_probe_point(&tmp);
961 }
962 }
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900963 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000964 if (ret == 0 || ret == -ENOENT) {
965 pr_err("Failed to find the address of %s\n", buf);
966 ret = -ENOENT;
967 } else
968 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900969 goto end;
970 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000971
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900972 /* Some variables are found */
973 fprintf(stdout, "Available variables at %s\n", buf);
974 for (i = 0; i < ret; i++) {
975 vl = &vls[i];
976 /*
977 * A probe point might be converted to
978 * several trace points.
979 */
980 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
981 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300982 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900983 nvars = 0;
984 if (vl->vars) {
985 strlist__for_each(node, vl->vars) {
986 var = strchr(node->s, '\t') + 1;
987 if (strfilter__compare(_filter, var)) {
988 fprintf(stdout, "\t\t%s\n", node->s);
989 nvars++;
990 }
991 }
992 strlist__delete(vl->vars);
993 }
994 if (nvars == 0)
995 fprintf(stdout, "\t\t(No matched variables)\n");
996 }
997 free(vls);
998end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900999 free(buf);
1000 return ret;
1001}
1002
1003/* Show available variables on given probe point */
1004int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001005 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001006{
Masami Hiramatsuff741782011-06-27 16:27:39 +09001007 int i, ret = 0;
1008 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001009
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001010 ret = init_probe_symbol_maps(pevs->uprobes);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001011 if (ret < 0)
1012 return ret;
1013
Masami Hiramatsu44225522015-05-08 10:03:28 +09001014 dinfo = open_debuginfo(pevs->target, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001015 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001016 ret = -ENOENT;
1017 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +09001018 }
1019
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001020 setup_pager();
1021
Masami Hiramatsuff741782011-06-27 16:27:39 +09001022 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001023 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001024
1025 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001026out:
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001027 exit_probe_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001028 return ret;
1029}
1030
Ingo Molnar89fe8082013-09-30 12:07:11 +02001031#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001032
Masami Hiramatsu7737af02015-06-17 23:58:54 +09001033static void debuginfo_cache__exit(void)
1034{
1035}
1036
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001037static int
1038find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
1039 struct perf_probe_point *pp __maybe_unused,
1040 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001041{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001042 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001043}
1044
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301045static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001046 struct probe_trace_event **tevs __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001047{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001048 if (perf_probe_event_need_dwarf(pev)) {
1049 pr_warning("Debuginfo-analysis is not supported.\n");
1050 return -ENOSYS;
1051 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301052
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001053 return 0;
1054}
1055
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001056int show_line_range(struct line_range *lr __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +00001057 const char *module __maybe_unused,
1058 bool user __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001059{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001060 pr_warning("Debuginfo-analysis is not supported.\n");
1061 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001062}
1063
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001064int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001065 int npevs __maybe_unused,
1066 struct strfilter *filter __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001067{
1068 pr_warning("Debuginfo-analysis is not supported.\n");
1069 return -ENOSYS;
1070}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001071#endif
1072
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001073void line_range__clear(struct line_range *lr)
1074{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001075 free(lr->function);
1076 free(lr->file);
1077 free(lr->path);
1078 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001079 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001080 memset(lr, 0, sizeof(*lr));
1081}
1082
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001083int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001084{
1085 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001086 lr->line_list = intlist__new(NULL);
1087 if (!lr->line_list)
1088 return -ENOMEM;
1089 else
1090 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001091}
1092
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001093static int parse_line_num(char **ptr, int *val, const char *what)
1094{
1095 const char *start = *ptr;
1096
1097 errno = 0;
1098 *val = strtol(*ptr, ptr, 0);
1099 if (errno || *ptr == start) {
1100 semantic_error("'%s' is not a valid number.\n", what);
1101 return -EINVAL;
1102 }
1103 return 0;
1104}
1105
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001106/* Check the name is good for event, group or function */
1107static bool is_c_func_name(const char *name)
1108{
1109 if (!isalpha(*name) && *name != '_')
1110 return false;
1111 while (*++name != '\0') {
1112 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1113 return false;
1114 }
1115 return true;
1116}
1117
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001118/*
1119 * Stuff 'lr' according to the line range described by 'arg'.
1120 * The line range syntax is described by:
1121 *
1122 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001123 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001124 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001125int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001126{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001127 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001128 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001129
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001130 if (!name)
1131 return -ENOMEM;
1132
1133 lr->start = 0;
1134 lr->end = INT_MAX;
1135
1136 range = strchr(name, ':');
1137 if (range) {
1138 *range++ = '\0';
1139
1140 err = parse_line_num(&range, &lr->start, "start line");
1141 if (err)
1142 goto err;
1143
1144 if (*range == '+' || *range == '-') {
1145 const char c = *range++;
1146
1147 err = parse_line_num(&range, &lr->end, "end line");
1148 if (err)
1149 goto err;
1150
1151 if (c == '+') {
1152 lr->end += lr->start;
1153 /*
1154 * Adjust the number of lines here.
1155 * If the number of lines == 1, the
1156 * the end of line should be equal to
1157 * the start of line.
1158 */
1159 lr->end--;
1160 }
1161 }
1162
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001163 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001164
1165 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001166 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001167 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001168 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001169 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001170 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001171 if (*range != '\0') {
1172 semantic_error("Tailing with invalid str '%s'.\n", range);
1173 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001174 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001175 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001176
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001177 file = strchr(name, '@');
1178 if (file) {
1179 *file = '\0';
1180 lr->file = strdup(++file);
1181 if (lr->file == NULL) {
1182 err = -ENOMEM;
1183 goto err;
1184 }
1185 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001186 } else if (strchr(name, '/') || strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001187 lr->file = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001188 else if (is_c_func_name(name))/* We reuse it for checking funcname */
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001189 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001190 else { /* Invalid name */
1191 semantic_error("'%s' is not a valid function name.\n", name);
1192 err = -EINVAL;
1193 goto err;
1194 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001195
1196 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001197err:
1198 free(name);
1199 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001200}
1201
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001202/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001203static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001204{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001205 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001206 char *ptr, *tmp;
1207 char c, nc = 0;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301208 bool file_spec = false;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001209 /*
1210 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001211 * perf probe [EVENT=]SRC[:LN|;PTN]
1212 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001213 *
1214 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001215 */
Wang Nane59d29e2015-04-28 08:46:09 +00001216 if (!arg)
1217 return -EINVAL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001218
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001219 ptr = strpbrk(arg, ";=@+%");
1220 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001221 *ptr = '\0';
1222 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001223 if (strchr(arg, ':')) {
1224 semantic_error("Group name is not supported yet.\n");
1225 return -ENOTSUP;
1226 }
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001227 if (!is_c_func_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -05001228 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001229 "follow C symbol-naming rule.\n", arg);
1230 return -EINVAL;
1231 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001232 pev->event = strdup(arg);
1233 if (pev->event == NULL)
1234 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001235 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001236 arg = tmp;
1237 }
1238
Naveen N. Rao3099c022015-04-28 17:35:34 +05301239 /*
1240 * Check arg is function or file name and copy it.
1241 *
1242 * We consider arg to be a file spec if and only if it satisfies
1243 * all of the below criteria::
1244 * - it does not include any of "+@%",
1245 * - it includes one of ":;", and
1246 * - it has a period '.' in the name.
1247 *
1248 * Otherwise, we consider arg to be a function specification.
1249 */
1250 if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) {
1251 /* This is a file spec if it includes a '.' before ; or : */
1252 if (memchr(arg, '.', ptr - arg))
1253 file_spec = true;
1254 }
1255
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001256 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001257 if (ptr) {
1258 nc = *ptr;
1259 *ptr++ = '\0';
1260 }
1261
Wang Nan6c6e0242015-08-26 10:57:44 +00001262 if (arg[0] == '\0')
1263 tmp = NULL;
1264 else {
1265 tmp = strdup(arg);
1266 if (tmp == NULL)
1267 return -ENOMEM;
1268 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001269
Naveen N. Rao3099c022015-04-28 17:35:34 +05301270 if (file_spec)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001271 pp->file = tmp;
Wang Nanda15bd92015-08-26 10:57:45 +00001272 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001273 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001274
Wang Nanda15bd92015-08-26 10:57:45 +00001275 /*
1276 * Keep pp->function even if this is absolute address,
1277 * so it can mark whether abs_address is valid.
1278 * Which make 'perf probe lib.bin 0x0' possible.
1279 *
1280 * Note that checking length of tmp is not needed
1281 * because when we access tmp[1] we know tmp[0] is '0',
1282 * so tmp[1] should always valid (but could be '\0').
1283 */
1284 if (tmp && !strncmp(tmp, "0x", 2)) {
1285 pp->abs_address = strtoul(pp->function, &tmp, 0);
1286 if (*tmp != '\0') {
1287 semantic_error("Invalid absolute address.\n");
1288 return -EINVAL;
1289 }
1290 }
1291 }
1292
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001293 /* Parse other options */
1294 while (ptr) {
1295 arg = ptr;
1296 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001297 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001298 pp->lazy_line = strdup(arg);
1299 if (pp->lazy_line == NULL)
1300 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001301 break;
1302 }
1303 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001304 if (ptr) {
1305 nc = *ptr;
1306 *ptr++ = '\0';
1307 }
1308 switch (c) {
1309 case ':': /* Line number */
1310 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001311 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001312 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001313 " in line number.\n");
1314 return -EINVAL;
1315 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001316 break;
1317 case '+': /* Byte offset from a symbol */
1318 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001319 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001320 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001321 " in offset.\n");
1322 return -EINVAL;
1323 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001324 break;
1325 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001326 if (pp->file) {
1327 semantic_error("SRC@SRC is not allowed.\n");
1328 return -EINVAL;
1329 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001330 pp->file = strdup(arg);
1331 if (pp->file == NULL)
1332 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001333 break;
1334 case '%': /* Probe places */
1335 if (strcmp(arg, "return") == 0) {
1336 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001337 } else { /* Others not supported yet */
1338 semantic_error("%%%s is not supported.\n", arg);
1339 return -ENOTSUP;
1340 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001341 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001342 default: /* Buggy case */
1343 pr_err("This program has a bug at %s:%d.\n",
1344 __FILE__, __LINE__);
1345 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001346 break;
1347 }
1348 }
1349
1350 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001351 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001352 semantic_error("Lazy pattern can't be used with"
1353 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001354 return -EINVAL;
1355 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001356
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001357 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001358 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001359 return -EINVAL;
1360 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001361
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001362 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001363 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001364 return -EINVAL;
1365 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001366
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001367 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001368 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001369 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001370 return -EINVAL;
1371 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001372
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001373 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001374 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001375 return -EINVAL;
1376 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001377
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001378 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001379 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001380 return -EINVAL;
1381 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001382
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001383 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001384 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001385 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001386 return -EINVAL;
1387 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001388
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001389 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001390 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1391 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001392 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001393}
1394
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001395/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001396static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001397{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001398 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001399 struct perf_probe_arg_field **fieldp;
1400
1401 pr_debug("parsing arg: %s into ", str);
1402
Masami Hiramatsu48481932010-04-12 13:16:53 -04001403 tmp = strchr(str, '=');
1404 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001405 arg->name = strndup(str, tmp - str);
1406 if (arg->name == NULL)
1407 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001408 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001409 str = tmp + 1;
1410 }
1411
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001412 tmp = strchr(str, ':');
1413 if (tmp) { /* Type setting */
1414 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001415 arg->type = strdup(tmp + 1);
1416 if (arg->type == NULL)
1417 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001418 pr_debug("type:%s ", arg->type);
1419 }
1420
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001421 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001422 if (!is_c_varname(str) || !tmp) {
1423 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001424 arg->var = strdup(str);
1425 if (arg->var == NULL)
1426 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001427 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001428 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001429 }
1430
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001431 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001432 arg->var = strndup(str, tmp - str);
1433 if (arg->var == NULL)
1434 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001435 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001436 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001437 fieldp = &arg->field;
1438
1439 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001440 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1441 if (*fieldp == NULL)
1442 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001443 if (*tmp == '[') { /* Array */
1444 str = tmp;
1445 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001446 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001447 if (*tmp != ']' || tmp == str + 1) {
1448 semantic_error("Array index must be a"
1449 " number.\n");
1450 return -EINVAL;
1451 }
1452 tmp++;
1453 if (*tmp == '\0')
1454 tmp = NULL;
1455 } else { /* Structure */
1456 if (*tmp == '.') {
1457 str = tmp + 1;
1458 (*fieldp)->ref = false;
1459 } else if (tmp[1] == '>') {
1460 str = tmp + 2;
1461 (*fieldp)->ref = true;
1462 } else {
1463 semantic_error("Argument parse error: %s\n",
1464 str);
1465 return -EINVAL;
1466 }
1467 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001468 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001469 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001470 (*fieldp)->name = strndup(str, tmp - str);
1471 if ((*fieldp)->name == NULL)
1472 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001473 if (*str != '[')
1474 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001475 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1476 fieldp = &(*fieldp)->next;
1477 }
1478 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001479 (*fieldp)->name = strdup(str);
1480 if ((*fieldp)->name == NULL)
1481 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001482 if (*str != '[')
1483 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001484 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001485
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001486 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001487 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001488 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001489 if (arg->name == NULL)
1490 return -ENOMEM;
1491 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001492 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001493}
1494
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001495/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001496int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001497{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001498 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001499 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001500
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001501 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001502 if (!argv) {
1503 pr_debug("Failed to split arguments.\n");
1504 return -ENOMEM;
1505 }
1506 if (argc - 1 > MAX_PROBE_ARGS) {
1507 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1508 ret = -ERANGE;
1509 goto out;
1510 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001511 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001512 ret = parse_perf_probe_point(argv[0], pev);
1513 if (ret < 0)
1514 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001515
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001516 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001517 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001518 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1519 if (pev->args == NULL) {
1520 ret = -ENOMEM;
1521 goto out;
1522 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001523 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1524 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1525 if (ret >= 0 &&
1526 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001527 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001528 " kretprobe.\n");
1529 ret = -EINVAL;
1530 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001531 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001532out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001533 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001534
1535 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001536}
1537
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001538/* Return true if this perf_probe_event requires debuginfo */
1539bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001540{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001541 int i;
1542
1543 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1544 return true;
1545
1546 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -04001547 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001548 return true;
1549
1550 return false;
1551}
1552
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301553/* Parse probe_events event into struct probe_point */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09001554int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001555{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301556 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001557 char pr;
1558 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001559 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001560 int ret, i, argc;
1561 char **argv;
1562
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301563 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001564 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001565 if (!argv) {
1566 pr_debug("Failed to split arguments.\n");
1567 return -ENOMEM;
1568 }
1569 if (argc < 2) {
1570 semantic_error("Too few probe arguments.\n");
1571 ret = -ERANGE;
1572 goto out;
1573 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001574
1575 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001576 argv0_str = strdup(argv[0]);
1577 if (argv0_str == NULL) {
1578 ret = -ENOMEM;
1579 goto out;
1580 }
1581 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1582 fmt2_str = strtok_r(NULL, "/", &fmt);
1583 fmt3_str = strtok_r(NULL, " \t", &fmt);
1584 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1585 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001586 semantic_error("Failed to parse event name: %s\n", argv[0]);
1587 ret = -EINVAL;
1588 goto out;
1589 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001590 pr = fmt1_str[0];
1591 tev->group = strdup(fmt2_str);
1592 tev->event = strdup(fmt3_str);
1593 if (tev->group == NULL || tev->event == NULL) {
1594 ret = -ENOMEM;
1595 goto out;
1596 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001597 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001598
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001599 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001600
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001601 /* Scan module name(if there), function name and offset */
1602 p = strchr(argv[1], ':');
1603 if (p) {
1604 tp->module = strndup(argv[1], p - argv[1]);
Masami Hiramatsu844faa42016-06-08 18:29:21 +09001605 if (!tp->module) {
1606 ret = -ENOMEM;
1607 goto out;
1608 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001609 p++;
1610 } else
1611 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001612 fmt1_str = strtok_r(p, "+", &fmt);
Wang Nanbe07afe2015-08-26 10:57:43 +00001613 /* only the address started with 0x */
1614 if (fmt1_str[0] == '0') {
1615 /*
1616 * Fix a special case:
1617 * if address == 0, kernel reports something like:
1618 * p:probe_libc/abs_0 /lib/libc-2.18.so:0x (null) arg1=%ax
1619 * Newer kernel may fix that, but we want to
1620 * support old kernel also.
1621 */
1622 if (strcmp(fmt1_str, "0x") == 0) {
1623 if (!argv[2] || strcmp(argv[2], "(null)")) {
1624 ret = -EINVAL;
1625 goto out;
1626 }
1627 tp->address = 0;
1628
1629 free(argv[2]);
1630 for (i = 2; argv[i + 1] != NULL; i++)
1631 argv[i] = argv[i + 1];
1632
1633 argv[i] = NULL;
1634 argc -= 1;
1635 } else
1636 tp->address = strtoul(fmt1_str, NULL, 0);
1637 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001638 /* Only the symbol-based probe has offset */
1639 tp->symbol = strdup(fmt1_str);
1640 if (tp->symbol == NULL) {
1641 ret = -ENOMEM;
1642 goto out;
1643 }
1644 fmt2_str = strtok_r(NULL, "", &fmt);
1645 if (fmt2_str == NULL)
1646 tp->offset = 0;
1647 else
1648 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001649 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001650
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001651 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301652 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001653 if (tev->args == NULL) {
1654 ret = -ENOMEM;
1655 goto out;
1656 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001657 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001658 p = strchr(argv[i + 2], '=');
1659 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001660 *p++ = '\0';
1661 else
1662 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001663 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001664 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001665 tev->args[i].value = strdup(p);
1666 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1667 ret = -ENOMEM;
1668 goto out;
1669 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001670 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001671 ret = 0;
1672out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001673 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001674 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001675 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001676}
1677
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001678/* Compose only probe arg */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001679char *synthesize_perf_probe_arg(struct perf_probe_arg *pa)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001680{
1681 struct perf_probe_arg_field *field = pa->field;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001682 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001683 char *ret = NULL;
1684 int err;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001685
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001686 if (strbuf_init(&buf, 64) < 0)
1687 return NULL;
1688
Masami Hiramatsu48481932010-04-12 13:16:53 -04001689 if (pa->name && pa->var)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001690 err = strbuf_addf(&buf, "%s=%s", pa->name, pa->var);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001691 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001692 err = strbuf_addstr(&buf, pa->name ?: pa->var);
1693 if (err)
1694 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001695
1696 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001697 if (field->name[0] == '[')
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001698 err = strbuf_addstr(&buf, field->name);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001699 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001700 err = strbuf_addf(&buf, "%s%s", field->ref ? "->" : ".",
1701 field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001702 field = field->next;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001703 if (err)
1704 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001705 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001706
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001707 if (pa->type)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001708 if (strbuf_addf(&buf, ":%s", pa->type) < 0)
1709 goto out;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001710
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001711 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001712out:
1713 strbuf_release(&buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001714 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001715}
1716
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001717/* Compose only probe point (not argument) */
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001718char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001719{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001720 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001721 char *tmp, *ret = NULL;
1722 int len, err = 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001723
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001724 if (strbuf_init(&buf, 64) < 0)
1725 return NULL;
1726
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001727 if (pp->function) {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001728 if (strbuf_addstr(&buf, pp->function) < 0)
1729 goto out;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001730 if (pp->offset)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001731 err = strbuf_addf(&buf, "+%lu", pp->offset);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001732 else if (pp->line)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001733 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001734 else if (pp->retprobe)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001735 err = strbuf_addstr(&buf, "%return");
1736 if (err)
1737 goto out;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001738 }
1739 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001740 tmp = pp->file;
1741 len = strlen(tmp);
1742 if (len > 30) {
1743 tmp = strchr(pp->file + len - 30, '/');
1744 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1745 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001746 err = strbuf_addf(&buf, "@%s", tmp);
1747 if (!err && !pp->function && pp->line)
1748 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001749 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001750 if (!err)
1751 ret = strbuf_detach(&buf, NULL);
1752out:
1753 strbuf_release(&buf);
1754 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001755}
1756
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001757char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1758{
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001759 struct strbuf buf;
1760 char *tmp, *ret = NULL;
1761 int i;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001762
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001763 if (strbuf_init(&buf, 64))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001764 return NULL;
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001765 if (pev->event)
1766 if (strbuf_addf(&buf, "%s:%s=", pev->group ?: PERFPROBE_GROUP,
1767 pev->event) < 0)
1768 goto out;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001769
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001770 tmp = synthesize_perf_probe_point(&pev->point);
1771 if (!tmp || strbuf_addstr(&buf, tmp) < 0)
1772 goto out;
1773 free(tmp);
1774
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001775 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001776 tmp = synthesize_perf_probe_arg(pev->args + i);
1777 if (!tmp || strbuf_addf(&buf, " %s", tmp) < 0)
1778 goto out;
1779 free(tmp);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001780 }
1781
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001782 ret = strbuf_detach(&buf, NULL);
1783out:
1784 strbuf_release(&buf);
1785 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001786}
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001787
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301788static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001789 struct strbuf *buf, int depth)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001790{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001791 int err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001792 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301793 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001794 depth + 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001795 if (depth < 0)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001796 return depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001797 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001798 err = strbuf_addf(buf, "%+ld(", ref->offset);
1799 return (err < 0) ? err : depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001800}
1801
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301802static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001803 struct strbuf *buf)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001804{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301805 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001806 int depth = 0, err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001807
1808 /* Argument name or separator */
1809 if (arg->name)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001810 err = strbuf_addf(buf, " %s=", arg->name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001811 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001812 err = strbuf_addch(buf, ' ');
1813 if (err)
1814 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001815
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001816 /* Special case: @XXX */
1817 if (arg->value[0] == '@' && arg->ref)
1818 ref = ref->next;
1819
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001820 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001821 if (ref) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001822 depth = __synthesize_probe_trace_arg_ref(ref, buf, 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001823 if (depth < 0)
1824 return depth;
1825 }
1826
1827 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001828 if (arg->value[0] == '@' && arg->ref)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001829 err = strbuf_addf(buf, "%s%+ld", arg->value, arg->ref->offset);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001830 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001831 err = strbuf_addstr(buf, arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001832
1833 /* Closing */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001834 while (!err && depth--)
1835 err = strbuf_addch(buf, ')');
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001836
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001837 /* Print argument type */
1838 if (!err && arg->type)
1839 err = strbuf_addf(buf, ":%s", arg->type);
1840
1841 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001842}
1843
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301844char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001845{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301846 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001847 struct strbuf buf;
1848 char *ret = NULL;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001849 int i, err;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001850
Wang Nanda15bd92015-08-26 10:57:45 +00001851 /* Uprobes must have tp->module */
1852 if (tev->uprobes && !tp->module)
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001853 return NULL;
1854
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001855 if (strbuf_init(&buf, 32) < 0)
1856 return NULL;
1857
1858 if (strbuf_addf(&buf, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1859 tev->group, tev->event) < 0)
1860 goto error;
Wang Nanda15bd92015-08-26 10:57:45 +00001861 /*
1862 * If tp->address == 0, then this point must be a
1863 * absolute address uprobe.
1864 * try_to_find_absolute_address() should have made
1865 * tp->symbol to "0x0".
1866 */
1867 if (tev->uprobes && !tp->address) {
1868 if (!tp->symbol || strcmp(tp->symbol, "0x0"))
1869 goto error;
1870 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001871
1872 /* Use the tp->address for uprobes */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301873 if (tev->uprobes)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001874 err = strbuf_addf(&buf, "%s:0x%lx", tp->module, tp->address);
Wang Nanda15bd92015-08-26 10:57:45 +00001875 else if (!strncmp(tp->symbol, "0x", 2))
1876 /* Absolute address. See try_to_find_absolute_address() */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001877 err = strbuf_addf(&buf, "%s%s0x%lx", tp->module ?: "",
1878 tp->module ? ":" : "", tp->address);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301879 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001880 err = strbuf_addf(&buf, "%s%s%s+%lu", tp->module ?: "",
1881 tp->module ? ":" : "", tp->symbol, tp->offset);
1882 if (err)
1883 goto error;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301884
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001885 for (i = 0; i < tev->nargs; i++)
1886 if (synthesize_probe_trace_arg(&tev->args[i], &buf) < 0)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001887 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001888
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001889 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001890error:
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001891 strbuf_release(&buf);
1892 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001893}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001894
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001895static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1896 struct perf_probe_point *pp,
1897 bool is_kprobe)
1898{
1899 struct symbol *sym = NULL;
1900 struct map *map;
Wang Nane4863672015-08-25 13:27:35 +00001901 u64 addr = tp->address;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001902 int ret = -ENOENT;
1903
1904 if (!is_kprobe) {
1905 map = dso__new_map(tp->module);
1906 if (!map)
1907 goto out;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001908 sym = map__find_symbol(map, addr, NULL);
1909 } else {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001910 if (tp->symbol && !addr) {
Masami Hiramatsu0a62f682015-11-06 17:30:03 +09001911 if (kernel_get_symbol_address_by_name(tp->symbol,
1912 &addr, true, false) < 0)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001913 goto out;
1914 }
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001915 if (addr) {
1916 addr += tp->offset;
1917 sym = __find_kernel_function(addr, &map);
1918 }
1919 }
Wang Nan98d3b252015-11-05 13:19:25 +00001920
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001921 if (!sym)
1922 goto out;
1923
1924 pp->retprobe = tp->retprobe;
1925 pp->offset = addr - map->unmap_ip(map, sym->start);
1926 pp->function = strdup(sym->name);
1927 ret = pp->function ? 0 : -ENOMEM;
1928
1929out:
1930 if (map && !is_kprobe) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001931 map__put(map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001932 }
1933
1934 return ret;
1935}
1936
1937static int convert_to_perf_probe_point(struct probe_trace_point *tp,
Wang Nanda15bd92015-08-26 10:57:45 +00001938 struct perf_probe_point *pp,
1939 bool is_kprobe)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001940{
1941 char buf[128];
1942 int ret;
1943
1944 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1945 if (!ret)
1946 return 0;
1947 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1948 if (!ret)
1949 return 0;
1950
1951 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1952
1953 if (tp->symbol) {
1954 pp->function = strdup(tp->symbol);
1955 pp->offset = tp->offset;
Wang Nan614e2fd2015-08-26 10:57:42 +00001956 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001957 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
1958 if (ret < 0)
1959 return ret;
1960 pp->function = strdup(buf);
1961 pp->offset = 0;
1962 }
1963 if (pp->function == NULL)
1964 return -ENOMEM;
1965
1966 pp->retprobe = tp->retprobe;
1967
1968 return 0;
1969}
1970
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301971static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301972 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001973{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001974 struct strbuf buf = STRBUF_INIT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001975 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001976
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001977 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001978 pev->event = strdup(tev->event);
1979 pev->group = strdup(tev->group);
1980 if (pev->event == NULL || pev->group == NULL)
1981 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001982
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001983 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001984 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001985 if (ret < 0)
1986 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001987
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001988 /* Convert trace_arg to probe_arg */
1989 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001990 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1991 if (pev->args == NULL)
1992 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001993 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001994 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001995 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001996 else {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001997 if ((ret = strbuf_init(&buf, 32)) < 0)
1998 goto error;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001999 ret = synthesize_probe_trace_arg(&tev->args[i], &buf);
2000 pev->args[i].name = strbuf_detach(&buf, NULL);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002001 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002002 if (pev->args[i].name == NULL && ret >= 0)
2003 ret = -ENOMEM;
2004 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002005error:
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002006 if (ret < 0)
2007 clear_perf_probe_event(pev);
2008
2009 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002010}
2011
2012void clear_perf_probe_event(struct perf_probe_event *pev)
2013{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002014 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002015 int i;
2016
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002017 free(pev->event);
2018 free(pev->group);
Masami Hiramatsu7afb3fa2015-04-01 19:25:39 +09002019 free(pev->target);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002020 clear_perf_probe_point(&pev->point);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002021
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002022 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002023 free(pev->args[i].name);
2024 free(pev->args[i].var);
2025 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002026 field = pev->args[i].field;
2027 while (field) {
2028 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002029 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002030 free(field);
2031 field = next;
2032 }
2033 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002034 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002035 memset(pev, 0, sizeof(*pev));
2036}
2037
Masami Hiramatsu0542bb92016-06-08 18:29:40 +09002038#define strdup_or_goto(str, label) \
2039({ char *__p = NULL; if (str && !(__p = strdup(str))) goto label; __p; })
2040
2041static int perf_probe_point__copy(struct perf_probe_point *dst,
2042 struct perf_probe_point *src)
2043{
2044 dst->file = strdup_or_goto(src->file, out_err);
2045 dst->function = strdup_or_goto(src->function, out_err);
2046 dst->lazy_line = strdup_or_goto(src->lazy_line, out_err);
2047 dst->line = src->line;
2048 dst->retprobe = src->retprobe;
2049 dst->offset = src->offset;
2050 return 0;
2051
2052out_err:
2053 clear_perf_probe_point(dst);
2054 return -ENOMEM;
2055}
2056
2057static int perf_probe_arg__copy(struct perf_probe_arg *dst,
2058 struct perf_probe_arg *src)
2059{
2060 struct perf_probe_arg_field *field, **ppfield;
2061
2062 dst->name = strdup_or_goto(src->name, out_err);
2063 dst->var = strdup_or_goto(src->var, out_err);
2064 dst->type = strdup_or_goto(src->type, out_err);
2065
2066 field = src->field;
2067 ppfield = &(dst->field);
2068 while (field) {
2069 *ppfield = zalloc(sizeof(*field));
2070 if (!*ppfield)
2071 goto out_err;
2072 (*ppfield)->name = strdup_or_goto(field->name, out_err);
2073 (*ppfield)->index = field->index;
2074 (*ppfield)->ref = field->ref;
2075 field = field->next;
2076 ppfield = &((*ppfield)->next);
2077 }
2078 return 0;
2079out_err:
2080 return -ENOMEM;
2081}
2082
2083int perf_probe_event__copy(struct perf_probe_event *dst,
2084 struct perf_probe_event *src)
2085{
2086 int i;
2087
2088 dst->event = strdup_or_goto(src->event, out_err);
2089 dst->group = strdup_or_goto(src->group, out_err);
2090 dst->target = strdup_or_goto(src->target, out_err);
2091 dst->uprobes = src->uprobes;
2092
2093 if (perf_probe_point__copy(&dst->point, &src->point) < 0)
2094 goto out_err;
2095
2096 dst->args = zalloc(sizeof(struct perf_probe_arg) * src->nargs);
2097 if (!dst->args)
2098 goto out_err;
2099 dst->nargs = src->nargs;
2100
2101 for (i = 0; i < src->nargs; i++)
2102 if (perf_probe_arg__copy(&dst->args[i], &src->args[i]) < 0)
2103 goto out_err;
2104 return 0;
2105
2106out_err:
2107 clear_perf_probe_event(dst);
2108 return -ENOMEM;
2109}
2110
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002111void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002112{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302113 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002114 int i;
2115
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002116 free(tev->event);
2117 free(tev->group);
2118 free(tev->point.symbol);
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002119 free(tev->point.realname);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002120 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002121 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002122 free(tev->args[i].name);
2123 free(tev->args[i].value);
2124 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002125 ref = tev->args[i].ref;
2126 while (ref) {
2127 next = ref->next;
2128 free(ref);
2129 ref = next;
2130 }
2131 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002132 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002133 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002134}
2135
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002136struct kprobe_blacklist_node {
2137 struct list_head list;
2138 unsigned long start;
2139 unsigned long end;
2140 char *symbol;
2141};
2142
2143static void kprobe_blacklist__delete(struct list_head *blacklist)
2144{
2145 struct kprobe_blacklist_node *node;
2146
2147 while (!list_empty(blacklist)) {
2148 node = list_first_entry(blacklist,
2149 struct kprobe_blacklist_node, list);
2150 list_del(&node->list);
2151 free(node->symbol);
2152 free(node);
2153 }
2154}
2155
2156static int kprobe_blacklist__load(struct list_head *blacklist)
2157{
2158 struct kprobe_blacklist_node *node;
Jiri Olsa4605eab2015-09-02 09:56:43 +02002159 const char *__debugfs = debugfs__mountpoint();
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002160 char buf[PATH_MAX], *p;
2161 FILE *fp;
2162 int ret;
2163
2164 if (__debugfs == NULL)
2165 return -ENOTSUP;
2166
2167 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2168 if (ret < 0)
2169 return ret;
2170
2171 fp = fopen(buf, "r");
2172 if (!fp)
2173 return -errno;
2174
2175 ret = 0;
2176 while (fgets(buf, PATH_MAX, fp)) {
2177 node = zalloc(sizeof(*node));
2178 if (!node) {
2179 ret = -ENOMEM;
2180 break;
2181 }
2182 INIT_LIST_HEAD(&node->list);
2183 list_add_tail(&node->list, blacklist);
2184 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2185 ret = -EINVAL;
2186 break;
2187 }
2188 p = strchr(buf, '\t');
2189 if (p) {
2190 p++;
2191 if (p[strlen(p) - 1] == '\n')
2192 p[strlen(p) - 1] = '\0';
2193 } else
2194 p = (char *)"unknown";
2195 node->symbol = strdup(p);
2196 if (!node->symbol) {
2197 ret = -ENOMEM;
2198 break;
2199 }
2200 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2201 node->start, node->end, node->symbol);
2202 ret++;
2203 }
2204 if (ret < 0)
2205 kprobe_blacklist__delete(blacklist);
2206 fclose(fp);
2207
2208 return ret;
2209}
2210
2211static struct kprobe_blacklist_node *
2212kprobe_blacklist__find_by_address(struct list_head *blacklist,
2213 unsigned long address)
2214{
2215 struct kprobe_blacklist_node *node;
2216
2217 list_for_each_entry(node, blacklist, list) {
2218 if (node->start <= address && address <= node->end)
2219 return node;
2220 }
2221
2222 return NULL;
2223}
2224
Masami Hiramatsub0312202015-06-16 20:50:55 +09002225static LIST_HEAD(kprobe_blacklist);
2226
2227static void kprobe_blacklist__init(void)
2228{
2229 if (!list_empty(&kprobe_blacklist))
2230 return;
2231
2232 if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2233 pr_debug("No kprobe blacklist support, ignored\n");
2234}
2235
2236static void kprobe_blacklist__release(void)
2237{
2238 kprobe_blacklist__delete(&kprobe_blacklist);
2239}
2240
2241static bool kprobe_blacklist__listed(unsigned long address)
2242{
2243 return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2244}
2245
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002246static int perf_probe_event__sprintf(const char *group, const char *event,
2247 struct perf_probe_event *pev,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002248 const char *module,
2249 struct strbuf *result)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002250{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002251 int i, ret;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002252 char *buf;
2253
2254 if (asprintf(&buf, "%s:%s", group, event) < 0)
2255 return -errno;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002256 ret = strbuf_addf(result, " %-20s (on ", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002257 free(buf);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002258 if (ret)
2259 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002260
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002261 /* Synthesize only event probe point */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002262 buf = synthesize_perf_probe_point(&pev->point);
2263 if (!buf)
2264 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002265 ret = strbuf_addstr(result, buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002266 free(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002267
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002268 if (!ret && module)
2269 ret = strbuf_addf(result, " in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002270
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002271 if (!ret && pev->nargs > 0) {
2272 ret = strbuf_add(result, " with", 5);
2273 for (i = 0; !ret && i < pev->nargs; i++) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002274 buf = synthesize_perf_probe_arg(&pev->args[i]);
2275 if (!buf)
2276 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002277 ret = strbuf_addf(result, " %s", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002278 free(buf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002279 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002280 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002281 if (!ret)
2282 ret = strbuf_addch(result, ')');
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002283
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002284 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002285}
2286
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002287/* Show an event */
Namhyung Kimb02137c2015-09-04 21:16:01 +09002288int show_perf_probe_event(const char *group, const char *event,
2289 struct perf_probe_event *pev,
2290 const char *module, bool use_stdout)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002291{
2292 struct strbuf buf = STRBUF_INIT;
2293 int ret;
2294
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002295 ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002296 if (ret >= 0) {
2297 if (use_stdout)
2298 printf("%s\n", buf.buf);
2299 else
2300 pr_info("%s\n", buf.buf);
2301 }
2302 strbuf_release(&buf);
2303
2304 return ret;
2305}
2306
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002307static bool filter_probe_trace_event(struct probe_trace_event *tev,
2308 struct strfilter *filter)
2309{
2310 char tmp[128];
2311
2312 /* At first, check the event name itself */
2313 if (strfilter__compare(filter, tev->event))
2314 return true;
2315
2316 /* Next, check the combination of name and group */
2317 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2318 return false;
2319 return strfilter__compare(filter, tmp);
2320}
2321
2322static int __show_perf_probe_events(int fd, bool is_kprobe,
2323 struct strfilter *filter)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002324{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302325 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302326 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002327 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002328 struct strlist *rawlist;
2329 struct str_node *ent;
2330
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002331 memset(&tev, 0, sizeof(tev));
2332 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05002333
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002334 rawlist = probe_file__get_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002335 if (!rawlist)
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002336 return -ENOMEM;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002337
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002338 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302339 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002340 if (ret >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002341 if (!filter_probe_trace_event(&tev, filter))
2342 goto next;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302343 ret = convert_to_perf_probe_event(&tev, &pev,
2344 is_kprobe);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002345 if (ret < 0)
2346 goto next;
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002347 ret = show_perf_probe_event(pev.group, pev.event,
2348 &pev, tev.point.module,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002349 true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002350 }
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002351next:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002352 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302353 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002354 if (ret < 0)
2355 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002356 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002357 strlist__delete(rawlist);
Masami Hiramatsu7737af02015-06-17 23:58:54 +09002358 /* Cleanup cached debuginfo if needed */
2359 debuginfo_cache__exit();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002360
2361 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002362}
2363
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302364/* List up current perf-probe events */
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002365int show_perf_probe_events(struct strfilter *filter)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302366{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002367 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302368
2369 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302370
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002371 ret = init_probe_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302372 if (ret < 0)
2373 return ret;
2374
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002375 ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2376 if (ret < 0)
2377 return ret;
2378
2379 if (kp_fd >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002380 ret = __show_perf_probe_events(kp_fd, true, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002381 if (up_fd >= 0 && ret >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002382 ret = __show_perf_probe_events(up_fd, false, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002383 if (kp_fd > 0)
2384 close(kp_fd);
2385 if (up_fd > 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002386 close(up_fd);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002387 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302388
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002389 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002390}
2391
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002392static int get_new_event_name(char *buf, size_t len, const char *base,
2393 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002394{
2395 int i, ret;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002396 char *p, *nbase;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002397
Naveen N. Rao3099c022015-04-28 17:35:34 +05302398 if (*base == '.')
2399 base++;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002400 nbase = strdup(base);
2401 if (!nbase)
2402 return -ENOMEM;
Naveen N. Rao3099c022015-04-28 17:35:34 +05302403
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002404 /* Cut off the dot suffixes (e.g. .const, .isra)*/
2405 p = strchr(nbase, '.');
2406 if (p && p != nbase)
2407 *p = '\0';
2408
2409 /* Try no suffix number */
2410 ret = e_snprintf(buf, len, "%s", nbase);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002411 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002412 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002413 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002414 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002415 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002416 goto out;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002417
Masami Hiramatsud761b082009-12-15 10:32:25 -05002418 if (!allow_suffix) {
Wang Nan03e01f52015-11-16 12:10:08 +00002419 pr_warning("Error: event \"%s\" already exists.\n"
2420 " Hint: Remove existing event by 'perf probe -d'\n"
2421 " or force duplicates by 'perf probe -f'\n"
2422 " or set 'force=yes' in BPF source.\n",
2423 buf);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002424 ret = -EEXIST;
2425 goto out;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002426 }
2427
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002428 /* Try to add suffix */
2429 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002430 ret = e_snprintf(buf, len, "%s_%d", nbase, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002431 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002432 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002433 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002434 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002435 if (!strlist__has_entry(namelist, buf))
2436 break;
2437 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002438 if (i == MAX_EVENT_INDEX) {
2439 pr_warning("Too many events are on the same function.\n");
2440 ret = -ERANGE;
2441 }
2442
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002443out:
2444 free(nbase);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002445 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002446}
2447
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002448/* Warn if the current kernel's uprobe implementation is old */
2449static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2450{
2451 int i;
2452 char *buf = synthesize_probe_trace_command(tev);
2453
2454 /* Old uprobe event doesn't support memory dereference */
2455 if (!tev->uprobes || tev->nargs == 0 || !buf)
2456 goto out;
2457
2458 for (i = 0; i < tev->nargs; i++)
2459 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2460 pr_warning("Please upgrade your kernel to at least "
2461 "3.14 to have access to feature %s\n",
2462 tev->args[i].value);
2463 break;
2464 }
2465out:
2466 free(buf);
2467}
2468
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002469/* Set new name from original perf_probe_event and namelist */
2470static int probe_trace_event__set_name(struct probe_trace_event *tev,
2471 struct perf_probe_event *pev,
2472 struct strlist *namelist,
2473 bool allow_suffix)
2474{
2475 const char *event, *group;
2476 char buf[64];
2477 int ret;
2478
2479 if (pev->event)
2480 event = pev->event;
2481 else
Wang Nanda15bd92015-08-26 10:57:45 +00002482 if (pev->point.function &&
2483 (strncmp(pev->point.function, "0x", 2) != 0) &&
2484 !strisglob(pev->point.function))
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002485 event = pev->point.function;
2486 else
2487 event = tev->point.realname;
2488 if (pev->group)
2489 group = pev->group;
2490 else
2491 group = PERFPROBE_GROUP;
2492
2493 /* Get an unused new event name */
2494 ret = get_new_event_name(buf, 64, event,
2495 namelist, allow_suffix);
2496 if (ret < 0)
2497 return ret;
2498
2499 event = buf;
2500
2501 tev->event = strdup(event);
2502 tev->group = strdup(group);
2503 if (tev->event == NULL || tev->group == NULL)
2504 return -ENOMEM;
2505
2506 /* Add added event name to namelist */
2507 strlist__add(namelist, event);
2508 return 0;
2509}
2510
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302511static int __add_probe_trace_events(struct perf_probe_event *pev,
2512 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002513 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002514{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002515 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302516 struct probe_trace_event *tev = NULL;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002517 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002518
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002519 fd = probe_file__open(PF_FL_RW | (pev->uprobes ? PF_FL_UPROBE : 0));
2520 if (fd < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002521 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002522
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002523 /* Get current event names */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002524 namelist = probe_file__get_namelist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002525 if (!namelist) {
2526 pr_debug("Failed to get current event list.\n");
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002527 ret = -ENOMEM;
2528 goto close_out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002529 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002530
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002531 ret = 0;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002532 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002533 tev = &tevs[i];
Masami Hiramatsub0312202015-06-16 20:50:55 +09002534 /* Skip if the symbol is out of .text or blacklisted */
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +09002535 if (!tev->point.symbol)
2536 continue;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002537
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002538 /* Set new name for tev (and update namelist) */
2539 ret = probe_trace_event__set_name(tev, pev, namelist,
2540 allow_suffix);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002541 if (ret < 0)
2542 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002543
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002544 ret = probe_file__add_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002545 if (ret < 0)
2546 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002547
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002548 /*
2549 * Probes after the first probe which comes from same
2550 * user input are always allowed to add suffix, because
2551 * there might be several addresses corresponding to
2552 * one code line.
2553 */
2554 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002555 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002556 if (ret == -EINVAL && pev->uprobes)
2557 warn_uprobe_event_compat(tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002558
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002559 strlist__delete(namelist);
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002560close_out:
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002561 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002562 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002563}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002564
Wang Nan6bb536c2015-05-29 09:45:47 +00002565static int find_probe_functions(struct map *map, char *name,
2566 struct symbol **syms)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002567{
Namhyung Kim564c62a2015-01-14 20:18:07 +09002568 int found = 0;
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002569 struct symbol *sym;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002570 struct rb_node *tmp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002571
Wang Nan75e4a2a2015-05-15 12:14:44 +00002572 if (map__load(map, NULL) < 0)
2573 return 0;
2574
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002575 map__for_each_symbol(map, sym, tmp) {
Wang Nan6bb536c2015-05-29 09:45:47 +00002576 if (strglobmatch(sym->name, name)) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002577 found++;
Wang Nan6bb536c2015-05-29 09:45:47 +00002578 if (syms && found < probe_conf.max_probes)
2579 syms[found - 1] = sym;
2580 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002581 }
Namhyung Kim564c62a2015-01-14 20:18:07 +09002582
2583 return found;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002584}
2585
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302586void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2587 struct probe_trace_event *tev __maybe_unused,
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05302588 struct map *map __maybe_unused,
2589 struct symbol *sym __maybe_unused) { }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302590
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002591/*
2592 * Find probe function addresses from map.
2593 * Return an error or the number of found probe_trace_event
2594 */
2595static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002596 struct probe_trace_event **tevs)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002597{
2598 struct map *map = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002599 struct ref_reloc_sym *reloc_sym = NULL;
2600 struct symbol *sym;
Wang Nan6bb536c2015-05-29 09:45:47 +00002601 struct symbol **syms = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002602 struct probe_trace_event *tev;
2603 struct perf_probe_point *pp = &pev->point;
2604 struct probe_trace_point *tp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002605 int num_matched_functions;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002606 int ret, i, j, skipped = 0;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302607 char *mod_name;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002608
Masami Hiramatsu44225522015-05-08 10:03:28 +09002609 map = get_target_map(pev->target, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002610 if (!map) {
2611 ret = -EINVAL;
2612 goto out;
2613 }
2614
Wang Nan6bb536c2015-05-29 09:45:47 +00002615 syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2616 if (!syms) {
2617 ret = -ENOMEM;
2618 goto out;
2619 }
2620
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002621 /*
2622 * Load matched symbols: Since the different local symbols may have
2623 * same name but different addresses, this lists all the symbols.
2624 */
Wang Nan6bb536c2015-05-29 09:45:47 +00002625 num_matched_functions = find_probe_functions(map, pp->function, syms);
Namhyung Kim564c62a2015-01-14 20:18:07 +09002626 if (num_matched_functions == 0) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002627 pr_err("Failed to find symbol %s in %s\n", pp->function,
Masami Hiramatsu44225522015-05-08 10:03:28 +09002628 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002629 ret = -ENOENT;
2630 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002631 } else if (num_matched_functions > probe_conf.max_probes) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002632 pr_err("Too many functions matched in %s\n",
Masami Hiramatsu44225522015-05-08 10:03:28 +09002633 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002634 ret = -E2BIG;
2635 goto out;
2636 }
2637
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002638 /* Note that the symbols in the kmodule are not relocated */
2639 if (!pev->uprobes && !pp->retprobe && !pev->target) {
He Kuang0560a0c2015-03-20 09:56:56 +08002640 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002641 if (!reloc_sym) {
2642 pr_warning("Relocated base symbol is not found!\n");
2643 ret = -EINVAL;
2644 goto out;
2645 }
2646 }
2647
2648 /* Setup result trace-probe-events */
2649 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2650 if (!*tevs) {
2651 ret = -ENOMEM;
2652 goto out;
2653 }
2654
2655 ret = 0;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002656
Wang Nan6bb536c2015-05-29 09:45:47 +00002657 for (j = 0; j < num_matched_functions; j++) {
2658 sym = syms[j];
2659
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002660 tev = (*tevs) + ret;
2661 tp = &tev->point;
2662 if (ret == num_matched_functions) {
2663 pr_warning("Too many symbols are listed. Skip it.\n");
2664 break;
2665 }
2666 ret++;
2667
2668 if (pp->offset > sym->end - sym->start) {
2669 pr_warning("Offset %ld is bigger than the size of %s\n",
2670 pp->offset, sym->name);
2671 ret = -ENOENT;
2672 goto err_out;
2673 }
2674 /* Add one probe point */
2675 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002676
2677 /* Check the kprobe (not in module) is within .text */
2678 if (!pev->uprobes && !pev->target &&
Masami Hiramatsub0312202015-06-16 20:50:55 +09002679 kprobe_warn_out_range(sym->name, tp->address)) {
2680 tp->symbol = NULL; /* Skip it */
2681 skipped++;
2682 } else if (reloc_sym) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002683 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2684 tp->offset = tp->address - reloc_sym->addr;
2685 } else {
2686 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2687 tp->offset = pp->offset;
2688 }
Wang Nan6bb536c2015-05-29 09:45:47 +00002689 tp->realname = strdup_or_goto(sym->name, nomem_out);
2690
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002691 tp->retprobe = pp->retprobe;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302692 if (pev->target) {
2693 if (pev->uprobes) {
2694 tev->point.module = strdup_or_goto(pev->target,
2695 nomem_out);
2696 } else {
2697 mod_name = find_module_name(pev->target);
2698 tev->point.module =
2699 strdup(mod_name ? mod_name : pev->target);
2700 free(mod_name);
2701 if (!tev->point.module)
2702 goto nomem_out;
2703 }
2704 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002705 tev->uprobes = pev->uprobes;
2706 tev->nargs = pev->nargs;
2707 if (tev->nargs) {
2708 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2709 tev->nargs);
2710 if (tev->args == NULL)
2711 goto nomem_out;
2712 }
2713 for (i = 0; i < tev->nargs; i++) {
2714 if (pev->args[i].name)
2715 tev->args[i].name =
2716 strdup_or_goto(pev->args[i].name,
2717 nomem_out);
2718
2719 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2720 nomem_out);
2721 if (pev->args[i].type)
2722 tev->args[i].type =
2723 strdup_or_goto(pev->args[i].type,
2724 nomem_out);
2725 }
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05302726 arch__fix_tev_from_maps(pev, tev, map, sym);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002727 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002728 if (ret == skipped) {
2729 ret = -ENOENT;
2730 goto err_out;
2731 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002732
2733out:
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002734 put_target_map(map, pev->uprobes);
Wang Nan6bb536c2015-05-29 09:45:47 +00002735 free(syms);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002736 return ret;
2737
2738nomem_out:
2739 ret = -ENOMEM;
2740err_out:
2741 clear_probe_trace_events(*tevs, num_matched_functions);
2742 zfree(tevs);
2743 goto out;
2744}
2745
Wang Nanda15bd92015-08-26 10:57:45 +00002746static int try_to_find_absolute_address(struct perf_probe_event *pev,
2747 struct probe_trace_event **tevs)
2748{
2749 struct perf_probe_point *pp = &pev->point;
2750 struct probe_trace_event *tev;
2751 struct probe_trace_point *tp;
2752 int i, err;
2753
2754 if (!(pev->point.function && !strncmp(pev->point.function, "0x", 2)))
2755 return -EINVAL;
2756 if (perf_probe_event_need_dwarf(pev))
2757 return -EINVAL;
2758
2759 /*
2760 * This is 'perf probe /lib/libc.so 0xabcd'. Try to probe at
2761 * absolute address.
2762 *
2763 * Only one tev can be generated by this.
2764 */
2765 *tevs = zalloc(sizeof(*tev));
2766 if (!*tevs)
2767 return -ENOMEM;
2768
2769 tev = *tevs;
2770 tp = &tev->point;
2771
2772 /*
2773 * Don't use tp->offset, use address directly, because
2774 * in synthesize_probe_trace_command() address cannot be
2775 * zero.
2776 */
2777 tp->address = pev->point.abs_address;
2778 tp->retprobe = pp->retprobe;
2779 tev->uprobes = pev->uprobes;
2780
2781 err = -ENOMEM;
2782 /*
2783 * Give it a '0x' leading symbol name.
2784 * In __add_probe_trace_events, a NULL symbol is interpreted as
2785 * invalud.
2786 */
2787 if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
2788 goto errout;
2789
2790 /* For kprobe, check range */
2791 if ((!tev->uprobes) &&
2792 (kprobe_warn_out_range(tev->point.symbol,
2793 tev->point.address))) {
2794 err = -EACCES;
2795 goto errout;
2796 }
2797
2798 if (asprintf(&tp->realname, "abs_%lx", tp->address) < 0)
2799 goto errout;
2800
2801 if (pev->target) {
2802 tp->module = strdup(pev->target);
2803 if (!tp->module)
2804 goto errout;
2805 }
2806
2807 if (tev->group) {
2808 tev->group = strdup(pev->group);
2809 if (!tev->group)
2810 goto errout;
2811 }
2812
2813 if (pev->event) {
2814 tev->event = strdup(pev->event);
2815 if (!tev->event)
2816 goto errout;
2817 }
2818
2819 tev->nargs = pev->nargs;
2820 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
2821 if (!tev->args) {
2822 err = -ENOMEM;
2823 goto errout;
2824 }
2825 for (i = 0; i < tev->nargs; i++)
2826 copy_to_probe_trace_arg(&tev->args[i], &pev->args[i]);
2827
2828 return 1;
2829
2830errout:
2831 if (*tevs) {
2832 clear_probe_trace_events(*tevs, 1);
2833 *tevs = NULL;
2834 }
2835 return err;
2836}
2837
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302838bool __weak arch__prefers_symtab(void) { return false; }
2839
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302840static int convert_to_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002841 struct probe_trace_event **tevs)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002842{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002843 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002844
Masami Hiramatsu2a12ec12016-04-26 18:04:13 +09002845 if (!pev->group) {
2846 /* Set group name if not given */
2847 if (!pev->uprobes) {
2848 pev->group = strdup(PERFPROBE_GROUP);
2849 ret = pev->group ? 0 : -ENOMEM;
2850 } else
2851 ret = convert_exec_to_group(pev->target, &pev->group);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002852 if (ret != 0) {
2853 pr_warning("Failed to make a group name.\n");
2854 return ret;
2855 }
2856 }
2857
Wang Nanda15bd92015-08-26 10:57:45 +00002858 ret = try_to_find_absolute_address(pev, tevs);
2859 if (ret > 0)
2860 return ret;
2861
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302862 if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002863 ret = find_probe_trace_events_from_map(pev, tevs);
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302864 if (ret > 0)
2865 return ret; /* Found in symbol table */
2866 }
2867
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002868 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002869 ret = try_to_find_probe_trace_events(pev, tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002870 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002871 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002872
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002873 return find_probe_trace_events_from_map(pev, tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002874}
2875
Wang Nan12fae5e2015-09-04 21:16:00 +09002876int convert_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002877{
Namhyung Kim844dffa2015-09-04 21:15:59 +09002878 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002879
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002880 /* Loop 1: convert all events */
2881 for (i = 0; i < npevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +09002882 /* Init kprobe blacklist if needed */
Wang Nan12fae5e2015-09-04 21:16:00 +09002883 if (!pevs[i].uprobes)
Masami Hiramatsub0312202015-06-16 20:50:55 +09002884 kprobe_blacklist__init();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002885 /* Convert with or without debuginfo */
Wang Nan12fae5e2015-09-04 21:16:00 +09002886 ret = convert_to_probe_trace_events(&pevs[i], &pevs[i].tevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002887 if (ret < 0)
Namhyung Kim844dffa2015-09-04 21:15:59 +09002888 return ret;
Wang Nan12fae5e2015-09-04 21:16:00 +09002889 pevs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002890 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002891 /* This just release blacklist only if allocated */
2892 kprobe_blacklist__release();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002893
Namhyung Kim844dffa2015-09-04 21:15:59 +09002894 return 0;
2895}
2896
Wang Nan12fae5e2015-09-04 21:16:00 +09002897int apply_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09002898{
2899 int i, ret = 0;
2900
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002901 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03002902 for (i = 0; i < npevs; i++) {
Wang Nan12fae5e2015-09-04 21:16:00 +09002903 ret = __add_probe_trace_events(&pevs[i], pevs[i].tevs,
2904 pevs[i].ntevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002905 probe_conf.force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03002906 if (ret < 0)
2907 break;
2908 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09002909 return ret;
2910}
2911
Wang Nan12fae5e2015-09-04 21:16:00 +09002912void cleanup_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09002913{
2914 int i, j;
2915
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002916 /* Loop 3: cleanup and free trace events */
2917 for (i = 0; i < npevs; i++) {
Wang Nan12fae5e2015-09-04 21:16:00 +09002918 for (j = 0; j < pevs[i].ntevs; j++)
2919 clear_probe_trace_event(&pevs[i].tevs[j]);
2920 zfree(&pevs[i].tevs);
2921 pevs[i].ntevs = 0;
Namhyung Kima43aac22015-09-10 11:27:04 +09002922 clear_perf_probe_event(&pevs[i]);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002923 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09002924}
2925
2926int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
2927{
2928 int ret;
Namhyung Kim844dffa2015-09-04 21:15:59 +09002929
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002930 ret = init_probe_symbol_maps(pevs->uprobes);
2931 if (ret < 0)
2932 return ret;
2933
Wang Nan12fae5e2015-09-04 21:16:00 +09002934 ret = convert_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09002935 if (ret == 0)
Wang Nan12fae5e2015-09-04 21:16:00 +09002936 ret = apply_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09002937
Wang Nan12fae5e2015-09-04 21:16:00 +09002938 cleanup_perf_probe_events(pevs, npevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002939
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002940 exit_probe_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002941 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002942}
2943
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002944int del_perf_probe_events(struct strfilter *filter)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002945{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002946 int ret, ret2, ufd = -1, kfd = -1;
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002947 char *str = strfilter__string(filter);
2948
2949 if (!str)
2950 return -EINVAL;
2951
Masami Hiramatsufa282442009-12-08 17:03:23 -05002952 /* Get current event names */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002953 ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
2954 if (ret < 0)
2955 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302956
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002957 ret = probe_file__del_events(kfd, filter);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002958 if (ret < 0 && ret != -ENOENT)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302959 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002960
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002961 ret2 = probe_file__del_events(ufd, filter);
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002962 if (ret2 < 0 && ret2 != -ENOENT) {
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002963 ret = ret2;
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002964 goto error;
2965 }
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002966 ret = 0;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302967
2968error:
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002969 if (kfd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302970 close(kfd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002971 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302972 close(ufd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002973out:
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002974 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002975
2976 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002977}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302978
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002979/* TODO: don't use a global variable for filter ... */
2980static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002981
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002982/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002983 * If a symbol corresponds to a function with global binding and
2984 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002985 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002986static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002987 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002988{
Namhyung Kime578da32015-03-06 16:31:29 +09002989 if (strfilter__compare(available_func_filter, sym->name))
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002990 return 0;
2991 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002992}
2993
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002994int show_available_funcs(const char *target, struct strfilter *_filter,
2995 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002996{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002997 struct map *map;
2998 int ret;
2999
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003000 ret = init_probe_symbol_maps(user);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003001 if (ret < 0)
3002 return ret;
3003
3004 /* Get a symbol map */
3005 if (user)
3006 map = dso__new_map(target);
3007 else
3008 map = kernel_get_module_map(target);
3009 if (!map) {
3010 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003011 return -EINVAL;
3012 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003013
3014 /* Load symbols with given filter */
3015 available_func_filter = _filter;
3016 if (map__load(map, filter_available_functions)) {
3017 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
3018 goto end;
3019 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003020 if (!dso__sorted_by_name(map->dso, map->type))
3021 dso__sort_by_name(map->dso, map->type);
3022
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003023 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303024 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003025 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
3026end:
3027 if (user) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03003028 map__put(map);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003029 }
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003030 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303031
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003032 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303033}
3034
Wang Nanda15bd92015-08-26 10:57:45 +00003035int copy_to_probe_trace_arg(struct probe_trace_arg *tvar,
3036 struct perf_probe_arg *pvar)
3037{
3038 tvar->value = strdup(pvar->var);
3039 if (tvar->value == NULL)
3040 return -ENOMEM;
3041 if (pvar->type) {
3042 tvar->type = strdup(pvar->type);
3043 if (tvar->type == NULL)
3044 return -ENOMEM;
3045 }
3046 if (pvar->name) {
3047 tvar->name = strdup(pvar->name);
3048 if (tvar->name == NULL)
3049 return -ENOMEM;
3050 } else
3051 tvar->name = NULL;
3052 return 0;
3053}