blob: 1201f73ca723a67d8f6bbda6eef21952a3984b00 [file] [log] [blame]
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001/*
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302 * probe-event.c : perf-probe definition to probe_events format converter
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05003 *
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050022#include <sys/utsname.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <errno.h>
27#include <stdio.h>
28#include <unistd.h>
29#include <stdlib.h>
30#include <string.h>
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050031#include <stdarg.h>
32#include <limits.h>
Masami Hiramatsue80711c2011-01-13 21:46:11 +090033#include <elf.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050034
Masami Hiramatsu31facc52010-03-16 18:05:30 -040035#include "util.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050036#include "event.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050037#include "strlist.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050038#include "debug.h"
Masami Hiramatsu72041332010-01-05 17:47:10 -050039#include "cache.h"
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050040#include "color.h"
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040041#include "symbol.h"
42#include "thread.h"
Jiri Olsa4605eab2015-09-02 09:56:43 +020043#include <api/fs/fs.h>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030044#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050045#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040046#include "probe-finder.h"
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090047#include "probe-file.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053048#include "session.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050049
50#define MAX_CMDLEN 256
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050051#define PERFPROBE_GROUP "probe"
52
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040053bool probe_event_dry_run; /* Dry run flag */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +090054struct probe_conf probe_conf;
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040055
Masami Hiramatsu146a1432010-04-12 13:17:42 -040056#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050057
Masami Hiramatsu92f6c722015-07-15 18:14:07 +090058int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050059{
60 int ret;
61 va_list ap;
62 va_start(ap, format);
63 ret = vsnprintf(str, size, format, ap);
64 va_end(ap);
65 if (ret >= (int)size)
66 ret = -E2BIG;
67 return ret;
68}
69
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000070static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040071
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090072/* Initialize symbol maps and path of vmlinux/modules */
Namhyung Kim9bae1e82015-09-10 11:27:05 +090073int init_probe_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040074{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040075 int ret;
76
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040077 symbol_conf.sort_by_name = true;
Namhyung Kim680d9262015-03-06 16:31:27 +090078 symbol_conf.allow_aliases = true;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090079 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040080 if (ret < 0) {
81 pr_debug("Failed to init symbol map.\n");
82 goto out;
83 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040084
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000085 if (host_machine || user_only) /* already initialized */
86 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030087
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000088 if (symbol_conf.vmlinux_name)
89 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
90
91 host_machine = machine__new_host();
92 if (!host_machine) {
93 pr_debug("machine__new_host() failed.\n");
94 symbol__exit();
95 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090096 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -040097out:
98 if (ret < 0)
99 pr_warning("Failed to init vmlinux path.\n");
100 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400101}
102
Namhyung Kim9bae1e82015-09-10 11:27:05 +0900103void exit_probe_symbol_maps(void)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000104{
Arnaldo Carvalho de Melo32ca6782016-06-22 10:19:11 -0300105 machine__delete(host_machine);
106 host_machine = NULL;
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000107 symbol__exit();
108}
109
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900110static struct symbol *__find_kernel_function_by_name(const char *name,
111 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400112{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000113 return machine__find_kernel_function_by_name(host_machine, name, mapp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900114 NULL);
115}
116
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000117static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
118{
119 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
120}
121
122static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
123{
124 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
125 struct kmap *kmap;
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300126 struct map *map = machine__kernel_map(host_machine);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000127
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300128 if (map__load(map, NULL) < 0)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000129 return NULL;
130
Arnaldo Carvalho de Melo77e65972015-09-30 11:08:58 -0300131 kmap = map__kmap(map);
Wang Nanba927322015-04-07 08:22:45 +0000132 if (!kmap)
133 return NULL;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000134 return kmap->ref_reloc_sym;
135}
136
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900137static int kernel_get_symbol_address_by_name(const char *name, u64 *addr,
138 bool reloc, bool reladdr)
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000139{
140 struct ref_reloc_sym *reloc_sym;
141 struct symbol *sym;
142 struct map *map;
143
144 /* ref_reloc_sym is just a label. Need a special fix*/
145 reloc_sym = kernel_get_ref_reloc_sym();
146 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900147 *addr = (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000148 else {
149 sym = __find_kernel_function_by_name(name, &map);
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900150 if (!sym)
151 return -ENOENT;
152 *addr = map->unmap_ip(map, sym->start) -
153 ((reloc) ? 0 : map->reloc) -
154 ((reladdr) ? map->start : 0);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000155 }
156 return 0;
157}
158
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900159static struct map *kernel_get_module_map(const char *module)
160{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000161 struct map_groups *grp = &host_machine->kmaps;
Arnaldo Carvalho de Melo1eee78a2015-05-22 12:58:53 -0300162 struct maps *maps = &grp->maps[MAP__FUNCTION];
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300163 struct map *pos;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900164
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900165 /* A file path -- this is an offline module */
166 if (module && strchr(module, '/'))
Arnaldo Carvalho de Melo9f2de312015-06-01 12:01:02 -0300167 return machine__findnew_module_map(host_machine, 0, module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900168
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900169 if (!module)
170 module = "kernel";
171
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300172 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
Konstantin Khlebnikovcb3f3372016-08-05 15:22:36 +0300173 /* short_name is "[module]" */
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900174 if (strncmp(pos->dso->short_name + 1, module,
Konstantin Khlebnikovcb3f3372016-08-05 15:22:36 +0300175 pos->dso->short_name_len - 2) == 0 &&
176 module[pos->dso->short_name_len - 2] == '\0') {
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900177 return pos;
178 }
179 }
180 return NULL;
181}
182
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900183static struct map *get_target_map(const char *target, bool user)
184{
185 /* Init maps of given executable or kernel */
186 if (user)
187 return dso__new_map(target);
188 else
189 return kernel_get_module_map(target);
190}
191
192static void put_target_map(struct map *map, bool user)
193{
194 if (map && user) {
195 /* Only the user map needs to be released */
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -0300196 map__put(map);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900197 }
198}
199
200
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000201static int convert_exec_to_group(const char *exec, char **result)
202{
203 char *ptr1, *ptr2, *exec_copy;
204 char buf[64];
205 int ret;
206
207 exec_copy = strdup(exec);
208 if (!exec_copy)
209 return -ENOMEM;
210
211 ptr1 = basename(exec_copy);
212 if (!ptr1) {
213 ret = -EINVAL;
214 goto out;
215 }
216
217 ptr2 = strpbrk(ptr1, "-._");
218 if (ptr2)
219 *ptr2 = '\0';
220 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
221 if (ret < 0)
222 goto out;
223
224 *result = strdup(buf);
225 ret = *result ? 0 : -ENOMEM;
226
227out:
228 free(exec_copy);
229 return ret;
230}
231
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900232static void clear_perf_probe_point(struct perf_probe_point *pp)
233{
234 free(pp->file);
235 free(pp->function);
236 free(pp->lazy_line);
237}
238
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000239static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
240{
241 int i;
242
243 for (i = 0; i < ntevs; i++)
244 clear_probe_trace_event(tevs + i);
245}
246
Masami Hiramatsub0312202015-06-16 20:50:55 +0900247static bool kprobe_blacklist__listed(unsigned long address);
248static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
249{
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900250 u64 etext_addr = 0;
251 int ret;
He Kuang7c31bb82015-06-18 02:49:10 +0000252
Masami Hiramatsub0312202015-06-16 20:50:55 +0900253 /* Get the address of _etext for checking non-probable text symbol */
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900254 ret = kernel_get_symbol_address_by_name("_etext", &etext_addr,
255 false, false);
He Kuang7c31bb82015-06-18 02:49:10 +0000256
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900257 if (ret == 0 && etext_addr < address)
Masami Hiramatsub0312202015-06-16 20:50:55 +0900258 pr_warning("%s is out of .text, skip it.\n", symbol);
259 else if (kprobe_blacklist__listed(address))
260 pr_warning("%s is blacklisted function, skip it.\n", symbol);
261 else
262 return false;
263
264 return true;
265}
266
Ravi Bangoriac61fb952016-04-26 19:55:40 +0530267/*
268 * NOTE:
269 * '.gnu.linkonce.this_module' section of kernel module elf directly
270 * maps to 'struct module' from linux/module.h. This section contains
271 * actual module name which will be used by kernel after loading it.
272 * But, we cannot use 'struct module' here since linux/module.h is not
273 * exposed to user-space. Offset of 'name' has remained same from long
274 * time, so hardcoding it here.
275 */
276#ifdef __LP64__
277#define MOD_NAME_OFFSET 24
278#else
279#define MOD_NAME_OFFSET 12
280#endif
281
282/*
283 * @module can be module name of module file path. In case of path,
284 * inspect elf and find out what is actual module name.
285 * Caller has to free mod_name after using it.
286 */
287static char *find_module_name(const char *module)
288{
289 int fd;
290 Elf *elf;
291 GElf_Ehdr ehdr;
292 GElf_Shdr shdr;
293 Elf_Data *data;
294 Elf_Scn *sec;
295 char *mod_name = NULL;
296
297 fd = open(module, O_RDONLY);
298 if (fd < 0)
299 return NULL;
300
301 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
302 if (elf == NULL)
303 goto elf_err;
304
305 if (gelf_getehdr(elf, &ehdr) == NULL)
306 goto ret_err;
307
308 sec = elf_section_by_name(elf, &ehdr, &shdr,
309 ".gnu.linkonce.this_module", NULL);
310 if (!sec)
311 goto ret_err;
312
313 data = elf_getdata(sec, NULL);
314 if (!data || !data->d_buf)
315 goto ret_err;
316
317 mod_name = strdup((char *)data->d_buf + MOD_NAME_OFFSET);
318
319ret_err:
320 elf_end(elf);
321elf_err:
322 close(fd);
323 return mod_name;
324}
325
Ingo Molnar89fe8082013-09-30 12:07:11 +0200326#ifdef HAVE_DWARF_SUPPORT
Wang Nan60fb7742015-05-28 02:25:05 +0000327
328static int kernel_get_module_dso(const char *module, struct dso **pdso)
329{
330 struct dso *dso;
331 struct map *map;
332 const char *vmlinux_name;
333 int ret = 0;
334
335 if (module) {
Arnaldo Carvalho de Melo266fa2b2015-09-24 11:24:18 -0300336 char module_name[128];
337
338 snprintf(module_name, sizeof(module_name), "[%s]", module);
339 map = map_groups__find_by_name(&host_machine->kmaps, MAP__FUNCTION, module_name);
340 if (map) {
341 dso = map->dso;
342 goto found;
Wang Nan60fb7742015-05-28 02:25:05 +0000343 }
344 pr_debug("Failed to find module %s.\n", module);
345 return -ENOENT;
346 }
347
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300348 map = machine__kernel_map(host_machine);
Wang Nan60fb7742015-05-28 02:25:05 +0000349 dso = map->dso;
350
351 vmlinux_name = symbol_conf.vmlinux_name;
352 dso->load_errno = 0;
353 if (vmlinux_name)
354 ret = dso__load_vmlinux(dso, map, vmlinux_name, false, NULL);
355 else
356 ret = dso__load_vmlinux_path(dso, map, NULL);
357found:
358 *pdso = dso;
359 return ret;
360}
361
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900362/*
363 * Some binaries like glibc have special symbols which are on the symbol
364 * table, but not in the debuginfo. If we can find the address of the
365 * symbol from map, we can translate the address back to the probe point.
366 */
367static int find_alternative_probe_point(struct debuginfo *dinfo,
368 struct perf_probe_point *pp,
369 struct perf_probe_point *result,
370 const char *target, bool uprobes)
371{
372 struct map *map = NULL;
373 struct symbol *sym;
374 u64 address = 0;
375 int ret = -ENOENT;
376
377 /* This can work only for function-name based one */
378 if (!pp->function || pp->file)
379 return -ENOTSUP;
380
381 map = get_target_map(target, uprobes);
382 if (!map)
383 return -EINVAL;
384
385 /* Find the address of given function */
386 map__for_each_symbol_by_name(map, pp->function, sym) {
Masami Hiramatsue6d7c912015-03-22 20:40:22 +0900387 if (uprobes)
388 address = sym->start;
389 else
Masami Hiramatsu8e341892016-08-06 19:29:48 +0900390 address = map->unmap_ip(map, sym->start) - map->reloc;
Namhyung Kime578da32015-03-06 16:31:29 +0900391 break;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900392 }
393 if (!address) {
394 ret = -ENOENT;
395 goto out;
396 }
Wang Nanf6c15622015-04-08 02:14:34 +0000397 pr_debug("Symbol %s address found : %" PRIx64 "\n",
398 pp->function, address);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900399
400 ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
401 result);
402 if (ret <= 0)
403 ret = (!ret) ? -ENOENT : ret;
404 else {
405 result->offset += pp->offset;
406 result->line += pp->line;
He Kuang9d7b45c2015-04-13 19:41:28 +0800407 result->retprobe = pp->retprobe;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900408 ret = 0;
409 }
410
411out:
412 put_target_map(map, uprobes);
413 return ret;
414
415}
416
417static int get_alternative_probe_event(struct debuginfo *dinfo,
418 struct perf_probe_event *pev,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900419 struct perf_probe_point *tmp)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900420{
421 int ret;
422
423 memcpy(tmp, &pev->point, sizeof(*tmp));
424 memset(&pev->point, 0, sizeof(pev->point));
425 ret = find_alternative_probe_point(dinfo, tmp, &pev->point,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900426 pev->target, pev->uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900427 if (ret < 0)
428 memcpy(&pev->point, tmp, sizeof(*tmp));
429
430 return ret;
431}
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000432
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900433static int get_alternative_line_range(struct debuginfo *dinfo,
434 struct line_range *lr,
435 const char *target, bool user)
436{
David Ahern6d4a4892015-03-11 10:36:20 -0400437 struct perf_probe_point pp = { .function = lr->function,
438 .file = lr->file,
439 .line = lr->start };
440 struct perf_probe_point result;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900441 int ret, len = 0;
442
David Ahern6d4a4892015-03-11 10:36:20 -0400443 memset(&result, 0, sizeof(result));
444
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900445 if (lr->end != INT_MAX)
446 len = lr->end - lr->start;
447 ret = find_alternative_probe_point(dinfo, &pp, &result,
448 target, user);
449 if (!ret) {
450 lr->function = result.function;
451 lr->file = result.file;
452 lr->start = result.line;
453 if (lr->end != INT_MAX)
454 lr->end = lr->start + len;
455 clear_perf_probe_point(&pp);
456 }
457 return ret;
458}
459
Masami Hiramatsuff741782011-06-27 16:27:39 +0900460/* Open new debuginfo of given module */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000461static struct debuginfo *open_debuginfo(const char *module, bool silent)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900462{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000463 const char *path = module;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900464 char reason[STRERR_BUFSIZE];
465 struct debuginfo *ret = NULL;
466 struct dso *dso = NULL;
467 int err;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900468
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000469 if (!module || !strchr(module, '/')) {
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900470 err = kernel_get_module_dso(module, &dso);
471 if (err < 0) {
472 if (!dso || dso->load_errno == 0) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300473 if (!str_error_r(-err, reason, STRERR_BUFSIZE))
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900474 strcpy(reason, "(unknown)");
475 } else
476 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000477 if (!silent)
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900478 pr_err("Failed to find the path for %s: %s\n",
479 module ?: "kernel", reason);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900480 return NULL;
481 }
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900482 path = dso->long_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900483 }
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000484 ret = debuginfo__new(path);
485 if (!ret && !silent) {
486 pr_warning("The %s file has no debug information.\n", path);
487 if (!module || !strtailcmp(path, ".ko"))
488 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
489 else
490 pr_warning("Rebuild with -g, ");
491 pr_warning("or install an appropriate debuginfo package.\n");
492 }
493 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400494}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300495
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900496/* For caching the last debuginfo */
497static struct debuginfo *debuginfo_cache;
498static char *debuginfo_cache_path;
499
500static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
501{
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900502 const char *path = module;
503
504 /* If the module is NULL, it should be the kernel. */
505 if (!module)
506 path = "kernel";
507
508 if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900509 goto out;
510
511 /* Copy module path */
512 free(debuginfo_cache_path);
Masami Hiramatsu20f49852015-10-01 01:41:35 +0900513 debuginfo_cache_path = strdup(path);
514 if (!debuginfo_cache_path) {
515 debuginfo__delete(debuginfo_cache);
516 debuginfo_cache = NULL;
517 goto out;
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900518 }
519
520 debuginfo_cache = open_debuginfo(module, silent);
521 if (!debuginfo_cache)
522 zfree(&debuginfo_cache_path);
523out:
524 return debuginfo_cache;
525}
526
527static void debuginfo_cache__exit(void)
528{
529 debuginfo__delete(debuginfo_cache);
530 debuginfo_cache = NULL;
531 zfree(&debuginfo_cache_path);
532}
533
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000534
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000535static int get_text_start_address(const char *exec, unsigned long *address)
536{
537 Elf *elf;
538 GElf_Ehdr ehdr;
539 GElf_Shdr shdr;
540 int fd, ret = -ENOENT;
541
542 fd = open(exec, O_RDONLY);
543 if (fd < 0)
544 return -errno;
545
546 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900547 if (elf == NULL) {
548 ret = -EINVAL;
549 goto out_close;
550 }
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000551
552 if (gelf_getehdr(elf, &ehdr) == NULL)
553 goto out;
554
555 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
556 goto out;
557
558 *address = shdr.sh_addr - shdr.sh_offset;
559 ret = 0;
560out:
561 elf_end(elf);
Masami Hiramatsu062d6c22016-04-26 15:47:37 +0900562out_close:
563 close(fd);
564
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000565 return ret;
566}
567
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000568/*
569 * Convert trace point to probe point with debuginfo
570 */
571static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
572 struct perf_probe_point *pp,
573 bool is_kprobe)
574{
575 struct debuginfo *dinfo = NULL;
576 unsigned long stext = 0;
577 u64 addr = tp->address;
578 int ret = -ENOENT;
579
580 /* convert the address to dwarf address */
581 if (!is_kprobe) {
582 if (!addr) {
583 ret = -EINVAL;
584 goto error;
585 }
586 ret = get_text_start_address(tp->module, &stext);
587 if (ret < 0)
588 goto error;
589 addr += stext;
Wang Nane4863672015-08-25 13:27:35 +0000590 } else if (tp->symbol) {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +0900591 /* If the module is given, this returns relative address */
592 ret = kernel_get_symbol_address_by_name(tp->symbol, &addr,
593 false, !!tp->module);
594 if (ret != 0)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000595 goto error;
596 addr += tp->offset;
597 }
598
599 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
600 tp->module ? : "kernel");
601
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900602 dinfo = debuginfo_cache__open(tp->module, verbose == 0);
603 if (dinfo)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000604 ret = debuginfo__find_probe_point(dinfo,
605 (unsigned long)addr, pp);
Masami Hiramatsu7737af02015-06-17 23:58:54 +0900606 else
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000607 ret = -ENOENT;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000608
609 if (ret > 0) {
610 pp->retprobe = tp->retprobe;
611 return 0;
612 }
613error:
614 pr_debug("Failed to find corresponding probes from debuginfo.\n");
615 return ret ? : -ENOENT;
616}
617
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000618static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
619 int ntevs, const char *exec)
620{
621 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000622 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000623
624 if (!exec)
625 return 0;
626
627 ret = get_text_start_address(exec, &stext);
628 if (ret < 0)
629 return ret;
630
631 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000632 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000633 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000634 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000635 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000636 ret = -ENOMEM;
637 break;
638 }
639 tevs[i].uprobes = true;
640 }
641
642 return ret;
643}
644
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900645static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
646 int ntevs, const char *module)
647{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900648 int i, ret = 0;
Ravi Bangoria63a29612016-04-26 19:55:41 +0530649 char *mod_name = NULL;
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900650
651 if (!module)
652 return 0;
653
Ravi Bangoria63a29612016-04-26 19:55:41 +0530654 mod_name = find_module_name(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900655
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900656 for (i = 0; i < ntevs; i++) {
Ravi Bangoria63a29612016-04-26 19:55:41 +0530657 tevs[i].point.module =
658 strdup(mod_name ? mod_name : module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900659 if (!tevs[i].point.module) {
660 ret = -ENOMEM;
661 break;
662 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900663 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900664
Ravi Bangoria63a29612016-04-26 19:55:41 +0530665 free(mod_name);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900666 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900667}
668
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000669/* Post processing the probe events */
670static int post_process_probe_trace_events(struct probe_trace_event *tevs,
671 int ntevs, const char *module,
672 bool uprobe)
673{
674 struct ref_reloc_sym *reloc_sym;
675 char *tmp;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900676 int i, skipped = 0;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000677
678 if (uprobe)
679 return add_exec_to_probe_trace_events(tevs, ntevs, module);
680
681 /* Note that currently ref_reloc_sym based probe is not for drivers */
682 if (module)
683 return add_module_to_probe_trace_events(tevs, ntevs, module);
684
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000685 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000686 if (!reloc_sym) {
687 pr_warning("Relocated base symbol is not found!\n");
688 return -EINVAL;
689 }
690
691 for (i = 0; i < ntevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +0900692 if (!tevs[i].point.address || tevs[i].point.retprobe)
693 continue;
694 /* If we found a wrong one, mark it by NULL symbol */
695 if (kprobe_warn_out_range(tevs[i].point.symbol,
696 tevs[i].point.address)) {
697 tmp = NULL;
698 skipped++;
699 } else {
700 tmp = strdup(reloc_sym->name);
701 if (!tmp)
702 return -ENOMEM;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000703 }
Masami Hiramatsub0312202015-06-16 20:50:55 +0900704 /* If we have no realname, use symbol for it */
705 if (!tevs[i].point.realname)
706 tevs[i].point.realname = tevs[i].point.symbol;
707 else
708 free(tevs[i].point.symbol);
709 tevs[i].point.symbol = tmp;
710 tevs[i].point.offset = tevs[i].point.address -
711 reloc_sym->unrelocated_addr;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000712 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900713 return skipped;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000714}
715
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300716/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530717static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900718 struct probe_trace_event **tevs)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300719{
720 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900721 struct perf_probe_point tmp;
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530722 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900723 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300724
Masami Hiramatsu44225522015-05-08 10:03:28 +0900725 dinfo = open_debuginfo(pev->target, !need_dwarf);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900726 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000727 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900728 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900729 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300730 return 0;
731 }
732
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000733 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900734 /* Searching trace events corresponding to a probe event */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900735 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900736
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900737 if (ntevs == 0) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900738 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900739 if (!ret) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900740 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900741 /*
742 * Write back to the original probe_event for
743 * setting appropriate (user given) event name
744 */
745 clear_perf_probe_point(&pev->point);
746 memcpy(&pev->point, &tmp, sizeof(tmp));
747 }
748 }
749
Masami Hiramatsuff741782011-06-27 16:27:39 +0900750 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300751
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400752 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000753 pr_debug("Found %d probe_trace_events.\n", ntevs);
754 ret = post_process_probe_trace_events(*tevs, ntevs,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900755 pev->target, pev->uprobes);
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900756 if (ret < 0 || ret == ntevs) {
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000757 clear_probe_trace_events(*tevs, ntevs);
758 zfree(tevs);
759 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900760 if (ret != ntevs)
761 return ret < 0 ? ret : ntevs;
762 ntevs = 0;
763 /* Fall through */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400764 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300765
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400766 if (ntevs == 0) { /* No error but failed to find probe point. */
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900767 pr_warning("Probe point '%s' not found.\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400768 synthesize_perf_probe_point(&pev->point));
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900769 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400770 }
771 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400772 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
Wang Nan1c0bd0e2015-08-21 10:09:02 +0000773 if (ntevs < 0) {
774 if (ntevs == -EBADF)
775 pr_warning("Warning: No dwarf info found in the vmlinux - "
776 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400777 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900778 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400779 return 0;
780 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300781 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400782 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300783}
784
785#define LINEBUF_SIZE 256
786#define NR_ADDITIONAL_LINES 2
787
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100788static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300789{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000790 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100791 const char *color = show_num ? "" : PERF_COLOR_BLUE;
792 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300793
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100794 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300795 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
796 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100797 if (skip)
798 continue;
799 if (!prefix) {
800 prefix = show_num ? "%7d " : " ";
801 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300802 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100803 color_fprintf(stdout, color, "%s", buf);
804
805 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400806
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100807 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300808error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100809 if (ferror(fp)) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000810 pr_warning("File read error: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300811 str_error_r(errno, sbuf, sizeof(sbuf)));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100812 return -1;
813 }
814 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300815}
816
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100817static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
818{
819 int rv = __show_one_line(fp, l, skip, show_num);
820 if (rv == 0) {
821 pr_warning("Source file is shorter than expected.\n");
822 rv = -1;
823 }
824 return rv;
825}
826
827#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
828#define show_one_line(f,l) _show_one_line(f,l,false,false)
829#define skip_one_line(f,l) _show_one_line(f,l,true,false)
830#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
831
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300832/*
833 * Show line-range always requires debuginfo to find source file and
834 * line number.
835 */
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900836static int __show_line_range(struct line_range *lr, const char *module,
837 bool user)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300838{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400839 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000840 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900841 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300842 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900843 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900844 char *tmp;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000845 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300846
847 /* Search a line range */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000848 dinfo = open_debuginfo(module, false);
849 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900850 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400851
Masami Hiramatsuff741782011-06-27 16:27:39 +0900852 ret = debuginfo__find_line_range(dinfo, lr);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900853 if (!ret) { /* Not found, retry with an alternative */
854 ret = get_alternative_line_range(dinfo, lr, module, user);
855 if (!ret)
856 ret = debuginfo__find_line_range(dinfo, lr);
857 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900858 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000859 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400860 pr_warning("Specified source line is not found.\n");
861 return -ENOENT;
862 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000863 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400864 return ret;
865 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300866
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900867 /* Convert source file path */
868 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900869 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
He Kuanga78604d2015-03-04 18:01:42 +0800870
871 /* Free old path when new path is assigned */
872 if (tmp != lr->path)
873 free(tmp);
874
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900875 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000876 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900877 return ret;
878 }
879
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300880 setup_pager();
881
882 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900883 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300884 lr->start - lr->offset);
885 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100886 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300887
888 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400889 if (fp == NULL) {
890 pr_warning("Failed to open %s: %s\n", lr->path,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300891 str_error_r(errno, sbuf, sizeof(sbuf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400892 return -errno;
893 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300894 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100895 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100896 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100897 if (ret < 0)
898 goto end;
899 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300900
Arnaldo Carvalho de Melo10daf4d2016-06-23 11:39:19 -0300901 intlist__for_each_entry(ln, lr->line_list) {
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000902 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100903 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100904 if (ret < 0)
905 goto end;
906 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100907 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400908 if (ret < 0)
909 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300910 }
911
912 if (lr->end == INT_MAX)
913 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100914 while (l <= lr->end) {
915 ret = show_one_line_or_eof(fp, l++ - lr->offset);
916 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100917 break;
918 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400919end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300920 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400921 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300922}
923
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000924int show_line_range(struct line_range *lr, const char *module, bool user)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000925{
926 int ret;
927
Namhyung Kim9bae1e82015-09-10 11:27:05 +0900928 ret = init_probe_symbol_maps(user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000929 if (ret < 0)
930 return ret;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900931 ret = __show_line_range(lr, module, user);
Namhyung Kim9bae1e82015-09-10 11:27:05 +0900932 exit_probe_symbol_maps();
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000933
934 return ret;
935}
936
Masami Hiramatsuff741782011-06-27 16:27:39 +0900937static int show_available_vars_at(struct debuginfo *dinfo,
938 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900939 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900940{
941 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900942 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900943 struct str_node *node;
944 struct variable_list *vls = NULL, *vl;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900945 struct perf_probe_point tmp;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900946 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900947
948 buf = synthesize_perf_probe_point(&pev->point);
949 if (!buf)
950 return -EINVAL;
951 pr_debug("Searching variables at %s\n", buf);
952
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900953 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900954 if (!ret) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900955 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900956 if (!ret) {
957 ret = debuginfo__find_available_vars_at(dinfo, pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900958 &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900959 /* Release the old probe_point */
960 clear_perf_probe_point(&tmp);
961 }
962 }
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900963 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000964 if (ret == 0 || ret == -ENOENT) {
965 pr_err("Failed to find the address of %s\n", buf);
966 ret = -ENOENT;
967 } else
968 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900969 goto end;
970 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000971
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900972 /* Some variables are found */
973 fprintf(stdout, "Available variables at %s\n", buf);
974 for (i = 0; i < ret; i++) {
975 vl = &vls[i];
976 /*
977 * A probe point might be converted to
978 * several trace points.
979 */
980 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
981 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300982 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900983 nvars = 0;
984 if (vl->vars) {
Arnaldo Carvalho de Melo602a1f42016-06-23 11:31:20 -0300985 strlist__for_each_entry(node, vl->vars) {
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900986 var = strchr(node->s, '\t') + 1;
987 if (strfilter__compare(_filter, var)) {
988 fprintf(stdout, "\t\t%s\n", node->s);
989 nvars++;
990 }
991 }
992 strlist__delete(vl->vars);
993 }
994 if (nvars == 0)
995 fprintf(stdout, "\t\t(No matched variables)\n");
996 }
997 free(vls);
998end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900999 free(buf);
1000 return ret;
1001}
1002
1003/* Show available variables on given probe point */
1004int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001005 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001006{
Masami Hiramatsuff741782011-06-27 16:27:39 +09001007 int i, ret = 0;
1008 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001009
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001010 ret = init_probe_symbol_maps(pevs->uprobes);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001011 if (ret < 0)
1012 return ret;
1013
Masami Hiramatsu44225522015-05-08 10:03:28 +09001014 dinfo = open_debuginfo(pevs->target, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001015 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001016 ret = -ENOENT;
1017 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +09001018 }
1019
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001020 setup_pager();
1021
Masami Hiramatsuff741782011-06-27 16:27:39 +09001022 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001023 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
Masami Hiramatsuff741782011-06-27 16:27:39 +09001024
1025 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001026out:
Namhyung Kim9bae1e82015-09-10 11:27:05 +09001027 exit_probe_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001028 return ret;
1029}
1030
Ingo Molnar89fe8082013-09-30 12:07:11 +02001031#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001032
Masami Hiramatsu7737af02015-06-17 23:58:54 +09001033static void debuginfo_cache__exit(void)
1034{
1035}
1036
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001037static int
1038find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
1039 struct perf_probe_point *pp __maybe_unused,
1040 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001041{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001042 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001043}
1044
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301045static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001046 struct probe_trace_event **tevs __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001047{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001048 if (perf_probe_event_need_dwarf(pev)) {
1049 pr_warning("Debuginfo-analysis is not supported.\n");
1050 return -ENOSYS;
1051 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301052
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001053 return 0;
1054}
1055
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001056int show_line_range(struct line_range *lr __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +00001057 const char *module __maybe_unused,
1058 bool user __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001059{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001060 pr_warning("Debuginfo-analysis is not supported.\n");
1061 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001062}
1063
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001064int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001065 int npevs __maybe_unused,
1066 struct strfilter *filter __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001067{
1068 pr_warning("Debuginfo-analysis is not supported.\n");
1069 return -ENOSYS;
1070}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04001071#endif
1072
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001073void line_range__clear(struct line_range *lr)
1074{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001075 free(lr->function);
1076 free(lr->file);
1077 free(lr->path);
1078 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001079 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001080 memset(lr, 0, sizeof(*lr));
1081}
1082
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001083int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001084{
1085 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001086 lr->line_list = intlist__new(NULL);
1087 if (!lr->line_list)
1088 return -ENOMEM;
1089 else
1090 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +00001091}
1092
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001093static int parse_line_num(char **ptr, int *val, const char *what)
1094{
1095 const char *start = *ptr;
1096
1097 errno = 0;
1098 *val = strtol(*ptr, ptr, 0);
1099 if (errno || *ptr == start) {
1100 semantic_error("'%s' is not a valid number.\n", what);
1101 return -EINVAL;
1102 }
1103 return 0;
1104}
1105
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001106/* Check the name is good for event, group or function */
1107static bool is_c_func_name(const char *name)
1108{
1109 if (!isalpha(*name) && *name != '_')
1110 return false;
1111 while (*++name != '\0') {
1112 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1113 return false;
1114 }
1115 return true;
1116}
1117
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001118/*
1119 * Stuff 'lr' according to the line range described by 'arg'.
1120 * The line range syntax is described by:
1121 *
1122 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001123 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001124 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001125int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001126{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001127 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001128 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001129
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001130 if (!name)
1131 return -ENOMEM;
1132
1133 lr->start = 0;
1134 lr->end = INT_MAX;
1135
1136 range = strchr(name, ':');
1137 if (range) {
1138 *range++ = '\0';
1139
1140 err = parse_line_num(&range, &lr->start, "start line");
1141 if (err)
1142 goto err;
1143
1144 if (*range == '+' || *range == '-') {
1145 const char c = *range++;
1146
1147 err = parse_line_num(&range, &lr->end, "end line");
1148 if (err)
1149 goto err;
1150
1151 if (c == '+') {
1152 lr->end += lr->start;
1153 /*
1154 * Adjust the number of lines here.
1155 * If the number of lines == 1, the
1156 * the end of line should be equal to
1157 * the start of line.
1158 */
1159 lr->end--;
1160 }
1161 }
1162
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001163 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001164
1165 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001166 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001167 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001168 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001169 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001170 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001171 if (*range != '\0') {
1172 semantic_error("Tailing with invalid str '%s'.\n", range);
1173 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001174 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001175 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001176
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001177 file = strchr(name, '@');
1178 if (file) {
1179 *file = '\0';
1180 lr->file = strdup(++file);
1181 if (lr->file == NULL) {
1182 err = -ENOMEM;
1183 goto err;
1184 }
1185 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001186 } else if (strchr(name, '/') || strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001187 lr->file = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001188 else if (is_c_func_name(name))/* We reuse it for checking funcname */
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001189 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001190 else { /* Invalid name */
1191 semantic_error("'%s' is not a valid function name.\n", name);
1192 err = -EINVAL;
1193 goto err;
1194 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001195
1196 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001197err:
1198 free(name);
1199 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001200}
1201
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001202static int parse_perf_probe_event_name(char **arg, struct perf_probe_event *pev)
1203{
1204 char *ptr;
1205
1206 ptr = strchr(*arg, ':');
1207 if (ptr) {
1208 *ptr = '\0';
Masami Hiramatsu42bba262016-07-12 19:05:18 +09001209 if (!pev->sdt && !is_c_func_name(*arg))
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001210 goto ng_name;
1211 pev->group = strdup(*arg);
1212 if (!pev->group)
1213 return -ENOMEM;
1214 *arg = ptr + 1;
1215 } else
1216 pev->group = NULL;
Masami Hiramatsu42bba262016-07-12 19:05:18 +09001217 if (!pev->sdt && !is_c_func_name(*arg)) {
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001218ng_name:
1219 semantic_error("%s is bad for event name -it must "
1220 "follow C symbol-naming rule.\n", *arg);
1221 return -EINVAL;
1222 }
1223 pev->event = strdup(*arg);
1224 if (pev->event == NULL)
1225 return -ENOMEM;
1226
1227 return 0;
1228}
1229
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001230/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001231static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001232{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001233 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001234 char *ptr, *tmp;
1235 char c, nc = 0;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301236 bool file_spec = false;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001237 int ret;
1238
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001239 /*
1240 * <Syntax>
Masami Hiramatsu8d993d92016-07-01 17:04:01 +09001241 * perf probe [GRP:][EVENT=]SRC[:LN|;PTN]
1242 * perf probe [GRP:][EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001243 * perf probe %[GRP:]SDT_EVENT
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001244 */
Wang Nane59d29e2015-04-28 08:46:09 +00001245 if (!arg)
1246 return -EINVAL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001247
Masami Hiramatsu7e9fca52016-07-12 19:05:46 +09001248 /*
1249 * If the probe point starts with '%',
1250 * or starts with "sdt_" and has a ':' but no '=',
1251 * then it should be a SDT/cached probe point.
1252 */
1253 if (arg[0] == '%' ||
1254 (!strncmp(arg, "sdt_", 4) &&
1255 !!strchr(arg, ':') && !strchr(arg, '='))) {
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001256 pev->sdt = true;
Masami Hiramatsu7e9fca52016-07-12 19:05:46 +09001257 if (arg[0] == '%')
1258 arg++;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001259 }
1260
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001261 ptr = strpbrk(arg, ";=@+%");
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001262 if (pev->sdt) {
1263 if (ptr) {
Masami Hiramatsua5981802016-07-12 19:05:37 +09001264 if (*ptr != '@') {
1265 semantic_error("%s must be an SDT name.\n",
1266 arg);
1267 return -EINVAL;
1268 }
1269 /* This must be a target file name or build id */
1270 tmp = build_id_cache__complement(ptr + 1);
1271 if (tmp) {
1272 pev->target = build_id_cache__origname(tmp);
1273 free(tmp);
1274 } else
1275 pev->target = strdup(ptr + 1);
1276 if (!pev->target)
1277 return -ENOMEM;
1278 *ptr = '\0';
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001279 }
1280 ret = parse_perf_probe_event_name(&arg, pev);
1281 if (ret == 0) {
1282 if (asprintf(&pev->point.function, "%%%s", pev->event) < 0)
1283 ret = -errno;
1284 }
1285 return ret;
1286 }
1287
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001288 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001289 *ptr = '\0';
1290 tmp = ptr + 1;
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09001291 ret = parse_perf_probe_event_name(&arg, pev);
1292 if (ret < 0)
1293 return ret;
1294
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001295 arg = tmp;
1296 }
1297
Naveen N. Rao3099c022015-04-28 17:35:34 +05301298 /*
1299 * Check arg is function or file name and copy it.
1300 *
1301 * We consider arg to be a file spec if and only if it satisfies
1302 * all of the below criteria::
1303 * - it does not include any of "+@%",
1304 * - it includes one of ":;", and
1305 * - it has a period '.' in the name.
1306 *
1307 * Otherwise, we consider arg to be a function specification.
1308 */
1309 if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) {
1310 /* This is a file spec if it includes a '.' before ; or : */
1311 if (memchr(arg, '.', ptr - arg))
1312 file_spec = true;
1313 }
1314
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001315 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001316 if (ptr) {
1317 nc = *ptr;
1318 *ptr++ = '\0';
1319 }
1320
Wang Nan6c6e0242015-08-26 10:57:44 +00001321 if (arg[0] == '\0')
1322 tmp = NULL;
1323 else {
1324 tmp = strdup(arg);
1325 if (tmp == NULL)
1326 return -ENOMEM;
1327 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001328
Naveen N. Rao3099c022015-04-28 17:35:34 +05301329 if (file_spec)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001330 pp->file = tmp;
Wang Nanda15bd92015-08-26 10:57:45 +00001331 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001332 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001333
Wang Nanda15bd92015-08-26 10:57:45 +00001334 /*
1335 * Keep pp->function even if this is absolute address,
1336 * so it can mark whether abs_address is valid.
1337 * Which make 'perf probe lib.bin 0x0' possible.
1338 *
1339 * Note that checking length of tmp is not needed
1340 * because when we access tmp[1] we know tmp[0] is '0',
1341 * so tmp[1] should always valid (but could be '\0').
1342 */
1343 if (tmp && !strncmp(tmp, "0x", 2)) {
1344 pp->abs_address = strtoul(pp->function, &tmp, 0);
1345 if (*tmp != '\0') {
1346 semantic_error("Invalid absolute address.\n");
1347 return -EINVAL;
1348 }
1349 }
1350 }
1351
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001352 /* Parse other options */
1353 while (ptr) {
1354 arg = ptr;
1355 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001356 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001357 pp->lazy_line = strdup(arg);
1358 if (pp->lazy_line == NULL)
1359 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001360 break;
1361 }
1362 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001363 if (ptr) {
1364 nc = *ptr;
1365 *ptr++ = '\0';
1366 }
1367 switch (c) {
1368 case ':': /* Line number */
1369 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001370 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001371 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001372 " in line number.\n");
1373 return -EINVAL;
1374 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001375 break;
1376 case '+': /* Byte offset from a symbol */
1377 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001378 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001379 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001380 " in offset.\n");
1381 return -EINVAL;
1382 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001383 break;
1384 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001385 if (pp->file) {
1386 semantic_error("SRC@SRC is not allowed.\n");
1387 return -EINVAL;
1388 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001389 pp->file = strdup(arg);
1390 if (pp->file == NULL)
1391 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001392 break;
1393 case '%': /* Probe places */
1394 if (strcmp(arg, "return") == 0) {
1395 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001396 } else { /* Others not supported yet */
1397 semantic_error("%%%s is not supported.\n", arg);
1398 return -ENOTSUP;
1399 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001400 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001401 default: /* Buggy case */
1402 pr_err("This program has a bug at %s:%d.\n",
1403 __FILE__, __LINE__);
1404 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001405 break;
1406 }
1407 }
1408
1409 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001410 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001411 semantic_error("Lazy pattern can't be used with"
1412 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001413 return -EINVAL;
1414 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001415
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001416 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001417 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001418 return -EINVAL;
1419 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001420
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001421 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001422 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001423 return -EINVAL;
1424 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001425
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001426 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001427 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001428 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001429 return -EINVAL;
1430 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001431
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001432 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001433 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001434 return -EINVAL;
1435 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001436
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001437 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001438 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001439 return -EINVAL;
1440 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001441
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001442 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001443 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001444 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001445 return -EINVAL;
1446 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001447
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001448 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001449 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1450 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001451 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001452}
1453
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001454/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001455static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001456{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001457 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001458 struct perf_probe_arg_field **fieldp;
1459
1460 pr_debug("parsing arg: %s into ", str);
1461
Masami Hiramatsu48481932010-04-12 13:16:53 -04001462 tmp = strchr(str, '=');
1463 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001464 arg->name = strndup(str, tmp - str);
1465 if (arg->name == NULL)
1466 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001467 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001468 str = tmp + 1;
1469 }
1470
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001471 tmp = strchr(str, ':');
1472 if (tmp) { /* Type setting */
1473 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001474 arg->type = strdup(tmp + 1);
1475 if (arg->type == NULL)
1476 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001477 pr_debug("type:%s ", arg->type);
1478 }
1479
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001480 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001481 if (!is_c_varname(str) || !tmp) {
1482 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001483 arg->var = strdup(str);
1484 if (arg->var == NULL)
1485 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001486 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001487 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001488 }
1489
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001490 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001491 arg->var = strndup(str, tmp - str);
1492 if (arg->var == NULL)
1493 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001494 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001495 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001496 fieldp = &arg->field;
1497
1498 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001499 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1500 if (*fieldp == NULL)
1501 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001502 if (*tmp == '[') { /* Array */
1503 str = tmp;
1504 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001505 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001506 if (*tmp != ']' || tmp == str + 1) {
1507 semantic_error("Array index must be a"
1508 " number.\n");
1509 return -EINVAL;
1510 }
1511 tmp++;
1512 if (*tmp == '\0')
1513 tmp = NULL;
1514 } else { /* Structure */
1515 if (*tmp == '.') {
1516 str = tmp + 1;
1517 (*fieldp)->ref = false;
1518 } else if (tmp[1] == '>') {
1519 str = tmp + 2;
1520 (*fieldp)->ref = true;
1521 } else {
1522 semantic_error("Argument parse error: %s\n",
1523 str);
1524 return -EINVAL;
1525 }
1526 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001527 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001528 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001529 (*fieldp)->name = strndup(str, tmp - str);
1530 if ((*fieldp)->name == NULL)
1531 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001532 if (*str != '[')
1533 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001534 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1535 fieldp = &(*fieldp)->next;
1536 }
1537 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001538 (*fieldp)->name = strdup(str);
1539 if ((*fieldp)->name == NULL)
1540 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001541 if (*str != '[')
1542 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001543 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001544
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001545 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001546 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001547 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001548 if (arg->name == NULL)
1549 return -ENOMEM;
1550 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001551 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001552}
1553
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001554/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001555int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001556{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001557 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001558 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001559
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001560 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001561 if (!argv) {
1562 pr_debug("Failed to split arguments.\n");
1563 return -ENOMEM;
1564 }
1565 if (argc - 1 > MAX_PROBE_ARGS) {
1566 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1567 ret = -ERANGE;
1568 goto out;
1569 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001570 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001571 ret = parse_perf_probe_point(argv[0], pev);
1572 if (ret < 0)
1573 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001574
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001575 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001576 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001577 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1578 if (pev->args == NULL) {
1579 ret = -ENOMEM;
1580 goto out;
1581 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001582 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1583 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1584 if (ret >= 0 &&
1585 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001586 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001587 " kretprobe.\n");
1588 ret = -EINVAL;
1589 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001590 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001591out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001592 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001593
1594 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001595}
1596
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001597/* Return true if this perf_probe_event requires debuginfo */
1598bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001599{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001600 int i;
1601
1602 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1603 return true;
1604
1605 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsuf6eb0512016-07-12 19:04:34 +09001606 if (is_c_varname(pev->args[i].var) ||
1607 !strcmp(pev->args[i].var, "$params") ||
1608 !strcmp(pev->args[i].var, "$vars"))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001609 return true;
1610
1611 return false;
1612}
1613
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301614/* Parse probe_events event into struct probe_point */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09001615int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001616{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301617 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001618 char pr;
1619 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001620 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001621 int ret, i, argc;
1622 char **argv;
1623
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301624 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001625 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001626 if (!argv) {
1627 pr_debug("Failed to split arguments.\n");
1628 return -ENOMEM;
1629 }
1630 if (argc < 2) {
1631 semantic_error("Too few probe arguments.\n");
1632 ret = -ERANGE;
1633 goto out;
1634 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001635
1636 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001637 argv0_str = strdup(argv[0]);
1638 if (argv0_str == NULL) {
1639 ret = -ENOMEM;
1640 goto out;
1641 }
1642 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1643 fmt2_str = strtok_r(NULL, "/", &fmt);
1644 fmt3_str = strtok_r(NULL, " \t", &fmt);
1645 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1646 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001647 semantic_error("Failed to parse event name: %s\n", argv[0]);
1648 ret = -EINVAL;
1649 goto out;
1650 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001651 pr = fmt1_str[0];
1652 tev->group = strdup(fmt2_str);
1653 tev->event = strdup(fmt3_str);
1654 if (tev->group == NULL || tev->event == NULL) {
1655 ret = -ENOMEM;
1656 goto out;
1657 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001658 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001659
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001660 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001661
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001662 /* Scan module name(if there), function name and offset */
1663 p = strchr(argv[1], ':');
1664 if (p) {
1665 tp->module = strndup(argv[1], p - argv[1]);
Masami Hiramatsu844faa42016-06-08 18:29:21 +09001666 if (!tp->module) {
1667 ret = -ENOMEM;
1668 goto out;
1669 }
Masami Hiramatsu42bba262016-07-12 19:05:18 +09001670 tev->uprobes = (tp->module[0] == '/');
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001671 p++;
1672 } else
1673 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001674 fmt1_str = strtok_r(p, "+", &fmt);
Wang Nanbe07afe2015-08-26 10:57:43 +00001675 /* only the address started with 0x */
1676 if (fmt1_str[0] == '0') {
1677 /*
1678 * Fix a special case:
1679 * if address == 0, kernel reports something like:
1680 * p:probe_libc/abs_0 /lib/libc-2.18.so:0x (null) arg1=%ax
1681 * Newer kernel may fix that, but we want to
1682 * support old kernel also.
1683 */
1684 if (strcmp(fmt1_str, "0x") == 0) {
1685 if (!argv[2] || strcmp(argv[2], "(null)")) {
1686 ret = -EINVAL;
1687 goto out;
1688 }
1689 tp->address = 0;
1690
1691 free(argv[2]);
1692 for (i = 2; argv[i + 1] != NULL; i++)
1693 argv[i] = argv[i + 1];
1694
1695 argv[i] = NULL;
1696 argc -= 1;
1697 } else
1698 tp->address = strtoul(fmt1_str, NULL, 0);
1699 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001700 /* Only the symbol-based probe has offset */
1701 tp->symbol = strdup(fmt1_str);
1702 if (tp->symbol == NULL) {
1703 ret = -ENOMEM;
1704 goto out;
1705 }
1706 fmt2_str = strtok_r(NULL, "", &fmt);
1707 if (fmt2_str == NULL)
1708 tp->offset = 0;
1709 else
1710 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001711 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001712
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001713 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301714 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001715 if (tev->args == NULL) {
1716 ret = -ENOMEM;
1717 goto out;
1718 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001719 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001720 p = strchr(argv[i + 2], '=');
1721 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001722 *p++ = '\0';
1723 else
1724 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001725 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001726 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001727 tev->args[i].value = strdup(p);
1728 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1729 ret = -ENOMEM;
1730 goto out;
1731 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001732 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001733 ret = 0;
1734out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001735 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001736 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001737 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001738}
1739
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001740/* Compose only probe arg */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001741char *synthesize_perf_probe_arg(struct perf_probe_arg *pa)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001742{
1743 struct perf_probe_arg_field *field = pa->field;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001744 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001745 char *ret = NULL;
1746 int err;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001747
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001748 if (strbuf_init(&buf, 64) < 0)
1749 return NULL;
1750
Masami Hiramatsu48481932010-04-12 13:16:53 -04001751 if (pa->name && pa->var)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001752 err = strbuf_addf(&buf, "%s=%s", pa->name, pa->var);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001753 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001754 err = strbuf_addstr(&buf, pa->name ?: pa->var);
1755 if (err)
1756 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001757
1758 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001759 if (field->name[0] == '[')
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001760 err = strbuf_addstr(&buf, field->name);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001761 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001762 err = strbuf_addf(&buf, "%s%s", field->ref ? "->" : ".",
1763 field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001764 field = field->next;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001765 if (err)
1766 goto out;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001767 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001768
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001769 if (pa->type)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001770 if (strbuf_addf(&buf, ":%s", pa->type) < 0)
1771 goto out;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001772
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001773 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001774out:
1775 strbuf_release(&buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001776 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001777}
1778
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001779/* Compose only probe point (not argument) */
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001780char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001781{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001782 struct strbuf buf;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001783 char *tmp, *ret = NULL;
1784 int len, err = 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001785
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001786 if (strbuf_init(&buf, 64) < 0)
1787 return NULL;
1788
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001789 if (pp->function) {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001790 if (strbuf_addstr(&buf, pp->function) < 0)
1791 goto out;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001792 if (pp->offset)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001793 err = strbuf_addf(&buf, "+%lu", pp->offset);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001794 else if (pp->line)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001795 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001796 else if (pp->retprobe)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001797 err = strbuf_addstr(&buf, "%return");
1798 if (err)
1799 goto out;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001800 }
1801 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001802 tmp = pp->file;
1803 len = strlen(tmp);
1804 if (len > 30) {
1805 tmp = strchr(pp->file + len - 30, '/');
1806 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1807 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001808 err = strbuf_addf(&buf, "@%s", tmp);
1809 if (!err && !pp->function && pp->line)
1810 err = strbuf_addf(&buf, ":%d", pp->line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001811 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001812 if (!err)
1813 ret = strbuf_detach(&buf, NULL);
1814out:
1815 strbuf_release(&buf);
1816 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001817}
1818
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001819char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1820{
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001821 struct strbuf buf;
1822 char *tmp, *ret = NULL;
1823 int i;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001824
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001825 if (strbuf_init(&buf, 64))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001826 return NULL;
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001827 if (pev->event)
1828 if (strbuf_addf(&buf, "%s:%s=", pev->group ?: PERFPROBE_GROUP,
1829 pev->event) < 0)
1830 goto out;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001831
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001832 tmp = synthesize_perf_probe_point(&pev->point);
1833 if (!tmp || strbuf_addstr(&buf, tmp) < 0)
1834 goto out;
1835 free(tmp);
1836
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001837 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001838 tmp = synthesize_perf_probe_arg(pev->args + i);
1839 if (!tmp || strbuf_addf(&buf, " %s", tmp) < 0)
1840 goto out;
1841 free(tmp);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001842 }
1843
Masami Hiramatsuc4ff4922016-06-08 18:29:50 +09001844 ret = strbuf_detach(&buf, NULL);
1845out:
1846 strbuf_release(&buf);
1847 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001848}
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001849
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301850static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001851 struct strbuf *buf, int depth)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001852{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001853 int err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001854 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301855 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001856 depth + 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001857 if (depth < 0)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001858 return depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001859 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001860 err = strbuf_addf(buf, "%+ld(", ref->offset);
1861 return (err < 0) ? err : depth;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001862}
1863
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301864static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001865 struct strbuf *buf)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001866{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301867 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001868 int depth = 0, err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001869
1870 /* Argument name or separator */
1871 if (arg->name)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001872 err = strbuf_addf(buf, " %s=", arg->name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001873 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001874 err = strbuf_addch(buf, ' ');
1875 if (err)
1876 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001877
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001878 /* Special case: @XXX */
1879 if (arg->value[0] == '@' && arg->ref)
1880 ref = ref->next;
1881
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001882 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001883 if (ref) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001884 depth = __synthesize_probe_trace_arg_ref(ref, buf, 1);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001885 if (depth < 0)
1886 return depth;
1887 }
1888
1889 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001890 if (arg->value[0] == '@' && arg->ref)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001891 err = strbuf_addf(buf, "%s%+ld", arg->value, arg->ref->offset);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001892 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001893 err = strbuf_addstr(buf, arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001894
1895 /* Closing */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001896 while (!err && depth--)
1897 err = strbuf_addch(buf, ')');
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001898
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001899 /* Print argument type */
1900 if (!err && arg->type)
1901 err = strbuf_addf(buf, ":%s", arg->type);
1902
1903 return err;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001904}
1905
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301906char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001907{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301908 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001909 struct strbuf buf;
1910 char *ret = NULL;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001911 int i, err;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001912
Wang Nanda15bd92015-08-26 10:57:45 +00001913 /* Uprobes must have tp->module */
1914 if (tev->uprobes && !tp->module)
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001915 return NULL;
1916
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001917 if (strbuf_init(&buf, 32) < 0)
1918 return NULL;
1919
1920 if (strbuf_addf(&buf, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1921 tev->group, tev->event) < 0)
1922 goto error;
Wang Nanda15bd92015-08-26 10:57:45 +00001923 /*
1924 * If tp->address == 0, then this point must be a
1925 * absolute address uprobe.
1926 * try_to_find_absolute_address() should have made
1927 * tp->symbol to "0x0".
1928 */
1929 if (tev->uprobes && !tp->address) {
1930 if (!tp->symbol || strcmp(tp->symbol, "0x0"))
1931 goto error;
1932 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001933
1934 /* Use the tp->address for uprobes */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301935 if (tev->uprobes)
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001936 err = strbuf_addf(&buf, "%s:0x%lx", tp->module, tp->address);
Wang Nanda15bd92015-08-26 10:57:45 +00001937 else if (!strncmp(tp->symbol, "0x", 2))
1938 /* Absolute address. See try_to_find_absolute_address() */
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001939 err = strbuf_addf(&buf, "%s%s0x%lx", tp->module ?: "",
1940 tp->module ? ":" : "", tp->address);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301941 else
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001942 err = strbuf_addf(&buf, "%s%s%s+%lu", tp->module ?: "",
1943 tp->module ? ":" : "", tp->symbol, tp->offset);
1944 if (err)
1945 goto error;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301946
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001947 for (i = 0; i < tev->nargs; i++)
1948 if (synthesize_probe_trace_arg(&tev->args[i], &buf) < 0)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001949 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001950
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001951 ret = strbuf_detach(&buf, NULL);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001952error:
Masami Hiramatsu909b0362016-04-28 03:37:14 +09001953 strbuf_release(&buf);
1954 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001955}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001956
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001957static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1958 struct perf_probe_point *pp,
1959 bool is_kprobe)
1960{
1961 struct symbol *sym = NULL;
1962 struct map *map;
Wang Nane4863672015-08-25 13:27:35 +00001963 u64 addr = tp->address;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001964 int ret = -ENOENT;
1965
1966 if (!is_kprobe) {
1967 map = dso__new_map(tp->module);
1968 if (!map)
1969 goto out;
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001970 sym = map__find_symbol(map, addr, NULL);
1971 } else {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001972 if (tp->symbol && !addr) {
Masami Hiramatsu0a62f682015-11-06 17:30:03 +09001973 if (kernel_get_symbol_address_by_name(tp->symbol,
1974 &addr, true, false) < 0)
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001975 goto out;
1976 }
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001977 if (addr) {
1978 addr += tp->offset;
1979 sym = __find_kernel_function(addr, &map);
1980 }
1981 }
Wang Nan98d3b252015-11-05 13:19:25 +00001982
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001983 if (!sym)
1984 goto out;
1985
1986 pp->retprobe = tp->retprobe;
1987 pp->offset = addr - map->unmap_ip(map, sym->start);
1988 pp->function = strdup(sym->name);
1989 ret = pp->function ? 0 : -ENOMEM;
1990
1991out:
1992 if (map && !is_kprobe) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001993 map__put(map);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001994 }
1995
1996 return ret;
1997}
1998
1999static int convert_to_perf_probe_point(struct probe_trace_point *tp,
Wang Nanda15bd92015-08-26 10:57:45 +00002000 struct perf_probe_point *pp,
2001 bool is_kprobe)
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002002{
2003 char buf[128];
2004 int ret;
2005
2006 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
2007 if (!ret)
2008 return 0;
2009 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
2010 if (!ret)
2011 return 0;
2012
2013 pr_debug("Failed to find probe point from both of dwarf and map.\n");
2014
2015 if (tp->symbol) {
2016 pp->function = strdup(tp->symbol);
2017 pp->offset = tp->offset;
Wang Nan614e2fd2015-08-26 10:57:42 +00002018 } else {
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002019 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
2020 if (ret < 0)
2021 return ret;
2022 pp->function = strdup(buf);
2023 pp->offset = 0;
2024 }
2025 if (pp->function == NULL)
2026 return -ENOMEM;
2027
2028 pp->retprobe = tp->retprobe;
2029
2030 return 0;
2031}
2032
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302033static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302034 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002035{
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002036 struct strbuf buf = STRBUF_INIT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002037 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002038
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002039 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002040 pev->event = strdup(tev->event);
2041 pev->group = strdup(tev->group);
2042 if (pev->event == NULL || pev->group == NULL)
2043 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04002044
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002045 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00002046 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002047 if (ret < 0)
2048 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002049
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002050 /* Convert trace_arg to probe_arg */
2051 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002052 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
2053 if (pev->args == NULL)
2054 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002055 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002056 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002057 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002058 else {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002059 if ((ret = strbuf_init(&buf, 32)) < 0)
2060 goto error;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002061 ret = synthesize_probe_trace_arg(&tev->args[i], &buf);
2062 pev->args[i].name = strbuf_detach(&buf, NULL);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002063 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002064 if (pev->args[i].name == NULL && ret >= 0)
2065 ret = -ENOMEM;
2066 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002067error:
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002068 if (ret < 0)
2069 clear_perf_probe_event(pev);
2070
2071 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002072}
2073
2074void clear_perf_probe_event(struct perf_probe_event *pev)
2075{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002076 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002077 int i;
2078
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002079 free(pev->event);
2080 free(pev->group);
Masami Hiramatsu7afb3fa2015-04-01 19:25:39 +09002081 free(pev->target);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002082 clear_perf_probe_point(&pev->point);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002083
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002084 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002085 free(pev->args[i].name);
2086 free(pev->args[i].var);
2087 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002088 field = pev->args[i].field;
2089 while (field) {
2090 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002091 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002092 free(field);
2093 field = next;
2094 }
2095 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002096 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002097 memset(pev, 0, sizeof(*pev));
2098}
2099
Masami Hiramatsu0542bb92016-06-08 18:29:40 +09002100#define strdup_or_goto(str, label) \
2101({ char *__p = NULL; if (str && !(__p = strdup(str))) goto label; __p; })
2102
2103static int perf_probe_point__copy(struct perf_probe_point *dst,
2104 struct perf_probe_point *src)
2105{
2106 dst->file = strdup_or_goto(src->file, out_err);
2107 dst->function = strdup_or_goto(src->function, out_err);
2108 dst->lazy_line = strdup_or_goto(src->lazy_line, out_err);
2109 dst->line = src->line;
2110 dst->retprobe = src->retprobe;
2111 dst->offset = src->offset;
2112 return 0;
2113
2114out_err:
2115 clear_perf_probe_point(dst);
2116 return -ENOMEM;
2117}
2118
2119static int perf_probe_arg__copy(struct perf_probe_arg *dst,
2120 struct perf_probe_arg *src)
2121{
2122 struct perf_probe_arg_field *field, **ppfield;
2123
2124 dst->name = strdup_or_goto(src->name, out_err);
2125 dst->var = strdup_or_goto(src->var, out_err);
2126 dst->type = strdup_or_goto(src->type, out_err);
2127
2128 field = src->field;
2129 ppfield = &(dst->field);
2130 while (field) {
2131 *ppfield = zalloc(sizeof(*field));
2132 if (!*ppfield)
2133 goto out_err;
2134 (*ppfield)->name = strdup_or_goto(field->name, out_err);
2135 (*ppfield)->index = field->index;
2136 (*ppfield)->ref = field->ref;
2137 field = field->next;
2138 ppfield = &((*ppfield)->next);
2139 }
2140 return 0;
2141out_err:
2142 return -ENOMEM;
2143}
2144
2145int perf_probe_event__copy(struct perf_probe_event *dst,
2146 struct perf_probe_event *src)
2147{
2148 int i;
2149
2150 dst->event = strdup_or_goto(src->event, out_err);
2151 dst->group = strdup_or_goto(src->group, out_err);
2152 dst->target = strdup_or_goto(src->target, out_err);
2153 dst->uprobes = src->uprobes;
2154
2155 if (perf_probe_point__copy(&dst->point, &src->point) < 0)
2156 goto out_err;
2157
2158 dst->args = zalloc(sizeof(struct perf_probe_arg) * src->nargs);
2159 if (!dst->args)
2160 goto out_err;
2161 dst->nargs = src->nargs;
2162
2163 for (i = 0; i < src->nargs; i++)
2164 if (perf_probe_arg__copy(&dst->args[i], &src->args[i]) < 0)
2165 goto out_err;
2166 return 0;
2167
2168out_err:
2169 clear_perf_probe_event(dst);
2170 return -ENOMEM;
2171}
2172
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002173void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002174{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302175 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002176 int i;
2177
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002178 free(tev->event);
2179 free(tev->group);
2180 free(tev->point.symbol);
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002181 free(tev->point.realname);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002182 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002183 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002184 free(tev->args[i].name);
2185 free(tev->args[i].value);
2186 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002187 ref = tev->args[i].ref;
2188 while (ref) {
2189 next = ref->next;
2190 free(ref);
2191 ref = next;
2192 }
2193 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03002194 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002195 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002196}
2197
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002198struct kprobe_blacklist_node {
2199 struct list_head list;
2200 unsigned long start;
2201 unsigned long end;
2202 char *symbol;
2203};
2204
2205static void kprobe_blacklist__delete(struct list_head *blacklist)
2206{
2207 struct kprobe_blacklist_node *node;
2208
2209 while (!list_empty(blacklist)) {
2210 node = list_first_entry(blacklist,
2211 struct kprobe_blacklist_node, list);
2212 list_del(&node->list);
2213 free(node->symbol);
2214 free(node);
2215 }
2216}
2217
2218static int kprobe_blacklist__load(struct list_head *blacklist)
2219{
2220 struct kprobe_blacklist_node *node;
Jiri Olsa4605eab2015-09-02 09:56:43 +02002221 const char *__debugfs = debugfs__mountpoint();
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002222 char buf[PATH_MAX], *p;
2223 FILE *fp;
2224 int ret;
2225
2226 if (__debugfs == NULL)
2227 return -ENOTSUP;
2228
2229 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2230 if (ret < 0)
2231 return ret;
2232
2233 fp = fopen(buf, "r");
2234 if (!fp)
2235 return -errno;
2236
2237 ret = 0;
2238 while (fgets(buf, PATH_MAX, fp)) {
2239 node = zalloc(sizeof(*node));
2240 if (!node) {
2241 ret = -ENOMEM;
2242 break;
2243 }
2244 INIT_LIST_HEAD(&node->list);
2245 list_add_tail(&node->list, blacklist);
2246 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2247 ret = -EINVAL;
2248 break;
2249 }
2250 p = strchr(buf, '\t');
2251 if (p) {
2252 p++;
2253 if (p[strlen(p) - 1] == '\n')
2254 p[strlen(p) - 1] = '\0';
2255 } else
2256 p = (char *)"unknown";
2257 node->symbol = strdup(p);
2258 if (!node->symbol) {
2259 ret = -ENOMEM;
2260 break;
2261 }
2262 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2263 node->start, node->end, node->symbol);
2264 ret++;
2265 }
2266 if (ret < 0)
2267 kprobe_blacklist__delete(blacklist);
2268 fclose(fp);
2269
2270 return ret;
2271}
2272
2273static struct kprobe_blacklist_node *
2274kprobe_blacklist__find_by_address(struct list_head *blacklist,
2275 unsigned long address)
2276{
2277 struct kprobe_blacklist_node *node;
2278
2279 list_for_each_entry(node, blacklist, list) {
2280 if (node->start <= address && address <= node->end)
2281 return node;
2282 }
2283
2284 return NULL;
2285}
2286
Masami Hiramatsub0312202015-06-16 20:50:55 +09002287static LIST_HEAD(kprobe_blacklist);
2288
2289static void kprobe_blacklist__init(void)
2290{
2291 if (!list_empty(&kprobe_blacklist))
2292 return;
2293
2294 if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2295 pr_debug("No kprobe blacklist support, ignored\n");
2296}
2297
2298static void kprobe_blacklist__release(void)
2299{
2300 kprobe_blacklist__delete(&kprobe_blacklist);
2301}
2302
2303static bool kprobe_blacklist__listed(unsigned long address)
2304{
2305 return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2306}
2307
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002308static int perf_probe_event__sprintf(const char *group, const char *event,
2309 struct perf_probe_event *pev,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002310 const char *module,
2311 struct strbuf *result)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002312{
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002313 int i, ret;
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002314 char *buf;
2315
2316 if (asprintf(&buf, "%s:%s", group, event) < 0)
2317 return -errno;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002318 ret = strbuf_addf(result, " %-20s (on ", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002319 free(buf);
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002320 if (ret)
2321 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002322
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002323 /* Synthesize only event probe point */
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002324 buf = synthesize_perf_probe_point(&pev->point);
2325 if (!buf)
2326 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002327 ret = strbuf_addstr(result, buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002328 free(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002329
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002330 if (!ret && module)
2331 ret = strbuf_addf(result, " in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002332
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002333 if (!ret && pev->nargs > 0) {
2334 ret = strbuf_add(result, " with", 5);
2335 for (i = 0; !ret && i < pev->nargs; i++) {
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002336 buf = synthesize_perf_probe_arg(&pev->args[i]);
2337 if (!buf)
2338 return -ENOMEM;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002339 ret = strbuf_addf(result, " %s", buf);
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002340 free(buf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002341 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002342 }
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002343 if (!ret)
2344 ret = strbuf_addch(result, ')');
Masami Hiramatsu909b0362016-04-28 03:37:14 +09002345
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09002346 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002347}
2348
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002349/* Show an event */
Namhyung Kimb02137c2015-09-04 21:16:01 +09002350int show_perf_probe_event(const char *group, const char *event,
2351 struct perf_probe_event *pev,
2352 const char *module, bool use_stdout)
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002353{
2354 struct strbuf buf = STRBUF_INIT;
2355 int ret;
2356
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002357 ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002358 if (ret >= 0) {
2359 if (use_stdout)
2360 printf("%s\n", buf.buf);
2361 else
2362 pr_info("%s\n", buf.buf);
2363 }
2364 strbuf_release(&buf);
2365
2366 return ret;
2367}
2368
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002369static bool filter_probe_trace_event(struct probe_trace_event *tev,
2370 struct strfilter *filter)
2371{
2372 char tmp[128];
2373
2374 /* At first, check the event name itself */
2375 if (strfilter__compare(filter, tev->event))
2376 return true;
2377
2378 /* Next, check the combination of name and group */
2379 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2380 return false;
2381 return strfilter__compare(filter, tmp);
2382}
2383
2384static int __show_perf_probe_events(int fd, bool is_kprobe,
2385 struct strfilter *filter)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002386{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302387 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302388 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002389 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002390 struct strlist *rawlist;
2391 struct str_node *ent;
2392
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002393 memset(&tev, 0, sizeof(tev));
2394 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05002395
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002396 rawlist = probe_file__get_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002397 if (!rawlist)
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002398 return -ENOMEM;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002399
Arnaldo Carvalho de Melo602a1f42016-06-23 11:31:20 -03002400 strlist__for_each_entry(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302401 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002402 if (ret >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002403 if (!filter_probe_trace_event(&tev, filter))
2404 goto next;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302405 ret = convert_to_perf_probe_event(&tev, &pev,
2406 is_kprobe);
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002407 if (ret < 0)
2408 goto next;
Masami Hiramatsud350bd52015-06-16 20:50:57 +09002409 ret = show_perf_probe_event(pev.group, pev.event,
2410 &pev, tev.point.module,
Masami Hiramatsuba7ecb02015-06-13 10:31:16 +09002411 true);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002412 }
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002413next:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002414 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302415 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002416 if (ret < 0)
2417 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002418 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002419 strlist__delete(rawlist);
Masami Hiramatsu7737af02015-06-17 23:58:54 +09002420 /* Cleanup cached debuginfo if needed */
2421 debuginfo_cache__exit();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002422
2423 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002424}
2425
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302426/* List up current perf-probe events */
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002427int show_perf_probe_events(struct strfilter *filter)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302428{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002429 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302430
2431 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302432
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +09002433 if (probe_conf.cache)
2434 return probe_cache__show_all_caches(filter);
2435
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002436 ret = init_probe_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302437 if (ret < 0)
2438 return ret;
2439
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002440 ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2441 if (ret < 0)
2442 return ret;
2443
2444 if (kp_fd >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002445 ret = __show_perf_probe_events(kp_fd, true, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002446 if (up_fd >= 0 && ret >= 0)
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002447 ret = __show_perf_probe_events(up_fd, false, filter);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002448 if (kp_fd > 0)
2449 close(kp_fd);
2450 if (up_fd > 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002451 close(up_fd);
Namhyung Kim9bae1e82015-09-10 11:27:05 +09002452 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302453
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002454 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002455}
2456
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002457static int get_new_event_name(char *buf, size_t len, const char *base,
2458 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002459{
2460 int i, ret;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002461 char *p, *nbase;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002462
Naveen N. Rao3099c022015-04-28 17:35:34 +05302463 if (*base == '.')
2464 base++;
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002465 nbase = strdup(base);
2466 if (!nbase)
2467 return -ENOMEM;
Naveen N. Rao3099c022015-04-28 17:35:34 +05302468
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002469 /* Cut off the dot suffixes (e.g. .const, .isra)*/
2470 p = strchr(nbase, '.');
2471 if (p && p != nbase)
2472 *p = '\0';
2473
2474 /* Try no suffix number */
2475 ret = e_snprintf(buf, len, "%s", nbase);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002476 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002477 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002478 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002479 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002480 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002481 goto out;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002482
Masami Hiramatsud761b082009-12-15 10:32:25 -05002483 if (!allow_suffix) {
Wang Nan03e01f52015-11-16 12:10:08 +00002484 pr_warning("Error: event \"%s\" already exists.\n"
2485 " Hint: Remove existing event by 'perf probe -d'\n"
2486 " or force duplicates by 'perf probe -f'\n"
2487 " or set 'force=yes' in BPF source.\n",
2488 buf);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002489 ret = -EEXIST;
2490 goto out;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002491 }
2492
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002493 /* Try to add suffix */
2494 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002495 ret = e_snprintf(buf, len, "%s_%d", nbase, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002496 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002497 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002498 goto out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002499 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002500 if (!strlist__has_entry(namelist, buf))
2501 break;
2502 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002503 if (i == MAX_EVENT_INDEX) {
2504 pr_warning("Too many events are on the same function.\n");
2505 ret = -ERANGE;
2506 }
2507
Masami Hiramatsu663b1152015-10-01 01:41:30 +09002508out:
2509 free(nbase);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002510 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002511}
2512
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002513/* Warn if the current kernel's uprobe implementation is old */
2514static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2515{
2516 int i;
2517 char *buf = synthesize_probe_trace_command(tev);
2518
2519 /* Old uprobe event doesn't support memory dereference */
2520 if (!tev->uprobes || tev->nargs == 0 || !buf)
2521 goto out;
2522
2523 for (i = 0; i < tev->nargs; i++)
2524 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2525 pr_warning("Please upgrade your kernel to at least "
2526 "3.14 to have access to feature %s\n",
2527 tev->args[i].value);
2528 break;
2529 }
2530out:
2531 free(buf);
2532}
2533
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002534/* Set new name from original perf_probe_event and namelist */
2535static int probe_trace_event__set_name(struct probe_trace_event *tev,
2536 struct perf_probe_event *pev,
2537 struct strlist *namelist,
2538 bool allow_suffix)
2539{
2540 const char *event, *group;
2541 char buf[64];
2542 int ret;
2543
Masami Hiramatsubc062232016-07-01 17:03:12 +09002544 /* If probe_event or trace_event already have the name, reuse it */
Masami Hiramatsu42bba262016-07-12 19:05:18 +09002545 if (pev->event && !pev->sdt)
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002546 event = pev->event;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002547 else if (tev->event)
2548 event = tev->event;
2549 else {
2550 /* Or generate new one from probe point */
Wang Nanda15bd92015-08-26 10:57:45 +00002551 if (pev->point.function &&
2552 (strncmp(pev->point.function, "0x", 2) != 0) &&
2553 !strisglob(pev->point.function))
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002554 event = pev->point.function;
2555 else
2556 event = tev->point.realname;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002557 }
Masami Hiramatsu42bba262016-07-12 19:05:18 +09002558 if (pev->group && !pev->sdt)
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002559 group = pev->group;
Masami Hiramatsubc062232016-07-01 17:03:12 +09002560 else if (tev->group)
2561 group = tev->group;
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002562 else
2563 group = PERFPROBE_GROUP;
2564
2565 /* Get an unused new event name */
2566 ret = get_new_event_name(buf, 64, event,
2567 namelist, allow_suffix);
2568 if (ret < 0)
2569 return ret;
2570
2571 event = buf;
2572
2573 tev->event = strdup(event);
2574 tev->group = strdup(group);
2575 if (tev->event == NULL || tev->group == NULL)
2576 return -ENOMEM;
2577
2578 /* Add added event name to namelist */
2579 strlist__add(namelist, event);
2580 return 0;
2581}
2582
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002583static int __open_probe_file_and_namelist(bool uprobe,
2584 struct strlist **namelist)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002585{
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002586 int fd;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002587
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002588 fd = probe_file__open(PF_FL_RW | (uprobe ? PF_FL_UPROBE : 0));
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09002589 if (fd < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002590 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002591
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002592 /* Get current event names */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002593 *namelist = probe_file__get_namelist(fd);
2594 if (!(*namelist)) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002595 pr_debug("Failed to get current event list.\n");
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002596 close(fd);
2597 return -ENOMEM;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002598 }
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002599 return fd;
2600}
2601
2602static int __add_probe_trace_events(struct perf_probe_event *pev,
2603 struct probe_trace_event *tevs,
2604 int ntevs, bool allow_suffix)
2605{
2606 int i, fd[2] = {-1, -1}, up, ret;
2607 struct probe_trace_event *tev = NULL;
2608 struct probe_cache *cache = NULL;
2609 struct strlist *namelist[2] = {NULL, NULL};
2610
2611 up = pev->uprobes ? 1 : 0;
2612 fd[up] = __open_probe_file_and_namelist(up, &namelist[up]);
2613 if (fd[up] < 0)
2614 return fd[up];
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002615
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002616 ret = 0;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002617 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002618 tev = &tevs[i];
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002619 up = tev->uprobes ? 1 : 0;
2620 if (fd[up] == -1) { /* Open the kprobe/uprobe_events */
2621 fd[up] = __open_probe_file_and_namelist(up,
2622 &namelist[up]);
2623 if (fd[up] < 0)
2624 goto close_out;
2625 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002626 /* Skip if the symbol is out of .text or blacklisted */
Masami Hiramatsubc062232016-07-01 17:03:12 +09002627 if (!tev->point.symbol && !pev->uprobes)
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +09002628 continue;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002629
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002630 /* Set new name for tev (and update namelist) */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002631 ret = probe_trace_event__set_name(tev, pev, namelist[up],
Masami Hiramatsua3c9de62015-07-15 18:14:00 +09002632 allow_suffix);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002633 if (ret < 0)
2634 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002635
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002636 ret = probe_file__add_event(fd[up], tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002637 if (ret < 0)
2638 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002639
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002640 /*
2641 * Probes after the first probe which comes from same
2642 * user input are always allowed to add suffix, because
2643 * there might be several addresses corresponding to
2644 * one code line.
2645 */
2646 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002647 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002648 if (ret == -EINVAL && pev->uprobes)
2649 warn_uprobe_event_compat(tev);
Masami Hiramatsu2fd457a2016-06-15 12:28:40 +09002650 if (ret == 0 && probe_conf.cache) {
2651 cache = probe_cache__new(pev->target);
2652 if (!cache ||
2653 probe_cache__add_entry(cache, pev, tevs, ntevs) < 0 ||
2654 probe_cache__commit(cache) < 0)
2655 pr_warning("Failed to add event to probe cache\n");
2656 probe_cache__delete(cache);
2657 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002658
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002659close_out:
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09002660 for (up = 0; up < 2; up++) {
2661 strlist__delete(namelist[up]);
2662 if (fd[up] >= 0)
2663 close(fd[up]);
2664 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002665 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002666}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002667
Wang Nan6bb536c2015-05-29 09:45:47 +00002668static int find_probe_functions(struct map *map, char *name,
2669 struct symbol **syms)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002670{
Namhyung Kim564c62a2015-01-14 20:18:07 +09002671 int found = 0;
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002672 struct symbol *sym;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002673 struct rb_node *tmp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002674
Wang Nan75e4a2a2015-05-15 12:14:44 +00002675 if (map__load(map, NULL) < 0)
2676 return 0;
2677
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002678 map__for_each_symbol(map, sym, tmp) {
Wang Nan6bb536c2015-05-29 09:45:47 +00002679 if (strglobmatch(sym->name, name)) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002680 found++;
Wang Nan6bb536c2015-05-29 09:45:47 +00002681 if (syms && found < probe_conf.max_probes)
2682 syms[found - 1] = sym;
2683 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002684 }
Namhyung Kim564c62a2015-01-14 20:18:07 +09002685
2686 return found;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002687}
2688
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302689void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2690 struct probe_trace_event *tev __maybe_unused,
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05302691 struct map *map __maybe_unused,
2692 struct symbol *sym __maybe_unused) { }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302693
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002694/*
2695 * Find probe function addresses from map.
2696 * Return an error or the number of found probe_trace_event
2697 */
2698static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002699 struct probe_trace_event **tevs)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002700{
2701 struct map *map = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002702 struct ref_reloc_sym *reloc_sym = NULL;
2703 struct symbol *sym;
Wang Nan6bb536c2015-05-29 09:45:47 +00002704 struct symbol **syms = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002705 struct probe_trace_event *tev;
2706 struct perf_probe_point *pp = &pev->point;
2707 struct probe_trace_point *tp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002708 int num_matched_functions;
Masami Hiramatsub0312202015-06-16 20:50:55 +09002709 int ret, i, j, skipped = 0;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302710 char *mod_name;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002711
Masami Hiramatsu44225522015-05-08 10:03:28 +09002712 map = get_target_map(pev->target, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002713 if (!map) {
2714 ret = -EINVAL;
2715 goto out;
2716 }
2717
Wang Nan6bb536c2015-05-29 09:45:47 +00002718 syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2719 if (!syms) {
2720 ret = -ENOMEM;
2721 goto out;
2722 }
2723
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002724 /*
2725 * Load matched symbols: Since the different local symbols may have
2726 * same name but different addresses, this lists all the symbols.
2727 */
Wang Nan6bb536c2015-05-29 09:45:47 +00002728 num_matched_functions = find_probe_functions(map, pp->function, syms);
Namhyung Kim564c62a2015-01-14 20:18:07 +09002729 if (num_matched_functions == 0) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002730 pr_err("Failed to find symbol %s in %s\n", pp->function,
Masami Hiramatsu44225522015-05-08 10:03:28 +09002731 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002732 ret = -ENOENT;
2733 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002734 } else if (num_matched_functions > probe_conf.max_probes) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002735 pr_err("Too many functions matched in %s\n",
Masami Hiramatsu44225522015-05-08 10:03:28 +09002736 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002737 ret = -E2BIG;
2738 goto out;
2739 }
2740
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002741 /* Note that the symbols in the kmodule are not relocated */
2742 if (!pev->uprobes && !pp->retprobe && !pev->target) {
He Kuang0560a0c2015-03-20 09:56:56 +08002743 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002744 if (!reloc_sym) {
2745 pr_warning("Relocated base symbol is not found!\n");
2746 ret = -EINVAL;
2747 goto out;
2748 }
2749 }
2750
2751 /* Setup result trace-probe-events */
2752 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2753 if (!*tevs) {
2754 ret = -ENOMEM;
2755 goto out;
2756 }
2757
2758 ret = 0;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002759
Wang Nan6bb536c2015-05-29 09:45:47 +00002760 for (j = 0; j < num_matched_functions; j++) {
2761 sym = syms[j];
2762
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002763 tev = (*tevs) + ret;
2764 tp = &tev->point;
2765 if (ret == num_matched_functions) {
2766 pr_warning("Too many symbols are listed. Skip it.\n");
2767 break;
2768 }
2769 ret++;
2770
2771 if (pp->offset > sym->end - sym->start) {
2772 pr_warning("Offset %ld is bigger than the size of %s\n",
2773 pp->offset, sym->name);
2774 ret = -ENOENT;
2775 goto err_out;
2776 }
2777 /* Add one probe point */
2778 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
Masami Hiramatsu1a8ac292015-10-02 21:58:32 +09002779
2780 /* Check the kprobe (not in module) is within .text */
2781 if (!pev->uprobes && !pev->target &&
Masami Hiramatsub0312202015-06-16 20:50:55 +09002782 kprobe_warn_out_range(sym->name, tp->address)) {
2783 tp->symbol = NULL; /* Skip it */
2784 skipped++;
2785 } else if (reloc_sym) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002786 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2787 tp->offset = tp->address - reloc_sym->addr;
2788 } else {
2789 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2790 tp->offset = pp->offset;
2791 }
Wang Nan6bb536c2015-05-29 09:45:47 +00002792 tp->realname = strdup_or_goto(sym->name, nomem_out);
2793
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002794 tp->retprobe = pp->retprobe;
Ravi Bangoriac61fb952016-04-26 19:55:40 +05302795 if (pev->target) {
2796 if (pev->uprobes) {
2797 tev->point.module = strdup_or_goto(pev->target,
2798 nomem_out);
2799 } else {
2800 mod_name = find_module_name(pev->target);
2801 tev->point.module =
2802 strdup(mod_name ? mod_name : pev->target);
2803 free(mod_name);
2804 if (!tev->point.module)
2805 goto nomem_out;
2806 }
2807 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002808 tev->uprobes = pev->uprobes;
2809 tev->nargs = pev->nargs;
2810 if (tev->nargs) {
2811 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2812 tev->nargs);
2813 if (tev->args == NULL)
2814 goto nomem_out;
2815 }
2816 for (i = 0; i < tev->nargs; i++) {
2817 if (pev->args[i].name)
2818 tev->args[i].name =
2819 strdup_or_goto(pev->args[i].name,
2820 nomem_out);
2821
2822 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2823 nomem_out);
2824 if (pev->args[i].type)
2825 tev->args[i].type =
2826 strdup_or_goto(pev->args[i].type,
2827 nomem_out);
2828 }
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05302829 arch__fix_tev_from_maps(pev, tev, map, sym);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002830 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09002831 if (ret == skipped) {
2832 ret = -ENOENT;
2833 goto err_out;
2834 }
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002835
2836out:
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002837 put_target_map(map, pev->uprobes);
Wang Nan6bb536c2015-05-29 09:45:47 +00002838 free(syms);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002839 return ret;
2840
2841nomem_out:
2842 ret = -ENOMEM;
2843err_out:
2844 clear_probe_trace_events(*tevs, num_matched_functions);
2845 zfree(tevs);
2846 goto out;
2847}
2848
Wang Nanda15bd92015-08-26 10:57:45 +00002849static int try_to_find_absolute_address(struct perf_probe_event *pev,
2850 struct probe_trace_event **tevs)
2851{
2852 struct perf_probe_point *pp = &pev->point;
2853 struct probe_trace_event *tev;
2854 struct probe_trace_point *tp;
2855 int i, err;
2856
2857 if (!(pev->point.function && !strncmp(pev->point.function, "0x", 2)))
2858 return -EINVAL;
2859 if (perf_probe_event_need_dwarf(pev))
2860 return -EINVAL;
2861
2862 /*
2863 * This is 'perf probe /lib/libc.so 0xabcd'. Try to probe at
2864 * absolute address.
2865 *
2866 * Only one tev can be generated by this.
2867 */
2868 *tevs = zalloc(sizeof(*tev));
2869 if (!*tevs)
2870 return -ENOMEM;
2871
2872 tev = *tevs;
2873 tp = &tev->point;
2874
2875 /*
2876 * Don't use tp->offset, use address directly, because
2877 * in synthesize_probe_trace_command() address cannot be
2878 * zero.
2879 */
2880 tp->address = pev->point.abs_address;
2881 tp->retprobe = pp->retprobe;
2882 tev->uprobes = pev->uprobes;
2883
2884 err = -ENOMEM;
2885 /*
2886 * Give it a '0x' leading symbol name.
2887 * In __add_probe_trace_events, a NULL symbol is interpreted as
2888 * invalud.
2889 */
2890 if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
2891 goto errout;
2892
2893 /* For kprobe, check range */
2894 if ((!tev->uprobes) &&
2895 (kprobe_warn_out_range(tev->point.symbol,
2896 tev->point.address))) {
2897 err = -EACCES;
2898 goto errout;
2899 }
2900
2901 if (asprintf(&tp->realname, "abs_%lx", tp->address) < 0)
2902 goto errout;
2903
2904 if (pev->target) {
2905 tp->module = strdup(pev->target);
2906 if (!tp->module)
2907 goto errout;
2908 }
2909
2910 if (tev->group) {
2911 tev->group = strdup(pev->group);
2912 if (!tev->group)
2913 goto errout;
2914 }
2915
2916 if (pev->event) {
2917 tev->event = strdup(pev->event);
2918 if (!tev->event)
2919 goto errout;
2920 }
2921
2922 tev->nargs = pev->nargs;
2923 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
2924 if (!tev->args) {
2925 err = -ENOMEM;
2926 goto errout;
2927 }
2928 for (i = 0; i < tev->nargs; i++)
2929 copy_to_probe_trace_arg(&tev->args[i], &pev->args[i]);
2930
2931 return 1;
2932
2933errout:
2934 if (*tevs) {
2935 clear_probe_trace_events(*tevs, 1);
2936 *tevs = NULL;
2937 }
2938 return err;
2939}
2940
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302941bool __weak arch__prefers_symtab(void) { return false; }
2942
Masami Hiramatsu42bba262016-07-12 19:05:18 +09002943/* Concatinate two arrays */
2944static void *memcat(void *a, size_t sz_a, void *b, size_t sz_b)
2945{
2946 void *ret;
2947
2948 ret = malloc(sz_a + sz_b);
2949 if (ret) {
2950 memcpy(ret, a, sz_a);
2951 memcpy(ret + sz_a, b, sz_b);
2952 }
2953 return ret;
2954}
2955
2956static int
2957concat_probe_trace_events(struct probe_trace_event **tevs, int *ntevs,
2958 struct probe_trace_event **tevs2, int ntevs2)
2959{
2960 struct probe_trace_event *new_tevs;
2961 int ret = 0;
2962
2963 if (ntevs == 0) {
2964 *tevs = *tevs2;
2965 *ntevs = ntevs2;
2966 *tevs2 = NULL;
2967 return 0;
2968 }
2969
2970 if (*ntevs + ntevs2 > probe_conf.max_probes)
2971 ret = -E2BIG;
2972 else {
2973 /* Concatinate the array of probe_trace_event */
2974 new_tevs = memcat(*tevs, (*ntevs) * sizeof(**tevs),
2975 *tevs2, ntevs2 * sizeof(**tevs2));
2976 if (!new_tevs)
2977 ret = -ENOMEM;
2978 else {
2979 free(*tevs);
2980 *tevs = new_tevs;
2981 *ntevs += ntevs2;
2982 }
2983 }
2984 if (ret < 0)
2985 clear_probe_trace_events(*tevs2, ntevs2);
2986 zfree(tevs2);
2987
2988 return ret;
2989}
2990
2991/*
2992 * Try to find probe_trace_event from given probe caches. Return the number
2993 * of cached events found, if an error occurs return the error.
2994 */
2995static int find_cached_events(struct perf_probe_event *pev,
2996 struct probe_trace_event **tevs,
2997 const char *target)
2998{
2999 struct probe_cache *cache;
3000 struct probe_cache_entry *entry;
3001 struct probe_trace_event *tmp_tevs = NULL;
3002 int ntevs = 0;
3003 int ret = 0;
3004
3005 cache = probe_cache__new(target);
3006 /* Return 0 ("not found") if the target has no probe cache. */
3007 if (!cache)
3008 return 0;
3009
3010 for_each_probe_cache_entry(entry, cache) {
3011 /* Skip the cache entry which has no name */
3012 if (!entry->pev.event || !entry->pev.group)
3013 continue;
3014 if ((!pev->group || strglobmatch(entry->pev.group, pev->group)) &&
3015 strglobmatch(entry->pev.event, pev->event)) {
3016 ret = probe_cache_entry__get_event(entry, &tmp_tevs);
3017 if (ret > 0)
3018 ret = concat_probe_trace_events(tevs, &ntevs,
3019 &tmp_tevs, ret);
3020 if (ret < 0)
3021 break;
3022 }
3023 }
3024 probe_cache__delete(cache);
3025 if (ret < 0) {
3026 clear_probe_trace_events(*tevs, ntevs);
3027 zfree(tevs);
3028 } else {
3029 ret = ntevs;
3030 if (ntevs > 0 && target && target[0] == '/')
3031 pev->uprobes = true;
3032 }
3033
3034 return ret;
3035}
3036
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003037/* Try to find probe_trace_event from all probe caches */
3038static int find_cached_events_all(struct perf_probe_event *pev,
3039 struct probe_trace_event **tevs)
3040{
3041 struct probe_trace_event *tmp_tevs = NULL;
3042 struct strlist *bidlist;
3043 struct str_node *nd;
3044 char *pathname;
3045 int ntevs = 0;
3046 int ret;
3047
3048 /* Get the buildid list of all valid caches */
3049 bidlist = build_id_cache__list_all(true);
3050 if (!bidlist) {
3051 ret = -errno;
3052 pr_debug("Failed to get buildids: %d\n", ret);
3053 return ret;
3054 }
3055
3056 ret = 0;
3057 strlist__for_each_entry(nd, bidlist) {
3058 pathname = build_id_cache__origname(nd->s);
3059 ret = find_cached_events(pev, &tmp_tevs, pathname);
3060 /* In the case of cnt == 0, we just skip it */
3061 if (ret > 0)
3062 ret = concat_probe_trace_events(tevs, &ntevs,
3063 &tmp_tevs, ret);
3064 free(pathname);
3065 if (ret < 0)
3066 break;
3067 }
3068 strlist__delete(bidlist);
3069
3070 if (ret < 0) {
3071 clear_probe_trace_events(*tevs, ntevs);
3072 zfree(tevs);
3073 } else
3074 ret = ntevs;
3075
3076 return ret;
3077}
3078
Masami Hiramatsubc062232016-07-01 17:03:12 +09003079static int find_probe_trace_events_from_cache(struct perf_probe_event *pev,
3080 struct probe_trace_event **tevs)
3081{
3082 struct probe_cache *cache;
3083 struct probe_cache_entry *entry;
3084 struct probe_trace_event *tev;
3085 struct str_node *node;
3086 int ret, i;
3087
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003088 if (pev->sdt) {
Masami Hiramatsu42bba262016-07-12 19:05:18 +09003089 /* For SDT/cached events, we use special search functions */
Masami Hiramatsu1de7b8b2016-07-12 19:05:28 +09003090 if (!pev->target)
3091 return find_cached_events_all(pev, tevs);
3092 else
3093 return find_cached_events(pev, tevs, pev->target);
3094 }
Masami Hiramatsubc062232016-07-01 17:03:12 +09003095 cache = probe_cache__new(pev->target);
3096 if (!cache)
3097 return 0;
3098
3099 entry = probe_cache__find(cache, pev);
3100 if (!entry) {
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003101 /* SDT must be in the cache */
3102 ret = pev->sdt ? -ENOENT : 0;
Masami Hiramatsubc062232016-07-01 17:03:12 +09003103 goto out;
3104 }
3105
3106 ret = strlist__nr_entries(entry->tevlist);
3107 if (ret > probe_conf.max_probes) {
3108 pr_debug("Too many entries matched in the cache of %s\n",
3109 pev->target ? : "kernel");
3110 ret = -E2BIG;
3111 goto out;
3112 }
3113
3114 *tevs = zalloc(ret * sizeof(*tev));
3115 if (!*tevs) {
3116 ret = -ENOMEM;
3117 goto out;
3118 }
3119
3120 i = 0;
3121 strlist__for_each_entry(node, entry->tevlist) {
3122 tev = &(*tevs)[i++];
3123 ret = parse_probe_trace_command(node->s, tev);
3124 if (ret < 0)
3125 goto out;
3126 /* Set the uprobes attribute as same as original */
3127 tev->uprobes = pev->uprobes;
3128 }
3129 ret = i;
3130
3131out:
3132 probe_cache__delete(cache);
3133 return ret;
3134}
3135
Srikar Dronamraju0e608362010-07-29 19:43:51 +05303136static int convert_to_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003137 struct probe_trace_event **tevs)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003138{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00003139 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003140
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003141 if (!pev->group && !pev->sdt) {
Masami Hiramatsu2a12ec12016-04-26 18:04:13 +09003142 /* Set group name if not given */
3143 if (!pev->uprobes) {
3144 pev->group = strdup(PERFPROBE_GROUP);
3145 ret = pev->group ? 0 : -ENOMEM;
3146 } else
3147 ret = convert_exec_to_group(pev->target, &pev->group);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00003148 if (ret != 0) {
3149 pr_warning("Failed to make a group name.\n");
3150 return ret;
3151 }
3152 }
3153
Wang Nanda15bd92015-08-26 10:57:45 +00003154 ret = try_to_find_absolute_address(pev, tevs);
3155 if (ret > 0)
3156 return ret;
3157
Masami Hiramatsubc062232016-07-01 17:03:12 +09003158 /* At first, we need to lookup cache entry */
3159 ret = find_probe_trace_events_from_cache(pev, tevs);
Masami Hiramatsu36a009f2016-07-12 19:04:43 +09003160 if (ret > 0 || pev->sdt) /* SDT can be found only in the cache */
3161 return ret == 0 ? -ENOENT : ret; /* Found in probe cache */
Masami Hiramatsubc062232016-07-01 17:03:12 +09003162
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05303163 if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003164 ret = find_probe_trace_events_from_map(pev, tevs);
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05303165 if (ret > 0)
3166 return ret; /* Found in symbol table */
3167 }
3168
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03003169 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003170 ret = try_to_find_probe_trace_events(pev, tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04003171 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09003172 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003173
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003174 return find_probe_trace_events_from_map(pev, tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003175}
3176
Wang Nan12fae5e2015-09-04 21:16:00 +09003177int convert_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003178{
Namhyung Kim844dffa2015-09-04 21:15:59 +09003179 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003180
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003181 /* Loop 1: convert all events */
3182 for (i = 0; i < npevs; i++) {
Masami Hiramatsub0312202015-06-16 20:50:55 +09003183 /* Init kprobe blacklist if needed */
Wang Nan12fae5e2015-09-04 21:16:00 +09003184 if (!pevs[i].uprobes)
Masami Hiramatsub0312202015-06-16 20:50:55 +09003185 kprobe_blacklist__init();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003186 /* Convert with or without debuginfo */
Wang Nan12fae5e2015-09-04 21:16:00 +09003187 ret = convert_to_probe_trace_events(&pevs[i], &pevs[i].tevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003188 if (ret < 0)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003189 return ret;
Wang Nan12fae5e2015-09-04 21:16:00 +09003190 pevs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003191 }
Masami Hiramatsub0312202015-06-16 20:50:55 +09003192 /* This just release blacklist only if allocated */
3193 kprobe_blacklist__release();
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003194
Namhyung Kim844dffa2015-09-04 21:15:59 +09003195 return 0;
3196}
3197
Wang Nan12fae5e2015-09-04 21:16:00 +09003198int apply_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003199{
3200 int i, ret = 0;
3201
Masami Hiramatsu4235b042010-03-16 18:06:12 -04003202 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03003203 for (i = 0; i < npevs; i++) {
Wang Nan12fae5e2015-09-04 21:16:00 +09003204 ret = __add_probe_trace_events(&pevs[i], pevs[i].tevs,
3205 pevs[i].ntevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09003206 probe_conf.force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03003207 if (ret < 0)
3208 break;
3209 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09003210 return ret;
3211}
3212
Wang Nan12fae5e2015-09-04 21:16:00 +09003213void cleanup_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Namhyung Kim844dffa2015-09-04 21:15:59 +09003214{
3215 int i, j;
3216
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09003217 /* Loop 3: cleanup and free trace events */
3218 for (i = 0; i < npevs; i++) {
Wang Nan12fae5e2015-09-04 21:16:00 +09003219 for (j = 0; j < pevs[i].ntevs; j++)
3220 clear_probe_trace_event(&pevs[i].tevs[j]);
3221 zfree(&pevs[i].tevs);
3222 pevs[i].ntevs = 0;
Namhyung Kima43aac22015-09-10 11:27:04 +09003223 clear_perf_probe_event(&pevs[i]);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09003224 }
Namhyung Kim844dffa2015-09-04 21:15:59 +09003225}
3226
3227int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3228{
3229 int ret;
Namhyung Kim844dffa2015-09-04 21:15:59 +09003230
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003231 ret = init_probe_symbol_maps(pevs->uprobes);
3232 if (ret < 0)
3233 return ret;
3234
Wang Nan12fae5e2015-09-04 21:16:00 +09003235 ret = convert_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09003236 if (ret == 0)
Wang Nan12fae5e2015-09-04 21:16:00 +09003237 ret = apply_perf_probe_events(pevs, npevs);
Namhyung Kim844dffa2015-09-04 21:15:59 +09003238
Wang Nan12fae5e2015-09-04 21:16:00 +09003239 cleanup_perf_probe_events(pevs, npevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003240
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003241 exit_probe_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003242 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04003243}
3244
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003245int del_perf_probe_events(struct strfilter *filter)
Masami Hiramatsufa282442009-12-08 17:03:23 -05003246{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003247 int ret, ret2, ufd = -1, kfd = -1;
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003248 char *str = strfilter__string(filter);
3249
3250 if (!str)
3251 return -EINVAL;
3252
Masami Hiramatsufa282442009-12-08 17:03:23 -05003253 /* Get current event names */
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003254 ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
3255 if (ret < 0)
3256 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303257
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003258 ret = probe_file__del_events(kfd, filter);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003259 if (ret < 0 && ret != -ENOENT)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303260 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05003261
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003262 ret2 = probe_file__del_events(ufd, filter);
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003263 if (ret2 < 0 && ret2 != -ENOENT) {
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003264 ret = ret2;
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003265 goto error;
3266 }
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09003267 ret = 0;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303268
3269error:
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003270 if (kfd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303271 close(kfd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003272 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303273 close(ufd);
Masami Hiramatsu92f6c722015-07-15 18:14:07 +09003274out:
Masami Hiramatsu307a4642015-05-05 11:29:48 +09003275 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04003276
3277 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05003278}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303279
Masami Hiramatsu3c422582011-01-20 23:15:45 +09003280/* TODO: don't use a global variable for filter ... */
3281static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05003282
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003283/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09003284 * If a symbol corresponds to a function with global binding and
3285 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003286 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003287static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09003288 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003289{
Namhyung Kime578da32015-03-06 16:31:29 +09003290 if (strfilter__compare(available_func_filter, sym->name))
Masami Hiramatsu3c422582011-01-20 23:15:45 +09003291 return 0;
3292 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003293}
3294
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003295int show_available_funcs(const char *target, struct strfilter *_filter,
3296 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003297{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003298 struct map *map;
3299 int ret;
3300
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003301 ret = init_probe_symbol_maps(user);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003302 if (ret < 0)
3303 return ret;
3304
3305 /* Get a symbol map */
3306 if (user)
3307 map = dso__new_map(target);
3308 else
3309 map = kernel_get_module_map(target);
3310 if (!map) {
3311 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003312 return -EINVAL;
3313 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003314
3315 /* Load symbols with given filter */
3316 available_func_filter = _filter;
Masami Hiramatsue7049342016-07-19 01:12:41 +09003317 ret = map__load(map, filter_available_functions);
3318 if (ret) {
3319 if (ret == -2) {
3320 char *str = strfilter__string(_filter);
3321 pr_err("Failed to find symbols matched to \"%s\"\n",
3322 str);
3323 free(str);
3324 } else
3325 pr_err("Failed to load symbols in %s\n",
3326 (target) ? : "kernel");
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003327 goto end;
3328 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09003329 if (!dso__sorted_by_name(map->dso, map->type))
3330 dso__sort_by_name(map->dso, map->type);
3331
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003332 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303333 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003334 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
3335end:
3336 if (user) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03003337 map__put(map);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003338 }
Namhyung Kim9bae1e82015-09-10 11:27:05 +09003339 exit_probe_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303340
Masami Hiramatsu2df58632014-02-06 05:32:11 +00003341 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05303342}
3343
Wang Nanda15bd92015-08-26 10:57:45 +00003344int copy_to_probe_trace_arg(struct probe_trace_arg *tvar,
3345 struct perf_probe_arg *pvar)
3346{
3347 tvar->value = strdup(pvar->var);
3348 if (tvar->value == NULL)
3349 return -ENOMEM;
3350 if (pvar->type) {
3351 tvar->type = strdup(pvar->type);
3352 if (tvar->type == NULL)
3353 return -ENOMEM;
3354 }
3355 if (pvar->name) {
3356 tvar->name = strdup(pvar->name);
3357 if (tvar->name == NULL)
3358 return -ENOMEM;
3359 } else
3360 tvar->name = NULL;
3361 return 0;
3362}