blob: e86f8be89157ceac415c1f7ff265c96408930e3e [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
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030022#include <inttypes.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050023#include <sys/utsname.h>
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
27#include <errno.h>
28#include <stdio.h>
29#include <unistd.h>
30#include <stdlib.h>
31#include <string.h>
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050032#include <stdarg.h>
33#include <limits.h>
Masami Hiramatsue80711c2011-01-13 21:46:11 +090034#include <elf.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050035
Masami Hiramatsu31facc52010-03-16 18:05:30 -040036#include "util.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050037#include "event.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050038#include "strlist.h"
Arnaldo Carvalho de Melo8ec20b12017-04-18 10:57:25 -030039#include "strfilter.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050040#include "debug.h"
Masami Hiramatsu72041332010-01-05 17:47:10 -050041#include "cache.h"
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050042#include "color.h"
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040043#include "symbol.h"
44#include "thread.h"
Jiri Olsa4605eab2015-09-02 09:56:43 +020045#include <api/fs/fs.h>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030046#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050047#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040048#include "probe-finder.h"
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090049#include "probe-file.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053050#include "session.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030051#include "string2.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050052
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030053#include "sane_ctype.h"
54
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050055#define PERFPROBE_GROUP "probe"
56
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040057bool probe_event_dry_run; /* Dry run flag */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +090058struct probe_conf probe_conf;
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040059
Masami Hiramatsu146a1432010-04-12 13:17:42 -040060#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050061
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090062int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050063{
64 int ret;
65 va_list ap;
66 va_start(ap, format);
67 ret = vsnprintf(str, size, format, ap);
68 va_end(ap);
69 if (ret >= (int)size)
70 ret = -E2BIG;
71 return ret;
72}
73
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000074static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040075
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090076/* Initialize symbol maps and path of vmlinux/modules */
Namhyung Kim9bae1e82015-09-10 11:27:05 +090077int init_probe_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040078{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040079 int ret;
80
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040081 symbol_conf.sort_by_name = true;
Namhyung Kim680d9262015-03-06 16:31:27 +090082 symbol_conf.allow_aliases = true;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090083 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040084 if (ret < 0) {
85 pr_debug("Failed to init symbol map.\n");
86 goto out;
87 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040088
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000089 if (host_machine || user_only) /* already initialized */
90 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030091
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000092 if (symbol_conf.vmlinux_name)
93 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
94
95 host_machine = machine__new_host();
96 if (!host_machine) {
97 pr_debug("machine__new_host() failed.\n");
98 symbol__exit();
99 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900100 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400101out:
102 if (ret < 0)
103 pr_warning("Failed to init vmlinux path.\n");
104 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400105}
106
Namhyung Kim9bae1e82015-09-10 11:27:05 +0900107void exit_probe_symbol_maps(void)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000108{
Arnaldo Carvalho de Melo32ca6782016-06-22 10:19:11 -0300109 machine__delete(host_machine);
110 host_machine = NULL;
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000111 symbol__exit();
112}
113
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000114static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
115{
116 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
117 struct kmap *kmap;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300118 struct map *map = machine__kernel_map(host_machine);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000119
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300120 if (map__load(map) < 0)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000121 return NULL;
122
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300123 kmap = map__kmap(map);
Wang Nanba927322015-04-07 08:22:45 +0000124 if (!kmap)
125 return NULL;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000126 return kmap->ref_reloc_sym;
127}
128
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900129static int kernel_get_symbol_address_by_name(const char *name, u64 *addr,
130 bool reloc, bool reladdr)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000131{
132 struct ref_reloc_sym *reloc_sym;
133 struct symbol *sym;
134 struct map *map;
135
136 /* ref_reloc_sym is just a label. Need a special fix*/
137 reloc_sym = kernel_get_ref_reloc_sym();
138 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900139 *addr = (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000140 else {
Arnaldo Carvalho de Melo107cad92018-04-30 12:20:54 -0300141 sym = machine__find_kernel_symbol_by_name(host_machine, name, &map);
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900142 if (!sym)
143 return -ENOENT;
144 *addr = map->unmap_ip(map, sym->start) -
145 ((reloc) ? 0 : map->reloc) -
146 ((reladdr) ? map->start : 0);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000147 }
148 return 0;
149}
150
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900151static struct map *kernel_get_module_map(const char *module)
152{
Arnaldo Carvalho de Melo68a74182018-04-24 17:06:25 -0300153 struct maps *maps = machine__kernel_maps(host_machine);
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300154 struct map *pos;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900155
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900156 /* A file path -- this is an offline module */
157 if (module && strchr(module, '/'))
Masami Hiramatsueebc5092017-01-04 12:29:05 +0900158 return dso__new_map(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900159
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900160 if (!module)
161 module = "kernel";
162
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300163 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
Konstantin Khlebnikovcb3f3372016-08-05 15:22:36 +0300164 /* short_name is "[module]" */
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900165 if (strncmp(pos->dso->short_name + 1, module,
Konstantin Khlebnikovcb3f3372016-08-05 15:22:36 +0300166 pos->dso->short_name_len - 2) == 0 &&
167 module[pos->dso->short_name_len - 2] == '\0') {
Arnaldo Carvalho de Melof622df52018-05-24 11:17:34 -0300168 return map__get(pos);
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900169 }
170 }
171 return NULL;
172}
173
Krister Johansen544abd42017-07-05 18:48:10 -0700174struct map *get_target_map(const char *target, struct nsinfo *nsi, bool user)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900175{
176 /* Init maps of given executable or kernel */
Krister Johansen544abd42017-07-05 18:48:10 -0700177 if (user) {
178 struct map *map;
179
180 map = dso__new_map(target);
181 if (map && map->dso)
182 map->dso->nsinfo = nsinfo__get(nsi);
183 return map;
184 } else {
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900185 return kernel_get_module_map(target);
Krister Johansen544abd42017-07-05 18:48:10 -0700186 }
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900187}
188
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000189static int convert_exec_to_group(const char *exec, char **result)
190{
191 char *ptr1, *ptr2, *exec_copy;
192 char buf[64];
193 int ret;
194
195 exec_copy = strdup(exec);
196 if (!exec_copy)
197 return -ENOMEM;
198
199 ptr1 = basename(exec_copy);
200 if (!ptr1) {
201 ret = -EINVAL;
202 goto out;
203 }
204
Colin Ian Kingead1a572016-10-03 11:34:31 +0100205 for (ptr2 = ptr1; *ptr2 != '\0'; ptr2++) {
Masami Hiramatsu35726d32016-09-24 00:35:16 +0900206 if (!isalnum(*ptr2) && *ptr2 != '_') {
207 *ptr2 = '\0';
208 break;
209 }
210 }
211
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000212 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
213 if (ret < 0)
214 goto out;
215
216 *result = strdup(buf);
217 ret = *result ? 0 : -ENOMEM;
218
219out:
220 free(exec_copy);
221 return ret;
222}
223
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900224static void clear_perf_probe_point(struct perf_probe_point *pp)
225{
226 free(pp->file);
227 free(pp->function);
228 free(pp->lazy_line);
229}
230
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000231static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
232{
233 int i;
234
235 for (i = 0; i < ntevs; i++)
236 clear_probe_trace_event(tevs + i);
237}
238
Masami Hiramatsub0312202015-06-16 20:50:55 +0900239static bool kprobe_blacklist__listed(unsigned long address);
240static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
241{
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900242 u64 etext_addr = 0;
243 int ret;
He Kuang7c31bb82015-06-18 02:49:10 +0000244
Masami Hiramatsub0312202015-06-16 20:50:55 +0900245 /* Get the address of _etext for checking non-probable text symbol */
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900246 ret = kernel_get_symbol_address_by_name("_etext", &etext_addr,
247 false, false);
He Kuang7c31bb82015-06-18 02:49:10 +0000248
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900249 if (ret == 0 && etext_addr < address)
Masami Hiramatsub0312202015-06-16 20:50:55 +0900250 pr_warning("%s is out of .text, skip it.\n", symbol);
251 else if (kprobe_blacklist__listed(address))
252 pr_warning("%s is blacklisted function, skip it.\n", symbol);
253 else
254 return false;
255
256 return true;
257}
258
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530259/*
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530260 * @module can be module name of module file path. In case of path,
261 * inspect elf and find out what is actual module name.
262 * Caller has to free mod_name after using it.
263 */
264static char *find_module_name(const char *module)
265{
266 int fd;
267 Elf *elf;
268 GElf_Ehdr ehdr;
269 GElf_Shdr shdr;
270 Elf_Data *data;
271 Elf_Scn *sec;
272 char *mod_name = NULL;
Masami Hiramatsu1f2ed152017-01-03 00:20:49 +0900273 int name_offset;
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530274
275 fd = open(module, O_RDONLY);
276 if (fd < 0)
277 return NULL;
278
279 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
280 if (elf == NULL)
281 goto elf_err;
282
283 if (gelf_getehdr(elf, &ehdr) == NULL)
284 goto ret_err;
285
286 sec = elf_section_by_name(elf, &ehdr, &shdr,
287 ".gnu.linkonce.this_module", NULL);
288 if (!sec)
289 goto ret_err;
290
291 data = elf_getdata(sec, NULL);
292 if (!data || !data->d_buf)
293 goto ret_err;
294
Masami Hiramatsu1f2ed152017-01-03 00:20:49 +0900295 /*
296 * NOTE:
297 * '.gnu.linkonce.this_module' section of kernel module elf directly
298 * maps to 'struct module' from linux/module.h. This section contains
299 * actual module name which will be used by kernel after loading it.
300 * But, we cannot use 'struct module' here since linux/module.h is not
301 * exposed to user-space. Offset of 'name' has remained same from long
302 * time, so hardcoding it here.
303 */
304 if (ehdr.e_ident[EI_CLASS] == ELFCLASS32)
305 name_offset = 12;
306 else /* expect ELFCLASS64 by default */
307 name_offset = 24;
308
309 mod_name = strdup((char *)data->d_buf + name_offset);
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530310
311ret_err:
312 elf_end(elf);
313elf_err:
314 close(fd);
315 return mod_name;
316}
317
Ingo Molnar89fe8082013-09-30 12:07:11 +0200318#ifdef HAVE_DWARF_SUPPORT
Wang Nan60fb7742015-05-28 02:25:05 +0000319
320static int kernel_get_module_dso(const char *module, struct dso **pdso)
321{
322 struct dso *dso;
323 struct map *map;
324 const char *vmlinux_name;
325 int ret = 0;
326
327 if (module) {
Arnaldo Carvalho de Melo266fa2b2015-09-24 11:24:18 -0300328 char module_name[128];
329
330 snprintf(module_name, sizeof(module_name), "[%s]", module);
Arnaldo Carvalho de Melo83cf7742018-04-24 12:16:09 -0300331 map = map_groups__find_by_name(&host_machine->kmaps, module_name);
Arnaldo Carvalho de Melo266fa2b2015-09-24 11:24:18 -0300332 if (map) {
333 dso = map->dso;
334 goto found;
Wang Nan60fb7742015-05-28 02:25:05 +0000335 }
336 pr_debug("Failed to find module %s.\n", module);
337 return -ENOENT;
338 }
339
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300340 map = machine__kernel_map(host_machine);
Wang Nan60fb7742015-05-28 02:25:05 +0000341 dso = map->dso;
342
343 vmlinux_name = symbol_conf.vmlinux_name;
344 dso->load_errno = 0;
345 if (vmlinux_name)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300346 ret = dso__load_vmlinux(dso, map, vmlinux_name, false);
Wang Nan60fb7742015-05-28 02:25:05 +0000347 else
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300348 ret = dso__load_vmlinux_path(dso, map);
Wang Nan60fb7742015-05-28 02:25:05 +0000349found:
350 *pdso = dso;
351 return ret;
352}
353
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900354/*
355 * Some binaries like glibc have special symbols which are on the symbol
356 * table, but not in the debuginfo. If we can find the address of the
357 * symbol from map, we can translate the address back to the probe point.
358 */
359static int find_alternative_probe_point(struct debuginfo *dinfo,
360 struct perf_probe_point *pp,
361 struct perf_probe_point *result,
Krister Johansen544abd42017-07-05 18:48:10 -0700362 const char *target, struct nsinfo *nsi,
363 bool uprobes)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900364{
365 struct map *map = NULL;
366 struct symbol *sym;
367 u64 address = 0;
368 int ret = -ENOENT;
369
370 /* This can work only for function-name based one */
371 if (!pp->function || pp->file)
372 return -ENOTSUP;
373
Krister Johansen544abd42017-07-05 18:48:10 -0700374 map = get_target_map(target, nsi, uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900375 if (!map)
376 return -EINVAL;
377
378 /* Find the address of given function */
379 map__for_each_symbol_by_name(map, pp->function, sym) {
Masami Hiramatsue6d7c912015-03-22 20:40:22 +0900380 if (uprobes)
381 address = sym->start;
382 else
Masami Hiramatsu8e341892016-08-06 19:29:48 +0900383 address = map->unmap_ip(map, sym->start) - map->reloc;
Namhyung Kime578da32015-03-06 16:31:29 +0900384 break;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900385 }
386 if (!address) {
387 ret = -ENOENT;
388 goto out;
389 }
Wang Nanf6c15622015-04-08 02:14:34 +0000390 pr_debug("Symbol %s address found : %" PRIx64 "\n",
391 pp->function, address);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900392
393 ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
394 result);
395 if (ret <= 0)
396 ret = (!ret) ? -ENOENT : ret;
397 else {
398 result->offset += pp->offset;
399 result->line += pp->line;
He Kuang9d7b45c2015-04-13 19:41:28 +0800400 result->retprobe = pp->retprobe;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900401 ret = 0;
402 }
403
404out:
Masami Hiramatsueebc5092017-01-04 12:29:05 +0900405 map__put(map);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900406 return ret;
407
408}
409
410static int get_alternative_probe_event(struct debuginfo *dinfo,
411 struct perf_probe_event *pev,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900412 struct perf_probe_point *tmp)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900413{
414 int ret;
415
416 memcpy(tmp, &pev->point, sizeof(*tmp));
417 memset(&pev->point, 0, sizeof(pev->point));
Krister Johansen544abd42017-07-05 18:48:10 -0700418 ret = find_alternative_probe_point(dinfo, tmp, &pev->point, pev->target,
419 pev->nsi, pev->uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900420 if (ret < 0)
421 memcpy(&pev->point, tmp, sizeof(*tmp));
422
423 return ret;
424}
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000425
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900426static int get_alternative_line_range(struct debuginfo *dinfo,
427 struct line_range *lr,
428 const char *target, bool user)
429{
David Ahern6d4a4892015-03-11 10:36:20 -0400430 struct perf_probe_point pp = { .function = lr->function,
431 .file = lr->file,
432 .line = lr->start };
433 struct perf_probe_point result;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900434 int ret, len = 0;
435
David Ahern6d4a4892015-03-11 10:36:20 -0400436 memset(&result, 0, sizeof(result));
437
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900438 if (lr->end != INT_MAX)
439 len = lr->end - lr->start;
440 ret = find_alternative_probe_point(dinfo, &pp, &result,
Krister Johansen544abd42017-07-05 18:48:10 -0700441 target, NULL, user);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900442 if (!ret) {
443 lr->function = result.function;
444 lr->file = result.file;
445 lr->start = result.line;
446 if (lr->end != INT_MAX)
447 lr->end = lr->start + len;
448 clear_perf_probe_point(&pp);
449 }
450 return ret;
451}
452
Masami Hiramatsuff741782011-06-27 16:27:39 +0900453/* Open new debuginfo of given module */
Krister Johansen544abd42017-07-05 18:48:10 -0700454static struct debuginfo *open_debuginfo(const char *module, struct nsinfo *nsi,
455 bool silent)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900456{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000457 const char *path = module;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900458 char reason[STRERR_BUFSIZE];
459 struct debuginfo *ret = NULL;
460 struct dso *dso = NULL;
Krister Johansen544abd42017-07-05 18:48:10 -0700461 struct nscookie nsc;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900462 int err;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900463
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000464 if (!module || !strchr(module, '/')) {
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900465 err = kernel_get_module_dso(module, &dso);
466 if (err < 0) {
467 if (!dso || dso->load_errno == 0) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300468 if (!str_error_r(-err, reason, STRERR_BUFSIZE))
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900469 strcpy(reason, "(unknown)");
470 } else
471 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000472 if (!silent)
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900473 pr_err("Failed to find the path for %s: %s\n",
474 module ?: "kernel", reason);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900475 return NULL;
476 }
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900477 path = dso->long_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900478 }
Krister Johansen544abd42017-07-05 18:48:10 -0700479 nsinfo__mountns_enter(nsi, &nsc);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000480 ret = debuginfo__new(path);
481 if (!ret && !silent) {
482 pr_warning("The %s file has no debug information.\n", path);
483 if (!module || !strtailcmp(path, ".ko"))
484 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
485 else
486 pr_warning("Rebuild with -g, ");
487 pr_warning("or install an appropriate debuginfo package.\n");
488 }
Krister Johansen544abd42017-07-05 18:48:10 -0700489 nsinfo__mountns_exit(&nsc);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000490 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400491}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300492
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900493/* For caching the last debuginfo */
494static struct debuginfo *debuginfo_cache;
495static char *debuginfo_cache_path;
496
497static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
498{
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900499 const char *path = module;
500
501 /* If the module is NULL, it should be the kernel. */
502 if (!module)
503 path = "kernel";
504
505 if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900506 goto out;
507
508 /* Copy module path */
509 free(debuginfo_cache_path);
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900510 debuginfo_cache_path = strdup(path);
511 if (!debuginfo_cache_path) {
512 debuginfo__delete(debuginfo_cache);
513 debuginfo_cache = NULL;
514 goto out;
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900515 }
516
Krister Johansen544abd42017-07-05 18:48:10 -0700517 debuginfo_cache = open_debuginfo(module, NULL, silent);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900518 if (!debuginfo_cache)
519 zfree(&debuginfo_cache_path);
520out:
521 return debuginfo_cache;
522}
523
524static void debuginfo_cache__exit(void)
525{
526 debuginfo__delete(debuginfo_cache);
527 debuginfo_cache = NULL;
528 zfree(&debuginfo_cache_path);
529}
530
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000531
Krister Johansen544abd42017-07-05 18:48:10 -0700532static int get_text_start_address(const char *exec, unsigned long *address,
533 struct nsinfo *nsi)
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000534{
535 Elf *elf;
536 GElf_Ehdr ehdr;
537 GElf_Shdr shdr;
538 int fd, ret = -ENOENT;
Krister Johansen544abd42017-07-05 18:48:10 -0700539 struct nscookie nsc;
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000540
Krister Johansen544abd42017-07-05 18:48:10 -0700541 nsinfo__mountns_enter(nsi, &nsc);
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000542 fd = open(exec, O_RDONLY);
Krister Johansen544abd42017-07-05 18:48:10 -0700543 nsinfo__mountns_exit(&nsc);
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000544 if (fd < 0)
545 return -errno;
546
547 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900548 if (elf == NULL) {
549 ret = -EINVAL;
550 goto out_close;
551 }
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000552
553 if (gelf_getehdr(elf, &ehdr) == NULL)
554 goto out;
555
556 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
557 goto out;
558
559 *address = shdr.sh_addr - shdr.sh_offset;
560 ret = 0;
561out:
562 elf_end(elf);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900563out_close:
564 close(fd);
565
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000566 return ret;
567}
568
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000569/*
570 * Convert trace point to probe point with debuginfo
571 */
572static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
573 struct perf_probe_point *pp,
574 bool is_kprobe)
575{
576 struct debuginfo *dinfo = NULL;
577 unsigned long stext = 0;
578 u64 addr = tp->address;
579 int ret = -ENOENT;
580
581 /* convert the address to dwarf address */
582 if (!is_kprobe) {
583 if (!addr) {
584 ret = -EINVAL;
585 goto error;
586 }
Krister Johansen544abd42017-07-05 18:48:10 -0700587 ret = get_text_start_address(tp->module, &stext, NULL);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000588 if (ret < 0)
589 goto error;
590 addr += stext;
Wang Nane4863672015-08-25 13:27:35 +0000591 } else if (tp->symbol) {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900592 /* If the module is given, this returns relative address */
593 ret = kernel_get_symbol_address_by_name(tp->symbol, &addr,
594 false, !!tp->module);
595 if (ret != 0)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000596 goto error;
597 addr += tp->offset;
598 }
599
600 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
601 tp->module ? : "kernel");
602
Namhyung Kimbb963e12017-02-17 17:17:38 +0900603 dinfo = debuginfo_cache__open(tp->module, verbose <= 0);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900604 if (dinfo)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000605 ret = debuginfo__find_probe_point(dinfo,
606 (unsigned long)addr, pp);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900607 else
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000608 ret = -ENOENT;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000609
610 if (ret > 0) {
611 pp->retprobe = tp->retprobe;
612 return 0;
613 }
614error:
615 pr_debug("Failed to find corresponding probes from debuginfo.\n");
616 return ret ? : -ENOENT;
617}
618
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900619/* Adjust symbol name and address */
620static int post_process_probe_trace_point(struct probe_trace_point *tp,
621 struct map *map, unsigned long offs)
622{
623 struct symbol *sym;
Björn Töpel7598f8b2017-06-21 18:41:34 +0200624 u64 addr = tp->address - offs;
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900625
626 sym = map__find_symbol(map, addr);
627 if (!sym)
628 return -ENOENT;
629
630 if (strcmp(sym->name, tp->symbol)) {
631 /* If we have no realname, use symbol for it */
632 if (!tp->realname)
633 tp->realname = tp->symbol;
634 else
635 free(tp->symbol);
636 tp->symbol = strdup(sym->name);
637 if (!tp->symbol)
638 return -ENOMEM;
639 }
640 tp->offset = addr - sym->start;
641 tp->address -= offs;
642
643 return 0;
644}
645
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900646/*
647 * Rename DWARF symbols to ELF symbols -- gcc sometimes optimizes functions
648 * and generate new symbols with suffixes such as .constprop.N or .isra.N
649 * etc. Since those symbols are not recorded in DWARF, we have to find
650 * correct generated symbols from offline ELF binary.
651 * For online kernel or uprobes we don't need this because those are
652 * rebased on _text, or already a section relative address.
653 */
654static int
655post_process_offline_probe_trace_events(struct probe_trace_event *tevs,
656 int ntevs, const char *pathname)
657{
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900658 struct map *map;
659 unsigned long stext = 0;
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900660 int i, ret = 0;
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900661
662 /* Prepare a map for offline binary */
663 map = dso__new_map(pathname);
Krister Johansen544abd42017-07-05 18:48:10 -0700664 if (!map || get_text_start_address(pathname, &stext, NULL) < 0) {
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900665 pr_warning("Failed to get ELF symbols for %s\n", pathname);
666 return -EINVAL;
667 }
668
669 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900670 ret = post_process_probe_trace_point(&tevs[i].point,
671 map, stext);
672 if (ret < 0)
673 break;
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900674 }
675 map__put(map);
676
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900677 return ret;
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900678}
679
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000680static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
Krister Johansen544abd42017-07-05 18:48:10 -0700681 int ntevs, const char *exec,
682 struct nsinfo *nsi)
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000683{
684 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000685 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000686
687 if (!exec)
688 return 0;
689
Krister Johansen544abd42017-07-05 18:48:10 -0700690 ret = get_text_start_address(exec, &stext, nsi);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000691 if (ret < 0)
692 return ret;
693
694 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000695 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000696 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000697 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000698 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000699 ret = -ENOMEM;
700 break;
701 }
702 tevs[i].uprobes = true;
703 }
704
705 return ret;
706}
707
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900708static int
709post_process_module_probe_trace_events(struct probe_trace_event *tevs,
710 int ntevs, const char *module,
711 struct debuginfo *dinfo)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900712{
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900713 Dwarf_Addr text_offs = 0;
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900714 int i, ret = 0;
Ravi Bangoria63a29612016-04-26 19:55:41 +0530715 char *mod_name = NULL;
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900716 struct map *map;
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900717
718 if (!module)
719 return 0;
720
Krister Johansen544abd42017-07-05 18:48:10 -0700721 map = get_target_map(module, NULL, false);
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900722 if (!map || debuginfo__get_text_offset(dinfo, &text_offs, true) < 0) {
723 pr_warning("Failed to get ELF symbols for %s\n", module);
724 return -EINVAL;
725 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900726
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900727 mod_name = find_module_name(module);
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900728 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900729 ret = post_process_probe_trace_point(&tevs[i].point,
730 map, (unsigned long)text_offs);
731 if (ret < 0)
732 break;
Ravi Bangoria63a29612016-04-26 19:55:41 +0530733 tevs[i].point.module =
734 strdup(mod_name ? mod_name : module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900735 if (!tevs[i].point.module) {
736 ret = -ENOMEM;
737 break;
738 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900739 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900740
Ravi Bangoria63a29612016-04-26 19:55:41 +0530741 free(mod_name);
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900742 map__put(map);
743
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900744 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900745}
746
Ravi Bangoriad8204562016-08-09 01:23:24 -0500747static int
748post_process_kernel_probe_trace_events(struct probe_trace_event *tevs,
749 int ntevs)
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000750{
751 struct ref_reloc_sym *reloc_sym;
752 char *tmp;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900753 int i, skipped = 0;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000754
Masami Hiramatsu428aff82016-08-26 01:24:42 +0900755 /* Skip post process if the target is an offline kernel */
756 if (symbol_conf.ignore_vmlinux_buildid)
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900757 return post_process_offline_probe_trace_events(tevs, ntevs,
758 symbol_conf.vmlinux_name);
Masami Hiramatsu428aff82016-08-26 01:24:42 +0900759
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000760 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000761 if (!reloc_sym) {
762 pr_warning("Relocated base symbol is not found!\n");
763 return -EINVAL;
764 }
765
766 for (i = 0; i < ntevs; i++) {
Naveen N. Rao7ab31d92017-03-08 13:56:09 +0530767 if (!tevs[i].point.address)
768 continue;
769 if (tevs[i].point.retprobe && !kretprobe_offset_is_supported())
Masami Hiramatsub0312202015-06-16 20:50:55 +0900770 continue;
771 /* If we found a wrong one, mark it by NULL symbol */
772 if (kprobe_warn_out_range(tevs[i].point.symbol,
773 tevs[i].point.address)) {
774 tmp = NULL;
775 skipped++;
776 } else {
777 tmp = strdup(reloc_sym->name);
778 if (!tmp)
779 return -ENOMEM;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000780 }
Masami Hiramatsub0312202015-06-16 20:50:55 +0900781 /* If we have no realname, use symbol for it */
782 if (!tevs[i].point.realname)
783 tevs[i].point.realname = tevs[i].point.symbol;
784 else
785 free(tevs[i].point.symbol);
786 tevs[i].point.symbol = tmp;
787 tevs[i].point.offset = tevs[i].point.address -
788 reloc_sym->unrelocated_addr;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000789 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900790 return skipped;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000791}
792
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500793void __weak
794arch__post_process_probe_trace_events(struct perf_probe_event *pev __maybe_unused,
795 int ntevs __maybe_unused)
796{
797}
798
Ravi Bangoriad8204562016-08-09 01:23:24 -0500799/* Post processing the probe events */
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500800static int post_process_probe_trace_events(struct perf_probe_event *pev,
801 struct probe_trace_event *tevs,
Ravi Bangoriad8204562016-08-09 01:23:24 -0500802 int ntevs, const char *module,
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900803 bool uprobe, struct debuginfo *dinfo)
Ravi Bangoriad8204562016-08-09 01:23:24 -0500804{
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500805 int ret;
806
Ravi Bangoriad8204562016-08-09 01:23:24 -0500807 if (uprobe)
Krister Johansen544abd42017-07-05 18:48:10 -0700808 ret = add_exec_to_probe_trace_events(tevs, ntevs, module,
809 pev->nsi);
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500810 else if (module)
Ravi Bangoriad8204562016-08-09 01:23:24 -0500811 /* Currently ref_reloc_sym based probe is not for drivers */
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900812 ret = post_process_module_probe_trace_events(tevs, ntevs,
813 module, dinfo);
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500814 else
815 ret = post_process_kernel_probe_trace_events(tevs, ntevs);
Ravi Bangoriad8204562016-08-09 01:23:24 -0500816
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500817 if (ret >= 0)
818 arch__post_process_probe_trace_events(pev, ntevs);
819
820 return ret;
Ravi Bangoriad8204562016-08-09 01:23:24 -0500821}
822
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300823/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530824static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900825 struct probe_trace_event **tevs)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300826{
827 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900828 struct perf_probe_point tmp;
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530829 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900830 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300831
Krister Johansen544abd42017-07-05 18:48:10 -0700832 dinfo = open_debuginfo(pev->target, pev->nsi, !need_dwarf);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900833 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000834 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900835 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900836 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300837 return 0;
838 }
839
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000840 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900841 /* Searching trace events corresponding to a probe event */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900842 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900843
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900844 if (ntevs == 0) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900845 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900846 if (!ret) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900847 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900848 /*
849 * Write back to the original probe_event for
850 * setting appropriate (user given) event name
851 */
852 clear_perf_probe_point(&pev->point);
853 memcpy(&pev->point, &tmp, sizeof(tmp));
854 }
855 }
856
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400857 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000858 pr_debug("Found %d probe_trace_events.\n", ntevs);
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500859 ret = post_process_probe_trace_events(pev, *tevs, ntevs,
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900860 pev->target, pev->uprobes, dinfo);
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900861 if (ret < 0 || ret == ntevs) {
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900862 pr_debug("Post processing failed or all events are skipped. (%d)\n", ret);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000863 clear_probe_trace_events(*tevs, ntevs);
864 zfree(tevs);
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900865 ntevs = 0;
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000866 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400867 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300868
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900869 debuginfo__delete(dinfo);
870
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400871 if (ntevs == 0) { /* No error but failed to find probe point. */
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900872 pr_warning("Probe point '%s' not found.\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400873 synthesize_perf_probe_point(&pev->point));
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900874 return -ENOENT;
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900875 } else if (ntevs < 0) {
876 /* Error path : ntevs < 0 */
877 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
Wang Nan1c0bd0e2015-08-21 10:09:02 +0000878 if (ntevs == -EBADF)
879 pr_warning("Warning: No dwarf info found in the vmlinux - "
880 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400881 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900882 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400883 return 0;
884 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300885 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400886 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300887}
888
889#define LINEBUF_SIZE 256
890#define NR_ADDITIONAL_LINES 2
891
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100892static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300893{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000894 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100895 const char *color = show_num ? "" : PERF_COLOR_BLUE;
896 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300897
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100898 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300899 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
900 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100901 if (skip)
902 continue;
903 if (!prefix) {
904 prefix = show_num ? "%7d " : " ";
905 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300906 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100907 color_fprintf(stdout, color, "%s", buf);
908
909 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400910
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100911 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300912error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100913 if (ferror(fp)) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000914 pr_warning("File read error: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300915 str_error_r(errno, sbuf, sizeof(sbuf)));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100916 return -1;
917 }
918 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300919}
920
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100921static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
922{
923 int rv = __show_one_line(fp, l, skip, show_num);
924 if (rv == 0) {
925 pr_warning("Source file is shorter than expected.\n");
926 rv = -1;
927 }
928 return rv;
929}
930
931#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
932#define show_one_line(f,l) _show_one_line(f,l,false,false)
933#define skip_one_line(f,l) _show_one_line(f,l,true,false)
934#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
935
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300936/*
937 * Show line-range always requires debuginfo to find source file and
938 * line number.
939 */
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900940static int __show_line_range(struct line_range *lr, const char *module,
941 bool user)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300942{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400943 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000944 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900945 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300946 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900947 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900948 char *tmp;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000949 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300950
951 /* Search a line range */
Krister Johansen544abd42017-07-05 18:48:10 -0700952 dinfo = open_debuginfo(module, NULL, false);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000953 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900954 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400955
Masami Hiramatsuff741782011-06-27 16:27:39 +0900956 ret = debuginfo__find_line_range(dinfo, lr);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900957 if (!ret) { /* Not found, retry with an alternative */
958 ret = get_alternative_line_range(dinfo, lr, module, user);
959 if (!ret)
960 ret = debuginfo__find_line_range(dinfo, lr);
961 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900962 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000963 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400964 pr_warning("Specified source line is not found.\n");
965 return -ENOENT;
966 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000967 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400968 return ret;
969 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300970
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900971 /* Convert source file path */
972 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900973 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
He Kuanga78604d2015-03-04 18:01:42 +0800974
975 /* Free old path when new path is assigned */
976 if (tmp != lr->path)
977 free(tmp);
978
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900979 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000980 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900981 return ret;
982 }
983
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300984 setup_pager();
985
986 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900987 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300988 lr->start - lr->offset);
989 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100990 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300991
992 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400993 if (fp == NULL) {
994 pr_warning("Failed to open %s: %s\n", lr->path,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300995 str_error_r(errno, sbuf, sizeof(sbuf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400996 return -errno;
997 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300998 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100999 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +01001000 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +01001001 if (ret < 0)
1002 goto end;
1003 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001004
Arnaldo Carvalho de Melo10daf4d2016-06-23 11:39:19 -03001005 intlist__for_each_entry(ln, lr->line_list) {
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001006 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +01001007 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +01001008 if (ret < 0)
1009 goto end;
1010 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +01001011 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001012 if (ret < 0)
1013 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001014 }
1015
1016 if (lr->end == INT_MAX)
1017 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +01001018 while (l <= lr->end) {
1019 ret = show_one_line_or_eof(fp, l++ - lr->offset);
1020 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +01001021 break;
1022 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001023end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001024 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001025 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001026}
1027
Krister Johansen544abd42017-07-05 18:48:10 -07001028int show_line_range(struct line_range *lr, const char *module,
1029 struct nsinfo *nsi, bool user)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001030{
1031 int ret;
Krister Johansen544abd42017-07-05 18:48:10 -07001032 struct nscookie nsc;
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001033
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001034 ret = init_probe_symbol_maps(user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001035 if (ret < 0)
1036 return ret;
Krister Johansen544abd42017-07-05 18:48:10 -07001037 nsinfo__mountns_enter(nsi, &nsc);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +09001038 ret = __show_line_range(lr, module, user);
Krister Johansen544abd42017-07-05 18:48:10 -07001039 nsinfo__mountns_exit(&nsc);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001040 exit_probe_symbol_maps();
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001041
1042 return ret;
1043}
1044
Masami Hiramatsuff741782011-06-27 16:27:39 +09001045static int show_available_vars_at(struct debuginfo *dinfo,
1046 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001047 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001048{
1049 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001050 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001051 struct str_node *node;
1052 struct variable_list *vls = NULL, *vl;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001053 struct perf_probe_point tmp;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001054 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001055
1056 buf = synthesize_perf_probe_point(&pev->point);
1057 if (!buf)
1058 return -EINVAL;
1059 pr_debug("Searching variables at %s\n", buf);
1060
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001061 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001062 if (!ret) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +09001063 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001064 if (!ret) {
1065 ret = debuginfo__find_available_vars_at(dinfo, pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001066 &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001067 /* Release the old probe_point */
1068 clear_perf_probe_point(&tmp);
1069 }
1070 }
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001071 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +00001072 if (ret == 0 || ret == -ENOENT) {
1073 pr_err("Failed to find the address of %s\n", buf);
1074 ret = -ENOENT;
1075 } else
1076 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001077 goto end;
1078 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +00001079
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001080 /* Some variables are found */
1081 fprintf(stdout, "Available variables at %s\n", buf);
1082 for (i = 0; i < ret; i++) {
1083 vl = &vls[i];
1084 /*
1085 * A probe point might be converted to
1086 * several trace points.
1087 */
1088 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
1089 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001090 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001091 nvars = 0;
1092 if (vl->vars) {
Arnaldo Carvalho de Melo602a1f42016-06-23 11:31:20 -03001093 strlist__for_each_entry(node, vl->vars) {
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001094 var = strchr(node->s, '\t') + 1;
1095 if (strfilter__compare(_filter, var)) {
1096 fprintf(stdout, "\t\t%s\n", node->s);
1097 nvars++;
1098 }
1099 }
1100 strlist__delete(vl->vars);
1101 }
1102 if (nvars == 0)
1103 fprintf(stdout, "\t\t(No matched variables)\n");
1104 }
1105 free(vls);
1106end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001107 free(buf);
1108 return ret;
1109}
1110
1111/* Show available variables on given probe point */
1112int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001113 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001114{
Masami Hiramatsuff741782011-06-27 16:27:39 +09001115 int i, ret = 0;
1116 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001117
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001118 ret = init_probe_symbol_maps(pevs->uprobes);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001119 if (ret < 0)
1120 return ret;
1121
Krister Johansen544abd42017-07-05 18:48:10 -07001122 dinfo = open_debuginfo(pevs->target, pevs->nsi, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001123 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001124 ret = -ENOENT;
1125 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +09001126 }
1127
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001128 setup_pager();
1129
Masami Hiramatsuff741782011-06-27 16:27:39 +09001130 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001131 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001132
1133 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001134out:
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001135 exit_probe_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001136 return ret;
1137}
1138
Ingo Molnar89fe8082013-09-30 12:07:11 +02001139#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001140
Masami Hiramatsu7737af02015-06-17 23:58:54 +09001141static void debuginfo_cache__exit(void)
1142{
1143}
1144
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001145static int
1146find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
1147 struct perf_probe_point *pp __maybe_unused,
1148 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001149{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001150 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001151}
1152
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301153static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001154 struct probe_trace_event **tevs __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001155{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001156 if (perf_probe_event_need_dwarf(pev)) {
1157 pr_warning("Debuginfo-analysis is not supported.\n");
1158 return -ENOSYS;
1159 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301160
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001161 return 0;
1162}
1163
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001164int show_line_range(struct line_range *lr __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +00001165 const char *module __maybe_unused,
Krister Johansen544abd42017-07-05 18:48:10 -07001166 struct nsinfo *nsi __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +00001167 bool user __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001168{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001169 pr_warning("Debuginfo-analysis is not supported.\n");
1170 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001171}
1172
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001173int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001174 int npevs __maybe_unused,
1175 struct strfilter *filter __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001176{
1177 pr_warning("Debuginfo-analysis is not supported.\n");
1178 return -ENOSYS;
1179}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001180#endif
1181
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001182void line_range__clear(struct line_range *lr)
1183{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001184 free(lr->function);
1185 free(lr->file);
1186 free(lr->path);
1187 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001188 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001189 memset(lr, 0, sizeof(*lr));
1190}
1191
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001192int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001193{
1194 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001195 lr->line_list = intlist__new(NULL);
1196 if (!lr->line_list)
1197 return -ENOMEM;
1198 else
1199 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001200}
1201
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001202static int parse_line_num(char **ptr, int *val, const char *what)
1203{
1204 const char *start = *ptr;
1205
1206 errno = 0;
1207 *val = strtol(*ptr, ptr, 0);
1208 if (errno || *ptr == start) {
1209 semantic_error("'%s' is not a valid number.\n", what);
1210 return -EINVAL;
1211 }
1212 return 0;
1213}
1214
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001215/* Check the name is good for event, group or function */
1216static bool is_c_func_name(const char *name)
1217{
1218 if (!isalpha(*name) && *name != '_')
1219 return false;
1220 while (*++name != '\0') {
1221 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1222 return false;
1223 }
1224 return true;
1225}
1226
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001227/*
1228 * Stuff 'lr' according to the line range described by 'arg'.
1229 * The line range syntax is described by:
1230 *
1231 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001232 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001233 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001234int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001235{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001236 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001237 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001238
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001239 if (!name)
1240 return -ENOMEM;
1241
1242 lr->start = 0;
1243 lr->end = INT_MAX;
1244
1245 range = strchr(name, ':');
1246 if (range) {
1247 *range++ = '\0';
1248
1249 err = parse_line_num(&range, &lr->start, "start line");
1250 if (err)
1251 goto err;
1252
1253 if (*range == '+' || *range == '-') {
1254 const char c = *range++;
1255
1256 err = parse_line_num(&range, &lr->end, "end line");
1257 if (err)
1258 goto err;
1259
1260 if (c == '+') {
1261 lr->end += lr->start;
1262 /*
1263 * Adjust the number of lines here.
1264 * If the number of lines == 1, the
1265 * the end of line should be equal to
1266 * the start of line.
1267 */
1268 lr->end--;
1269 }
1270 }
1271
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001272 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001273
1274 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001275 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001276 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001277 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001278 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001279 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001280 if (*range != '\0') {
1281 semantic_error("Tailing with invalid str '%s'.\n", range);
1282 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001283 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001284 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001285
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001286 file = strchr(name, '@');
1287 if (file) {
1288 *file = '\0';
1289 lr->file = strdup(++file);
1290 if (lr->file == NULL) {
1291 err = -ENOMEM;
1292 goto err;
1293 }
1294 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001295 } else if (strchr(name, '/') || strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001296 lr->file = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001297 else if (is_c_func_name(name))/* We reuse it for checking funcname */
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001298 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001299 else { /* Invalid name */
1300 semantic_error("'%s' is not a valid function name.\n", name);
1301 err = -EINVAL;
1302 goto err;
1303 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001304
1305 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001306err:
1307 free(name);
1308 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001309}
1310
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001311static int parse_perf_probe_event_name(char **arg, struct perf_probe_event *pev)
1312{
1313 char *ptr;
1314
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001315 ptr = strpbrk_esc(*arg, ":");
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001316 if (ptr) {
1317 *ptr = '\0';
Masami Hiramatsu42bba262016-07-12 19:05:18 +09001318 if (!pev->sdt && !is_c_func_name(*arg))
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001319 goto ng_name;
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001320 pev->group = strdup_esc(*arg);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001321 if (!pev->group)
1322 return -ENOMEM;
1323 *arg = ptr + 1;
1324 } else
1325 pev->group = NULL;
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001326
1327 pev->event = strdup_esc(*arg);
1328 if (pev->event == NULL)
1329 return -ENOMEM;
1330
1331 if (!pev->sdt && !is_c_func_name(pev->event)) {
1332 zfree(&pev->event);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001333ng_name:
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001334 zfree(&pev->group);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001335 semantic_error("%s is bad for event name -it must "
1336 "follow C symbol-naming rule.\n", *arg);
1337 return -EINVAL;
1338 }
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001339 return 0;
1340}
1341
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001342/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001343static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001344{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001345 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001346 char *ptr, *tmp;
1347 char c, nc = 0;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301348 bool file_spec = false;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001349 int ret;
1350
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001351 /*
1352 * <Syntax>
Masami Hiramatsu8d993d92016-07-01 17:04:01 +09001353 * perf probe [GRP:][EVENT=]SRC[:LN|;PTN]
1354 * perf probe [GRP:][EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001355 * perf probe %[GRP:]SDT_EVENT
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001356 */
Wang Nane59d29e2015-04-28 08:46:09 +00001357 if (!arg)
1358 return -EINVAL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001359
Ravi Bangoriaaf9100a2017-03-14 20:36:52 +05301360 if (is_sdt_event(arg)) {
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001361 pev->sdt = true;
Masami Hiramatsu7e9fca52016-07-12 19:05:46 +09001362 if (arg[0] == '%')
1363 arg++;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001364 }
1365
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001366 ptr = strpbrk_esc(arg, ";=@+%");
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001367 if (pev->sdt) {
1368 if (ptr) {
Masami Hiramatsua5981802016-07-12 19:05:37 +09001369 if (*ptr != '@') {
1370 semantic_error("%s must be an SDT name.\n",
1371 arg);
1372 return -EINVAL;
1373 }
1374 /* This must be a target file name or build id */
1375 tmp = build_id_cache__complement(ptr + 1);
1376 if (tmp) {
1377 pev->target = build_id_cache__origname(tmp);
1378 free(tmp);
1379 } else
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001380 pev->target = strdup_esc(ptr + 1);
Masami Hiramatsua5981802016-07-12 19:05:37 +09001381 if (!pev->target)
1382 return -ENOMEM;
1383 *ptr = '\0';
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001384 }
1385 ret = parse_perf_probe_event_name(&arg, pev);
1386 if (ret == 0) {
1387 if (asprintf(&pev->point.function, "%%%s", pev->event) < 0)
1388 ret = -errno;
1389 }
1390 return ret;
1391 }
1392
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001393 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001394 *ptr = '\0';
1395 tmp = ptr + 1;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001396 ret = parse_perf_probe_event_name(&arg, pev);
1397 if (ret < 0)
1398 return ret;
1399
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001400 arg = tmp;
1401 }
1402
Naveen N. Rao3099c022015-04-28 17:35:34 +05301403 /*
1404 * Check arg is function or file name and copy it.
1405 *
1406 * We consider arg to be a file spec if and only if it satisfies
1407 * all of the below criteria::
1408 * - it does not include any of "+@%",
1409 * - it includes one of ":;", and
1410 * - it has a period '.' in the name.
1411 *
1412 * Otherwise, we consider arg to be a function specification.
1413 */
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001414 if (!strpbrk_esc(arg, "+@%")) {
1415 ptr = strpbrk_esc(arg, ";:");
Naveen N. Rao3099c022015-04-28 17:35:34 +05301416 /* This is a file spec if it includes a '.' before ; or : */
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001417 if (ptr && memchr(arg, '.', ptr - arg))
Naveen N. Rao3099c022015-04-28 17:35:34 +05301418 file_spec = true;
1419 }
1420
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001421 ptr = strpbrk_esc(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001422 if (ptr) {
1423 nc = *ptr;
1424 *ptr++ = '\0';
1425 }
1426
Wang Nan6c6e0242015-08-26 10:57:44 +00001427 if (arg[0] == '\0')
1428 tmp = NULL;
1429 else {
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001430 tmp = strdup_esc(arg);
Wang Nan6c6e0242015-08-26 10:57:44 +00001431 if (tmp == NULL)
1432 return -ENOMEM;
1433 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001434
Naveen N. Rao3099c022015-04-28 17:35:34 +05301435 if (file_spec)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001436 pp->file = tmp;
Wang Nanda15bd92015-08-26 10:57:45 +00001437 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001438 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001439
Wang Nanda15bd92015-08-26 10:57:45 +00001440 /*
1441 * Keep pp->function even if this is absolute address,
1442 * so it can mark whether abs_address is valid.
1443 * Which make 'perf probe lib.bin 0x0' possible.
1444 *
1445 * Note that checking length of tmp is not needed
1446 * because when we access tmp[1] we know tmp[0] is '0',
1447 * so tmp[1] should always valid (but could be '\0').
1448 */
1449 if (tmp && !strncmp(tmp, "0x", 2)) {
1450 pp->abs_address = strtoul(pp->function, &tmp, 0);
1451 if (*tmp != '\0') {
1452 semantic_error("Invalid absolute address.\n");
1453 return -EINVAL;
1454 }
1455 }
1456 }
1457
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001458 /* Parse other options */
1459 while (ptr) {
1460 arg = ptr;
1461 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001462 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001463 pp->lazy_line = strdup(arg); /* let leave escapes */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001464 if (pp->lazy_line == NULL)
1465 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001466 break;
1467 }
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001468 ptr = strpbrk_esc(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001469 if (ptr) {
1470 nc = *ptr;
1471 *ptr++ = '\0';
1472 }
1473 switch (c) {
1474 case ':': /* Line number */
1475 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001476 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001477 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001478 " in line number.\n");
1479 return -EINVAL;
1480 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001481 break;
1482 case '+': /* Byte offset from a symbol */
1483 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001484 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001485 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001486 " in offset.\n");
1487 return -EINVAL;
1488 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001489 break;
1490 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001491 if (pp->file) {
1492 semantic_error("SRC@SRC is not allowed.\n");
1493 return -EINVAL;
1494 }
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001495 pp->file = strdup_esc(arg);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001496 if (pp->file == NULL)
1497 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001498 break;
1499 case '%': /* Probe places */
1500 if (strcmp(arg, "return") == 0) {
1501 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001502 } else { /* Others not supported yet */
1503 semantic_error("%%%s is not supported.\n", arg);
1504 return -ENOTSUP;
1505 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001506 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001507 default: /* Buggy case */
1508 pr_err("This program has a bug at %s:%d.\n",
1509 __FILE__, __LINE__);
1510 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001511 break;
1512 }
1513 }
1514
1515 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001516 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001517 semantic_error("Lazy pattern can't be used with"
1518 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001519 return -EINVAL;
1520 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001521
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001522 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001523 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001524 return -EINVAL;
1525 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001526
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001527 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001528 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001529 return -EINVAL;
1530 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001531
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001532 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001533 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001534 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001535 return -EINVAL;
1536 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001537
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001538 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001539 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001540 return -EINVAL;
1541 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001542
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001543 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001544 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001545 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001546 return -EINVAL;
1547 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001548
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001549 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001550 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1551 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001552 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001553}
1554
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001555/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001556static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001557{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001558 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001559 struct perf_probe_arg_field **fieldp;
1560
1561 pr_debug("parsing arg: %s into ", str);
1562
Masami Hiramatsu48481932010-04-12 13:16:53 -04001563 tmp = strchr(str, '=');
1564 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001565 arg->name = strndup(str, tmp - str);
1566 if (arg->name == NULL)
1567 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001568 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001569 str = tmp + 1;
1570 }
1571
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001572 tmp = strchr(str, ':');
1573 if (tmp) { /* Type setting */
1574 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001575 arg->type = strdup(tmp + 1);
1576 if (arg->type == NULL)
1577 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001578 pr_debug("type:%s ", arg->type);
1579 }
1580
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001581 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001582 if (!is_c_varname(str) || !tmp) {
1583 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001584 arg->var = strdup(str);
1585 if (arg->var == NULL)
1586 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001587 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001588 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001589 }
1590
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001591 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001592 arg->var = strndup(str, tmp - str);
1593 if (arg->var == NULL)
1594 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001595 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001596 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001597 fieldp = &arg->field;
1598
1599 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001600 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1601 if (*fieldp == NULL)
1602 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001603 if (*tmp == '[') { /* Array */
1604 str = tmp;
1605 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001606 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001607 if (*tmp != ']' || tmp == str + 1) {
1608 semantic_error("Array index must be a"
1609 " number.\n");
1610 return -EINVAL;
1611 }
1612 tmp++;
1613 if (*tmp == '\0')
1614 tmp = NULL;
1615 } else { /* Structure */
1616 if (*tmp == '.') {
1617 str = tmp + 1;
1618 (*fieldp)->ref = false;
1619 } else if (tmp[1] == '>') {
1620 str = tmp + 2;
1621 (*fieldp)->ref = true;
1622 } else {
1623 semantic_error("Argument parse error: %s\n",
1624 str);
1625 return -EINVAL;
1626 }
1627 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001628 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001629 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001630 (*fieldp)->name = strndup(str, tmp - str);
1631 if ((*fieldp)->name == NULL)
1632 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001633 if (*str != '[')
1634 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001635 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1636 fieldp = &(*fieldp)->next;
1637 }
1638 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001639 (*fieldp)->name = strdup(str);
1640 if ((*fieldp)->name == NULL)
1641 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001642 if (*str != '[')
1643 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001644 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001645
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001646 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001647 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001648 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001649 if (arg->name == NULL)
1650 return -ENOMEM;
1651 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001652 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001653}
1654
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001655/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001656int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001657{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001658 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001659 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001660
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001661 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001662 if (!argv) {
1663 pr_debug("Failed to split arguments.\n");
1664 return -ENOMEM;
1665 }
1666 if (argc - 1 > MAX_PROBE_ARGS) {
1667 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1668 ret = -ERANGE;
1669 goto out;
1670 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001671 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001672 ret = parse_perf_probe_point(argv[0], pev);
1673 if (ret < 0)
1674 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001675
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001676 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001677 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001678 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1679 if (pev->args == NULL) {
1680 ret = -ENOMEM;
1681 goto out;
1682 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001683 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1684 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1685 if (ret >= 0 &&
1686 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001687 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001688 " kretprobe.\n");
1689 ret = -EINVAL;
1690 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001691 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001692out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001693 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001694
1695 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001696}
1697
Ravi Bangoriab3f33f92016-08-03 14:28:44 +05301698/* Returns true if *any* ARG is either C variable, $params or $vars. */
1699bool perf_probe_with_var(struct perf_probe_event *pev)
1700{
1701 int i = 0;
1702
1703 for (i = 0; i < pev->nargs; i++)
1704 if (is_c_varname(pev->args[i].var) ||
1705 !strcmp(pev->args[i].var, PROBE_ARG_PARAMS) ||
1706 !strcmp(pev->args[i].var, PROBE_ARG_VARS))
1707 return true;
1708 return false;
1709}
1710
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001711/* Return true if this perf_probe_event requires debuginfo */
1712bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001713{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001714 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1715 return true;
1716
Ravi Bangoriab3f33f92016-08-03 14:28:44 +05301717 if (perf_probe_with_var(pev))
1718 return true;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001719
1720 return false;
1721}
1722
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301723/* Parse probe_events event into struct probe_point */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09001724int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001725{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301726 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001727 char pr;
1728 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001729 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001730 int ret, i, argc;
1731 char **argv;
1732
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301733 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001734 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001735 if (!argv) {
1736 pr_debug("Failed to split arguments.\n");
1737 return -ENOMEM;
1738 }
1739 if (argc < 2) {
1740 semantic_error("Too few probe arguments.\n");
1741 ret = -ERANGE;
1742 goto out;
1743 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001744
1745 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001746 argv0_str = strdup(argv[0]);
1747 if (argv0_str == NULL) {
1748 ret = -ENOMEM;
1749 goto out;
1750 }
1751 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1752 fmt2_str = strtok_r(NULL, "/", &fmt);
1753 fmt3_str = strtok_r(NULL, " \t", &fmt);
1754 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1755 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001756 semantic_error("Failed to parse event name: %s\n", argv[0]);
1757 ret = -EINVAL;
1758 goto out;
1759 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001760 pr = fmt1_str[0];
1761 tev->group = strdup(fmt2_str);
1762 tev->event = strdup(fmt3_str);
1763 if (tev->group == NULL || tev->event == NULL) {
1764 ret = -ENOMEM;
1765 goto out;
1766 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001767 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001768
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001769 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001770
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001771 /* Scan module name(if there), function name and offset */
1772 p = strchr(argv[1], ':');
1773 if (p) {
1774 tp->module = strndup(argv[1], p - argv[1]);
Masami Hiramatsu844faa42016-06-08 18:29:21 +09001775 if (!tp->module) {
1776 ret = -ENOMEM;
1777 goto out;
1778 }
Masami Hiramatsu42bba262016-07-12 19:05:18 +09001779 tev->uprobes = (tp->module[0] == '/');
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001780 p++;
1781 } else
1782 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001783 fmt1_str = strtok_r(p, "+", &fmt);
Wang Nanbe07afe2015-08-26 10:57:43 +00001784 /* only the address started with 0x */
1785 if (fmt1_str[0] == '0') {
1786 /*
1787 * Fix a special case:
1788 * if address == 0, kernel reports something like:
1789 * p:probe_libc/abs_0 /lib/libc-2.18.so:0x (null) arg1=%ax
1790 * Newer kernel may fix that, but we want to
1791 * support old kernel also.
1792 */
1793 if (strcmp(fmt1_str, "0x") == 0) {
1794 if (!argv[2] || strcmp(argv[2], "(null)")) {
1795 ret = -EINVAL;
1796 goto out;
1797 }
1798 tp->address = 0;
1799
1800 free(argv[2]);
1801 for (i = 2; argv[i + 1] != NULL; i++)
1802 argv[i] = argv[i + 1];
1803
1804 argv[i] = NULL;
1805 argc -= 1;
1806 } else
1807 tp->address = strtoul(fmt1_str, NULL, 0);
1808 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001809 /* Only the symbol-based probe has offset */
1810 tp->symbol = strdup(fmt1_str);
1811 if (tp->symbol == NULL) {
1812 ret = -ENOMEM;
1813 goto out;
1814 }
1815 fmt2_str = strtok_r(NULL, "", &fmt);
1816 if (fmt2_str == NULL)
1817 tp->offset = 0;
1818 else
1819 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001820 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001821
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05301822 if (tev->uprobes) {
1823 fmt2_str = strchr(p, '(');
1824 if (fmt2_str)
1825 tp->ref_ctr_offset = strtoul(fmt2_str + 1, NULL, 0);
1826 }
1827
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001828 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301829 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001830 if (tev->args == NULL) {
1831 ret = -ENOMEM;
1832 goto out;
1833 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001834 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001835 p = strchr(argv[i + 2], '=');
1836 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001837 *p++ = '\0';
1838 else
1839 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001840 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001841 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001842 tev->args[i].value = strdup(p);
1843 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1844 ret = -ENOMEM;
1845 goto out;
1846 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001847 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001848 ret = 0;
1849out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001850 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001851 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001852 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001853}
1854
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001855/* Compose only probe arg */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001856char *synthesize_perf_probe_arg(struct perf_probe_arg *pa)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001857{
1858 struct perf_probe_arg_field *field = pa->field;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001859 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001860 char *ret = NULL;
1861 int err;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001862
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001863 if (strbuf_init(&buf, 64) < 0)
1864 return NULL;
1865
Masami Hiramatsu48481932010-04-12 13:16:53 -04001866 if (pa->name && pa->var)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001867 err = strbuf_addf(&buf, "%s=%s", pa->name, pa->var);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001868 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001869 err = strbuf_addstr(&buf, pa->name ?: pa->var);
1870 if (err)
1871 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001872
1873 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001874 if (field->name[0] == '[')
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001875 err = strbuf_addstr(&buf, field->name);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001876 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001877 err = strbuf_addf(&buf, "%s%s", field->ref ? "->" : ".",
1878 field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001879 field = field->next;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001880 if (err)
1881 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001882 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001883
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001884 if (pa->type)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001885 if (strbuf_addf(&buf, ":%s", pa->type) < 0)
1886 goto out;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001887
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001888 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001889out:
1890 strbuf_release(&buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001891 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001892}
1893
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001894/* Compose only probe point (not argument) */
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001895char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001896{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001897 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001898 char *tmp, *ret = NULL;
1899 int len, err = 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001900
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001901 if (strbuf_init(&buf, 64) < 0)
1902 return NULL;
1903
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001904 if (pp->function) {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001905 if (strbuf_addstr(&buf, pp->function) < 0)
1906 goto out;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001907 if (pp->offset)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001908 err = strbuf_addf(&buf, "+%lu", pp->offset);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001909 else if (pp->line)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001910 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001911 else if (pp->retprobe)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001912 err = strbuf_addstr(&buf, "%return");
1913 if (err)
1914 goto out;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001915 }
1916 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001917 tmp = pp->file;
1918 len = strlen(tmp);
1919 if (len > 30) {
1920 tmp = strchr(pp->file + len - 30, '/');
1921 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1922 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001923 err = strbuf_addf(&buf, "@%s", tmp);
1924 if (!err && !pp->function && pp->line)
1925 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001926 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001927 if (!err)
1928 ret = strbuf_detach(&buf, NULL);
1929out:
1930 strbuf_release(&buf);
1931 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001932}
1933
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001934char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1935{
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001936 struct strbuf buf;
1937 char *tmp, *ret = NULL;
1938 int i;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001939
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001940 if (strbuf_init(&buf, 64))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001941 return NULL;
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001942 if (pev->event)
1943 if (strbuf_addf(&buf, "%s:%s=", pev->group ?: PERFPROBE_GROUP,
1944 pev->event) < 0)
1945 goto out;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001946
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001947 tmp = synthesize_perf_probe_point(&pev->point);
1948 if (!tmp || strbuf_addstr(&buf, tmp) < 0)
1949 goto out;
1950 free(tmp);
1951
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001952 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001953 tmp = synthesize_perf_probe_arg(pev->args + i);
1954 if (!tmp || strbuf_addf(&buf, " %s", tmp) < 0)
1955 goto out;
1956 free(tmp);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001957 }
1958
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001959 ret = strbuf_detach(&buf, NULL);
1960out:
1961 strbuf_release(&buf);
1962 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001963}
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001964
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301965static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001966 struct strbuf *buf, int depth)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001967{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001968 int err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001969 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301970 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001971 depth + 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001972 if (depth < 0)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001973 return depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001974 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001975 err = strbuf_addf(buf, "%+ld(", ref->offset);
1976 return (err < 0) ? err : depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001977}
1978
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301979static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001980 struct strbuf *buf)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001981{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301982 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001983 int depth = 0, err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001984
1985 /* Argument name or separator */
1986 if (arg->name)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001987 err = strbuf_addf(buf, " %s=", arg->name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001988 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001989 err = strbuf_addch(buf, ' ');
1990 if (err)
1991 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001992
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001993 /* Special case: @XXX */
1994 if (arg->value[0] == '@' && arg->ref)
1995 ref = ref->next;
1996
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001997 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001998 if (ref) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001999 depth = __synthesize_probe_trace_arg_ref(ref, buf, 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002000 if (depth < 0)
2001 return depth;
2002 }
2003
2004 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04002005 if (arg->value[0] == '@' && arg->ref)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002006 err = strbuf_addf(buf, "%s%+ld", arg->value, arg->ref->offset);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04002007 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002008 err = strbuf_addstr(buf, arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002009
2010 /* Closing */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002011 while (!err && depth--)
2012 err = strbuf_addch(buf, ')');
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002013
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002014 /* Print argument type */
2015 if (!err && arg->type)
2016 err = strbuf_addf(buf, ":%s", arg->type);
2017
2018 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002019}
2020
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302021static int
2022synthesize_uprobe_trace_def(struct probe_trace_event *tev, struct strbuf *buf)
2023{
2024 struct probe_trace_point *tp = &tev->point;
2025 int err;
2026
2027 err = strbuf_addf(buf, "%s:0x%lx", tp->module, tp->address);
2028
2029 if (err >= 0 && tp->ref_ctr_offset) {
2030 if (!uprobe_ref_ctr_is_supported())
2031 return -1;
2032 err = strbuf_addf(buf, "(0x%lx)", tp->ref_ctr_offset);
2033 }
2034 return err >= 0 ? 0 : -1;
2035}
2036
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302037char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002038{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302039 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002040 struct strbuf buf;
2041 char *ret = NULL;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002042 int i, err;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002043
Wang Nanda15bd92015-08-26 10:57:45 +00002044 /* Uprobes must have tp->module */
2045 if (tev->uprobes && !tp->module)
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002046 return NULL;
2047
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002048 if (strbuf_init(&buf, 32) < 0)
2049 return NULL;
2050
2051 if (strbuf_addf(&buf, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
2052 tev->group, tev->event) < 0)
2053 goto error;
Wang Nanda15bd92015-08-26 10:57:45 +00002054 /*
2055 * If tp->address == 0, then this point must be a
2056 * absolute address uprobe.
2057 * try_to_find_absolute_address() should have made
2058 * tp->symbol to "0x0".
2059 */
2060 if (tev->uprobes && !tp->address) {
2061 if (!tp->symbol || strcmp(tp->symbol, "0x0"))
2062 goto error;
2063 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002064
2065 /* Use the tp->address for uprobes */
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302066 if (tev->uprobes) {
2067 err = synthesize_uprobe_trace_def(tev, &buf);
2068 } else if (!strncmp(tp->symbol, "0x", 2)) {
Wang Nanda15bd92015-08-26 10:57:45 +00002069 /* Absolute address. See try_to_find_absolute_address() */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002070 err = strbuf_addf(&buf, "%s%s0x%lx", tp->module ?: "",
2071 tp->module ? ":" : "", tp->address);
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302072 } else {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002073 err = strbuf_addf(&buf, "%s%s%s+%lu", tp->module ?: "",
2074 tp->module ? ":" : "", tp->symbol, tp->offset);
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302075 }
2076
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002077 if (err)
2078 goto error;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302079
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002080 for (i = 0; i < tev->nargs; i++)
2081 if (synthesize_probe_trace_arg(&tev->args[i], &buf) < 0)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002082 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002083
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002084 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002085error:
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002086 strbuf_release(&buf);
2087 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002088}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002089
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002090static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
2091 struct perf_probe_point *pp,
2092 bool is_kprobe)
2093{
2094 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo8a2efd62017-02-14 15:28:41 -03002095 struct map *map = NULL;
Wang Nane4863672015-08-25 13:27:35 +00002096 u64 addr = tp->address;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002097 int ret = -ENOENT;
2098
2099 if (!is_kprobe) {
2100 map = dso__new_map(tp->module);
2101 if (!map)
2102 goto out;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002103 sym = map__find_symbol(map, addr);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002104 } else {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09002105 if (tp->symbol && !addr) {
Masami Hiramatsu0a62f682015-11-06 17:30:03 +09002106 if (kernel_get_symbol_address_by_name(tp->symbol,
2107 &addr, true, false) < 0)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09002108 goto out;
2109 }
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002110 if (addr) {
2111 addr += tp->offset;
Arnaldo Carvalho de Melo107cad92018-04-30 12:20:54 -03002112 sym = machine__find_kernel_symbol(host_machine, addr, &map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002113 }
2114 }
Wang Nan98d3b252015-11-05 13:19:25 +00002115
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002116 if (!sym)
2117 goto out;
2118
2119 pp->retprobe = tp->retprobe;
2120 pp->offset = addr - map->unmap_ip(map, sym->start);
2121 pp->function = strdup(sym->name);
2122 ret = pp->function ? 0 : -ENOMEM;
2123
2124out:
2125 if (map && !is_kprobe) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03002126 map__put(map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002127 }
2128
2129 return ret;
2130}
2131
2132static int convert_to_perf_probe_point(struct probe_trace_point *tp,
Wang Nanda15bd92015-08-26 10:57:45 +00002133 struct perf_probe_point *pp,
2134 bool is_kprobe)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002135{
2136 char buf[128];
2137 int ret;
2138
2139 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
2140 if (!ret)
2141 return 0;
2142 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
2143 if (!ret)
2144 return 0;
2145
2146 pr_debug("Failed to find probe point from both of dwarf and map.\n");
2147
2148 if (tp->symbol) {
2149 pp->function = strdup(tp->symbol);
2150 pp->offset = tp->offset;
Wang Nan614e2fd2015-08-26 10:57:42 +00002151 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002152 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
2153 if (ret < 0)
2154 return ret;
2155 pp->function = strdup(buf);
2156 pp->offset = 0;
2157 }
2158 if (pp->function == NULL)
2159 return -ENOMEM;
2160
2161 pp->retprobe = tp->retprobe;
2162
2163 return 0;
2164}
2165
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302166static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302167 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002168{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002169 struct strbuf buf = STRBUF_INIT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002170 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002171
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002172 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002173 pev->event = strdup(tev->event);
2174 pev->group = strdup(tev->group);
2175 if (pev->event == NULL || pev->group == NULL)
2176 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04002177
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002178 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002179 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002180 if (ret < 0)
2181 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002182
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002183 /* Convert trace_arg to probe_arg */
2184 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002185 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
2186 if (pev->args == NULL)
2187 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002188 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002189 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002190 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002191 else {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002192 if ((ret = strbuf_init(&buf, 32)) < 0)
2193 goto error;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002194 ret = synthesize_probe_trace_arg(&tev->args[i], &buf);
2195 pev->args[i].name = strbuf_detach(&buf, NULL);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002196 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002197 if (pev->args[i].name == NULL && ret >= 0)
2198 ret = -ENOMEM;
2199 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002200error:
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002201 if (ret < 0)
2202 clear_perf_probe_event(pev);
2203
2204 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002205}
2206
2207void clear_perf_probe_event(struct perf_probe_event *pev)
2208{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002209 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002210 int i;
2211
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002212 free(pev->event);
2213 free(pev->group);
Masami Hiramatsu7afb3fa2015-04-01 19:25:39 +09002214 free(pev->target);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002215 clear_perf_probe_point(&pev->point);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002216
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002217 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002218 free(pev->args[i].name);
2219 free(pev->args[i].var);
2220 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002221 field = pev->args[i].field;
2222 while (field) {
2223 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002224 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002225 free(field);
2226 field = next;
2227 }
2228 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002229 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002230 memset(pev, 0, sizeof(*pev));
2231}
2232
Masami Hiramatsu0542bb92016-06-08 18:29:40 +09002233#define strdup_or_goto(str, label) \
2234({ char *__p = NULL; if (str && !(__p = strdup(str))) goto label; __p; })
2235
2236static int perf_probe_point__copy(struct perf_probe_point *dst,
2237 struct perf_probe_point *src)
2238{
2239 dst->file = strdup_or_goto(src->file, out_err);
2240 dst->function = strdup_or_goto(src->function, out_err);
2241 dst->lazy_line = strdup_or_goto(src->lazy_line, out_err);
2242 dst->line = src->line;
2243 dst->retprobe = src->retprobe;
2244 dst->offset = src->offset;
2245 return 0;
2246
2247out_err:
2248 clear_perf_probe_point(dst);
2249 return -ENOMEM;
2250}
2251
2252static int perf_probe_arg__copy(struct perf_probe_arg *dst,
2253 struct perf_probe_arg *src)
2254{
2255 struct perf_probe_arg_field *field, **ppfield;
2256
2257 dst->name = strdup_or_goto(src->name, out_err);
2258 dst->var = strdup_or_goto(src->var, out_err);
2259 dst->type = strdup_or_goto(src->type, out_err);
2260
2261 field = src->field;
2262 ppfield = &(dst->field);
2263 while (field) {
2264 *ppfield = zalloc(sizeof(*field));
2265 if (!*ppfield)
2266 goto out_err;
2267 (*ppfield)->name = strdup_or_goto(field->name, out_err);
2268 (*ppfield)->index = field->index;
2269 (*ppfield)->ref = field->ref;
2270 field = field->next;
2271 ppfield = &((*ppfield)->next);
2272 }
2273 return 0;
2274out_err:
2275 return -ENOMEM;
2276}
2277
2278int perf_probe_event__copy(struct perf_probe_event *dst,
2279 struct perf_probe_event *src)
2280{
2281 int i;
2282
2283 dst->event = strdup_or_goto(src->event, out_err);
2284 dst->group = strdup_or_goto(src->group, out_err);
2285 dst->target = strdup_or_goto(src->target, out_err);
2286 dst->uprobes = src->uprobes;
2287
2288 if (perf_probe_point__copy(&dst->point, &src->point) < 0)
2289 goto out_err;
2290
2291 dst->args = zalloc(sizeof(struct perf_probe_arg) * src->nargs);
2292 if (!dst->args)
2293 goto out_err;
2294 dst->nargs = src->nargs;
2295
2296 for (i = 0; i < src->nargs; i++)
2297 if (perf_probe_arg__copy(&dst->args[i], &src->args[i]) < 0)
2298 goto out_err;
2299 return 0;
2300
2301out_err:
2302 clear_perf_probe_event(dst);
2303 return -ENOMEM;
2304}
2305
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002306void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002307{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302308 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002309 int i;
2310
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002311 free(tev->event);
2312 free(tev->group);
2313 free(tev->point.symbol);
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002314 free(tev->point.realname);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002315 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002316 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002317 free(tev->args[i].name);
2318 free(tev->args[i].value);
2319 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002320 ref = tev->args[i].ref;
2321 while (ref) {
2322 next = ref->next;
2323 free(ref);
2324 ref = next;
2325 }
2326 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002327 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002328 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002329}
2330
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002331struct kprobe_blacklist_node {
2332 struct list_head list;
2333 unsigned long start;
2334 unsigned long end;
2335 char *symbol;
2336};
2337
2338static void kprobe_blacklist__delete(struct list_head *blacklist)
2339{
2340 struct kprobe_blacklist_node *node;
2341
2342 while (!list_empty(blacklist)) {
2343 node = list_first_entry(blacklist,
2344 struct kprobe_blacklist_node, list);
2345 list_del(&node->list);
2346 free(node->symbol);
2347 free(node);
2348 }
2349}
2350
2351static int kprobe_blacklist__load(struct list_head *blacklist)
2352{
2353 struct kprobe_blacklist_node *node;
Jiri Olsa4605eab2015-09-02 09:56:43 +02002354 const char *__debugfs = debugfs__mountpoint();
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002355 char buf[PATH_MAX], *p;
2356 FILE *fp;
2357 int ret;
2358
2359 if (__debugfs == NULL)
2360 return -ENOTSUP;
2361
2362 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2363 if (ret < 0)
2364 return ret;
2365
2366 fp = fopen(buf, "r");
2367 if (!fp)
2368 return -errno;
2369
2370 ret = 0;
2371 while (fgets(buf, PATH_MAX, fp)) {
2372 node = zalloc(sizeof(*node));
2373 if (!node) {
2374 ret = -ENOMEM;
2375 break;
2376 }
2377 INIT_LIST_HEAD(&node->list);
2378 list_add_tail(&node->list, blacklist);
2379 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2380 ret = -EINVAL;
2381 break;
2382 }
2383 p = strchr(buf, '\t');
2384 if (p) {
2385 p++;
2386 if (p[strlen(p) - 1] == '\n')
2387 p[strlen(p) - 1] = '\0';
2388 } else
2389 p = (char *)"unknown";
2390 node->symbol = strdup(p);
2391 if (!node->symbol) {
2392 ret = -ENOMEM;
2393 break;
2394 }
2395 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2396 node->start, node->end, node->symbol);
2397 ret++;
2398 }
2399 if (ret < 0)
2400 kprobe_blacklist__delete(blacklist);
2401 fclose(fp);
2402
2403 return ret;
2404}
2405
2406static struct kprobe_blacklist_node *
2407kprobe_blacklist__find_by_address(struct list_head *blacklist,
2408 unsigned long address)
2409{
2410 struct kprobe_blacklist_node *node;
2411
2412 list_for_each_entry(node, blacklist, list) {
Li Bin2c294612017-08-29 20:57:23 +08002413 if (node->start <= address && address < node->end)
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002414 return node;
2415 }
2416
2417 return NULL;
2418}
2419
Masami Hiramatsub0312202015-06-16 20:50:55 +09002420static LIST_HEAD(kprobe_blacklist);
2421
2422static void kprobe_blacklist__init(void)
2423{
2424 if (!list_empty(&kprobe_blacklist))
2425 return;
2426
2427 if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2428 pr_debug("No kprobe blacklist support, ignored\n");
2429}
2430
2431static void kprobe_blacklist__release(void)
2432{
2433 kprobe_blacklist__delete(&kprobe_blacklist);
2434}
2435
2436static bool kprobe_blacklist__listed(unsigned long address)
2437{
2438 return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2439}
2440
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002441static int perf_probe_event__sprintf(const char *group, const char *event,
2442 struct perf_probe_event *pev,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002443 const char *module,
2444 struct strbuf *result)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002445{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002446 int i, ret;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002447 char *buf;
2448
2449 if (asprintf(&buf, "%s:%s", group, event) < 0)
2450 return -errno;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002451 ret = strbuf_addf(result, " %-20s (on ", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002452 free(buf);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002453 if (ret)
2454 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002455
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002456 /* Synthesize only event probe point */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002457 buf = synthesize_perf_probe_point(&pev->point);
2458 if (!buf)
2459 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002460 ret = strbuf_addstr(result, buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002461 free(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002462
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002463 if (!ret && module)
2464 ret = strbuf_addf(result, " in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002465
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002466 if (!ret && pev->nargs > 0) {
2467 ret = strbuf_add(result, " with", 5);
2468 for (i = 0; !ret && i < pev->nargs; i++) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002469 buf = synthesize_perf_probe_arg(&pev->args[i]);
2470 if (!buf)
2471 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002472 ret = strbuf_addf(result, " %s", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002473 free(buf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002474 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002475 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002476 if (!ret)
2477 ret = strbuf_addch(result, ')');
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002478
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002479 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002480}
2481
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002482/* Show an event */
Namhyung Kimb02137c2015-09-04 21:16:01 +09002483int show_perf_probe_event(const char *group, const char *event,
2484 struct perf_probe_event *pev,
2485 const char *module, bool use_stdout)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002486{
2487 struct strbuf buf = STRBUF_INIT;
2488 int ret;
2489
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002490 ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002491 if (ret >= 0) {
2492 if (use_stdout)
2493 printf("%s\n", buf.buf);
2494 else
2495 pr_info("%s\n", buf.buf);
2496 }
2497 strbuf_release(&buf);
2498
2499 return ret;
2500}
2501
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002502static bool filter_probe_trace_event(struct probe_trace_event *tev,
2503 struct strfilter *filter)
2504{
2505 char tmp[128];
2506
2507 /* At first, check the event name itself */
2508 if (strfilter__compare(filter, tev->event))
2509 return true;
2510
2511 /* Next, check the combination of name and group */
2512 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2513 return false;
2514 return strfilter__compare(filter, tmp);
2515}
2516
2517static int __show_perf_probe_events(int fd, bool is_kprobe,
2518 struct strfilter *filter)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002519{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302520 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302521 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002522 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002523 struct strlist *rawlist;
2524 struct str_node *ent;
2525
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002526 memset(&tev, 0, sizeof(tev));
2527 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05002528
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002529 rawlist = probe_file__get_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002530 if (!rawlist)
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002531 return -ENOMEM;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002532
Arnaldo Carvalho de Melo602a1f42016-06-23 11:31:20 -03002533 strlist__for_each_entry(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302534 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002535 if (ret >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002536 if (!filter_probe_trace_event(&tev, filter))
2537 goto next;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302538 ret = convert_to_perf_probe_event(&tev, &pev,
2539 is_kprobe);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002540 if (ret < 0)
2541 goto next;
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002542 ret = show_perf_probe_event(pev.group, pev.event,
2543 &pev, tev.point.module,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002544 true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002545 }
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002546next:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002547 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302548 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002549 if (ret < 0)
2550 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002551 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002552 strlist__delete(rawlist);
Masami Hiramatsu7737af02015-06-17 23:58:54 +09002553 /* Cleanup cached debuginfo if needed */
2554 debuginfo_cache__exit();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002555
2556 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002557}
2558
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302559/* List up current perf-probe events */
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002560int show_perf_probe_events(struct strfilter *filter)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302561{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002562 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302563
2564 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302565
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +09002566 if (probe_conf.cache)
2567 return probe_cache__show_all_caches(filter);
2568
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002569 ret = init_probe_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302570 if (ret < 0)
2571 return ret;
2572
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002573 ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2574 if (ret < 0)
2575 return ret;
2576
2577 if (kp_fd >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002578 ret = __show_perf_probe_events(kp_fd, true, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002579 if (up_fd >= 0 && ret >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002580 ret = __show_perf_probe_events(up_fd, false, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002581 if (kp_fd > 0)
2582 close(kp_fd);
2583 if (up_fd > 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002584 close(up_fd);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002585 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302586
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002587 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002588}
2589
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002590static int get_new_event_name(char *buf, size_t len, const char *base,
Masami Hiramatsue63c6252017-12-09 01:27:44 +09002591 struct strlist *namelist, bool ret_event,
2592 bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002593{
2594 int i, ret;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002595 char *p, *nbase;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002596
Naveen N. Rao3099c022015-04-28 17:35:34 +05302597 if (*base == '.')
2598 base++;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002599 nbase = strdup(base);
2600 if (!nbase)
2601 return -ENOMEM;
Naveen N. Rao3099c022015-04-28 17:35:34 +05302602
Masami Hiramatsua3110cd2017-12-11 15:19:25 -03002603 /* Cut off the dot suffixes (e.g. .const, .isra) and version suffixes */
2604 p = strpbrk(nbase, ".@");
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002605 if (p && p != nbase)
2606 *p = '\0';
2607
2608 /* Try no suffix number */
Masami Hiramatsue63c6252017-12-09 01:27:44 +09002609 ret = e_snprintf(buf, len, "%s%s", nbase, ret_event ? "__return" : "");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002610 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002611 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002612 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002613 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002614 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002615 goto out;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002616
Masami Hiramatsud761b082009-12-15 10:32:25 -05002617 if (!allow_suffix) {
Wang Nan03e01f52015-11-16 12:10:08 +00002618 pr_warning("Error: event \"%s\" already exists.\n"
2619 " Hint: Remove existing event by 'perf probe -d'\n"
2620 " or force duplicates by 'perf probe -f'\n"
2621 " or set 'force=yes' in BPF source.\n",
2622 buf);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002623 ret = -EEXIST;
2624 goto out;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002625 }
2626
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002627 /* Try to add suffix */
2628 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002629 ret = e_snprintf(buf, len, "%s_%d", nbase, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002630 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002631 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002632 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002633 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002634 if (!strlist__has_entry(namelist, buf))
2635 break;
2636 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002637 if (i == MAX_EVENT_INDEX) {
2638 pr_warning("Too many events are on the same function.\n");
2639 ret = -ERANGE;
2640 }
2641
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002642out:
2643 free(nbase);
Masami Hiramatsu9f5c6d82017-12-09 01:26:46 +09002644
2645 /* Final validation */
2646 if (ret >= 0 && !is_c_func_name(buf)) {
2647 pr_warning("Internal error: \"%s\" is an invalid event name.\n",
2648 buf);
2649 ret = -EINVAL;
2650 }
2651
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002652 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002653}
2654
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002655/* Warn if the current kernel's uprobe implementation is old */
2656static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2657{
2658 int i;
2659 char *buf = synthesize_probe_trace_command(tev);
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302660 struct probe_trace_point *tp = &tev->point;
2661
2662 if (tp->ref_ctr_offset && !uprobe_ref_ctr_is_supported()) {
2663 pr_warning("A semaphore is associated with %s:%s and "
2664 "seems your kernel doesn't support it.\n",
2665 tev->group, tev->event);
2666 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002667
2668 /* Old uprobe event doesn't support memory dereference */
2669 if (!tev->uprobes || tev->nargs == 0 || !buf)
2670 goto out;
2671
2672 for (i = 0; i < tev->nargs; i++)
2673 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2674 pr_warning("Please upgrade your kernel to at least "
2675 "3.14 to have access to feature %s\n",
2676 tev->args[i].value);
2677 break;
2678 }
2679out:
2680 free(buf);
2681}
2682
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002683/* Set new name from original perf_probe_event and namelist */
2684static int probe_trace_event__set_name(struct probe_trace_event *tev,
2685 struct perf_probe_event *pev,
2686 struct strlist *namelist,
2687 bool allow_suffix)
2688{
2689 const char *event, *group;
2690 char buf[64];
2691 int ret;
2692
Masami Hiramatsubc062232016-07-01 17:03:12 +09002693 /* If probe_event or trace_event already have the name, reuse it */
Masami Hiramatsu42bba262016-07-12 19:05:18 +09002694 if (pev->event && !pev->sdt)
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002695 event = pev->event;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002696 else if (tev->event)
2697 event = tev->event;
2698 else {
2699 /* Or generate new one from probe point */
Wang Nanda15bd92015-08-26 10:57:45 +00002700 if (pev->point.function &&
2701 (strncmp(pev->point.function, "0x", 2) != 0) &&
2702 !strisglob(pev->point.function))
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002703 event = pev->point.function;
2704 else
2705 event = tev->point.realname;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002706 }
Masami Hiramatsu42bba262016-07-12 19:05:18 +09002707 if (pev->group && !pev->sdt)
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002708 group = pev->group;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002709 else if (tev->group)
2710 group = tev->group;
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002711 else
2712 group = PERFPROBE_GROUP;
2713
2714 /* Get an unused new event name */
Masami Hiramatsue63c6252017-12-09 01:27:44 +09002715 ret = get_new_event_name(buf, 64, event, namelist,
2716 tev->point.retprobe, allow_suffix);
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002717 if (ret < 0)
2718 return ret;
2719
2720 event = buf;
2721
2722 tev->event = strdup(event);
2723 tev->group = strdup(group);
2724 if (tev->event == NULL || tev->group == NULL)
2725 return -ENOMEM;
2726
2727 /* Add added event name to namelist */
2728 strlist__add(namelist, event);
2729 return 0;
2730}
2731
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002732static int __open_probe_file_and_namelist(bool uprobe,
2733 struct strlist **namelist)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002734{
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002735 int fd;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002736
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002737 fd = probe_file__open(PF_FL_RW | (uprobe ? PF_FL_UPROBE : 0));
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002738 if (fd < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002739 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002740
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002741 /* Get current event names */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002742 *namelist = probe_file__get_namelist(fd);
2743 if (!(*namelist)) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002744 pr_debug("Failed to get current event list.\n");
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002745 close(fd);
2746 return -ENOMEM;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002747 }
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002748 return fd;
2749}
2750
2751static int __add_probe_trace_events(struct perf_probe_event *pev,
2752 struct probe_trace_event *tevs,
2753 int ntevs, bool allow_suffix)
2754{
2755 int i, fd[2] = {-1, -1}, up, ret;
2756 struct probe_trace_event *tev = NULL;
2757 struct probe_cache *cache = NULL;
2758 struct strlist *namelist[2] = {NULL, NULL};
Krister Johansen544abd42017-07-05 18:48:10 -07002759 struct nscookie nsc;
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002760
2761 up = pev->uprobes ? 1 : 0;
2762 fd[up] = __open_probe_file_and_namelist(up, &namelist[up]);
2763 if (fd[up] < 0)
2764 return fd[up];
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002765
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002766 ret = 0;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002767 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002768 tev = &tevs[i];
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002769 up = tev->uprobes ? 1 : 0;
2770 if (fd[up] == -1) { /* Open the kprobe/uprobe_events */
2771 fd[up] = __open_probe_file_and_namelist(up,
2772 &namelist[up]);
2773 if (fd[up] < 0)
2774 goto close_out;
2775 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002776 /* Skip if the symbol is out of .text or blacklisted */
Masami Hiramatsubc062232016-07-01 17:03:12 +09002777 if (!tev->point.symbol && !pev->uprobes)
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +09002778 continue;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002779
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002780 /* Set new name for tev (and update namelist) */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002781 ret = probe_trace_event__set_name(tev, pev, namelist[up],
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002782 allow_suffix);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002783 if (ret < 0)
2784 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002785
Krister Johansen544abd42017-07-05 18:48:10 -07002786 nsinfo__mountns_enter(pev->nsi, &nsc);
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002787 ret = probe_file__add_event(fd[up], tev);
Krister Johansen544abd42017-07-05 18:48:10 -07002788 nsinfo__mountns_exit(&nsc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002789 if (ret < 0)
2790 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002791
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002792 /*
2793 * Probes after the first probe which comes from same
2794 * user input are always allowed to add suffix, because
2795 * there might be several addresses corresponding to
2796 * one code line.
2797 */
2798 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002799 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002800 if (ret == -EINVAL && pev->uprobes)
2801 warn_uprobe_event_compat(tev);
Masami Hiramatsu2fd457a2016-06-15 12:28:40 +09002802 if (ret == 0 && probe_conf.cache) {
Krister Johansenf045b8c2017-07-05 18:48:11 -07002803 cache = probe_cache__new(pev->target, pev->nsi);
Masami Hiramatsu2fd457a2016-06-15 12:28:40 +09002804 if (!cache ||
2805 probe_cache__add_entry(cache, pev, tevs, ntevs) < 0 ||
2806 probe_cache__commit(cache) < 0)
2807 pr_warning("Failed to add event to probe cache\n");
2808 probe_cache__delete(cache);
2809 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002810
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002811close_out:
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002812 for (up = 0; up < 2; up++) {
2813 strlist__delete(namelist[up]);
2814 if (fd[up] >= 0)
2815 close(fd[up]);
2816 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002817 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002818}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002819
Wang Nan6bb536c2015-05-29 09:45:47 +00002820static int find_probe_functions(struct map *map, char *name,
2821 struct symbol **syms)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002822{
Namhyung Kim564c62a2015-01-14 20:18:07 +09002823 int found = 0;
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002824 struct symbol *sym;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002825 struct rb_node *tmp;
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002826 const char *norm, *ver;
2827 char *buf = NULL;
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002828 bool cut_version = true;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002829
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002830 if (map__load(map) < 0)
Wang Nan75e4a2a2015-05-15 12:14:44 +00002831 return 0;
2832
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002833 /* If user gives a version, don't cut off the version from symbols */
2834 if (strchr(name, '@'))
2835 cut_version = false;
2836
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002837 map__for_each_symbol(map, sym, tmp) {
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002838 norm = arch__normalize_symbol_name(sym->name);
2839 if (!norm)
2840 continue;
2841
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002842 if (cut_version) {
2843 /* We don't care about default symbol or not */
2844 ver = strchr(norm, '@');
2845 if (ver) {
2846 buf = strndup(norm, ver - norm);
2847 if (!buf)
2848 return -ENOMEM;
2849 norm = buf;
2850 }
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002851 }
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002852
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002853 if (strglobmatch(norm, name)) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002854 found++;
Wang Nan6bb536c2015-05-29 09:45:47 +00002855 if (syms && found < probe_conf.max_probes)
2856 syms[found - 1] = sym;
2857 }
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002858 if (buf)
2859 zfree(&buf);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002860 }
Namhyung Kim564c62a2015-01-14 20:18:07 +09002861
2862 return found;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002863}
2864
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302865void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2866 struct probe_trace_event *tev __maybe_unused,
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05302867 struct map *map __maybe_unused,
2868 struct symbol *sym __maybe_unused) { }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302869
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002870/*
2871 * Find probe function addresses from map.
2872 * Return an error or the number of found probe_trace_event
2873 */
2874static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002875 struct probe_trace_event **tevs)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002876{
2877 struct map *map = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002878 struct ref_reloc_sym *reloc_sym = NULL;
2879 struct symbol *sym;
Wang Nan6bb536c2015-05-29 09:45:47 +00002880 struct symbol **syms = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002881 struct probe_trace_event *tev;
2882 struct perf_probe_point *pp = &pev->point;
2883 struct probe_trace_point *tp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002884 int num_matched_functions;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002885 int ret, i, j, skipped = 0;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302886 char *mod_name;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002887
Krister Johansen544abd42017-07-05 18:48:10 -07002888 map = get_target_map(pev->target, pev->nsi, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002889 if (!map) {
2890 ret = -EINVAL;
2891 goto out;
2892 }
2893
Wang Nan6bb536c2015-05-29 09:45:47 +00002894 syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2895 if (!syms) {
2896 ret = -ENOMEM;
2897 goto out;
2898 }
2899
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002900 /*
2901 * Load matched symbols: Since the different local symbols may have
2902 * same name but different addresses, this lists all the symbols.
2903 */
Wang Nan6bb536c2015-05-29 09:45:47 +00002904 num_matched_functions = find_probe_functions(map, pp->function, syms);
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002905 if (num_matched_functions <= 0) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002906 pr_err("Failed to find symbol %s in %s\n", pp->function,
Masami Hiramatsu44225522015-05-08 10:03:28 +09002907 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002908 ret = -ENOENT;
2909 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002910 } else if (num_matched_functions > probe_conf.max_probes) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002911 pr_err("Too many functions matched in %s\n",
Masami Hiramatsu44225522015-05-08 10:03:28 +09002912 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002913 ret = -E2BIG;
2914 goto out;
2915 }
2916
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002917 /* Note that the symbols in the kmodule are not relocated */
Naveen N. Rao7ab31d92017-03-08 13:56:09 +05302918 if (!pev->uprobes && !pev->target &&
2919 (!pp->retprobe || kretprobe_offset_is_supported())) {
He Kuang0560a0c2015-03-20 09:56:56 +08002920 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002921 if (!reloc_sym) {
2922 pr_warning("Relocated base symbol is not found!\n");
2923 ret = -EINVAL;
2924 goto out;
2925 }
2926 }
2927
2928 /* Setup result trace-probe-events */
2929 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2930 if (!*tevs) {
2931 ret = -ENOMEM;
2932 goto out;
2933 }
2934
2935 ret = 0;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002936
Wang Nan6bb536c2015-05-29 09:45:47 +00002937 for (j = 0; j < num_matched_functions; j++) {
2938 sym = syms[j];
2939
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002940 tev = (*tevs) + ret;
2941 tp = &tev->point;
2942 if (ret == num_matched_functions) {
2943 pr_warning("Too many symbols are listed. Skip it.\n");
2944 break;
2945 }
2946 ret++;
2947
2948 if (pp->offset > sym->end - sym->start) {
2949 pr_warning("Offset %ld is bigger than the size of %s\n",
2950 pp->offset, sym->name);
2951 ret = -ENOENT;
2952 goto err_out;
2953 }
2954 /* Add one probe point */
2955 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002956
2957 /* Check the kprobe (not in module) is within .text */
2958 if (!pev->uprobes && !pev->target &&
Masami Hiramatsub0312202015-06-16 20:50:55 +09002959 kprobe_warn_out_range(sym->name, tp->address)) {
2960 tp->symbol = NULL; /* Skip it */
2961 skipped++;
2962 } else if (reloc_sym) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002963 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2964 tp->offset = tp->address - reloc_sym->addr;
2965 } else {
2966 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2967 tp->offset = pp->offset;
2968 }
Wang Nan6bb536c2015-05-29 09:45:47 +00002969 tp->realname = strdup_or_goto(sym->name, nomem_out);
2970
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002971 tp->retprobe = pp->retprobe;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302972 if (pev->target) {
2973 if (pev->uprobes) {
2974 tev->point.module = strdup_or_goto(pev->target,
2975 nomem_out);
2976 } else {
2977 mod_name = find_module_name(pev->target);
2978 tev->point.module =
2979 strdup(mod_name ? mod_name : pev->target);
2980 free(mod_name);
2981 if (!tev->point.module)
2982 goto nomem_out;
2983 }
2984 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002985 tev->uprobes = pev->uprobes;
2986 tev->nargs = pev->nargs;
2987 if (tev->nargs) {
2988 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2989 tev->nargs);
2990 if (tev->args == NULL)
2991 goto nomem_out;
2992 }
2993 for (i = 0; i < tev->nargs; i++) {
2994 if (pev->args[i].name)
2995 tev->args[i].name =
2996 strdup_or_goto(pev->args[i].name,
2997 nomem_out);
2998
2999 tev->args[i].value = strdup_or_goto(pev->args[i].var,
3000 nomem_out);
3001 if (pev->args[i].type)
3002 tev->args[i].type =
3003 strdup_or_goto(pev->args[i].type,
3004 nomem_out);
3005 }
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05303006 arch__fix_tev_from_maps(pev, tev, map, sym);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003007 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09003008 if (ret == skipped) {
3009 ret = -ENOENT;
3010 goto err_out;
3011 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003012
3013out:
Masami Hiramatsueebc5092017-01-04 12:29:05 +09003014 map__put(map);
Wang Nan6bb536c2015-05-29 09:45:47 +00003015 free(syms);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003016 return ret;
3017
3018nomem_out:
3019 ret = -ENOMEM;
3020err_out:
3021 clear_probe_trace_events(*tevs, num_matched_functions);
3022 zfree(tevs);
3023 goto out;
3024}
3025
Wang Nanda15bd92015-08-26 10:57:45 +00003026static int try_to_find_absolute_address(struct perf_probe_event *pev,
3027 struct probe_trace_event **tevs)
3028{
3029 struct perf_probe_point *pp = &pev->point;
3030 struct probe_trace_event *tev;
3031 struct probe_trace_point *tp;
3032 int i, err;
3033
3034 if (!(pev->point.function && !strncmp(pev->point.function, "0x", 2)))
3035 return -EINVAL;
3036 if (perf_probe_event_need_dwarf(pev))
3037 return -EINVAL;
3038
3039 /*
3040 * This is 'perf probe /lib/libc.so 0xabcd'. Try to probe at
3041 * absolute address.
3042 *
3043 * Only one tev can be generated by this.
3044 */
3045 *tevs = zalloc(sizeof(*tev));
3046 if (!*tevs)
3047 return -ENOMEM;
3048
3049 tev = *tevs;
3050 tp = &tev->point;
3051
3052 /*
3053 * Don't use tp->offset, use address directly, because
3054 * in synthesize_probe_trace_command() address cannot be
3055 * zero.
3056 */
3057 tp->address = pev->point.abs_address;
3058 tp->retprobe = pp->retprobe;
3059 tev->uprobes = pev->uprobes;
3060
3061 err = -ENOMEM;
3062 /*
3063 * Give it a '0x' leading symbol name.
3064 * In __add_probe_trace_events, a NULL symbol is interpreted as
3065 * invalud.
3066 */
3067 if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
3068 goto errout;
3069
3070 /* For kprobe, check range */
3071 if ((!tev->uprobes) &&
3072 (kprobe_warn_out_range(tev->point.symbol,
3073 tev->point.address))) {
3074 err = -EACCES;
3075 goto errout;
3076 }
3077
3078 if (asprintf(&tp->realname, "abs_%lx", tp->address) < 0)
3079 goto errout;
3080
3081 if (pev->target) {
3082 tp->module = strdup(pev->target);
3083 if (!tp->module)
3084 goto errout;
3085 }
3086
3087 if (tev->group) {
3088 tev->group = strdup(pev->group);
3089 if (!tev->group)
3090 goto errout;
3091 }
3092
3093 if (pev->event) {
3094 tev->event = strdup(pev->event);
3095 if (!tev->event)
3096 goto errout;
3097 }
3098
3099 tev->nargs = pev->nargs;
3100 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Markus Elfringd1d0e292017-01-23 15:10:19 +01003101 if (!tev->args)
Wang Nanda15bd92015-08-26 10:57:45 +00003102 goto errout;
Markus Elfringd1d0e292017-01-23 15:10:19 +01003103
Wang Nanda15bd92015-08-26 10:57:45 +00003104 for (i = 0; i < tev->nargs; i++)
3105 copy_to_probe_trace_arg(&tev->args[i], &pev->args[i]);
3106
3107 return 1;
3108
3109errout:
Markus Elfring42e233c2017-01-23 14:54:26 +01003110 clear_probe_trace_events(*tevs, 1);
3111 *tevs = NULL;
Wang Nanda15bd92015-08-26 10:57:45 +00003112 return err;
3113}
3114
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003115/* Concatinate two arrays */
3116static void *memcat(void *a, size_t sz_a, void *b, size_t sz_b)
3117{
3118 void *ret;
3119
3120 ret = malloc(sz_a + sz_b);
3121 if (ret) {
3122 memcpy(ret, a, sz_a);
3123 memcpy(ret + sz_a, b, sz_b);
3124 }
3125 return ret;
3126}
3127
3128static int
3129concat_probe_trace_events(struct probe_trace_event **tevs, int *ntevs,
3130 struct probe_trace_event **tevs2, int ntevs2)
3131{
3132 struct probe_trace_event *new_tevs;
3133 int ret = 0;
3134
Ravi Bangoriaf0a30dc2017-03-08 12:29:07 +05303135 if (*ntevs == 0) {
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003136 *tevs = *tevs2;
3137 *ntevs = ntevs2;
3138 *tevs2 = NULL;
3139 return 0;
3140 }
3141
3142 if (*ntevs + ntevs2 > probe_conf.max_probes)
3143 ret = -E2BIG;
3144 else {
3145 /* Concatinate the array of probe_trace_event */
3146 new_tevs = memcat(*tevs, (*ntevs) * sizeof(**tevs),
3147 *tevs2, ntevs2 * sizeof(**tevs2));
3148 if (!new_tevs)
3149 ret = -ENOMEM;
3150 else {
3151 free(*tevs);
3152 *tevs = new_tevs;
3153 *ntevs += ntevs2;
3154 }
3155 }
3156 if (ret < 0)
3157 clear_probe_trace_events(*tevs2, ntevs2);
3158 zfree(tevs2);
3159
3160 return ret;
3161}
3162
3163/*
3164 * Try to find probe_trace_event from given probe caches. Return the number
3165 * of cached events found, if an error occurs return the error.
3166 */
3167static int find_cached_events(struct perf_probe_event *pev,
3168 struct probe_trace_event **tevs,
3169 const char *target)
3170{
3171 struct probe_cache *cache;
3172 struct probe_cache_entry *entry;
3173 struct probe_trace_event *tmp_tevs = NULL;
3174 int ntevs = 0;
3175 int ret = 0;
3176
Krister Johansenf045b8c2017-07-05 18:48:11 -07003177 cache = probe_cache__new(target, pev->nsi);
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003178 /* Return 0 ("not found") if the target has no probe cache. */
3179 if (!cache)
3180 return 0;
3181
3182 for_each_probe_cache_entry(entry, cache) {
3183 /* Skip the cache entry which has no name */
3184 if (!entry->pev.event || !entry->pev.group)
3185 continue;
3186 if ((!pev->group || strglobmatch(entry->pev.group, pev->group)) &&
3187 strglobmatch(entry->pev.event, pev->event)) {
3188 ret = probe_cache_entry__get_event(entry, &tmp_tevs);
3189 if (ret > 0)
3190 ret = concat_probe_trace_events(tevs, &ntevs,
3191 &tmp_tevs, ret);
3192 if (ret < 0)
3193 break;
3194 }
3195 }
3196 probe_cache__delete(cache);
3197 if (ret < 0) {
3198 clear_probe_trace_events(*tevs, ntevs);
3199 zfree(tevs);
3200 } else {
3201 ret = ntevs;
3202 if (ntevs > 0 && target && target[0] == '/')
3203 pev->uprobes = true;
3204 }
3205
3206 return ret;
3207}
3208
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003209/* Try to find probe_trace_event from all probe caches */
3210static int find_cached_events_all(struct perf_probe_event *pev,
3211 struct probe_trace_event **tevs)
3212{
3213 struct probe_trace_event *tmp_tevs = NULL;
3214 struct strlist *bidlist;
3215 struct str_node *nd;
3216 char *pathname;
3217 int ntevs = 0;
3218 int ret;
3219
3220 /* Get the buildid list of all valid caches */
3221 bidlist = build_id_cache__list_all(true);
3222 if (!bidlist) {
3223 ret = -errno;
3224 pr_debug("Failed to get buildids: %d\n", ret);
3225 return ret;
3226 }
3227
3228 ret = 0;
3229 strlist__for_each_entry(nd, bidlist) {
3230 pathname = build_id_cache__origname(nd->s);
3231 ret = find_cached_events(pev, &tmp_tevs, pathname);
3232 /* In the case of cnt == 0, we just skip it */
3233 if (ret > 0)
3234 ret = concat_probe_trace_events(tevs, &ntevs,
3235 &tmp_tevs, ret);
3236 free(pathname);
3237 if (ret < 0)
3238 break;
3239 }
3240 strlist__delete(bidlist);
3241
3242 if (ret < 0) {
3243 clear_probe_trace_events(*tevs, ntevs);
3244 zfree(tevs);
3245 } else
3246 ret = ntevs;
3247
3248 return ret;
3249}
3250
Masami Hiramatsubc062232016-07-01 17:03:12 +09003251static int find_probe_trace_events_from_cache(struct perf_probe_event *pev,
3252 struct probe_trace_event **tevs)
3253{
3254 struct probe_cache *cache;
3255 struct probe_cache_entry *entry;
3256 struct probe_trace_event *tev;
3257 struct str_node *node;
3258 int ret, i;
3259
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003260 if (pev->sdt) {
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003261 /* For SDT/cached events, we use special search functions */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003262 if (!pev->target)
3263 return find_cached_events_all(pev, tevs);
3264 else
3265 return find_cached_events(pev, tevs, pev->target);
3266 }
Krister Johansenf045b8c2017-07-05 18:48:11 -07003267 cache = probe_cache__new(pev->target, pev->nsi);
Masami Hiramatsubc062232016-07-01 17:03:12 +09003268 if (!cache)
3269 return 0;
3270
3271 entry = probe_cache__find(cache, pev);
3272 if (!entry) {
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003273 /* SDT must be in the cache */
3274 ret = pev->sdt ? -ENOENT : 0;
Masami Hiramatsubc062232016-07-01 17:03:12 +09003275 goto out;
3276 }
3277
3278 ret = strlist__nr_entries(entry->tevlist);
3279 if (ret > probe_conf.max_probes) {
3280 pr_debug("Too many entries matched in the cache of %s\n",
3281 pev->target ? : "kernel");
3282 ret = -E2BIG;
3283 goto out;
3284 }
3285
3286 *tevs = zalloc(ret * sizeof(*tev));
3287 if (!*tevs) {
3288 ret = -ENOMEM;
3289 goto out;
3290 }
3291
3292 i = 0;
3293 strlist__for_each_entry(node, entry->tevlist) {
3294 tev = &(*tevs)[i++];
3295 ret = parse_probe_trace_command(node->s, tev);
3296 if (ret < 0)
3297 goto out;
3298 /* Set the uprobes attribute as same as original */
3299 tev->uprobes = pev->uprobes;
3300 }
3301 ret = i;
3302
3303out:
3304 probe_cache__delete(cache);
3305 return ret;
3306}
3307
Srikar Dronamraju0e608362010-07-29 19:43:51 +05303308static int convert_to_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003309 struct probe_trace_event **tevs)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003310{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003311 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003312
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003313 if (!pev->group && !pev->sdt) {
Masami Hiramatsu2a12ec12016-04-26 18:04:13 +09003314 /* Set group name if not given */
3315 if (!pev->uprobes) {
3316 pev->group = strdup(PERFPROBE_GROUP);
3317 ret = pev->group ? 0 : -ENOMEM;
3318 } else
3319 ret = convert_exec_to_group(pev->target, &pev->group);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00003320 if (ret != 0) {
3321 pr_warning("Failed to make a group name.\n");
3322 return ret;
3323 }
3324 }
3325
Wang Nanda15bd92015-08-26 10:57:45 +00003326 ret = try_to_find_absolute_address(pev, tevs);
3327 if (ret > 0)
3328 return ret;
3329
Masami Hiramatsubc062232016-07-01 17:03:12 +09003330 /* At first, we need to lookup cache entry */
3331 ret = find_probe_trace_events_from_cache(pev, tevs);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003332 if (ret > 0 || pev->sdt) /* SDT can be found only in the cache */
3333 return ret == 0 ? -ENOENT : ret; /* Found in probe cache */
Masami Hiramatsubc062232016-07-01 17:03:12 +09003334
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03003335 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003336 ret = try_to_find_probe_trace_events(pev, tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04003337 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09003338 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003339
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003340 return find_probe_trace_events_from_map(pev, tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003341}
3342
Wang Nan12fae5e2015-09-04 21:16:00 +09003343int convert_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003344{
Namhyung Kim844dffa2015-09-04 21:15:59 +09003345 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003346
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003347 /* Loop 1: convert all events */
3348 for (i = 0; i < npevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +09003349 /* Init kprobe blacklist if needed */
Wang Nan12fae5e2015-09-04 21:16:00 +09003350 if (!pevs[i].uprobes)
Masami Hiramatsub0312202015-06-16 20:50:55 +09003351 kprobe_blacklist__init();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003352 /* Convert with or without debuginfo */
Wang Nan12fae5e2015-09-04 21:16:00 +09003353 ret = convert_to_probe_trace_events(&pevs[i], &pevs[i].tevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003354 if (ret < 0)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003355 return ret;
Wang Nan12fae5e2015-09-04 21:16:00 +09003356 pevs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003357 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09003358 /* This just release blacklist only if allocated */
3359 kprobe_blacklist__release();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003360
Namhyung Kim844dffa2015-09-04 21:15:59 +09003361 return 0;
3362}
3363
Masami Hiramatsu1c20b1d2016-08-26 01:24:27 +09003364static int show_probe_trace_event(struct probe_trace_event *tev)
3365{
3366 char *buf = synthesize_probe_trace_command(tev);
3367
3368 if (!buf) {
3369 pr_debug("Failed to synthesize probe trace event.\n");
3370 return -EINVAL;
3371 }
3372
3373 /* Showing definition always go stdout */
3374 printf("%s\n", buf);
3375 free(buf);
3376
3377 return 0;
3378}
3379
3380int show_probe_trace_events(struct perf_probe_event *pevs, int npevs)
3381{
3382 struct strlist *namelist = strlist__new(NULL, NULL);
3383 struct probe_trace_event *tev;
3384 struct perf_probe_event *pev;
3385 int i, j, ret = 0;
3386
3387 if (!namelist)
3388 return -ENOMEM;
3389
3390 for (j = 0; j < npevs && !ret; j++) {
3391 pev = &pevs[j];
3392 for (i = 0; i < pev->ntevs && !ret; i++) {
3393 tev = &pev->tevs[i];
3394 /* Skip if the symbol is out of .text or blacklisted */
3395 if (!tev->point.symbol && !pev->uprobes)
3396 continue;
3397
3398 /* Set new name for tev (and update namelist) */
3399 ret = probe_trace_event__set_name(tev, pev,
3400 namelist, true);
3401 if (!ret)
3402 ret = show_probe_trace_event(tev);
3403 }
3404 }
3405 strlist__delete(namelist);
3406
3407 return ret;
3408}
3409
Wang Nan12fae5e2015-09-04 21:16:00 +09003410int apply_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003411{
3412 int i, ret = 0;
3413
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003414 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03003415 for (i = 0; i < npevs; i++) {
Wang Nan12fae5e2015-09-04 21:16:00 +09003416 ret = __add_probe_trace_events(&pevs[i], pevs[i].tevs,
3417 pevs[i].ntevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003418 probe_conf.force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03003419 if (ret < 0)
3420 break;
3421 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09003422 return ret;
3423}
3424
Wang Nan12fae5e2015-09-04 21:16:00 +09003425void cleanup_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003426{
3427 int i, j;
Krister Johansen544abd42017-07-05 18:48:10 -07003428 struct perf_probe_event *pev;
Namhyung Kim844dffa2015-09-04 21:15:59 +09003429
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09003430 /* Loop 3: cleanup and free trace events */
3431 for (i = 0; i < npevs; i++) {
Krister Johansen544abd42017-07-05 18:48:10 -07003432 pev = &pevs[i];
Wang Nan12fae5e2015-09-04 21:16:00 +09003433 for (j = 0; j < pevs[i].ntevs; j++)
3434 clear_probe_trace_event(&pevs[i].tevs[j]);
3435 zfree(&pevs[i].tevs);
3436 pevs[i].ntevs = 0;
Krister Johansen544abd42017-07-05 18:48:10 -07003437 nsinfo__zput(pev->nsi);
Namhyung Kima43aac22015-09-10 11:27:04 +09003438 clear_perf_probe_event(&pevs[i]);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09003439 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09003440}
3441
3442int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3443{
3444 int ret;
Namhyung Kim844dffa2015-09-04 21:15:59 +09003445
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003446 ret = init_probe_symbol_maps(pevs->uprobes);
3447 if (ret < 0)
3448 return ret;
3449
Wang Nan12fae5e2015-09-04 21:16:00 +09003450 ret = convert_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09003451 if (ret == 0)
Wang Nan12fae5e2015-09-04 21:16:00 +09003452 ret = apply_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09003453
Wang Nan12fae5e2015-09-04 21:16:00 +09003454 cleanup_perf_probe_events(pevs, npevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003455
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003456 exit_probe_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003457 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003458}
3459
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003460int del_perf_probe_events(struct strfilter *filter)
Masami Hiramatsufa282442009-12-08 17:03:23 -05003461{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003462 int ret, ret2, ufd = -1, kfd = -1;
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003463 char *str = strfilter__string(filter);
3464
3465 if (!str)
3466 return -EINVAL;
3467
Masami Hiramatsufa282442009-12-08 17:03:23 -05003468 /* Get current event names */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003469 ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
3470 if (ret < 0)
3471 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303472
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003473 ret = probe_file__del_events(kfd, filter);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003474 if (ret < 0 && ret != -ENOENT)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303475 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05003476
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003477 ret2 = probe_file__del_events(ufd, filter);
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003478 if (ret2 < 0 && ret2 != -ENOENT) {
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003479 ret = ret2;
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003480 goto error;
3481 }
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003482 ret = 0;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303483
3484error:
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003485 if (kfd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303486 close(kfd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003487 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303488 close(ufd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003489out:
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003490 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003491
3492 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05003493}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303494
Krister Johansen544abd42017-07-05 18:48:10 -07003495int show_available_funcs(const char *target, struct nsinfo *nsi,
3496 struct strfilter *_filter, bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003497{
Arnaldo Carvalho de Melofd227592016-08-31 10:04:27 -03003498 struct rb_node *nd;
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003499 struct map *map;
3500 int ret;
3501
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003502 ret = init_probe_symbol_maps(user);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003503 if (ret < 0)
3504 return ret;
3505
3506 /* Get a symbol map */
Krister Johansen544abd42017-07-05 18:48:10 -07003507 map = get_target_map(target, nsi, user);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003508 if (!map) {
3509 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003510 return -EINVAL;
3511 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003512
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03003513 ret = map__load(map);
Masami Hiramatsue7049342016-07-19 01:12:41 +09003514 if (ret) {
3515 if (ret == -2) {
3516 char *str = strfilter__string(_filter);
3517 pr_err("Failed to find symbols matched to \"%s\"\n",
3518 str);
3519 free(str);
3520 } else
3521 pr_err("Failed to load symbols in %s\n",
3522 (target) ? : "kernel");
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003523 goto end;
3524 }
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03003525 if (!dso__sorted_by_name(map->dso))
3526 dso__sort_by_name(map->dso);
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003527
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003528 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303529 setup_pager();
Arnaldo Carvalho de Melofd227592016-08-31 10:04:27 -03003530
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03003531 for (nd = rb_first(&map->dso->symbol_names); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melofd227592016-08-31 10:04:27 -03003532 struct symbol_name_rb_node *pos = rb_entry(nd, struct symbol_name_rb_node, rb_node);
3533
3534 if (strfilter__compare(_filter, pos->sym.name))
3535 printf("%s\n", pos->sym.name);
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03003536 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003537end:
Masami Hiramatsueebc5092017-01-04 12:29:05 +09003538 map__put(map);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003539 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303540
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003541 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303542}
3543
Wang Nanda15bd92015-08-26 10:57:45 +00003544int copy_to_probe_trace_arg(struct probe_trace_arg *tvar,
3545 struct perf_probe_arg *pvar)
3546{
3547 tvar->value = strdup(pvar->var);
3548 if (tvar->value == NULL)
3549 return -ENOMEM;
3550 if (pvar->type) {
3551 tvar->type = strdup(pvar->type);
3552 if (tvar->type == NULL)
3553 return -ENOMEM;
3554 }
3555 if (pvar->name) {
3556 tvar->name = strdup(pvar->name);
3557 if (tvar->name == NULL)
3558 return -ENOMEM;
3559 } else
3560 tvar->name = NULL;
3561 return 0;
3562}