blob: b8e0967c5c21db25f2cdaf64b228d9d6f95b15ee [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002/*
Srikar Dronamraju0e608362010-07-29 19:43:51 +05303 * probe-event.c : perf-probe definition to probe_events format converter
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05004 *
5 * Written by Masami Hiramatsu <mhiramat@redhat.com>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05006 */
7
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03008#include <inttypes.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05009#include <sys/utsname.h>
10#include <sys/types.h>
11#include <sys/stat.h>
12#include <fcntl.h>
13#include <errno.h>
14#include <stdio.h>
15#include <unistd.h>
16#include <stdlib.h>
17#include <string.h>
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050018#include <stdarg.h>
19#include <limits.h>
Masami Hiramatsue80711c2011-01-13 21:46:11 +090020#include <elf.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050021
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030022#include "build-id.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050023#include "event.h"
Arnaldo Carvalho de Melo40f3b2d2019-01-22 11:24:34 -020024#include "namespaces.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050025#include "strlist.h"
Arnaldo Carvalho de Melo8ec20b12017-04-18 10:57:25 -030026#include "strfilter.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050027#include "debug.h"
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030028#include "dso.h"
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050029#include "color.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010030#include "map.h"
Arnaldo Carvalho de Melo41f30912019-01-27 13:44:29 +010031#include "map_groups.h"
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040032#include "symbol.h"
Jiri Olsa4605eab2015-09-02 09:56:43 +020033#include <api/fs/fs.h>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030034#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050035#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040036#include "probe-finder.h"
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090037#include "probe-file.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053038#include "session.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030039#include "string2.h"
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030040#include "strbuf.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050041
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030042#include <subcmd/pager.h>
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030043#include <linux/ctype.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030044#include <linux/zalloc.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030045
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050046#define PERFPROBE_GROUP "probe"
47
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040048bool probe_event_dry_run; /* Dry run flag */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +090049struct probe_conf probe_conf;
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040050
Masami Hiramatsu146a1432010-04-12 13:17:42 -040051#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050052
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090053int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050054{
55 int ret;
56 va_list ap;
57 va_start(ap, format);
58 ret = vsnprintf(str, size, format, ap);
59 va_end(ap);
60 if (ret >= (int)size)
61 ret = -E2BIG;
62 return ret;
63}
64
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000065static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040066
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090067/* Initialize symbol maps and path of vmlinux/modules */
Namhyung Kim9bae1e82015-09-10 11:27:05 +090068int init_probe_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040069{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040070 int ret;
71
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040072 symbol_conf.sort_by_name = true;
Namhyung Kim680d9262015-03-06 16:31:27 +090073 symbol_conf.allow_aliases = true;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090074 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040075 if (ret < 0) {
76 pr_debug("Failed to init symbol map.\n");
77 goto out;
78 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040079
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000080 if (host_machine || user_only) /* already initialized */
81 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030082
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000083 if (symbol_conf.vmlinux_name)
84 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
85
86 host_machine = machine__new_host();
87 if (!host_machine) {
88 pr_debug("machine__new_host() failed.\n");
89 symbol__exit();
90 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090091 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -040092out:
93 if (ret < 0)
94 pr_warning("Failed to init vmlinux path.\n");
95 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040096}
97
Namhyung Kim9bae1e82015-09-10 11:27:05 +090098void exit_probe_symbol_maps(void)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000099{
Arnaldo Carvalho de Melo32ca6782016-06-22 10:19:11 -0300100 machine__delete(host_machine);
101 host_machine = NULL;
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000102 symbol__exit();
103}
104
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000105static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
106{
107 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
108 struct kmap *kmap;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300109 struct map *map = machine__kernel_map(host_machine);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000110
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300111 if (map__load(map) < 0)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000112 return NULL;
113
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300114 kmap = map__kmap(map);
Wang Nanba927322015-04-07 08:22:45 +0000115 if (!kmap)
116 return NULL;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000117 return kmap->ref_reloc_sym;
118}
119
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900120static int kernel_get_symbol_address_by_name(const char *name, u64 *addr,
121 bool reloc, bool reladdr)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000122{
123 struct ref_reloc_sym *reloc_sym;
124 struct symbol *sym;
125 struct map *map;
126
127 /* ref_reloc_sym is just a label. Need a special fix*/
128 reloc_sym = kernel_get_ref_reloc_sym();
129 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900130 *addr = (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000131 else {
Arnaldo Carvalho de Melo107cad92018-04-30 12:20:54 -0300132 sym = machine__find_kernel_symbol_by_name(host_machine, name, &map);
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900133 if (!sym)
134 return -ENOENT;
135 *addr = map->unmap_ip(map, sym->start) -
136 ((reloc) ? 0 : map->reloc) -
137 ((reladdr) ? map->start : 0);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000138 }
139 return 0;
140}
141
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900142static struct map *kernel_get_module_map(const char *module)
143{
Arnaldo Carvalho de Melo68a74182018-04-24 17:06:25 -0300144 struct maps *maps = machine__kernel_maps(host_machine);
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300145 struct map *pos;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900146
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900147 /* A file path -- this is an offline module */
148 if (module && strchr(module, '/'))
Masami Hiramatsueebc5092017-01-04 12:29:05 +0900149 return dso__new_map(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900150
Adrian Huntereaeffeb2019-03-04 15:13:21 +0200151 if (!module) {
152 pos = machine__kernel_map(host_machine);
153 return map__get(pos);
154 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900155
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300156 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
Konstantin Khlebnikovcb3f3372016-08-05 15:22:36 +0300157 /* short_name is "[module]" */
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900158 if (strncmp(pos->dso->short_name + 1, module,
Konstantin Khlebnikovcb3f3372016-08-05 15:22:36 +0300159 pos->dso->short_name_len - 2) == 0 &&
160 module[pos->dso->short_name_len - 2] == '\0') {
Arnaldo Carvalho de Melof622df52018-05-24 11:17:34 -0300161 return map__get(pos);
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900162 }
163 }
164 return NULL;
165}
166
Krister Johansen544abd42017-07-05 18:48:10 -0700167struct map *get_target_map(const char *target, struct nsinfo *nsi, bool user)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900168{
169 /* Init maps of given executable or kernel */
Krister Johansen544abd42017-07-05 18:48:10 -0700170 if (user) {
171 struct map *map;
172
173 map = dso__new_map(target);
174 if (map && map->dso)
175 map->dso->nsinfo = nsinfo__get(nsi);
176 return map;
177 } else {
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900178 return kernel_get_module_map(target);
Krister Johansen544abd42017-07-05 18:48:10 -0700179 }
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900180}
181
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000182static int convert_exec_to_group(const char *exec, char **result)
183{
184 char *ptr1, *ptr2, *exec_copy;
185 char buf[64];
186 int ret;
187
188 exec_copy = strdup(exec);
189 if (!exec_copy)
190 return -ENOMEM;
191
192 ptr1 = basename(exec_copy);
193 if (!ptr1) {
194 ret = -EINVAL;
195 goto out;
196 }
197
Colin Ian Kingead1a572016-10-03 11:34:31 +0100198 for (ptr2 = ptr1; *ptr2 != '\0'; ptr2++) {
Masami Hiramatsu35726d32016-09-24 00:35:16 +0900199 if (!isalnum(*ptr2) && *ptr2 != '_') {
200 *ptr2 = '\0';
201 break;
202 }
203 }
204
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000205 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
206 if (ret < 0)
207 goto out;
208
209 *result = strdup(buf);
210 ret = *result ? 0 : -ENOMEM;
211
212out:
213 free(exec_copy);
214 return ret;
215}
216
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900217static void clear_perf_probe_point(struct perf_probe_point *pp)
218{
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -0300219 zfree(&pp->file);
220 zfree(&pp->function);
221 zfree(&pp->lazy_line);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900222}
223
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000224static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
225{
226 int i;
227
228 for (i = 0; i < ntevs; i++)
229 clear_probe_trace_event(tevs + i);
230}
231
Masami Hiramatsub0312202015-06-16 20:50:55 +0900232static bool kprobe_blacklist__listed(unsigned long address);
233static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
234{
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900235 u64 etext_addr = 0;
236 int ret;
He Kuang7c31bb82015-06-18 02:49:10 +0000237
Masami Hiramatsub0312202015-06-16 20:50:55 +0900238 /* Get the address of _etext for checking non-probable text symbol */
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900239 ret = kernel_get_symbol_address_by_name("_etext", &etext_addr,
240 false, false);
He Kuang7c31bb82015-06-18 02:49:10 +0000241
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900242 if (ret == 0 && etext_addr < address)
Masami Hiramatsub0312202015-06-16 20:50:55 +0900243 pr_warning("%s is out of .text, skip it.\n", symbol);
244 else if (kprobe_blacklist__listed(address))
245 pr_warning("%s is blacklisted function, skip it.\n", symbol);
246 else
247 return false;
248
249 return true;
250}
251
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530252/*
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530253 * @module can be module name of module file path. In case of path,
254 * inspect elf and find out what is actual module name.
255 * Caller has to free mod_name after using it.
256 */
257static char *find_module_name(const char *module)
258{
259 int fd;
260 Elf *elf;
261 GElf_Ehdr ehdr;
262 GElf_Shdr shdr;
263 Elf_Data *data;
264 Elf_Scn *sec;
265 char *mod_name = NULL;
Masami Hiramatsu1f2ed152017-01-03 00:20:49 +0900266 int name_offset;
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530267
268 fd = open(module, O_RDONLY);
269 if (fd < 0)
270 return NULL;
271
272 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
273 if (elf == NULL)
274 goto elf_err;
275
276 if (gelf_getehdr(elf, &ehdr) == NULL)
277 goto ret_err;
278
279 sec = elf_section_by_name(elf, &ehdr, &shdr,
280 ".gnu.linkonce.this_module", NULL);
281 if (!sec)
282 goto ret_err;
283
284 data = elf_getdata(sec, NULL);
285 if (!data || !data->d_buf)
286 goto ret_err;
287
Masami Hiramatsu1f2ed152017-01-03 00:20:49 +0900288 /*
289 * NOTE:
290 * '.gnu.linkonce.this_module' section of kernel module elf directly
291 * maps to 'struct module' from linux/module.h. This section contains
292 * actual module name which will be used by kernel after loading it.
293 * But, we cannot use 'struct module' here since linux/module.h is not
294 * exposed to user-space. Offset of 'name' has remained same from long
295 * time, so hardcoding it here.
296 */
297 if (ehdr.e_ident[EI_CLASS] == ELFCLASS32)
298 name_offset = 12;
299 else /* expect ELFCLASS64 by default */
300 name_offset = 24;
301
302 mod_name = strdup((char *)data->d_buf + name_offset);
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530303
304ret_err:
305 elf_end(elf);
306elf_err:
307 close(fd);
308 return mod_name;
309}
310
Ingo Molnar89fe8082013-09-30 12:07:11 +0200311#ifdef HAVE_DWARF_SUPPORT
Wang Nan60fb7742015-05-28 02:25:05 +0000312
313static int kernel_get_module_dso(const char *module, struct dso **pdso)
314{
315 struct dso *dso;
316 struct map *map;
317 const char *vmlinux_name;
318 int ret = 0;
319
320 if (module) {
Arnaldo Carvalho de Melo266fa2b2015-09-24 11:24:18 -0300321 char module_name[128];
322
323 snprintf(module_name, sizeof(module_name), "[%s]", module);
Arnaldo Carvalho de Melo83cf7742018-04-24 12:16:09 -0300324 map = map_groups__find_by_name(&host_machine->kmaps, module_name);
Arnaldo Carvalho de Melo266fa2b2015-09-24 11:24:18 -0300325 if (map) {
326 dso = map->dso;
327 goto found;
Wang Nan60fb7742015-05-28 02:25:05 +0000328 }
329 pr_debug("Failed to find module %s.\n", module);
330 return -ENOENT;
331 }
332
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300333 map = machine__kernel_map(host_machine);
Wang Nan60fb7742015-05-28 02:25:05 +0000334 dso = map->dso;
335
336 vmlinux_name = symbol_conf.vmlinux_name;
337 dso->load_errno = 0;
338 if (vmlinux_name)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300339 ret = dso__load_vmlinux(dso, map, vmlinux_name, false);
Wang Nan60fb7742015-05-28 02:25:05 +0000340 else
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300341 ret = dso__load_vmlinux_path(dso, map);
Wang Nan60fb7742015-05-28 02:25:05 +0000342found:
343 *pdso = dso;
344 return ret;
345}
346
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900347/*
348 * Some binaries like glibc have special symbols which are on the symbol
349 * table, but not in the debuginfo. If we can find the address of the
350 * symbol from map, we can translate the address back to the probe point.
351 */
352static int find_alternative_probe_point(struct debuginfo *dinfo,
353 struct perf_probe_point *pp,
354 struct perf_probe_point *result,
Krister Johansen544abd42017-07-05 18:48:10 -0700355 const char *target, struct nsinfo *nsi,
356 bool uprobes)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900357{
358 struct map *map = NULL;
359 struct symbol *sym;
360 u64 address = 0;
361 int ret = -ENOENT;
362
363 /* This can work only for function-name based one */
364 if (!pp->function || pp->file)
365 return -ENOTSUP;
366
Krister Johansen544abd42017-07-05 18:48:10 -0700367 map = get_target_map(target, nsi, uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900368 if (!map)
369 return -EINVAL;
370
371 /* Find the address of given function */
372 map__for_each_symbol_by_name(map, pp->function, sym) {
Masami Hiramatsue6d7c912015-03-22 20:40:22 +0900373 if (uprobes)
374 address = sym->start;
375 else
Masami Hiramatsu8e341892016-08-06 19:29:48 +0900376 address = map->unmap_ip(map, sym->start) - map->reloc;
Namhyung Kime578da32015-03-06 16:31:29 +0900377 break;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900378 }
379 if (!address) {
380 ret = -ENOENT;
381 goto out;
382 }
Wang Nanf6c15622015-04-08 02:14:34 +0000383 pr_debug("Symbol %s address found : %" PRIx64 "\n",
384 pp->function, address);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900385
386 ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
387 result);
388 if (ret <= 0)
389 ret = (!ret) ? -ENOENT : ret;
390 else {
391 result->offset += pp->offset;
392 result->line += pp->line;
He Kuang9d7b45c2015-04-13 19:41:28 +0800393 result->retprobe = pp->retprobe;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900394 ret = 0;
395 }
396
397out:
Masami Hiramatsueebc5092017-01-04 12:29:05 +0900398 map__put(map);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900399 return ret;
400
401}
402
403static int get_alternative_probe_event(struct debuginfo *dinfo,
404 struct perf_probe_event *pev,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900405 struct perf_probe_point *tmp)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900406{
407 int ret;
408
409 memcpy(tmp, &pev->point, sizeof(*tmp));
410 memset(&pev->point, 0, sizeof(pev->point));
Krister Johansen544abd42017-07-05 18:48:10 -0700411 ret = find_alternative_probe_point(dinfo, tmp, &pev->point, pev->target,
412 pev->nsi, pev->uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900413 if (ret < 0)
414 memcpy(&pev->point, tmp, sizeof(*tmp));
415
416 return ret;
417}
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000418
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900419static int get_alternative_line_range(struct debuginfo *dinfo,
420 struct line_range *lr,
421 const char *target, bool user)
422{
David Ahern6d4a4892015-03-11 10:36:20 -0400423 struct perf_probe_point pp = { .function = lr->function,
424 .file = lr->file,
425 .line = lr->start };
426 struct perf_probe_point result;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900427 int ret, len = 0;
428
David Ahern6d4a4892015-03-11 10:36:20 -0400429 memset(&result, 0, sizeof(result));
430
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900431 if (lr->end != INT_MAX)
432 len = lr->end - lr->start;
433 ret = find_alternative_probe_point(dinfo, &pp, &result,
Krister Johansen544abd42017-07-05 18:48:10 -0700434 target, NULL, user);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900435 if (!ret) {
436 lr->function = result.function;
437 lr->file = result.file;
438 lr->start = result.line;
439 if (lr->end != INT_MAX)
440 lr->end = lr->start + len;
441 clear_perf_probe_point(&pp);
442 }
443 return ret;
444}
445
Masami Hiramatsuff741782011-06-27 16:27:39 +0900446/* Open new debuginfo of given module */
Krister Johansen544abd42017-07-05 18:48:10 -0700447static struct debuginfo *open_debuginfo(const char *module, struct nsinfo *nsi,
448 bool silent)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900449{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000450 const char *path = module;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900451 char reason[STRERR_BUFSIZE];
452 struct debuginfo *ret = NULL;
453 struct dso *dso = NULL;
Krister Johansen544abd42017-07-05 18:48:10 -0700454 struct nscookie nsc;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900455 int err;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900456
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000457 if (!module || !strchr(module, '/')) {
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900458 err = kernel_get_module_dso(module, &dso);
459 if (err < 0) {
460 if (!dso || dso->load_errno == 0) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300461 if (!str_error_r(-err, reason, STRERR_BUFSIZE))
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900462 strcpy(reason, "(unknown)");
463 } else
464 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
Arnaldo Carvalho de Melo4d6101f2019-02-28 11:22:45 -0300465 if (!silent) {
466 if (module)
467 pr_err("Module %s is not loaded, please specify its full path name.\n", module);
468 else
469 pr_err("Failed to find the path for the kernel: %s\n", reason);
470 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900471 return NULL;
472 }
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900473 path = dso->long_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900474 }
Krister Johansen544abd42017-07-05 18:48:10 -0700475 nsinfo__mountns_enter(nsi, &nsc);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000476 ret = debuginfo__new(path);
477 if (!ret && !silent) {
478 pr_warning("The %s file has no debug information.\n", path);
479 if (!module || !strtailcmp(path, ".ko"))
480 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
481 else
482 pr_warning("Rebuild with -g, ");
483 pr_warning("or install an appropriate debuginfo package.\n");
484 }
Krister Johansen544abd42017-07-05 18:48:10 -0700485 nsinfo__mountns_exit(&nsc);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000486 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400487}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300488
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900489/* For caching the last debuginfo */
490static struct debuginfo *debuginfo_cache;
491static char *debuginfo_cache_path;
492
493static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
494{
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900495 const char *path = module;
496
497 /* If the module is NULL, it should be the kernel. */
498 if (!module)
499 path = "kernel";
500
501 if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900502 goto out;
503
504 /* Copy module path */
505 free(debuginfo_cache_path);
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900506 debuginfo_cache_path = strdup(path);
507 if (!debuginfo_cache_path) {
508 debuginfo__delete(debuginfo_cache);
509 debuginfo_cache = NULL;
510 goto out;
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900511 }
512
Krister Johansen544abd42017-07-05 18:48:10 -0700513 debuginfo_cache = open_debuginfo(module, NULL, silent);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900514 if (!debuginfo_cache)
515 zfree(&debuginfo_cache_path);
516out:
517 return debuginfo_cache;
518}
519
520static void debuginfo_cache__exit(void)
521{
522 debuginfo__delete(debuginfo_cache);
523 debuginfo_cache = NULL;
524 zfree(&debuginfo_cache_path);
525}
526
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000527
Krister Johansen544abd42017-07-05 18:48:10 -0700528static int get_text_start_address(const char *exec, unsigned long *address,
529 struct nsinfo *nsi)
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000530{
531 Elf *elf;
532 GElf_Ehdr ehdr;
533 GElf_Shdr shdr;
534 int fd, ret = -ENOENT;
Krister Johansen544abd42017-07-05 18:48:10 -0700535 struct nscookie nsc;
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000536
Krister Johansen544abd42017-07-05 18:48:10 -0700537 nsinfo__mountns_enter(nsi, &nsc);
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000538 fd = open(exec, O_RDONLY);
Krister Johansen544abd42017-07-05 18:48:10 -0700539 nsinfo__mountns_exit(&nsc);
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000540 if (fd < 0)
541 return -errno;
542
543 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900544 if (elf == NULL) {
545 ret = -EINVAL;
546 goto out_close;
547 }
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000548
549 if (gelf_getehdr(elf, &ehdr) == NULL)
550 goto out;
551
552 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
553 goto out;
554
555 *address = shdr.sh_addr - shdr.sh_offset;
556 ret = 0;
557out:
558 elf_end(elf);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900559out_close:
560 close(fd);
561
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000562 return ret;
563}
564
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000565/*
566 * Convert trace point to probe point with debuginfo
567 */
568static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
569 struct perf_probe_point *pp,
570 bool is_kprobe)
571{
572 struct debuginfo *dinfo = NULL;
573 unsigned long stext = 0;
574 u64 addr = tp->address;
575 int ret = -ENOENT;
576
577 /* convert the address to dwarf address */
578 if (!is_kprobe) {
579 if (!addr) {
580 ret = -EINVAL;
581 goto error;
582 }
Krister Johansen544abd42017-07-05 18:48:10 -0700583 ret = get_text_start_address(tp->module, &stext, NULL);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000584 if (ret < 0)
585 goto error;
586 addr += stext;
Wang Nane4863672015-08-25 13:27:35 +0000587 } else if (tp->symbol) {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900588 /* If the module is given, this returns relative address */
589 ret = kernel_get_symbol_address_by_name(tp->symbol, &addr,
590 false, !!tp->module);
591 if (ret != 0)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000592 goto error;
593 addr += tp->offset;
594 }
595
596 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
597 tp->module ? : "kernel");
598
Namhyung Kimbb963e12017-02-17 17:17:38 +0900599 dinfo = debuginfo_cache__open(tp->module, verbose <= 0);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900600 if (dinfo)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000601 ret = debuginfo__find_probe_point(dinfo,
602 (unsigned long)addr, pp);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900603 else
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000604 ret = -ENOENT;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000605
606 if (ret > 0) {
607 pp->retprobe = tp->retprobe;
608 return 0;
609 }
610error:
611 pr_debug("Failed to find corresponding probes from debuginfo.\n");
612 return ret ? : -ENOENT;
613}
614
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900615/* Adjust symbol name and address */
616static int post_process_probe_trace_point(struct probe_trace_point *tp,
617 struct map *map, unsigned long offs)
618{
619 struct symbol *sym;
Björn Töpel7598f8b2017-06-21 18:41:34 +0200620 u64 addr = tp->address - offs;
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900621
622 sym = map__find_symbol(map, addr);
623 if (!sym)
624 return -ENOENT;
625
626 if (strcmp(sym->name, tp->symbol)) {
627 /* If we have no realname, use symbol for it */
628 if (!tp->realname)
629 tp->realname = tp->symbol;
630 else
631 free(tp->symbol);
632 tp->symbol = strdup(sym->name);
633 if (!tp->symbol)
634 return -ENOMEM;
635 }
636 tp->offset = addr - sym->start;
637 tp->address -= offs;
638
639 return 0;
640}
641
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900642/*
643 * Rename DWARF symbols to ELF symbols -- gcc sometimes optimizes functions
644 * and generate new symbols with suffixes such as .constprop.N or .isra.N
645 * etc. Since those symbols are not recorded in DWARF, we have to find
646 * correct generated symbols from offline ELF binary.
647 * For online kernel or uprobes we don't need this because those are
648 * rebased on _text, or already a section relative address.
649 */
650static int
651post_process_offline_probe_trace_events(struct probe_trace_event *tevs,
652 int ntevs, const char *pathname)
653{
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900654 struct map *map;
655 unsigned long stext = 0;
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900656 int i, ret = 0;
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900657
658 /* Prepare a map for offline binary */
659 map = dso__new_map(pathname);
Krister Johansen544abd42017-07-05 18:48:10 -0700660 if (!map || get_text_start_address(pathname, &stext, NULL) < 0) {
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900661 pr_warning("Failed to get ELF symbols for %s\n", pathname);
662 return -EINVAL;
663 }
664
665 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900666 ret = post_process_probe_trace_point(&tevs[i].point,
667 map, stext);
668 if (ret < 0)
669 break;
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900670 }
671 map__put(map);
672
Masami Hiramatsu3e96dac2017-01-11 15:00:47 +0900673 return ret;
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900674}
675
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000676static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
Krister Johansen544abd42017-07-05 18:48:10 -0700677 int ntevs, const char *exec,
678 struct nsinfo *nsi)
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000679{
680 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000681 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000682
683 if (!exec)
684 return 0;
685
Krister Johansen544abd42017-07-05 18:48:10 -0700686 ret = get_text_start_address(exec, &stext, nsi);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000687 if (ret < 0)
688 return ret;
689
690 for (i = 0; i < ntevs && ret >= 0; i++) {
Ingo Molnaradba1632018-12-03 11:22:00 +0100691 /* point.address is the address of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000692 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000693 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000694 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000695 ret = -ENOMEM;
696 break;
697 }
698 tevs[i].uprobes = true;
699 }
700
701 return ret;
702}
703
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900704static int
705post_process_module_probe_trace_events(struct probe_trace_event *tevs,
706 int ntevs, const char *module,
707 struct debuginfo *dinfo)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900708{
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900709 Dwarf_Addr text_offs = 0;
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900710 int i, ret = 0;
Ravi Bangoria63a29612016-04-26 19:55:41 +0530711 char *mod_name = NULL;
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900712 struct map *map;
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900713
714 if (!module)
715 return 0;
716
Krister Johansen544abd42017-07-05 18:48:10 -0700717 map = get_target_map(module, NULL, false);
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900718 if (!map || debuginfo__get_text_offset(dinfo, &text_offs, true) < 0) {
719 pr_warning("Failed to get ELF symbols for %s\n", module);
720 return -EINVAL;
721 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900722
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900723 mod_name = find_module_name(module);
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900724 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900725 ret = post_process_probe_trace_point(&tevs[i].point,
726 map, (unsigned long)text_offs);
727 if (ret < 0)
728 break;
Ravi Bangoria63a29612016-04-26 19:55:41 +0530729 tevs[i].point.module =
730 strdup(mod_name ? mod_name : module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900731 if (!tevs[i].point.module) {
732 ret = -ENOMEM;
733 break;
734 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900735 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900736
Ravi Bangoria63a29612016-04-26 19:55:41 +0530737 free(mod_name);
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900738 map__put(map);
739
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900740 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900741}
742
Ravi Bangoriad8204562016-08-09 01:23:24 -0500743static int
744post_process_kernel_probe_trace_events(struct probe_trace_event *tevs,
745 int ntevs)
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000746{
747 struct ref_reloc_sym *reloc_sym;
748 char *tmp;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900749 int i, skipped = 0;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000750
Masami Hiramatsu428aff82016-08-26 01:24:42 +0900751 /* Skip post process if the target is an offline kernel */
752 if (symbol_conf.ignore_vmlinux_buildid)
Masami Hiramatsu8a937a22017-01-04 12:30:19 +0900753 return post_process_offline_probe_trace_events(tevs, ntevs,
754 symbol_conf.vmlinux_name);
Masami Hiramatsu428aff82016-08-26 01:24:42 +0900755
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000756 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000757 if (!reloc_sym) {
758 pr_warning("Relocated base symbol is not found!\n");
759 return -EINVAL;
760 }
761
762 for (i = 0; i < ntevs; i++) {
Naveen N. Rao7ab31d92017-03-08 13:56:09 +0530763 if (!tevs[i].point.address)
764 continue;
765 if (tevs[i].point.retprobe && !kretprobe_offset_is_supported())
Masami Hiramatsub0312202015-06-16 20:50:55 +0900766 continue;
767 /* If we found a wrong one, mark it by NULL symbol */
768 if (kprobe_warn_out_range(tevs[i].point.symbol,
769 tevs[i].point.address)) {
770 tmp = NULL;
771 skipped++;
772 } else {
773 tmp = strdup(reloc_sym->name);
774 if (!tmp)
775 return -ENOMEM;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000776 }
Masami Hiramatsub0312202015-06-16 20:50:55 +0900777 /* If we have no realname, use symbol for it */
778 if (!tevs[i].point.realname)
779 tevs[i].point.realname = tevs[i].point.symbol;
780 else
781 free(tevs[i].point.symbol);
782 tevs[i].point.symbol = tmp;
783 tevs[i].point.offset = tevs[i].point.address -
784 reloc_sym->unrelocated_addr;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000785 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900786 return skipped;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000787}
788
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500789void __weak
790arch__post_process_probe_trace_events(struct perf_probe_event *pev __maybe_unused,
791 int ntevs __maybe_unused)
792{
793}
794
Ravi Bangoriad8204562016-08-09 01:23:24 -0500795/* Post processing the probe events */
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500796static int post_process_probe_trace_events(struct perf_probe_event *pev,
797 struct probe_trace_event *tevs,
Ravi Bangoriad8204562016-08-09 01:23:24 -0500798 int ntevs, const char *module,
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900799 bool uprobe, struct debuginfo *dinfo)
Ravi Bangoriad8204562016-08-09 01:23:24 -0500800{
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500801 int ret;
802
Ravi Bangoriad8204562016-08-09 01:23:24 -0500803 if (uprobe)
Krister Johansen544abd42017-07-05 18:48:10 -0700804 ret = add_exec_to_probe_trace_events(tevs, ntevs, module,
805 pev->nsi);
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500806 else if (module)
Ravi Bangoriad8204562016-08-09 01:23:24 -0500807 /* Currently ref_reloc_sym based probe is not for drivers */
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900808 ret = post_process_module_probe_trace_events(tevs, ntevs,
809 module, dinfo);
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500810 else
811 ret = post_process_kernel_probe_trace_events(tevs, ntevs);
Ravi Bangoriad8204562016-08-09 01:23:24 -0500812
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500813 if (ret >= 0)
814 arch__post_process_probe_trace_events(pev, ntevs);
815
816 return ret;
Ravi Bangoriad8204562016-08-09 01:23:24 -0500817}
818
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300819/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530820static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900821 struct probe_trace_event **tevs)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300822{
823 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900824 struct perf_probe_point tmp;
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530825 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900826 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300827
Krister Johansen544abd42017-07-05 18:48:10 -0700828 dinfo = open_debuginfo(pev->target, pev->nsi, !need_dwarf);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900829 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000830 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900831 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900832 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300833 return 0;
834 }
835
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000836 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900837 /* Searching trace events corresponding to a probe event */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900838 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900839
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900840 if (ntevs == 0) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900841 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900842 if (!ret) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900843 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900844 /*
845 * Write back to the original probe_event for
846 * setting appropriate (user given) event name
847 */
848 clear_perf_probe_point(&pev->point);
849 memcpy(&pev->point, &tmp, sizeof(tmp));
850 }
851 }
852
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400853 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000854 pr_debug("Found %d probe_trace_events.\n", ntevs);
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500855 ret = post_process_probe_trace_events(pev, *tevs, ntevs,
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900856 pev->target, pev->uprobes, dinfo);
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900857 if (ret < 0 || ret == ntevs) {
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900858 pr_debug("Post processing failed or all events are skipped. (%d)\n", ret);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000859 clear_probe_trace_events(*tevs, ntevs);
860 zfree(tevs);
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900861 ntevs = 0;
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000862 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400863 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300864
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900865 debuginfo__delete(dinfo);
866
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400867 if (ntevs == 0) { /* No error but failed to find probe point. */
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900868 pr_warning("Probe point '%s' not found.\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400869 synthesize_perf_probe_point(&pev->point));
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900870 return -ENOENT;
Masami Hiramatsu613f0502017-01-11 15:01:57 +0900871 } else if (ntevs < 0) {
872 /* Error path : ntevs < 0 */
873 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
Wang Nan1c0bd0e2015-08-21 10:09:02 +0000874 if (ntevs == -EBADF)
875 pr_warning("Warning: No dwarf info found in the vmlinux - "
876 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400877 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900878 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400879 return 0;
880 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300881 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400882 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300883}
884
885#define LINEBUF_SIZE 256
886#define NR_ADDITIONAL_LINES 2
887
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100888static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300889{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000890 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100891 const char *color = show_num ? "" : PERF_COLOR_BLUE;
892 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300893
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100894 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300895 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
896 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100897 if (skip)
898 continue;
899 if (!prefix) {
900 prefix = show_num ? "%7d " : " ";
901 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300902 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100903 color_fprintf(stdout, color, "%s", buf);
904
905 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400906
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100907 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300908error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100909 if (ferror(fp)) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000910 pr_warning("File read error: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300911 str_error_r(errno, sbuf, sizeof(sbuf)));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100912 return -1;
913 }
914 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300915}
916
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100917static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
918{
919 int rv = __show_one_line(fp, l, skip, show_num);
920 if (rv == 0) {
921 pr_warning("Source file is shorter than expected.\n");
922 rv = -1;
923 }
924 return rv;
925}
926
927#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
928#define show_one_line(f,l) _show_one_line(f,l,false,false)
929#define skip_one_line(f,l) _show_one_line(f,l,true,false)
930#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
931
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300932/*
933 * Show line-range always requires debuginfo to find source file and
934 * line number.
935 */
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900936static int __show_line_range(struct line_range *lr, const char *module,
937 bool user)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300938{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400939 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000940 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900941 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300942 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900943 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900944 char *tmp;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000945 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300946
947 /* Search a line range */
Krister Johansen544abd42017-07-05 18:48:10 -0700948 dinfo = open_debuginfo(module, NULL, false);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000949 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900950 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400951
Masami Hiramatsuff741782011-06-27 16:27:39 +0900952 ret = debuginfo__find_line_range(dinfo, lr);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900953 if (!ret) { /* Not found, retry with an alternative */
954 ret = get_alternative_line_range(dinfo, lr, module, user);
955 if (!ret)
956 ret = debuginfo__find_line_range(dinfo, lr);
957 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900958 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000959 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400960 pr_warning("Specified source line is not found.\n");
961 return -ENOENT;
962 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000963 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400964 return ret;
965 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300966
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900967 /* Convert source file path */
968 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900969 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
He Kuanga78604d2015-03-04 18:01:42 +0800970
971 /* Free old path when new path is assigned */
972 if (tmp != lr->path)
973 free(tmp);
974
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900975 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000976 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900977 return ret;
978 }
979
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300980 setup_pager();
981
982 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900983 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300984 lr->start - lr->offset);
985 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100986 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300987
988 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400989 if (fp == NULL) {
990 pr_warning("Failed to open %s: %s\n", lr->path,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300991 str_error_r(errno, sbuf, sizeof(sbuf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400992 return -errno;
993 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300994 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100995 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100996 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100997 if (ret < 0)
998 goto end;
999 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001000
Arnaldo Carvalho de Melo10daf4d2016-06-23 11:39:19 -03001001 intlist__for_each_entry(ln, lr->line_list) {
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001002 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +01001003 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +01001004 if (ret < 0)
1005 goto end;
1006 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +01001007 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001008 if (ret < 0)
1009 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001010 }
1011
1012 if (lr->end == INT_MAX)
1013 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +01001014 while (l <= lr->end) {
1015 ret = show_one_line_or_eof(fp, l++ - lr->offset);
1016 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +01001017 break;
1018 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001019end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001020 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001021 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001022}
1023
Krister Johansen544abd42017-07-05 18:48:10 -07001024int show_line_range(struct line_range *lr, const char *module,
1025 struct nsinfo *nsi, bool user)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001026{
1027 int ret;
Krister Johansen544abd42017-07-05 18:48:10 -07001028 struct nscookie nsc;
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001029
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001030 ret = init_probe_symbol_maps(user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001031 if (ret < 0)
1032 return ret;
Krister Johansen544abd42017-07-05 18:48:10 -07001033 nsinfo__mountns_enter(nsi, &nsc);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +09001034 ret = __show_line_range(lr, module, user);
Krister Johansen544abd42017-07-05 18:48:10 -07001035 nsinfo__mountns_exit(&nsc);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001036 exit_probe_symbol_maps();
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001037
1038 return ret;
1039}
1040
Masami Hiramatsuff741782011-06-27 16:27:39 +09001041static int show_available_vars_at(struct debuginfo *dinfo,
1042 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001043 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001044{
1045 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001046 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001047 struct str_node *node;
1048 struct variable_list *vls = NULL, *vl;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001049 struct perf_probe_point tmp;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001050 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001051
1052 buf = synthesize_perf_probe_point(&pev->point);
1053 if (!buf)
1054 return -EINVAL;
1055 pr_debug("Searching variables at %s\n", buf);
1056
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001057 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001058 if (!ret) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +09001059 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001060 if (!ret) {
1061 ret = debuginfo__find_available_vars_at(dinfo, pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001062 &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001063 /* Release the old probe_point */
1064 clear_perf_probe_point(&tmp);
1065 }
1066 }
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001067 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +00001068 if (ret == 0 || ret == -ENOENT) {
1069 pr_err("Failed to find the address of %s\n", buf);
1070 ret = -ENOENT;
1071 } else
1072 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001073 goto end;
1074 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +00001075
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001076 /* Some variables are found */
1077 fprintf(stdout, "Available variables at %s\n", buf);
1078 for (i = 0; i < ret; i++) {
1079 vl = &vls[i];
1080 /*
1081 * A probe point might be converted to
1082 * several trace points.
1083 */
1084 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
1085 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001086 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001087 nvars = 0;
1088 if (vl->vars) {
Arnaldo Carvalho de Melo602a1f42016-06-23 11:31:20 -03001089 strlist__for_each_entry(node, vl->vars) {
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +09001090 var = strchr(node->s, '\t') + 1;
1091 if (strfilter__compare(_filter, var)) {
1092 fprintf(stdout, "\t\t%s\n", node->s);
1093 nvars++;
1094 }
1095 }
1096 strlist__delete(vl->vars);
1097 }
1098 if (nvars == 0)
1099 fprintf(stdout, "\t\t(No matched variables)\n");
1100 }
1101 free(vls);
1102end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001103 free(buf);
1104 return ret;
1105}
1106
1107/* Show available variables on given probe point */
1108int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001109 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001110{
Masami Hiramatsuff741782011-06-27 16:27:39 +09001111 int i, ret = 0;
1112 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001113
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001114 ret = init_probe_symbol_maps(pevs->uprobes);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001115 if (ret < 0)
1116 return ret;
1117
Krister Johansen544abd42017-07-05 18:48:10 -07001118 dinfo = open_debuginfo(pevs->target, pevs->nsi, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001119 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001120 ret = -ENOENT;
1121 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +09001122 }
1123
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001124 setup_pager();
1125
Masami Hiramatsuff741782011-06-27 16:27:39 +09001126 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001127 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001128
1129 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001130out:
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001131 exit_probe_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001132 return ret;
1133}
1134
Ingo Molnar89fe8082013-09-30 12:07:11 +02001135#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001136
Masami Hiramatsu7737af02015-06-17 23:58:54 +09001137static void debuginfo_cache__exit(void)
1138{
1139}
1140
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001141static int
1142find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
1143 struct perf_probe_point *pp __maybe_unused,
1144 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001145{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001146 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001147}
1148
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301149static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001150 struct probe_trace_event **tevs __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001151{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001152 if (perf_probe_event_need_dwarf(pev)) {
1153 pr_warning("Debuginfo-analysis is not supported.\n");
1154 return -ENOSYS;
1155 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301156
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001157 return 0;
1158}
1159
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001160int show_line_range(struct line_range *lr __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +00001161 const char *module __maybe_unused,
Krister Johansen544abd42017-07-05 18:48:10 -07001162 struct nsinfo *nsi __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +00001163 bool user __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001164{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001165 pr_warning("Debuginfo-analysis is not supported.\n");
1166 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001167}
1168
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001169int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001170 int npevs __maybe_unused,
1171 struct strfilter *filter __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001172{
1173 pr_warning("Debuginfo-analysis is not supported.\n");
1174 return -ENOSYS;
1175}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001176#endif
1177
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001178void line_range__clear(struct line_range *lr)
1179{
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001180 zfree(&lr->function);
1181 zfree(&lr->file);
1182 zfree(&lr->path);
1183 zfree(&lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001184 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001185}
1186
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001187int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001188{
1189 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001190 lr->line_list = intlist__new(NULL);
1191 if (!lr->line_list)
1192 return -ENOMEM;
1193 else
1194 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001195}
1196
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001197static int parse_line_num(char **ptr, int *val, const char *what)
1198{
1199 const char *start = *ptr;
1200
1201 errno = 0;
1202 *val = strtol(*ptr, ptr, 0);
1203 if (errno || *ptr == start) {
1204 semantic_error("'%s' is not a valid number.\n", what);
1205 return -EINVAL;
1206 }
1207 return 0;
1208}
1209
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001210/* Check the name is good for event, group or function */
1211static bool is_c_func_name(const char *name)
1212{
1213 if (!isalpha(*name) && *name != '_')
1214 return false;
1215 while (*++name != '\0') {
1216 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1217 return false;
1218 }
1219 return true;
1220}
1221
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001222/*
1223 * Stuff 'lr' according to the line range described by 'arg'.
1224 * The line range syntax is described by:
1225 *
1226 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001227 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001228 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001229int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001230{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001231 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001232 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001233
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001234 if (!name)
1235 return -ENOMEM;
1236
1237 lr->start = 0;
1238 lr->end = INT_MAX;
1239
1240 range = strchr(name, ':');
1241 if (range) {
1242 *range++ = '\0';
1243
1244 err = parse_line_num(&range, &lr->start, "start line");
1245 if (err)
1246 goto err;
1247
1248 if (*range == '+' || *range == '-') {
1249 const char c = *range++;
1250
1251 err = parse_line_num(&range, &lr->end, "end line");
1252 if (err)
1253 goto err;
1254
1255 if (c == '+') {
1256 lr->end += lr->start;
1257 /*
1258 * Adjust the number of lines here.
1259 * If the number of lines == 1, the
1260 * the end of line should be equal to
1261 * the start of line.
1262 */
1263 lr->end--;
1264 }
1265 }
1266
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001267 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001268
1269 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001270 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001271 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001272 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001273 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001274 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001275 if (*range != '\0') {
1276 semantic_error("Tailing with invalid str '%s'.\n", range);
1277 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001278 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001279 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001280
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001281 file = strchr(name, '@');
1282 if (file) {
1283 *file = '\0';
1284 lr->file = strdup(++file);
1285 if (lr->file == NULL) {
1286 err = -ENOMEM;
1287 goto err;
1288 }
1289 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001290 } else if (strchr(name, '/') || strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001291 lr->file = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001292 else if (is_c_func_name(name))/* We reuse it for checking funcname */
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001293 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001294 else { /* Invalid name */
1295 semantic_error("'%s' is not a valid function name.\n", name);
1296 err = -EINVAL;
1297 goto err;
1298 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001299
1300 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001301err:
1302 free(name);
1303 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001304}
1305
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001306static int parse_perf_probe_event_name(char **arg, struct perf_probe_event *pev)
1307{
1308 char *ptr;
1309
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001310 ptr = strpbrk_esc(*arg, ":");
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001311 if (ptr) {
1312 *ptr = '\0';
Masami Hiramatsu42bba262016-07-12 19:05:18 +09001313 if (!pev->sdt && !is_c_func_name(*arg))
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001314 goto ng_name;
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001315 pev->group = strdup_esc(*arg);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001316 if (!pev->group)
1317 return -ENOMEM;
1318 *arg = ptr + 1;
1319 } else
1320 pev->group = NULL;
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001321
1322 pev->event = strdup_esc(*arg);
1323 if (pev->event == NULL)
1324 return -ENOMEM;
1325
1326 if (!pev->sdt && !is_c_func_name(pev->event)) {
1327 zfree(&pev->event);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001328ng_name:
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001329 zfree(&pev->group);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001330 semantic_error("%s is bad for event name -it must "
1331 "follow C symbol-naming rule.\n", *arg);
1332 return -EINVAL;
1333 }
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001334 return 0;
1335}
1336
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001337/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001338static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001339{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001340 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001341 char *ptr, *tmp;
1342 char c, nc = 0;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301343 bool file_spec = false;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001344 int ret;
1345
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001346 /*
1347 * <Syntax>
Masami Hiramatsu8d993d92016-07-01 17:04:01 +09001348 * perf probe [GRP:][EVENT=]SRC[:LN|;PTN]
1349 * perf probe [GRP:][EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001350 * perf probe %[GRP:]SDT_EVENT
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001351 */
Wang Nane59d29e2015-04-28 08:46:09 +00001352 if (!arg)
1353 return -EINVAL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001354
Ravi Bangoriaaf9100a2017-03-14 20:36:52 +05301355 if (is_sdt_event(arg)) {
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001356 pev->sdt = true;
Masami Hiramatsu7e9fca52016-07-12 19:05:46 +09001357 if (arg[0] == '%')
1358 arg++;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001359 }
1360
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001361 ptr = strpbrk_esc(arg, ";=@+%");
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001362 if (pev->sdt) {
1363 if (ptr) {
Masami Hiramatsua5981802016-07-12 19:05:37 +09001364 if (*ptr != '@') {
1365 semantic_error("%s must be an SDT name.\n",
1366 arg);
1367 return -EINVAL;
1368 }
1369 /* This must be a target file name or build id */
1370 tmp = build_id_cache__complement(ptr + 1);
1371 if (tmp) {
1372 pev->target = build_id_cache__origname(tmp);
1373 free(tmp);
1374 } else
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001375 pev->target = strdup_esc(ptr + 1);
Masami Hiramatsua5981802016-07-12 19:05:37 +09001376 if (!pev->target)
1377 return -ENOMEM;
1378 *ptr = '\0';
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001379 }
1380 ret = parse_perf_probe_event_name(&arg, pev);
1381 if (ret == 0) {
1382 if (asprintf(&pev->point.function, "%%%s", pev->event) < 0)
1383 ret = -errno;
1384 }
1385 return ret;
1386 }
1387
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001388 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001389 *ptr = '\0';
1390 tmp = ptr + 1;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001391 ret = parse_perf_probe_event_name(&arg, pev);
1392 if (ret < 0)
1393 return ret;
1394
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001395 arg = tmp;
1396 }
1397
Naveen N. Rao3099c022015-04-28 17:35:34 +05301398 /*
1399 * Check arg is function or file name and copy it.
1400 *
1401 * We consider arg to be a file spec if and only if it satisfies
1402 * all of the below criteria::
1403 * - it does not include any of "+@%",
1404 * - it includes one of ":;", and
1405 * - it has a period '.' in the name.
1406 *
1407 * Otherwise, we consider arg to be a function specification.
1408 */
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001409 if (!strpbrk_esc(arg, "+@%")) {
1410 ptr = strpbrk_esc(arg, ";:");
Naveen N. Rao3099c022015-04-28 17:35:34 +05301411 /* This is a file spec if it includes a '.' before ; or : */
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001412 if (ptr && memchr(arg, '.', ptr - arg))
Naveen N. Rao3099c022015-04-28 17:35:34 +05301413 file_spec = true;
1414 }
1415
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001416 ptr = strpbrk_esc(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001417 if (ptr) {
1418 nc = *ptr;
1419 *ptr++ = '\0';
1420 }
1421
Wang Nan6c6e0242015-08-26 10:57:44 +00001422 if (arg[0] == '\0')
1423 tmp = NULL;
1424 else {
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001425 tmp = strdup_esc(arg);
Wang Nan6c6e0242015-08-26 10:57:44 +00001426 if (tmp == NULL)
1427 return -ENOMEM;
1428 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001429
Naveen N. Rao3099c022015-04-28 17:35:34 +05301430 if (file_spec)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001431 pp->file = tmp;
Wang Nanda15bd92015-08-26 10:57:45 +00001432 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001433 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001434
Wang Nanda15bd92015-08-26 10:57:45 +00001435 /*
1436 * Keep pp->function even if this is absolute address,
1437 * so it can mark whether abs_address is valid.
1438 * Which make 'perf probe lib.bin 0x0' possible.
1439 *
1440 * Note that checking length of tmp is not needed
1441 * because when we access tmp[1] we know tmp[0] is '0',
1442 * so tmp[1] should always valid (but could be '\0').
1443 */
1444 if (tmp && !strncmp(tmp, "0x", 2)) {
1445 pp->abs_address = strtoul(pp->function, &tmp, 0);
1446 if (*tmp != '\0') {
1447 semantic_error("Invalid absolute address.\n");
1448 return -EINVAL;
1449 }
1450 }
1451 }
1452
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001453 /* Parse other options */
1454 while (ptr) {
1455 arg = ptr;
1456 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001457 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001458 pp->lazy_line = strdup(arg); /* let leave escapes */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001459 if (pp->lazy_line == NULL)
1460 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001461 break;
1462 }
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001463 ptr = strpbrk_esc(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001464 if (ptr) {
1465 nc = *ptr;
1466 *ptr++ = '\0';
1467 }
1468 switch (c) {
1469 case ':': /* Line number */
1470 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001471 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001472 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001473 " in line number.\n");
1474 return -EINVAL;
1475 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001476 break;
1477 case '+': /* Byte offset from a symbol */
1478 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001479 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001480 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001481 " in offset.\n");
1482 return -EINVAL;
1483 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001484 break;
1485 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001486 if (pp->file) {
1487 semantic_error("SRC@SRC is not allowed.\n");
1488 return -EINVAL;
1489 }
Masami Hiramatsuc588d152017-12-13 00:05:12 +09001490 pp->file = strdup_esc(arg);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001491 if (pp->file == NULL)
1492 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001493 break;
1494 case '%': /* Probe places */
1495 if (strcmp(arg, "return") == 0) {
1496 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001497 } else { /* Others not supported yet */
1498 semantic_error("%%%s is not supported.\n", arg);
1499 return -ENOTSUP;
1500 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001501 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001502 default: /* Buggy case */
1503 pr_err("This program has a bug at %s:%d.\n",
1504 __FILE__, __LINE__);
1505 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001506 break;
1507 }
1508 }
1509
1510 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001511 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001512 semantic_error("Lazy pattern can't be used with"
1513 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001514 return -EINVAL;
1515 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001516
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001517 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001518 semantic_error("Lazy pattern can't be used with offset.\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->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001523 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001524 return -EINVAL;
1525 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001526
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001527 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001528 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001529 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001530 return -EINVAL;
1531 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001532
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001533 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001534 semantic_error("Offset requires an entry function.\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->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001539 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001540 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001541 return -EINVAL;
1542 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001543
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001544 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001545 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1546 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001547 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001548}
1549
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001550/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001551static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001552{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001553 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001554 struct perf_probe_arg_field **fieldp;
1555
1556 pr_debug("parsing arg: %s into ", str);
1557
Masami Hiramatsu48481932010-04-12 13:16:53 -04001558 tmp = strchr(str, '=');
1559 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001560 arg->name = strndup(str, tmp - str);
1561 if (arg->name == NULL)
1562 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001563 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001564 str = tmp + 1;
1565 }
1566
Masami Hiramatsu1e032f72019-05-15 14:39:05 +09001567 tmp = strchr(str, '@');
1568 if (tmp && tmp != str && strcmp(tmp + 1, "user")) { /* user attr */
1569 if (!user_access_is_supported()) {
1570 semantic_error("ftrace does not support user access\n");
1571 return -EINVAL;
1572 }
1573 *tmp = '\0';
1574 arg->user_access = true;
1575 pr_debug("user_access ");
1576 }
1577
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001578 tmp = strchr(str, ':');
1579 if (tmp) { /* Type setting */
1580 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001581 arg->type = strdup(tmp + 1);
1582 if (arg->type == NULL)
1583 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001584 pr_debug("type:%s ", arg->type);
1585 }
1586
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001587 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001588 if (!is_c_varname(str) || !tmp) {
1589 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001590 arg->var = strdup(str);
1591 if (arg->var == NULL)
1592 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001593 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001594 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001595 }
1596
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001597 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001598 arg->var = strndup(str, tmp - str);
1599 if (arg->var == NULL)
1600 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001601 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001602 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001603 fieldp = &arg->field;
1604
1605 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001606 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1607 if (*fieldp == NULL)
1608 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001609 if (*tmp == '[') { /* Array */
1610 str = tmp;
1611 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001612 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001613 if (*tmp != ']' || tmp == str + 1) {
1614 semantic_error("Array index must be a"
1615 " number.\n");
1616 return -EINVAL;
1617 }
1618 tmp++;
1619 if (*tmp == '\0')
1620 tmp = NULL;
1621 } else { /* Structure */
1622 if (*tmp == '.') {
1623 str = tmp + 1;
1624 (*fieldp)->ref = false;
1625 } else if (tmp[1] == '>') {
1626 str = tmp + 2;
1627 (*fieldp)->ref = true;
1628 } else {
1629 semantic_error("Argument parse error: %s\n",
1630 str);
1631 return -EINVAL;
1632 }
1633 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001634 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001635 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001636 (*fieldp)->name = strndup(str, tmp - str);
1637 if ((*fieldp)->name == NULL)
1638 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001639 if (*str != '[')
1640 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001641 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1642 fieldp = &(*fieldp)->next;
1643 }
1644 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001645 (*fieldp)->name = strdup(str);
1646 if ((*fieldp)->name == NULL)
1647 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001648 if (*str != '[')
1649 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001650 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001651
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001652 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001653 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001654 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001655 if (arg->name == NULL)
1656 return -ENOMEM;
1657 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001658 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001659}
1660
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001661/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001662int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001663{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001664 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001665 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001666
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001667 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001668 if (!argv) {
1669 pr_debug("Failed to split arguments.\n");
1670 return -ENOMEM;
1671 }
1672 if (argc - 1 > MAX_PROBE_ARGS) {
1673 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1674 ret = -ERANGE;
1675 goto out;
1676 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001677 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001678 ret = parse_perf_probe_point(argv[0], pev);
1679 if (ret < 0)
1680 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001681
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001682 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001683 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001684 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1685 if (pev->args == NULL) {
1686 ret = -ENOMEM;
1687 goto out;
1688 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001689 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1690 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1691 if (ret >= 0 &&
1692 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001693 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001694 " kretprobe.\n");
1695 ret = -EINVAL;
1696 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001697 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001698out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001699 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001700
1701 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001702}
1703
Ravi Bangoriab3f33f92016-08-03 14:28:44 +05301704/* Returns true if *any* ARG is either C variable, $params or $vars. */
1705bool perf_probe_with_var(struct perf_probe_event *pev)
1706{
1707 int i = 0;
1708
1709 for (i = 0; i < pev->nargs; i++)
1710 if (is_c_varname(pev->args[i].var) ||
1711 !strcmp(pev->args[i].var, PROBE_ARG_PARAMS) ||
1712 !strcmp(pev->args[i].var, PROBE_ARG_VARS))
1713 return true;
1714 return false;
1715}
1716
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001717/* Return true if this perf_probe_event requires debuginfo */
1718bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001719{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001720 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1721 return true;
1722
Ravi Bangoriab3f33f92016-08-03 14:28:44 +05301723 if (perf_probe_with_var(pev))
1724 return true;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001725
1726 return false;
1727}
1728
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301729/* Parse probe_events event into struct probe_point */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09001730int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001731{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301732 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001733 char pr;
1734 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001735 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001736 int ret, i, argc;
1737 char **argv;
1738
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301739 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001740 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001741 if (!argv) {
1742 pr_debug("Failed to split arguments.\n");
1743 return -ENOMEM;
1744 }
1745 if (argc < 2) {
1746 semantic_error("Too few probe arguments.\n");
1747 ret = -ERANGE;
1748 goto out;
1749 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001750
1751 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001752 argv0_str = strdup(argv[0]);
1753 if (argv0_str == NULL) {
1754 ret = -ENOMEM;
1755 goto out;
1756 }
1757 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1758 fmt2_str = strtok_r(NULL, "/", &fmt);
1759 fmt3_str = strtok_r(NULL, " \t", &fmt);
1760 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1761 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001762 semantic_error("Failed to parse event name: %s\n", argv[0]);
1763 ret = -EINVAL;
1764 goto out;
1765 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001766 pr = fmt1_str[0];
1767 tev->group = strdup(fmt2_str);
1768 tev->event = strdup(fmt3_str);
1769 if (tev->group == NULL || tev->event == NULL) {
1770 ret = -ENOMEM;
1771 goto out;
1772 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001773 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001774
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001775 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001776
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001777 /* Scan module name(if there), function name and offset */
1778 p = strchr(argv[1], ':');
1779 if (p) {
1780 tp->module = strndup(argv[1], p - argv[1]);
Masami Hiramatsu844faa42016-06-08 18:29:21 +09001781 if (!tp->module) {
1782 ret = -ENOMEM;
1783 goto out;
1784 }
Masami Hiramatsu42bba262016-07-12 19:05:18 +09001785 tev->uprobes = (tp->module[0] == '/');
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001786 p++;
1787 } else
1788 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001789 fmt1_str = strtok_r(p, "+", &fmt);
Wang Nanbe07afe2015-08-26 10:57:43 +00001790 /* only the address started with 0x */
1791 if (fmt1_str[0] == '0') {
1792 /*
1793 * Fix a special case:
1794 * if address == 0, kernel reports something like:
1795 * p:probe_libc/abs_0 /lib/libc-2.18.so:0x (null) arg1=%ax
1796 * Newer kernel may fix that, but we want to
1797 * support old kernel also.
1798 */
1799 if (strcmp(fmt1_str, "0x") == 0) {
1800 if (!argv[2] || strcmp(argv[2], "(null)")) {
1801 ret = -EINVAL;
1802 goto out;
1803 }
1804 tp->address = 0;
1805
1806 free(argv[2]);
1807 for (i = 2; argv[i + 1] != NULL; i++)
1808 argv[i] = argv[i + 1];
1809
1810 argv[i] = NULL;
1811 argc -= 1;
1812 } else
1813 tp->address = strtoul(fmt1_str, NULL, 0);
1814 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001815 /* Only the symbol-based probe has offset */
1816 tp->symbol = strdup(fmt1_str);
1817 if (tp->symbol == NULL) {
1818 ret = -ENOMEM;
1819 goto out;
1820 }
1821 fmt2_str = strtok_r(NULL, "", &fmt);
1822 if (fmt2_str == NULL)
1823 tp->offset = 0;
1824 else
1825 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001826 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001827
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05301828 if (tev->uprobes) {
1829 fmt2_str = strchr(p, '(');
1830 if (fmt2_str)
1831 tp->ref_ctr_offset = strtoul(fmt2_str + 1, NULL, 0);
1832 }
1833
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001834 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301835 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001836 if (tev->args == NULL) {
1837 ret = -ENOMEM;
1838 goto out;
1839 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001840 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001841 p = strchr(argv[i + 2], '=');
1842 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001843 *p++ = '\0';
1844 else
1845 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001846 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001847 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001848 tev->args[i].value = strdup(p);
1849 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1850 ret = -ENOMEM;
1851 goto out;
1852 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001853 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001854 ret = 0;
1855out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001856 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001857 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001858 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001859}
1860
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001861/* Compose only probe arg */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001862char *synthesize_perf_probe_arg(struct perf_probe_arg *pa)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001863{
1864 struct perf_probe_arg_field *field = pa->field;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001865 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001866 char *ret = NULL;
1867 int err;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001868
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001869 if (strbuf_init(&buf, 64) < 0)
1870 return NULL;
1871
Masami Hiramatsu48481932010-04-12 13:16:53 -04001872 if (pa->name && pa->var)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001873 err = strbuf_addf(&buf, "%s=%s", pa->name, pa->var);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001874 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001875 err = strbuf_addstr(&buf, pa->name ?: pa->var);
1876 if (err)
1877 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001878
1879 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001880 if (field->name[0] == '[')
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001881 err = strbuf_addstr(&buf, field->name);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001882 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001883 err = strbuf_addf(&buf, "%s%s", field->ref ? "->" : ".",
1884 field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001885 field = field->next;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001886 if (err)
1887 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001888 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001889
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001890 if (pa->type)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001891 if (strbuf_addf(&buf, ":%s", pa->type) < 0)
1892 goto out;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001893
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001894 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001895out:
1896 strbuf_release(&buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001897 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001898}
1899
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001900/* Compose only probe point (not argument) */
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001901char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001902{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001903 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001904 char *tmp, *ret = NULL;
1905 int len, err = 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001906
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001907 if (strbuf_init(&buf, 64) < 0)
1908 return NULL;
1909
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001910 if (pp->function) {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001911 if (strbuf_addstr(&buf, pp->function) < 0)
1912 goto out;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001913 if (pp->offset)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001914 err = strbuf_addf(&buf, "+%lu", pp->offset);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001915 else if (pp->line)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001916 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001917 else if (pp->retprobe)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001918 err = strbuf_addstr(&buf, "%return");
1919 if (err)
1920 goto out;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001921 }
1922 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001923 tmp = pp->file;
1924 len = strlen(tmp);
1925 if (len > 30) {
1926 tmp = strchr(pp->file + len - 30, '/');
1927 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1928 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001929 err = strbuf_addf(&buf, "@%s", tmp);
1930 if (!err && !pp->function && pp->line)
1931 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001932 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001933 if (!err)
1934 ret = strbuf_detach(&buf, NULL);
1935out:
1936 strbuf_release(&buf);
1937 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001938}
1939
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001940char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1941{
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001942 struct strbuf buf;
1943 char *tmp, *ret = NULL;
1944 int i;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001945
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001946 if (strbuf_init(&buf, 64))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001947 return NULL;
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001948 if (pev->event)
1949 if (strbuf_addf(&buf, "%s:%s=", pev->group ?: PERFPROBE_GROUP,
1950 pev->event) < 0)
1951 goto out;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001952
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001953 tmp = synthesize_perf_probe_point(&pev->point);
1954 if (!tmp || strbuf_addstr(&buf, tmp) < 0)
1955 goto out;
1956 free(tmp);
1957
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001958 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001959 tmp = synthesize_perf_probe_arg(pev->args + i);
1960 if (!tmp || strbuf_addf(&buf, " %s", tmp) < 0)
1961 goto out;
1962 free(tmp);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001963 }
1964
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001965 ret = strbuf_detach(&buf, NULL);
1966out:
1967 strbuf_release(&buf);
1968 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001969}
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001970
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301971static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001972 struct strbuf *buf, int depth)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001973{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001974 int err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001975 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301976 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001977 depth + 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001978 if (depth < 0)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001979 return depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001980 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001981 err = strbuf_addf(buf, "%+ld(", ref->offset);
1982 return (err < 0) ? err : depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001983}
1984
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301985static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001986 struct strbuf *buf)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001987{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301988 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001989 int depth = 0, err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001990
1991 /* Argument name or separator */
1992 if (arg->name)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001993 err = strbuf_addf(buf, " %s=", arg->name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001994 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001995 err = strbuf_addch(buf, ' ');
1996 if (err)
1997 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001998
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001999 /* Special case: @XXX */
2000 if (arg->value[0] == '@' && arg->ref)
2001 ref = ref->next;
2002
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002003 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04002004 if (ref) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002005 depth = __synthesize_probe_trace_arg_ref(ref, buf, 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002006 if (depth < 0)
2007 return depth;
2008 }
2009
2010 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04002011 if (arg->value[0] == '@' && arg->ref)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002012 err = strbuf_addf(buf, "%s%+ld", arg->value, arg->ref->offset);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04002013 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002014 err = strbuf_addstr(buf, arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002015
2016 /* Closing */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002017 while (!err && depth--)
2018 err = strbuf_addch(buf, ')');
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002019
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002020 /* Print argument type */
2021 if (!err && arg->type)
2022 err = strbuf_addf(buf, ":%s", arg->type);
2023
2024 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002025}
2026
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302027static int
2028synthesize_uprobe_trace_def(struct probe_trace_event *tev, struct strbuf *buf)
2029{
2030 struct probe_trace_point *tp = &tev->point;
2031 int err;
2032
2033 err = strbuf_addf(buf, "%s:0x%lx", tp->module, tp->address);
2034
2035 if (err >= 0 && tp->ref_ctr_offset) {
2036 if (!uprobe_ref_ctr_is_supported())
2037 return -1;
2038 err = strbuf_addf(buf, "(0x%lx)", tp->ref_ctr_offset);
2039 }
2040 return err >= 0 ? 0 : -1;
2041}
2042
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302043char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002044{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302045 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002046 struct strbuf buf;
2047 char *ret = NULL;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002048 int i, err;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002049
Wang Nanda15bd92015-08-26 10:57:45 +00002050 /* Uprobes must have tp->module */
2051 if (tev->uprobes && !tp->module)
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002052 return NULL;
2053
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002054 if (strbuf_init(&buf, 32) < 0)
2055 return NULL;
2056
2057 if (strbuf_addf(&buf, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
2058 tev->group, tev->event) < 0)
2059 goto error;
Wang Nanda15bd92015-08-26 10:57:45 +00002060 /*
2061 * If tp->address == 0, then this point must be a
2062 * absolute address uprobe.
2063 * try_to_find_absolute_address() should have made
2064 * tp->symbol to "0x0".
2065 */
2066 if (tev->uprobes && !tp->address) {
2067 if (!tp->symbol || strcmp(tp->symbol, "0x0"))
2068 goto error;
2069 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002070
2071 /* Use the tp->address for uprobes */
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302072 if (tev->uprobes) {
2073 err = synthesize_uprobe_trace_def(tev, &buf);
2074 } else if (!strncmp(tp->symbol, "0x", 2)) {
Wang Nanda15bd92015-08-26 10:57:45 +00002075 /* Absolute address. See try_to_find_absolute_address() */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002076 err = strbuf_addf(&buf, "%s%s0x%lx", tp->module ?: "",
2077 tp->module ? ":" : "", tp->address);
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302078 } else {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002079 err = strbuf_addf(&buf, "%s%s%s+%lu", tp->module ?: "",
2080 tp->module ? ":" : "", tp->symbol, tp->offset);
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302081 }
2082
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002083 if (err)
2084 goto error;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302085
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002086 for (i = 0; i < tev->nargs; i++)
2087 if (synthesize_probe_trace_arg(&tev->args[i], &buf) < 0)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002088 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002089
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002090 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002091error:
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002092 strbuf_release(&buf);
2093 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002094}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002095
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002096static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
2097 struct perf_probe_point *pp,
2098 bool is_kprobe)
2099{
2100 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo8a2efd62017-02-14 15:28:41 -03002101 struct map *map = NULL;
Wang Nane4863672015-08-25 13:27:35 +00002102 u64 addr = tp->address;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002103 int ret = -ENOENT;
2104
2105 if (!is_kprobe) {
2106 map = dso__new_map(tp->module);
2107 if (!map)
2108 goto out;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002109 sym = map__find_symbol(map, addr);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002110 } else {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09002111 if (tp->symbol && !addr) {
Masami Hiramatsu0a62f682015-11-06 17:30:03 +09002112 if (kernel_get_symbol_address_by_name(tp->symbol,
2113 &addr, true, false) < 0)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09002114 goto out;
2115 }
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002116 if (addr) {
2117 addr += tp->offset;
Arnaldo Carvalho de Melo107cad92018-04-30 12:20:54 -03002118 sym = machine__find_kernel_symbol(host_machine, addr, &map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002119 }
2120 }
Wang Nan98d3b252015-11-05 13:19:25 +00002121
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002122 if (!sym)
2123 goto out;
2124
2125 pp->retprobe = tp->retprobe;
2126 pp->offset = addr - map->unmap_ip(map, sym->start);
2127 pp->function = strdup(sym->name);
2128 ret = pp->function ? 0 : -ENOMEM;
2129
2130out:
2131 if (map && !is_kprobe) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03002132 map__put(map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002133 }
2134
2135 return ret;
2136}
2137
2138static int convert_to_perf_probe_point(struct probe_trace_point *tp,
Wang Nanda15bd92015-08-26 10:57:45 +00002139 struct perf_probe_point *pp,
2140 bool is_kprobe)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002141{
2142 char buf[128];
2143 int ret;
2144
2145 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
2146 if (!ret)
2147 return 0;
2148 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
2149 if (!ret)
2150 return 0;
2151
2152 pr_debug("Failed to find probe point from both of dwarf and map.\n");
2153
2154 if (tp->symbol) {
2155 pp->function = strdup(tp->symbol);
2156 pp->offset = tp->offset;
Wang Nan614e2fd2015-08-26 10:57:42 +00002157 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002158 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
2159 if (ret < 0)
2160 return ret;
2161 pp->function = strdup(buf);
2162 pp->offset = 0;
2163 }
2164 if (pp->function == NULL)
2165 return -ENOMEM;
2166
2167 pp->retprobe = tp->retprobe;
2168
2169 return 0;
2170}
2171
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302172static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302173 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002174{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002175 struct strbuf buf = STRBUF_INIT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002176 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002177
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002178 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002179 pev->event = strdup(tev->event);
2180 pev->group = strdup(tev->group);
2181 if (pev->event == NULL || pev->group == NULL)
2182 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04002183
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002184 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002185 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002186 if (ret < 0)
2187 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002188
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002189 /* Convert trace_arg to probe_arg */
2190 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002191 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
2192 if (pev->args == NULL)
2193 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002194 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002195 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002196 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002197 else {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002198 if ((ret = strbuf_init(&buf, 32)) < 0)
2199 goto error;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002200 ret = synthesize_probe_trace_arg(&tev->args[i], &buf);
2201 pev->args[i].name = strbuf_detach(&buf, NULL);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002202 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002203 if (pev->args[i].name == NULL && ret >= 0)
2204 ret = -ENOMEM;
2205 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002206error:
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002207 if (ret < 0)
2208 clear_perf_probe_event(pev);
2209
2210 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002211}
2212
2213void clear_perf_probe_event(struct perf_probe_event *pev)
2214{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002215 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002216 int i;
2217
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002218 zfree(&pev->event);
2219 zfree(&pev->group);
2220 zfree(&pev->target);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002221 clear_perf_probe_point(&pev->point);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002222
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002223 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002224 zfree(&pev->args[i].name);
2225 zfree(&pev->args[i].var);
2226 zfree(&pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002227 field = pev->args[i].field;
2228 while (field) {
2229 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002230 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002231 free(field);
2232 field = next;
2233 }
2234 }
Arnaldo Carvalho de Melodf8350e2019-07-18 11:22:58 -03002235 pev->nargs = 0;
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002236 zfree(&pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002237}
2238
Masami Hiramatsu0542bb92016-06-08 18:29:40 +09002239#define strdup_or_goto(str, label) \
2240({ char *__p = NULL; if (str && !(__p = strdup(str))) goto label; __p; })
2241
2242static int perf_probe_point__copy(struct perf_probe_point *dst,
2243 struct perf_probe_point *src)
2244{
2245 dst->file = strdup_or_goto(src->file, out_err);
2246 dst->function = strdup_or_goto(src->function, out_err);
2247 dst->lazy_line = strdup_or_goto(src->lazy_line, out_err);
2248 dst->line = src->line;
2249 dst->retprobe = src->retprobe;
2250 dst->offset = src->offset;
2251 return 0;
2252
2253out_err:
2254 clear_perf_probe_point(dst);
2255 return -ENOMEM;
2256}
2257
2258static int perf_probe_arg__copy(struct perf_probe_arg *dst,
2259 struct perf_probe_arg *src)
2260{
2261 struct perf_probe_arg_field *field, **ppfield;
2262
2263 dst->name = strdup_or_goto(src->name, out_err);
2264 dst->var = strdup_or_goto(src->var, out_err);
2265 dst->type = strdup_or_goto(src->type, out_err);
2266
2267 field = src->field;
2268 ppfield = &(dst->field);
2269 while (field) {
2270 *ppfield = zalloc(sizeof(*field));
2271 if (!*ppfield)
2272 goto out_err;
2273 (*ppfield)->name = strdup_or_goto(field->name, out_err);
2274 (*ppfield)->index = field->index;
2275 (*ppfield)->ref = field->ref;
2276 field = field->next;
2277 ppfield = &((*ppfield)->next);
2278 }
2279 return 0;
2280out_err:
2281 return -ENOMEM;
2282}
2283
2284int perf_probe_event__copy(struct perf_probe_event *dst,
2285 struct perf_probe_event *src)
2286{
2287 int i;
2288
2289 dst->event = strdup_or_goto(src->event, out_err);
2290 dst->group = strdup_or_goto(src->group, out_err);
2291 dst->target = strdup_or_goto(src->target, out_err);
2292 dst->uprobes = src->uprobes;
2293
2294 if (perf_probe_point__copy(&dst->point, &src->point) < 0)
2295 goto out_err;
2296
2297 dst->args = zalloc(sizeof(struct perf_probe_arg) * src->nargs);
2298 if (!dst->args)
2299 goto out_err;
2300 dst->nargs = src->nargs;
2301
2302 for (i = 0; i < src->nargs; i++)
2303 if (perf_probe_arg__copy(&dst->args[i], &src->args[i]) < 0)
2304 goto out_err;
2305 return 0;
2306
2307out_err:
2308 clear_perf_probe_event(dst);
2309 return -ENOMEM;
2310}
2311
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002312void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002313{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302314 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002315 int i;
2316
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002317 zfree(&tev->event);
2318 zfree(&tev->group);
2319 zfree(&tev->point.symbol);
2320 zfree(&tev->point.realname);
2321 zfree(&tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002322 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002323 zfree(&tev->args[i].name);
2324 zfree(&tev->args[i].value);
2325 zfree(&tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002326 ref = tev->args[i].ref;
2327 while (ref) {
2328 next = ref->next;
2329 free(ref);
2330 ref = next;
2331 }
2332 }
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002333 zfree(&tev->args);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002334}
2335
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002336struct kprobe_blacklist_node {
2337 struct list_head list;
2338 unsigned long start;
2339 unsigned long end;
2340 char *symbol;
2341};
2342
2343static void kprobe_blacklist__delete(struct list_head *blacklist)
2344{
2345 struct kprobe_blacklist_node *node;
2346
2347 while (!list_empty(blacklist)) {
2348 node = list_first_entry(blacklist,
2349 struct kprobe_blacklist_node, list);
Arnaldo Carvalho de Meloe56fbc92019-07-04 12:13:46 -03002350 list_del_init(&node->list);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002351 zfree(&node->symbol);
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002352 free(node);
2353 }
2354}
2355
2356static int kprobe_blacklist__load(struct list_head *blacklist)
2357{
2358 struct kprobe_blacklist_node *node;
Jiri Olsa4605eab2015-09-02 09:56:43 +02002359 const char *__debugfs = debugfs__mountpoint();
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002360 char buf[PATH_MAX], *p;
2361 FILE *fp;
2362 int ret;
2363
2364 if (__debugfs == NULL)
2365 return -ENOTSUP;
2366
2367 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2368 if (ret < 0)
2369 return ret;
2370
2371 fp = fopen(buf, "r");
2372 if (!fp)
2373 return -errno;
2374
2375 ret = 0;
2376 while (fgets(buf, PATH_MAX, fp)) {
2377 node = zalloc(sizeof(*node));
2378 if (!node) {
2379 ret = -ENOMEM;
2380 break;
2381 }
2382 INIT_LIST_HEAD(&node->list);
2383 list_add_tail(&node->list, blacklist);
2384 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2385 ret = -EINVAL;
2386 break;
2387 }
2388 p = strchr(buf, '\t');
2389 if (p) {
2390 p++;
2391 if (p[strlen(p) - 1] == '\n')
2392 p[strlen(p) - 1] = '\0';
2393 } else
2394 p = (char *)"unknown";
2395 node->symbol = strdup(p);
2396 if (!node->symbol) {
2397 ret = -ENOMEM;
2398 break;
2399 }
2400 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2401 node->start, node->end, node->symbol);
2402 ret++;
2403 }
2404 if (ret < 0)
2405 kprobe_blacklist__delete(blacklist);
2406 fclose(fp);
2407
2408 return ret;
2409}
2410
2411static struct kprobe_blacklist_node *
2412kprobe_blacklist__find_by_address(struct list_head *blacklist,
2413 unsigned long address)
2414{
2415 struct kprobe_blacklist_node *node;
2416
2417 list_for_each_entry(node, blacklist, list) {
Li Bin2c294612017-08-29 20:57:23 +08002418 if (node->start <= address && address < node->end)
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002419 return node;
2420 }
2421
2422 return NULL;
2423}
2424
Masami Hiramatsub0312202015-06-16 20:50:55 +09002425static LIST_HEAD(kprobe_blacklist);
2426
2427static void kprobe_blacklist__init(void)
2428{
2429 if (!list_empty(&kprobe_blacklist))
2430 return;
2431
2432 if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2433 pr_debug("No kprobe blacklist support, ignored\n");
2434}
2435
2436static void kprobe_blacklist__release(void)
2437{
2438 kprobe_blacklist__delete(&kprobe_blacklist);
2439}
2440
2441static bool kprobe_blacklist__listed(unsigned long address)
2442{
2443 return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2444}
2445
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002446static int perf_probe_event__sprintf(const char *group, const char *event,
2447 struct perf_probe_event *pev,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002448 const char *module,
2449 struct strbuf *result)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002450{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002451 int i, ret;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002452 char *buf;
2453
2454 if (asprintf(&buf, "%s:%s", group, event) < 0)
2455 return -errno;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002456 ret = strbuf_addf(result, " %-20s (on ", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002457 free(buf);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002458 if (ret)
2459 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002460
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002461 /* Synthesize only event probe point */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002462 buf = synthesize_perf_probe_point(&pev->point);
2463 if (!buf)
2464 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002465 ret = strbuf_addstr(result, buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002466 free(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002467
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002468 if (!ret && module)
2469 ret = strbuf_addf(result, " in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002470
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002471 if (!ret && pev->nargs > 0) {
2472 ret = strbuf_add(result, " with", 5);
2473 for (i = 0; !ret && i < pev->nargs; i++) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002474 buf = synthesize_perf_probe_arg(&pev->args[i]);
2475 if (!buf)
2476 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002477 ret = strbuf_addf(result, " %s", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002478 free(buf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002479 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002480 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002481 if (!ret)
2482 ret = strbuf_addch(result, ')');
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002483
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002484 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002485}
2486
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002487/* Show an event */
Namhyung Kimb02137c2015-09-04 21:16:01 +09002488int show_perf_probe_event(const char *group, const char *event,
2489 struct perf_probe_event *pev,
2490 const char *module, bool use_stdout)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002491{
2492 struct strbuf buf = STRBUF_INIT;
2493 int ret;
2494
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002495 ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002496 if (ret >= 0) {
2497 if (use_stdout)
2498 printf("%s\n", buf.buf);
2499 else
2500 pr_info("%s\n", buf.buf);
2501 }
2502 strbuf_release(&buf);
2503
2504 return ret;
2505}
2506
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002507static bool filter_probe_trace_event(struct probe_trace_event *tev,
2508 struct strfilter *filter)
2509{
2510 char tmp[128];
2511
2512 /* At first, check the event name itself */
2513 if (strfilter__compare(filter, tev->event))
2514 return true;
2515
2516 /* Next, check the combination of name and group */
2517 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2518 return false;
2519 return strfilter__compare(filter, tmp);
2520}
2521
2522static int __show_perf_probe_events(int fd, bool is_kprobe,
2523 struct strfilter *filter)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002524{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302525 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302526 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002527 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002528 struct strlist *rawlist;
2529 struct str_node *ent;
2530
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002531 memset(&tev, 0, sizeof(tev));
2532 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05002533
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002534 rawlist = probe_file__get_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002535 if (!rawlist)
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002536 return -ENOMEM;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002537
Arnaldo Carvalho de Melo602a1f42016-06-23 11:31:20 -03002538 strlist__for_each_entry(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302539 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002540 if (ret >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002541 if (!filter_probe_trace_event(&tev, filter))
2542 goto next;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302543 ret = convert_to_perf_probe_event(&tev, &pev,
2544 is_kprobe);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002545 if (ret < 0)
2546 goto next;
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002547 ret = show_perf_probe_event(pev.group, pev.event,
2548 &pev, tev.point.module,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002549 true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002550 }
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002551next:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002552 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302553 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002554 if (ret < 0)
2555 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002556 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002557 strlist__delete(rawlist);
Masami Hiramatsu7737af02015-06-17 23:58:54 +09002558 /* Cleanup cached debuginfo if needed */
2559 debuginfo_cache__exit();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002560
2561 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002562}
2563
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302564/* List up current perf-probe events */
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002565int show_perf_probe_events(struct strfilter *filter)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302566{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002567 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302568
2569 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302570
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +09002571 if (probe_conf.cache)
2572 return probe_cache__show_all_caches(filter);
2573
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002574 ret = init_probe_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302575 if (ret < 0)
2576 return ret;
2577
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002578 ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2579 if (ret < 0)
2580 return ret;
2581
2582 if (kp_fd >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002583 ret = __show_perf_probe_events(kp_fd, true, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002584 if (up_fd >= 0 && ret >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002585 ret = __show_perf_probe_events(up_fd, false, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002586 if (kp_fd > 0)
2587 close(kp_fd);
2588 if (up_fd > 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002589 close(up_fd);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002590 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302591
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002592 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002593}
2594
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002595static int get_new_event_name(char *buf, size_t len, const char *base,
Masami Hiramatsue63c6252017-12-09 01:27:44 +09002596 struct strlist *namelist, bool ret_event,
2597 bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002598{
2599 int i, ret;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002600 char *p, *nbase;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002601
Naveen N. Rao3099c022015-04-28 17:35:34 +05302602 if (*base == '.')
2603 base++;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002604 nbase = strdup(base);
2605 if (!nbase)
2606 return -ENOMEM;
Naveen N. Rao3099c022015-04-28 17:35:34 +05302607
Masami Hiramatsua3110cd2017-12-11 15:19:25 -03002608 /* Cut off the dot suffixes (e.g. .const, .isra) and version suffixes */
2609 p = strpbrk(nbase, ".@");
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002610 if (p && p != nbase)
2611 *p = '\0';
2612
2613 /* Try no suffix number */
Masami Hiramatsue63c6252017-12-09 01:27:44 +09002614 ret = e_snprintf(buf, len, "%s%s", nbase, ret_event ? "__return" : "");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002615 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002616 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002617 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002618 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002619 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002620 goto out;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002621
Masami Hiramatsud761b082009-12-15 10:32:25 -05002622 if (!allow_suffix) {
Wang Nan03e01f52015-11-16 12:10:08 +00002623 pr_warning("Error: event \"%s\" already exists.\n"
2624 " Hint: Remove existing event by 'perf probe -d'\n"
2625 " or force duplicates by 'perf probe -f'\n"
2626 " or set 'force=yes' in BPF source.\n",
2627 buf);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002628 ret = -EEXIST;
2629 goto out;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002630 }
2631
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002632 /* Try to add suffix */
2633 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002634 ret = e_snprintf(buf, len, "%s_%d", nbase, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002635 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002636 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002637 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002638 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002639 if (!strlist__has_entry(namelist, buf))
2640 break;
2641 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002642 if (i == MAX_EVENT_INDEX) {
2643 pr_warning("Too many events are on the same function.\n");
2644 ret = -ERANGE;
2645 }
2646
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002647out:
2648 free(nbase);
Masami Hiramatsu9f5c6d82017-12-09 01:26:46 +09002649
2650 /* Final validation */
2651 if (ret >= 0 && !is_c_func_name(buf)) {
2652 pr_warning("Internal error: \"%s\" is an invalid event name.\n",
2653 buf);
2654 ret = -EINVAL;
2655 }
2656
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002657 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002658}
2659
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002660/* Warn if the current kernel's uprobe implementation is old */
2661static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2662{
2663 int i;
2664 char *buf = synthesize_probe_trace_command(tev);
Ravi Bangoria5a5e3d32018-08-20 10:12:50 +05302665 struct probe_trace_point *tp = &tev->point;
2666
2667 if (tp->ref_ctr_offset && !uprobe_ref_ctr_is_supported()) {
2668 pr_warning("A semaphore is associated with %s:%s and "
2669 "seems your kernel doesn't support it.\n",
2670 tev->group, tev->event);
2671 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002672
2673 /* Old uprobe event doesn't support memory dereference */
2674 if (!tev->uprobes || tev->nargs == 0 || !buf)
2675 goto out;
2676
2677 for (i = 0; i < tev->nargs; i++)
2678 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2679 pr_warning("Please upgrade your kernel to at least "
2680 "3.14 to have access to feature %s\n",
2681 tev->args[i].value);
2682 break;
2683 }
2684out:
2685 free(buf);
2686}
2687
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002688/* Set new name from original perf_probe_event and namelist */
2689static int probe_trace_event__set_name(struct probe_trace_event *tev,
2690 struct perf_probe_event *pev,
2691 struct strlist *namelist,
2692 bool allow_suffix)
2693{
2694 const char *event, *group;
2695 char buf[64];
2696 int ret;
2697
Masami Hiramatsubc062232016-07-01 17:03:12 +09002698 /* If probe_event or trace_event already have the name, reuse it */
Masami Hiramatsu42bba262016-07-12 19:05:18 +09002699 if (pev->event && !pev->sdt)
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002700 event = pev->event;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002701 else if (tev->event)
2702 event = tev->event;
2703 else {
2704 /* Or generate new one from probe point */
Wang Nanda15bd92015-08-26 10:57:45 +00002705 if (pev->point.function &&
2706 (strncmp(pev->point.function, "0x", 2) != 0) &&
2707 !strisglob(pev->point.function))
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002708 event = pev->point.function;
2709 else
2710 event = tev->point.realname;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002711 }
Masami Hiramatsu42bba262016-07-12 19:05:18 +09002712 if (pev->group && !pev->sdt)
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002713 group = pev->group;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002714 else if (tev->group)
2715 group = tev->group;
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002716 else
2717 group = PERFPROBE_GROUP;
2718
2719 /* Get an unused new event name */
Masami Hiramatsue63c6252017-12-09 01:27:44 +09002720 ret = get_new_event_name(buf, 64, event, namelist,
2721 tev->point.retprobe, allow_suffix);
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002722 if (ret < 0)
2723 return ret;
2724
2725 event = buf;
2726
2727 tev->event = strdup(event);
2728 tev->group = strdup(group);
2729 if (tev->event == NULL || tev->group == NULL)
2730 return -ENOMEM;
2731
2732 /* Add added event name to namelist */
2733 strlist__add(namelist, event);
2734 return 0;
2735}
2736
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002737static int __open_probe_file_and_namelist(bool uprobe,
2738 struct strlist **namelist)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002739{
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002740 int fd;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002741
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002742 fd = probe_file__open(PF_FL_RW | (uprobe ? PF_FL_UPROBE : 0));
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002743 if (fd < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002744 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002745
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002746 /* Get current event names */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002747 *namelist = probe_file__get_namelist(fd);
2748 if (!(*namelist)) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002749 pr_debug("Failed to get current event list.\n");
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002750 close(fd);
2751 return -ENOMEM;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002752 }
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002753 return fd;
2754}
2755
2756static int __add_probe_trace_events(struct perf_probe_event *pev,
2757 struct probe_trace_event *tevs,
2758 int ntevs, bool allow_suffix)
2759{
2760 int i, fd[2] = {-1, -1}, up, ret;
2761 struct probe_trace_event *tev = NULL;
2762 struct probe_cache *cache = NULL;
2763 struct strlist *namelist[2] = {NULL, NULL};
Krister Johansen544abd42017-07-05 18:48:10 -07002764 struct nscookie nsc;
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002765
2766 up = pev->uprobes ? 1 : 0;
2767 fd[up] = __open_probe_file_and_namelist(up, &namelist[up]);
2768 if (fd[up] < 0)
2769 return fd[up];
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002770
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002771 ret = 0;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002772 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002773 tev = &tevs[i];
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002774 up = tev->uprobes ? 1 : 0;
2775 if (fd[up] == -1) { /* Open the kprobe/uprobe_events */
2776 fd[up] = __open_probe_file_and_namelist(up,
2777 &namelist[up]);
2778 if (fd[up] < 0)
2779 goto close_out;
2780 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002781 /* Skip if the symbol is out of .text or blacklisted */
Masami Hiramatsubc062232016-07-01 17:03:12 +09002782 if (!tev->point.symbol && !pev->uprobes)
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +09002783 continue;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002784
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002785 /* Set new name for tev (and update namelist) */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002786 ret = probe_trace_event__set_name(tev, pev, namelist[up],
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002787 allow_suffix);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002788 if (ret < 0)
2789 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002790
Krister Johansen544abd42017-07-05 18:48:10 -07002791 nsinfo__mountns_enter(pev->nsi, &nsc);
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002792 ret = probe_file__add_event(fd[up], tev);
Krister Johansen544abd42017-07-05 18:48:10 -07002793 nsinfo__mountns_exit(&nsc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002794 if (ret < 0)
2795 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002796
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002797 /*
2798 * Probes after the first probe which comes from same
2799 * user input are always allowed to add suffix, because
2800 * there might be several addresses corresponding to
2801 * one code line.
2802 */
2803 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002804 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002805 if (ret == -EINVAL && pev->uprobes)
2806 warn_uprobe_event_compat(tev);
Masami Hiramatsu2fd457a2016-06-15 12:28:40 +09002807 if (ret == 0 && probe_conf.cache) {
Krister Johansenf045b8c2017-07-05 18:48:11 -07002808 cache = probe_cache__new(pev->target, pev->nsi);
Masami Hiramatsu2fd457a2016-06-15 12:28:40 +09002809 if (!cache ||
2810 probe_cache__add_entry(cache, pev, tevs, ntevs) < 0 ||
2811 probe_cache__commit(cache) < 0)
2812 pr_warning("Failed to add event to probe cache\n");
2813 probe_cache__delete(cache);
2814 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002815
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002816close_out:
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002817 for (up = 0; up < 2; up++) {
2818 strlist__delete(namelist[up]);
2819 if (fd[up] >= 0)
2820 close(fd[up]);
2821 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002822 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002823}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002824
Wang Nan6bb536c2015-05-29 09:45:47 +00002825static int find_probe_functions(struct map *map, char *name,
2826 struct symbol **syms)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002827{
Namhyung Kim564c62a2015-01-14 20:18:07 +09002828 int found = 0;
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002829 struct symbol *sym;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002830 struct rb_node *tmp;
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002831 const char *norm, *ver;
2832 char *buf = NULL;
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002833 bool cut_version = true;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002834
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03002835 if (map__load(map) < 0)
Wang Nan75e4a2a2015-05-15 12:14:44 +00002836 return 0;
2837
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002838 /* If user gives a version, don't cut off the version from symbols */
2839 if (strchr(name, '@'))
2840 cut_version = false;
2841
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002842 map__for_each_symbol(map, sym, tmp) {
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002843 norm = arch__normalize_symbol_name(sym->name);
2844 if (!norm)
2845 continue;
2846
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002847 if (cut_version) {
2848 /* We don't care about default symbol or not */
2849 ver = strchr(norm, '@');
2850 if (ver) {
2851 buf = strndup(norm, ver - norm);
2852 if (!buf)
2853 return -ENOMEM;
2854 norm = buf;
2855 }
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002856 }
Masami Hiramatsuc588d152017-12-13 00:05:12 +09002857
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002858 if (strglobmatch(norm, name)) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002859 found++;
Wang Nan6bb536c2015-05-29 09:45:47 +00002860 if (syms && found < probe_conf.max_probes)
2861 syms[found - 1] = sym;
2862 }
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002863 if (buf)
2864 zfree(&buf);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002865 }
Namhyung Kim564c62a2015-01-14 20:18:07 +09002866
2867 return found;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002868}
2869
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302870void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2871 struct probe_trace_event *tev __maybe_unused,
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05302872 struct map *map __maybe_unused,
2873 struct symbol *sym __maybe_unused) { }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302874
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002875/*
2876 * Find probe function addresses from map.
2877 * Return an error or the number of found probe_trace_event
2878 */
2879static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002880 struct probe_trace_event **tevs)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002881{
2882 struct map *map = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002883 struct ref_reloc_sym *reloc_sym = NULL;
2884 struct symbol *sym;
Wang Nan6bb536c2015-05-29 09:45:47 +00002885 struct symbol **syms = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002886 struct probe_trace_event *tev;
2887 struct perf_probe_point *pp = &pev->point;
2888 struct probe_trace_point *tp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002889 int num_matched_functions;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002890 int ret, i, j, skipped = 0;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302891 char *mod_name;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002892
Krister Johansen544abd42017-07-05 18:48:10 -07002893 map = get_target_map(pev->target, pev->nsi, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002894 if (!map) {
2895 ret = -EINVAL;
2896 goto out;
2897 }
2898
Wang Nan6bb536c2015-05-29 09:45:47 +00002899 syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2900 if (!syms) {
2901 ret = -ENOMEM;
2902 goto out;
2903 }
2904
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002905 /*
2906 * Load matched symbols: Since the different local symbols may have
2907 * same name but different addresses, this lists all the symbols.
2908 */
Wang Nan6bb536c2015-05-29 09:45:47 +00002909 num_matched_functions = find_probe_functions(map, pp->function, syms);
Masami Hiramatsu4b3a2712017-12-09 01:28:12 +09002910 if (num_matched_functions <= 0) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002911 pr_err("Failed to find symbol %s in %s\n", pp->function,
Masami Hiramatsu44225522015-05-08 10:03:28 +09002912 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002913 ret = -ENOENT;
2914 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002915 } else if (num_matched_functions > probe_conf.max_probes) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002916 pr_err("Too many functions matched in %s\n",
Masami Hiramatsu44225522015-05-08 10:03:28 +09002917 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002918 ret = -E2BIG;
2919 goto out;
2920 }
2921
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002922 /* Note that the symbols in the kmodule are not relocated */
Naveen N. Rao7ab31d92017-03-08 13:56:09 +05302923 if (!pev->uprobes && !pev->target &&
2924 (!pp->retprobe || kretprobe_offset_is_supported())) {
He Kuang0560a0c2015-03-20 09:56:56 +08002925 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002926 if (!reloc_sym) {
2927 pr_warning("Relocated base symbol is not found!\n");
2928 ret = -EINVAL;
2929 goto out;
2930 }
2931 }
2932
2933 /* Setup result trace-probe-events */
2934 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2935 if (!*tevs) {
2936 ret = -ENOMEM;
2937 goto out;
2938 }
2939
2940 ret = 0;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002941
Wang Nan6bb536c2015-05-29 09:45:47 +00002942 for (j = 0; j < num_matched_functions; j++) {
2943 sym = syms[j];
2944
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002945 tev = (*tevs) + ret;
2946 tp = &tev->point;
2947 if (ret == num_matched_functions) {
2948 pr_warning("Too many symbols are listed. Skip it.\n");
2949 break;
2950 }
2951 ret++;
2952
2953 if (pp->offset > sym->end - sym->start) {
2954 pr_warning("Offset %ld is bigger than the size of %s\n",
2955 pp->offset, sym->name);
2956 ret = -ENOENT;
2957 goto err_out;
2958 }
2959 /* Add one probe point */
2960 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002961
2962 /* Check the kprobe (not in module) is within .text */
2963 if (!pev->uprobes && !pev->target &&
Masami Hiramatsub0312202015-06-16 20:50:55 +09002964 kprobe_warn_out_range(sym->name, tp->address)) {
2965 tp->symbol = NULL; /* Skip it */
2966 skipped++;
2967 } else if (reloc_sym) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002968 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2969 tp->offset = tp->address - reloc_sym->addr;
2970 } else {
2971 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2972 tp->offset = pp->offset;
2973 }
Wang Nan6bb536c2015-05-29 09:45:47 +00002974 tp->realname = strdup_or_goto(sym->name, nomem_out);
2975
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002976 tp->retprobe = pp->retprobe;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302977 if (pev->target) {
2978 if (pev->uprobes) {
2979 tev->point.module = strdup_or_goto(pev->target,
2980 nomem_out);
2981 } else {
2982 mod_name = find_module_name(pev->target);
2983 tev->point.module =
2984 strdup(mod_name ? mod_name : pev->target);
2985 free(mod_name);
2986 if (!tev->point.module)
2987 goto nomem_out;
2988 }
2989 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002990 tev->uprobes = pev->uprobes;
2991 tev->nargs = pev->nargs;
2992 if (tev->nargs) {
2993 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2994 tev->nargs);
2995 if (tev->args == NULL)
2996 goto nomem_out;
2997 }
2998 for (i = 0; i < tev->nargs; i++) {
2999 if (pev->args[i].name)
3000 tev->args[i].name =
3001 strdup_or_goto(pev->args[i].name,
3002 nomem_out);
3003
3004 tev->args[i].value = strdup_or_goto(pev->args[i].var,
3005 nomem_out);
3006 if (pev->args[i].type)
3007 tev->args[i].type =
3008 strdup_or_goto(pev->args[i].type,
3009 nomem_out);
3010 }
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05303011 arch__fix_tev_from_maps(pev, tev, map, sym);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003012 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09003013 if (ret == skipped) {
3014 ret = -ENOENT;
3015 goto err_out;
3016 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003017
3018out:
Masami Hiramatsueebc5092017-01-04 12:29:05 +09003019 map__put(map);
Wang Nan6bb536c2015-05-29 09:45:47 +00003020 free(syms);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003021 return ret;
3022
3023nomem_out:
3024 ret = -ENOMEM;
3025err_out:
3026 clear_probe_trace_events(*tevs, num_matched_functions);
3027 zfree(tevs);
3028 goto out;
3029}
3030
Wang Nanda15bd92015-08-26 10:57:45 +00003031static int try_to_find_absolute_address(struct perf_probe_event *pev,
3032 struct probe_trace_event **tevs)
3033{
3034 struct perf_probe_point *pp = &pev->point;
3035 struct probe_trace_event *tev;
3036 struct probe_trace_point *tp;
3037 int i, err;
3038
3039 if (!(pev->point.function && !strncmp(pev->point.function, "0x", 2)))
3040 return -EINVAL;
3041 if (perf_probe_event_need_dwarf(pev))
3042 return -EINVAL;
3043
3044 /*
3045 * This is 'perf probe /lib/libc.so 0xabcd'. Try to probe at
3046 * absolute address.
3047 *
3048 * Only one tev can be generated by this.
3049 */
3050 *tevs = zalloc(sizeof(*tev));
3051 if (!*tevs)
3052 return -ENOMEM;
3053
3054 tev = *tevs;
3055 tp = &tev->point;
3056
3057 /*
3058 * Don't use tp->offset, use address directly, because
3059 * in synthesize_probe_trace_command() address cannot be
3060 * zero.
3061 */
3062 tp->address = pev->point.abs_address;
3063 tp->retprobe = pp->retprobe;
3064 tev->uprobes = pev->uprobes;
3065
3066 err = -ENOMEM;
3067 /*
3068 * Give it a '0x' leading symbol name.
3069 * In __add_probe_trace_events, a NULL symbol is interpreted as
Ingo Molnaradba1632018-12-03 11:22:00 +01003070 * invalid.
Wang Nanda15bd92015-08-26 10:57:45 +00003071 */
3072 if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
3073 goto errout;
3074
3075 /* For kprobe, check range */
3076 if ((!tev->uprobes) &&
3077 (kprobe_warn_out_range(tev->point.symbol,
3078 tev->point.address))) {
3079 err = -EACCES;
3080 goto errout;
3081 }
3082
3083 if (asprintf(&tp->realname, "abs_%lx", tp->address) < 0)
3084 goto errout;
3085
3086 if (pev->target) {
3087 tp->module = strdup(pev->target);
3088 if (!tp->module)
3089 goto errout;
3090 }
3091
3092 if (tev->group) {
3093 tev->group = strdup(pev->group);
3094 if (!tev->group)
3095 goto errout;
3096 }
3097
3098 if (pev->event) {
3099 tev->event = strdup(pev->event);
3100 if (!tev->event)
3101 goto errout;
3102 }
3103
3104 tev->nargs = pev->nargs;
3105 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Markus Elfringd1d0e292017-01-23 15:10:19 +01003106 if (!tev->args)
Wang Nanda15bd92015-08-26 10:57:45 +00003107 goto errout;
Markus Elfringd1d0e292017-01-23 15:10:19 +01003108
Wang Nanda15bd92015-08-26 10:57:45 +00003109 for (i = 0; i < tev->nargs; i++)
3110 copy_to_probe_trace_arg(&tev->args[i], &pev->args[i]);
3111
3112 return 1;
3113
3114errout:
Markus Elfring42e233c2017-01-23 14:54:26 +01003115 clear_probe_trace_events(*tevs, 1);
3116 *tevs = NULL;
Wang Nanda15bd92015-08-26 10:57:45 +00003117 return err;
3118}
3119
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003120/* Concatinate two arrays */
3121static void *memcat(void *a, size_t sz_a, void *b, size_t sz_b)
3122{
3123 void *ret;
3124
3125 ret = malloc(sz_a + sz_b);
3126 if (ret) {
3127 memcpy(ret, a, sz_a);
3128 memcpy(ret + sz_a, b, sz_b);
3129 }
3130 return ret;
3131}
3132
3133static int
3134concat_probe_trace_events(struct probe_trace_event **tevs, int *ntevs,
3135 struct probe_trace_event **tevs2, int ntevs2)
3136{
3137 struct probe_trace_event *new_tevs;
3138 int ret = 0;
3139
Ravi Bangoriaf0a30dc2017-03-08 12:29:07 +05303140 if (*ntevs == 0) {
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003141 *tevs = *tevs2;
3142 *ntevs = ntevs2;
3143 *tevs2 = NULL;
3144 return 0;
3145 }
3146
3147 if (*ntevs + ntevs2 > probe_conf.max_probes)
3148 ret = -E2BIG;
3149 else {
3150 /* Concatinate the array of probe_trace_event */
3151 new_tevs = memcat(*tevs, (*ntevs) * sizeof(**tevs),
3152 *tevs2, ntevs2 * sizeof(**tevs2));
3153 if (!new_tevs)
3154 ret = -ENOMEM;
3155 else {
3156 free(*tevs);
3157 *tevs = new_tevs;
3158 *ntevs += ntevs2;
3159 }
3160 }
3161 if (ret < 0)
3162 clear_probe_trace_events(*tevs2, ntevs2);
3163 zfree(tevs2);
3164
3165 return ret;
3166}
3167
3168/*
3169 * Try to find probe_trace_event from given probe caches. Return the number
3170 * of cached events found, if an error occurs return the error.
3171 */
3172static int find_cached_events(struct perf_probe_event *pev,
3173 struct probe_trace_event **tevs,
3174 const char *target)
3175{
3176 struct probe_cache *cache;
3177 struct probe_cache_entry *entry;
3178 struct probe_trace_event *tmp_tevs = NULL;
3179 int ntevs = 0;
3180 int ret = 0;
3181
Krister Johansenf045b8c2017-07-05 18:48:11 -07003182 cache = probe_cache__new(target, pev->nsi);
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003183 /* Return 0 ("not found") if the target has no probe cache. */
3184 if (!cache)
3185 return 0;
3186
3187 for_each_probe_cache_entry(entry, cache) {
3188 /* Skip the cache entry which has no name */
3189 if (!entry->pev.event || !entry->pev.group)
3190 continue;
3191 if ((!pev->group || strglobmatch(entry->pev.group, pev->group)) &&
3192 strglobmatch(entry->pev.event, pev->event)) {
3193 ret = probe_cache_entry__get_event(entry, &tmp_tevs);
3194 if (ret > 0)
3195 ret = concat_probe_trace_events(tevs, &ntevs,
3196 &tmp_tevs, ret);
3197 if (ret < 0)
3198 break;
3199 }
3200 }
3201 probe_cache__delete(cache);
3202 if (ret < 0) {
3203 clear_probe_trace_events(*tevs, ntevs);
3204 zfree(tevs);
3205 } else {
3206 ret = ntevs;
3207 if (ntevs > 0 && target && target[0] == '/')
3208 pev->uprobes = true;
3209 }
3210
3211 return ret;
3212}
3213
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003214/* Try to find probe_trace_event from all probe caches */
3215static int find_cached_events_all(struct perf_probe_event *pev,
3216 struct probe_trace_event **tevs)
3217{
3218 struct probe_trace_event *tmp_tevs = NULL;
3219 struct strlist *bidlist;
3220 struct str_node *nd;
3221 char *pathname;
3222 int ntevs = 0;
3223 int ret;
3224
3225 /* Get the buildid list of all valid caches */
3226 bidlist = build_id_cache__list_all(true);
3227 if (!bidlist) {
3228 ret = -errno;
3229 pr_debug("Failed to get buildids: %d\n", ret);
3230 return ret;
3231 }
3232
3233 ret = 0;
3234 strlist__for_each_entry(nd, bidlist) {
3235 pathname = build_id_cache__origname(nd->s);
3236 ret = find_cached_events(pev, &tmp_tevs, pathname);
3237 /* In the case of cnt == 0, we just skip it */
3238 if (ret > 0)
3239 ret = concat_probe_trace_events(tevs, &ntevs,
3240 &tmp_tevs, ret);
3241 free(pathname);
3242 if (ret < 0)
3243 break;
3244 }
3245 strlist__delete(bidlist);
3246
3247 if (ret < 0) {
3248 clear_probe_trace_events(*tevs, ntevs);
3249 zfree(tevs);
3250 } else
3251 ret = ntevs;
3252
3253 return ret;
3254}
3255
Masami Hiramatsubc062232016-07-01 17:03:12 +09003256static int find_probe_trace_events_from_cache(struct perf_probe_event *pev,
3257 struct probe_trace_event **tevs)
3258{
3259 struct probe_cache *cache;
3260 struct probe_cache_entry *entry;
3261 struct probe_trace_event *tev;
3262 struct str_node *node;
3263 int ret, i;
3264
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003265 if (pev->sdt) {
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003266 /* For SDT/cached events, we use special search functions */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003267 if (!pev->target)
3268 return find_cached_events_all(pev, tevs);
3269 else
3270 return find_cached_events(pev, tevs, pev->target);
3271 }
Krister Johansenf045b8c2017-07-05 18:48:11 -07003272 cache = probe_cache__new(pev->target, pev->nsi);
Masami Hiramatsubc062232016-07-01 17:03:12 +09003273 if (!cache)
3274 return 0;
3275
3276 entry = probe_cache__find(cache, pev);
3277 if (!entry) {
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003278 /* SDT must be in the cache */
3279 ret = pev->sdt ? -ENOENT : 0;
Masami Hiramatsubc062232016-07-01 17:03:12 +09003280 goto out;
3281 }
3282
3283 ret = strlist__nr_entries(entry->tevlist);
3284 if (ret > probe_conf.max_probes) {
3285 pr_debug("Too many entries matched in the cache of %s\n",
3286 pev->target ? : "kernel");
3287 ret = -E2BIG;
3288 goto out;
3289 }
3290
3291 *tevs = zalloc(ret * sizeof(*tev));
3292 if (!*tevs) {
3293 ret = -ENOMEM;
3294 goto out;
3295 }
3296
3297 i = 0;
3298 strlist__for_each_entry(node, entry->tevlist) {
3299 tev = &(*tevs)[i++];
3300 ret = parse_probe_trace_command(node->s, tev);
3301 if (ret < 0)
3302 goto out;
3303 /* Set the uprobes attribute as same as original */
3304 tev->uprobes = pev->uprobes;
3305 }
3306 ret = i;
3307
3308out:
3309 probe_cache__delete(cache);
3310 return ret;
3311}
3312
Srikar Dronamraju0e608362010-07-29 19:43:51 +05303313static int convert_to_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003314 struct probe_trace_event **tevs)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003315{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003316 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003317
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003318 if (!pev->group && !pev->sdt) {
Masami Hiramatsu2a12ec12016-04-26 18:04:13 +09003319 /* Set group name if not given */
3320 if (!pev->uprobes) {
3321 pev->group = strdup(PERFPROBE_GROUP);
3322 ret = pev->group ? 0 : -ENOMEM;
3323 } else
3324 ret = convert_exec_to_group(pev->target, &pev->group);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00003325 if (ret != 0) {
3326 pr_warning("Failed to make a group name.\n");
3327 return ret;
3328 }
3329 }
3330
Wang Nanda15bd92015-08-26 10:57:45 +00003331 ret = try_to_find_absolute_address(pev, tevs);
3332 if (ret > 0)
3333 return ret;
3334
Masami Hiramatsubc062232016-07-01 17:03:12 +09003335 /* At first, we need to lookup cache entry */
3336 ret = find_probe_trace_events_from_cache(pev, tevs);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003337 if (ret > 0 || pev->sdt) /* SDT can be found only in the cache */
3338 return ret == 0 ? -ENOENT : ret; /* Found in probe cache */
Masami Hiramatsubc062232016-07-01 17:03:12 +09003339
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03003340 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003341 ret = try_to_find_probe_trace_events(pev, tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04003342 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09003343 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003344
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003345 return find_probe_trace_events_from_map(pev, tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003346}
3347
Wang Nan12fae5e2015-09-04 21:16:00 +09003348int convert_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003349{
Namhyung Kim844dffa2015-09-04 21:15:59 +09003350 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003351
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003352 /* Loop 1: convert all events */
3353 for (i = 0; i < npevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +09003354 /* Init kprobe blacklist if needed */
Wang Nan12fae5e2015-09-04 21:16:00 +09003355 if (!pevs[i].uprobes)
Masami Hiramatsub0312202015-06-16 20:50:55 +09003356 kprobe_blacklist__init();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003357 /* Convert with or without debuginfo */
Wang Nan12fae5e2015-09-04 21:16:00 +09003358 ret = convert_to_probe_trace_events(&pevs[i], &pevs[i].tevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003359 if (ret < 0)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003360 return ret;
Wang Nan12fae5e2015-09-04 21:16:00 +09003361 pevs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003362 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09003363 /* This just release blacklist only if allocated */
3364 kprobe_blacklist__release();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003365
Namhyung Kim844dffa2015-09-04 21:15:59 +09003366 return 0;
3367}
3368
Masami Hiramatsu1c20b1d2016-08-26 01:24:27 +09003369static int show_probe_trace_event(struct probe_trace_event *tev)
3370{
3371 char *buf = synthesize_probe_trace_command(tev);
3372
3373 if (!buf) {
3374 pr_debug("Failed to synthesize probe trace event.\n");
3375 return -EINVAL;
3376 }
3377
3378 /* Showing definition always go stdout */
3379 printf("%s\n", buf);
3380 free(buf);
3381
3382 return 0;
3383}
3384
3385int show_probe_trace_events(struct perf_probe_event *pevs, int npevs)
3386{
3387 struct strlist *namelist = strlist__new(NULL, NULL);
3388 struct probe_trace_event *tev;
3389 struct perf_probe_event *pev;
3390 int i, j, ret = 0;
3391
3392 if (!namelist)
3393 return -ENOMEM;
3394
3395 for (j = 0; j < npevs && !ret; j++) {
3396 pev = &pevs[j];
3397 for (i = 0; i < pev->ntevs && !ret; i++) {
3398 tev = &pev->tevs[i];
3399 /* Skip if the symbol is out of .text or blacklisted */
3400 if (!tev->point.symbol && !pev->uprobes)
3401 continue;
3402
3403 /* Set new name for tev (and update namelist) */
3404 ret = probe_trace_event__set_name(tev, pev,
3405 namelist, true);
3406 if (!ret)
3407 ret = show_probe_trace_event(tev);
3408 }
3409 }
3410 strlist__delete(namelist);
3411
3412 return ret;
3413}
3414
Wang Nan12fae5e2015-09-04 21:16:00 +09003415int apply_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003416{
3417 int i, ret = 0;
3418
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003419 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03003420 for (i = 0; i < npevs; i++) {
Wang Nan12fae5e2015-09-04 21:16:00 +09003421 ret = __add_probe_trace_events(&pevs[i], pevs[i].tevs,
3422 pevs[i].ntevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003423 probe_conf.force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03003424 if (ret < 0)
3425 break;
3426 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09003427 return ret;
3428}
3429
Wang Nan12fae5e2015-09-04 21:16:00 +09003430void cleanup_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003431{
3432 int i, j;
Krister Johansen544abd42017-07-05 18:48:10 -07003433 struct perf_probe_event *pev;
Namhyung Kim844dffa2015-09-04 21:15:59 +09003434
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09003435 /* Loop 3: cleanup and free trace events */
3436 for (i = 0; i < npevs; i++) {
Krister Johansen544abd42017-07-05 18:48:10 -07003437 pev = &pevs[i];
Wang Nan12fae5e2015-09-04 21:16:00 +09003438 for (j = 0; j < pevs[i].ntevs; j++)
3439 clear_probe_trace_event(&pevs[i].tevs[j]);
3440 zfree(&pevs[i].tevs);
3441 pevs[i].ntevs = 0;
Krister Johansen544abd42017-07-05 18:48:10 -07003442 nsinfo__zput(pev->nsi);
Namhyung Kima43aac22015-09-10 11:27:04 +09003443 clear_perf_probe_event(&pevs[i]);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09003444 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09003445}
3446
3447int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3448{
3449 int ret;
Namhyung Kim844dffa2015-09-04 21:15:59 +09003450
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003451 ret = init_probe_symbol_maps(pevs->uprobes);
3452 if (ret < 0)
3453 return ret;
3454
Wang Nan12fae5e2015-09-04 21:16:00 +09003455 ret = convert_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09003456 if (ret == 0)
Wang Nan12fae5e2015-09-04 21:16:00 +09003457 ret = apply_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09003458
Wang Nan12fae5e2015-09-04 21:16:00 +09003459 cleanup_perf_probe_events(pevs, npevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003460
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003461 exit_probe_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003462 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003463}
3464
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003465int del_perf_probe_events(struct strfilter *filter)
Masami Hiramatsufa282442009-12-08 17:03:23 -05003466{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003467 int ret, ret2, ufd = -1, kfd = -1;
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003468 char *str = strfilter__string(filter);
3469
3470 if (!str)
3471 return -EINVAL;
3472
Masami Hiramatsufa282442009-12-08 17:03:23 -05003473 /* Get current event names */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003474 ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
3475 if (ret < 0)
3476 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303477
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003478 ret = probe_file__del_events(kfd, filter);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003479 if (ret < 0 && ret != -ENOENT)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303480 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05003481
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003482 ret2 = probe_file__del_events(ufd, filter);
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003483 if (ret2 < 0 && ret2 != -ENOENT) {
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003484 ret = ret2;
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003485 goto error;
3486 }
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003487 ret = 0;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303488
3489error:
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003490 if (kfd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303491 close(kfd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003492 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303493 close(ufd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003494out:
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003495 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003496
3497 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05003498}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303499
Krister Johansen544abd42017-07-05 18:48:10 -07003500int show_available_funcs(const char *target, struct nsinfo *nsi,
3501 struct strfilter *_filter, bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003502{
Arnaldo Carvalho de Melofd227592016-08-31 10:04:27 -03003503 struct rb_node *nd;
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003504 struct map *map;
3505 int ret;
3506
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003507 ret = init_probe_symbol_maps(user);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003508 if (ret < 0)
3509 return ret;
3510
3511 /* Get a symbol map */
Krister Johansen544abd42017-07-05 18:48:10 -07003512 map = get_target_map(target, nsi, user);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003513 if (!map) {
3514 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003515 return -EINVAL;
3516 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003517
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03003518 ret = map__load(map);
Masami Hiramatsue7049342016-07-19 01:12:41 +09003519 if (ret) {
3520 if (ret == -2) {
3521 char *str = strfilter__string(_filter);
3522 pr_err("Failed to find symbols matched to \"%s\"\n",
3523 str);
3524 free(str);
3525 } else
3526 pr_err("Failed to load symbols in %s\n",
3527 (target) ? : "kernel");
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003528 goto end;
3529 }
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03003530 if (!dso__sorted_by_name(map->dso))
3531 dso__sort_by_name(map->dso);
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003532
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003533 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303534 setup_pager();
Arnaldo Carvalho de Melofd227592016-08-31 10:04:27 -03003535
Davidlohr Bueso7137ff52018-12-06 11:18:17 -08003536 for (nd = rb_first_cached(&map->dso->symbol_names); nd;
3537 nd = rb_next(nd)) {
Arnaldo Carvalho de Melofd227592016-08-31 10:04:27 -03003538 struct symbol_name_rb_node *pos = rb_entry(nd, struct symbol_name_rb_node, rb_node);
3539
3540 if (strfilter__compare(_filter, pos->sym.name))
3541 printf("%s\n", pos->sym.name);
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03003542 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003543end:
Masami Hiramatsueebc5092017-01-04 12:29:05 +09003544 map__put(map);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003545 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303546
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003547 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303548}
3549
Wang Nanda15bd92015-08-26 10:57:45 +00003550int copy_to_probe_trace_arg(struct probe_trace_arg *tvar,
3551 struct perf_probe_arg *pvar)
3552{
3553 tvar->value = strdup(pvar->var);
3554 if (tvar->value == NULL)
3555 return -ENOMEM;
3556 if (pvar->type) {
3557 tvar->type = strdup(pvar->type);
3558 if (tvar->type == NULL)
3559 return -ENOMEM;
3560 }
3561 if (pvar->name) {
3562 tvar->name = strdup(pvar->name);
3563 if (tvar->name == NULL)
3564 return -ENOMEM;
3565 } else
3566 tvar->name = NULL;
3567 return 0;
3568}