blob: b0b8a8080009cdb685777be8600159210369ad36 [file] [log] [blame]
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001/*
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302 * probe-event.c : perf-probe definition to probe_events format converter
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05003 *
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050022#include <sys/utsname.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <errno.h>
27#include <stdio.h>
28#include <unistd.h>
29#include <stdlib.h>
30#include <string.h>
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050031#include <stdarg.h>
32#include <limits.h>
Masami Hiramatsue80711c2011-01-13 21:46:11 +090033#include <elf.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050034
Masami Hiramatsu31facc52010-03-16 18:05:30 -040035#include "util.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050036#include "event.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050037#include "strlist.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050038#include "debug.h"
Masami Hiramatsu72041332010-01-05 17:47:10 -050039#include "cache.h"
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050040#include "color.h"
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040041#include "symbol.h"
42#include "thread.h"
Borislav Petkov553873e2013-12-09 17:14:23 +010043#include <api/fs/debugfs.h>
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -050044#include <api/fs/tracefs.h>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030045#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050046#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040047#include "probe-finder.h"
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 Hiramatsu4de189f2009-11-30 19:20:17 -050058/* If there is no space to write, returns -E2BIG. */
59static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu84988452009-12-07 12:00:53 -050060 __attribute__((format(printf, 3, 4)));
61
62static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050063{
64 int ret;
65 va_list ap;
66 va_start(ap, format);
67 ret = vsnprintf(str, size, format, ap);
68 va_end(ap);
69 if (ret >= (int)size)
70 ret = -E2BIG;
71 return ret;
72}
73
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030074static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +000075static void clear_probe_trace_event(struct probe_trace_event *tev);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000076static struct machine *host_machine;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040077
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090078/* Initialize symbol maps and path of vmlinux/modules */
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000079static int init_symbol_maps(bool user_only)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040080{
Masami Hiramatsu146a1432010-04-12 13:17:42 -040081 int ret;
82
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040083 symbol_conf.sort_by_name = true;
Namhyung Kim680d9262015-03-06 16:31:27 +090084 symbol_conf.allow_aliases = true;
Namhyung Kim0a7e6d12014-08-12 15:40:45 +090085 ret = symbol__init(NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -040086 if (ret < 0) {
87 pr_debug("Failed to init symbol map.\n");
88 goto out;
89 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040090
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000091 if (host_machine || user_only) /* already initialized */
92 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030093
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000094 if (symbol_conf.vmlinux_name)
95 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
96
97 host_machine = machine__new_host();
98 if (!host_machine) {
99 pr_debug("machine__new_host() failed.\n");
100 symbol__exit();
101 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900102 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400103out:
104 if (ret < 0)
105 pr_warning("Failed to init vmlinux path.\n");
106 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400107}
108
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000109static void exit_symbol_maps(void)
110{
111 if (host_machine) {
112 machine__delete(host_machine);
113 host_machine = NULL;
114 }
115 symbol__exit();
116}
117
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900118static struct symbol *__find_kernel_function_by_name(const char *name,
119 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400120{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000121 return machine__find_kernel_function_by_name(host_machine, name, mapp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900122 NULL);
123}
124
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000125static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
126{
127 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
128}
129
130static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
131{
132 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
133 struct kmap *kmap;
134
135 if (map__load(host_machine->vmlinux_maps[MAP__FUNCTION], NULL) < 0)
136 return NULL;
137
138 kmap = map__kmap(host_machine->vmlinux_maps[MAP__FUNCTION]);
Wang Nanba927322015-04-07 08:22:45 +0000139 if (!kmap)
140 return NULL;
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000141 return kmap->ref_reloc_sym;
142}
143
144static u64 kernel_get_symbol_address_by_name(const char *name, bool reloc)
145{
146 struct ref_reloc_sym *reloc_sym;
147 struct symbol *sym;
148 struct map *map;
149
150 /* ref_reloc_sym is just a label. Need a special fix*/
151 reloc_sym = kernel_get_ref_reloc_sym();
152 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
153 return (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
154 else {
155 sym = __find_kernel_function_by_name(name, &map);
156 if (sym)
157 return map->unmap_ip(map, sym->start) -
He Kuangf56847c2015-02-27 18:52:53 +0800158 ((reloc) ? 0 : map->reloc);
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000159 }
160 return 0;
161}
162
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900163static struct map *kernel_get_module_map(const char *module)
164{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000165 struct map_groups *grp = &host_machine->kmaps;
Arnaldo Carvalho de Melo1eee78a2015-05-22 12:58:53 -0300166 struct maps *maps = &grp->maps[MAP__FUNCTION];
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300167 struct map *pos;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900168
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900169 /* A file path -- this is an offline module */
170 if (module && strchr(module, '/'))
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000171 return machine__new_module(host_machine, 0, module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900172
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900173 if (!module)
174 module = "kernel";
175
Arnaldo Carvalho de Melo4bb7123d2015-05-22 11:52:22 -0300176 for (pos = maps__first(maps); pos; pos = map__next(pos)) {
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900177 if (strncmp(pos->dso->short_name + 1, module,
178 pos->dso->short_name_len - 2) == 0) {
179 return pos;
180 }
181 }
182 return NULL;
183}
184
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900185static struct map *get_target_map(const char *target, bool user)
186{
187 /* Init maps of given executable or kernel */
188 if (user)
189 return dso__new_map(target);
190 else
191 return kernel_get_module_map(target);
192}
193
194static void put_target_map(struct map *map, bool user)
195{
196 if (map && user) {
197 /* Only the user map needs to be released */
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -0300198 map__put(map);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900199 }
200}
201
202
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900203static int kernel_get_module_dso(const char *module, struct dso **pdso)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900204{
205 struct dso *dso;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100206 struct map *map;
207 const char *vmlinux_name;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900208 int ret = 0;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900209
210 if (module) {
Waiman Long8fa7d872014-09-29 16:07:28 -0400211 list_for_each_entry(dso, &host_machine->kernel_dsos.head,
212 node) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900213 if (strncmp(dso->short_name + 1, module,
214 dso->short_name_len - 2) == 0)
215 goto found;
216 }
217 pr_debug("Failed to find module %s.\n", module);
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900218 return -ENOENT;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100219 }
220
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000221 map = host_machine->vmlinux_maps[MAP__FUNCTION];
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100222 dso = map->dso;
223
224 vmlinux_name = symbol_conf.vmlinux_name;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900225 dso->load_errno = 0;
226 if (vmlinux_name)
227 ret = dso__load_vmlinux(dso, map, vmlinux_name, false, NULL);
228 else
229 ret = dso__load_vmlinux_path(dso, map, NULL);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900230found:
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900231 *pdso = dso;
232 return ret;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900233}
234
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000235static int convert_exec_to_group(const char *exec, char **result)
236{
237 char *ptr1, *ptr2, *exec_copy;
238 char buf[64];
239 int ret;
240
241 exec_copy = strdup(exec);
242 if (!exec_copy)
243 return -ENOMEM;
244
245 ptr1 = basename(exec_copy);
246 if (!ptr1) {
247 ret = -EINVAL;
248 goto out;
249 }
250
251 ptr2 = strpbrk(ptr1, "-._");
252 if (ptr2)
253 *ptr2 = '\0';
254 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
255 if (ret < 0)
256 goto out;
257
258 *result = strdup(buf);
259 ret = *result ? 0 : -ENOMEM;
260
261out:
262 free(exec_copy);
263 return ret;
264}
265
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900266static void clear_perf_probe_point(struct perf_probe_point *pp)
267{
268 free(pp->file);
269 free(pp->function);
270 free(pp->lazy_line);
271}
272
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000273static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
274{
275 int i;
276
277 for (i = 0; i < ntevs; i++)
278 clear_probe_trace_event(tevs + i);
279}
280
Ingo Molnar89fe8082013-09-30 12:07:11 +0200281#ifdef HAVE_DWARF_SUPPORT
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900282/*
283 * Some binaries like glibc have special symbols which are on the symbol
284 * table, but not in the debuginfo. If we can find the address of the
285 * symbol from map, we can translate the address back to the probe point.
286 */
287static int find_alternative_probe_point(struct debuginfo *dinfo,
288 struct perf_probe_point *pp,
289 struct perf_probe_point *result,
290 const char *target, bool uprobes)
291{
292 struct map *map = NULL;
293 struct symbol *sym;
294 u64 address = 0;
295 int ret = -ENOENT;
296
297 /* This can work only for function-name based one */
298 if (!pp->function || pp->file)
299 return -ENOTSUP;
300
301 map = get_target_map(target, uprobes);
302 if (!map)
303 return -EINVAL;
304
305 /* Find the address of given function */
306 map__for_each_symbol_by_name(map, pp->function, sym) {
Masami Hiramatsue6d7c912015-03-22 20:40:22 +0900307 if (uprobes)
308 address = sym->start;
309 else
310 address = map->unmap_ip(map, sym->start);
Namhyung Kime578da32015-03-06 16:31:29 +0900311 break;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900312 }
313 if (!address) {
314 ret = -ENOENT;
315 goto out;
316 }
Wang Nanf6c15622015-04-08 02:14:34 +0000317 pr_debug("Symbol %s address found : %" PRIx64 "\n",
318 pp->function, address);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900319
320 ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
321 result);
322 if (ret <= 0)
323 ret = (!ret) ? -ENOENT : ret;
324 else {
325 result->offset += pp->offset;
326 result->line += pp->line;
He Kuang9d7b45c2015-04-13 19:41:28 +0800327 result->retprobe = pp->retprobe;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900328 ret = 0;
329 }
330
331out:
332 put_target_map(map, uprobes);
333 return ret;
334
335}
336
337static int get_alternative_probe_event(struct debuginfo *dinfo,
338 struct perf_probe_event *pev,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900339 struct perf_probe_point *tmp)
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900340{
341 int ret;
342
343 memcpy(tmp, &pev->point, sizeof(*tmp));
344 memset(&pev->point, 0, sizeof(pev->point));
345 ret = find_alternative_probe_point(dinfo, tmp, &pev->point,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900346 pev->target, pev->uprobes);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900347 if (ret < 0)
348 memcpy(&pev->point, tmp, sizeof(*tmp));
349
350 return ret;
351}
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000352
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900353static int get_alternative_line_range(struct debuginfo *dinfo,
354 struct line_range *lr,
355 const char *target, bool user)
356{
David Ahern6d4a4892015-03-11 10:36:20 -0400357 struct perf_probe_point pp = { .function = lr->function,
358 .file = lr->file,
359 .line = lr->start };
360 struct perf_probe_point result;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900361 int ret, len = 0;
362
David Ahern6d4a4892015-03-11 10:36:20 -0400363 memset(&result, 0, sizeof(result));
364
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900365 if (lr->end != INT_MAX)
366 len = lr->end - lr->start;
367 ret = find_alternative_probe_point(dinfo, &pp, &result,
368 target, user);
369 if (!ret) {
370 lr->function = result.function;
371 lr->file = result.file;
372 lr->start = result.line;
373 if (lr->end != INT_MAX)
374 lr->end = lr->start + len;
375 clear_perf_probe_point(&pp);
376 }
377 return ret;
378}
379
Masami Hiramatsuff741782011-06-27 16:27:39 +0900380/* Open new debuginfo of given module */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000381static struct debuginfo *open_debuginfo(const char *module, bool silent)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900382{
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000383 const char *path = module;
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900384 char reason[STRERR_BUFSIZE];
385 struct debuginfo *ret = NULL;
386 struct dso *dso = NULL;
387 int err;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900388
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000389 if (!module || !strchr(module, '/')) {
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900390 err = kernel_get_module_dso(module, &dso);
391 if (err < 0) {
392 if (!dso || dso->load_errno == 0) {
393 if (!strerror_r(-err, reason, STRERR_BUFSIZE))
394 strcpy(reason, "(unknown)");
395 } else
396 dso__strerror_load(dso, reason, STRERR_BUFSIZE);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000397 if (!silent)
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900398 pr_err("Failed to find the path for %s: %s\n",
399 module ?: "kernel", reason);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900400 return NULL;
401 }
Masami Hiramatsu419e8732015-05-27 17:37:18 +0900402 path = dso->long_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900403 }
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000404 ret = debuginfo__new(path);
405 if (!ret && !silent) {
406 pr_warning("The %s file has no debug information.\n", path);
407 if (!module || !strtailcmp(path, ".ko"))
408 pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
409 else
410 pr_warning("Rebuild with -g, ");
411 pr_warning("or install an appropriate debuginfo package.\n");
412 }
413 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400414}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300415
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000416
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000417static int get_text_start_address(const char *exec, unsigned long *address)
418{
419 Elf *elf;
420 GElf_Ehdr ehdr;
421 GElf_Shdr shdr;
422 int fd, ret = -ENOENT;
423
424 fd = open(exec, O_RDONLY);
425 if (fd < 0)
426 return -errno;
427
428 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
429 if (elf == NULL)
430 return -EINVAL;
431
432 if (gelf_getehdr(elf, &ehdr) == NULL)
433 goto out;
434
435 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
436 goto out;
437
438 *address = shdr.sh_addr - shdr.sh_offset;
439 ret = 0;
440out:
441 elf_end(elf);
442 return ret;
443}
444
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +0000445/*
446 * Convert trace point to probe point with debuginfo
447 */
448static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
449 struct perf_probe_point *pp,
450 bool is_kprobe)
451{
452 struct debuginfo *dinfo = NULL;
453 unsigned long stext = 0;
454 u64 addr = tp->address;
455 int ret = -ENOENT;
456
457 /* convert the address to dwarf address */
458 if (!is_kprobe) {
459 if (!addr) {
460 ret = -EINVAL;
461 goto error;
462 }
463 ret = get_text_start_address(tp->module, &stext);
464 if (ret < 0)
465 goto error;
466 addr += stext;
467 } else {
468 addr = kernel_get_symbol_address_by_name(tp->symbol, false);
469 if (addr == 0)
470 goto error;
471 addr += tp->offset;
472 }
473
474 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
475 tp->module ? : "kernel");
476
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000477 dinfo = open_debuginfo(tp->module, verbose == 0);
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +0000478 if (dinfo) {
479 ret = debuginfo__find_probe_point(dinfo,
480 (unsigned long)addr, pp);
481 debuginfo__delete(dinfo);
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000482 } else
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +0000483 ret = -ENOENT;
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +0000484
485 if (ret > 0) {
486 pp->retprobe = tp->retprobe;
487 return 0;
488 }
489error:
490 pr_debug("Failed to find corresponding probes from debuginfo.\n");
491 return ret ? : -ENOENT;
492}
493
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000494static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
495 int ntevs, const char *exec)
496{
497 int i, ret = 0;
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000498 unsigned long stext = 0;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000499
500 if (!exec)
501 return 0;
502
503 ret = get_text_start_address(exec, &stext);
504 if (ret < 0)
505 return ret;
506
507 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000508 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000509 tevs[i].point.address -= stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000510 tevs[i].point.module = strdup(exec);
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000511 if (!tevs[i].point.module) {
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000512 ret = -ENOMEM;
513 break;
514 }
515 tevs[i].uprobes = true;
516 }
517
518 return ret;
519}
520
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900521static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
522 int ntevs, const char *module)
523{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900524 int i, ret = 0;
525 char *tmp;
526
527 if (!module)
528 return 0;
529
530 tmp = strrchr(module, '/');
531 if (tmp) {
532 /* This is a module path -- get the module name */
533 module = strdup(tmp + 1);
534 if (!module)
535 return -ENOMEM;
536 tmp = strchr(module, '.');
537 if (tmp)
538 *tmp = '\0';
539 tmp = (char *)module; /* For free() */
540 }
541
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900542 for (i = 0; i < ntevs; i++) {
543 tevs[i].point.module = strdup(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900544 if (!tevs[i].point.module) {
545 ret = -ENOMEM;
546 break;
547 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900548 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900549
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -0300550 free(tmp);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900551 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900552}
553
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000554/* Post processing the probe events */
555static int post_process_probe_trace_events(struct probe_trace_event *tevs,
556 int ntevs, const char *module,
557 bool uprobe)
558{
559 struct ref_reloc_sym *reloc_sym;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900560 u64 etext_addr;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000561 char *tmp;
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900562 int i, skipped = 0;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000563
564 if (uprobe)
565 return add_exec_to_probe_trace_events(tevs, ntevs, module);
566
567 /* Note that currently ref_reloc_sym based probe is not for drivers */
568 if (module)
569 return add_module_to_probe_trace_events(tevs, ntevs, module);
570
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000571 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000572 if (!reloc_sym) {
573 pr_warning("Relocated base symbol is not found!\n");
574 return -EINVAL;
575 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900576 /* Get the address of _etext for checking non-probable text symbol */
577 etext_addr = kernel_get_symbol_address_by_name("_etext", false);
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000578
579 for (i = 0; i < ntevs; i++) {
Namhyung Kim25dd9172015-01-14 20:18:08 +0900580 if (tevs[i].point.address && !tevs[i].point.retprobe) {
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900581 /* If we found a wrong one, mark it by NULL symbol */
582 if (etext_addr < tevs[i].point.address) {
583 pr_warning("%s+%lu is out of .text, skip it.\n",
584 tevs[i].point.symbol, tevs[i].point.offset);
585 tmp = NULL;
586 skipped++;
587 } else {
588 tmp = strdup(reloc_sym->name);
589 if (!tmp)
590 return -ENOMEM;
591 }
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900592 /* If we have no realname, use symbol for it */
593 if (!tevs[i].point.realname)
594 tevs[i].point.realname = tevs[i].point.symbol;
595 else
596 free(tevs[i].point.symbol);
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000597 tevs[i].point.symbol = tmp;
598 tevs[i].point.offset = tevs[i].point.address -
599 reloc_sym->unrelocated_addr;
600 }
601 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900602 return skipped;
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000603}
604
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300605/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530606static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900607 struct probe_trace_event **tevs)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300608{
609 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900610 struct perf_probe_point tmp;
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530611 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900612 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300613
Masami Hiramatsu44225522015-05-08 10:03:28 +0900614 dinfo = open_debuginfo(pev->target, !need_dwarf);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900615 if (!dinfo) {
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000616 if (need_dwarf)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900617 return -ENOENT;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900618 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300619 return 0;
620 }
621
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000622 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900623 /* Searching trace events corresponding to a probe event */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900624 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900625
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900626 if (ntevs == 0) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900627 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900628 if (!ret) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900629 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900630 /*
631 * Write back to the original probe_event for
632 * setting appropriate (user given) event name
633 */
634 clear_perf_probe_point(&pev->point);
635 memcpy(&pev->point, &tmp, sizeof(tmp));
636 }
637 }
638
Masami Hiramatsuff741782011-06-27 16:27:39 +0900639 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300640
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400641 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000642 pr_debug("Found %d probe_trace_events.\n", ntevs);
643 ret = post_process_probe_trace_events(*tevs, ntevs,
Masami Hiramatsu44225522015-05-08 10:03:28 +0900644 pev->target, pev->uprobes);
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900645 if (ret < 0 || ret == ntevs) {
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000646 clear_probe_trace_events(*tevs, ntevs);
647 zfree(tevs);
648 }
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +0900649 if (ret != ntevs)
650 return ret < 0 ? ret : ntevs;
651 ntevs = 0;
652 /* Fall through */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400653 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300654
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400655 if (ntevs == 0) { /* No error but failed to find probe point. */
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900656 pr_warning("Probe point '%s' not found.\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400657 synthesize_perf_probe_point(&pev->point));
Masami Hiramatsu0687eba2015-03-06 16:31:25 +0900658 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400659 }
660 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400661 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
662 if (ntevs == -EBADF) {
663 pr_warning("Warning: No dwarf info found in the vmlinux - "
664 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
665 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900666 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400667 return 0;
668 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300669 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400670 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300671}
672
673#define LINEBUF_SIZE 256
674#define NR_ADDITIONAL_LINES 2
675
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100676static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300677{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000678 char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100679 const char *color = show_num ? "" : PERF_COLOR_BLUE;
680 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300681
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100682 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300683 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
684 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100685 if (skip)
686 continue;
687 if (!prefix) {
688 prefix = show_num ? "%7d " : " ";
689 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300690 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100691 color_fprintf(stdout, color, "%s", buf);
692
693 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400694
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100695 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300696error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100697 if (ferror(fp)) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000698 pr_warning("File read error: %s\n",
699 strerror_r(errno, sbuf, sizeof(sbuf)));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100700 return -1;
701 }
702 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300703}
704
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100705static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
706{
707 int rv = __show_one_line(fp, l, skip, show_num);
708 if (rv == 0) {
709 pr_warning("Source file is shorter than expected.\n");
710 rv = -1;
711 }
712 return rv;
713}
714
715#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
716#define show_one_line(f,l) _show_one_line(f,l,false,false)
717#define skip_one_line(f,l) _show_one_line(f,l,true,false)
718#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
719
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300720/*
721 * Show line-range always requires debuginfo to find source file and
722 * line number.
723 */
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900724static int __show_line_range(struct line_range *lr, const char *module,
725 bool user)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300726{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400727 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000728 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900729 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300730 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900731 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900732 char *tmp;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000733 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300734
735 /* Search a line range */
Masami Hiramatsu92561cb2014-08-15 01:44:32 +0000736 dinfo = open_debuginfo(module, false);
737 if (!dinfo)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900738 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400739
Masami Hiramatsuff741782011-06-27 16:27:39 +0900740 ret = debuginfo__find_line_range(dinfo, lr);
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900741 if (!ret) { /* Not found, retry with an alternative */
742 ret = get_alternative_line_range(dinfo, lr, module, user);
743 if (!ret)
744 ret = debuginfo__find_line_range(dinfo, lr);
745 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900746 debuginfo__delete(dinfo);
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000747 if (ret == 0 || ret == -ENOENT) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400748 pr_warning("Specified source line is not found.\n");
749 return -ENOENT;
750 } else if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000751 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400752 return ret;
753 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300754
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900755 /* Convert source file path */
756 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900757 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
He Kuanga78604d2015-03-04 18:01:42 +0800758
759 /* Free old path when new path is assigned */
760 if (tmp != lr->path)
761 free(tmp);
762
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900763 if (ret < 0) {
Masami Hiramatsu5ee05b82014-06-06 07:14:06 +0000764 pr_warning("Failed to find source file path.\n");
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900765 return ret;
766 }
767
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300768 setup_pager();
769
770 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900771 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300772 lr->start - lr->offset);
773 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100774 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300775
776 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400777 if (fp == NULL) {
778 pr_warning("Failed to open %s: %s\n", lr->path,
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000779 strerror_r(errno, sbuf, sizeof(sbuf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400780 return -errno;
781 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300782 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100783 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100784 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100785 if (ret < 0)
786 goto end;
787 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300788
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000789 intlist__for_each(ln, lr->line_list) {
790 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100791 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100792 if (ret < 0)
793 goto end;
794 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100795 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400796 if (ret < 0)
797 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300798 }
799
800 if (lr->end == INT_MAX)
801 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100802 while (l <= lr->end) {
803 ret = show_one_line_or_eof(fp, l++ - lr->offset);
804 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100805 break;
806 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400807end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300808 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400809 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300810}
811
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000812int show_line_range(struct line_range *lr, const char *module, bool user)
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000813{
814 int ret;
815
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000816 ret = init_symbol_maps(user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000817 if (ret < 0)
818 return ret;
Masami Hiramatsu811dd2a2015-03-06 16:31:22 +0900819 ret = __show_line_range(lr, module, user);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000820 exit_symbol_maps();
821
822 return ret;
823}
824
Masami Hiramatsuff741782011-06-27 16:27:39 +0900825static int show_available_vars_at(struct debuginfo *dinfo,
826 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900827 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900828{
829 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900830 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900831 struct str_node *node;
832 struct variable_list *vls = NULL, *vl;
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900833 struct perf_probe_point tmp;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900834 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900835
836 buf = synthesize_perf_probe_point(&pev->point);
837 if (!buf)
838 return -EINVAL;
839 pr_debug("Searching variables at %s\n", buf);
840
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900841 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900842 if (!ret) { /* Not found, retry with an alternative */
Masami Hiramatsu44225522015-05-08 10:03:28 +0900843 ret = get_alternative_probe_event(dinfo, pev, &tmp);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900844 if (!ret) {
845 ret = debuginfo__find_available_vars_at(dinfo, pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900846 &vls);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +0900847 /* Release the old probe_point */
848 clear_perf_probe_point(&tmp);
849 }
850 }
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900851 if (ret <= 0) {
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000852 if (ret == 0 || ret == -ENOENT) {
853 pr_err("Failed to find the address of %s\n", buf);
854 ret = -ENOENT;
855 } else
856 pr_warning("Debuginfo analysis failed.\n");
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900857 goto end;
858 }
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +0000859
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900860 /* Some variables are found */
861 fprintf(stdout, "Available variables at %s\n", buf);
862 for (i = 0; i < ret; i++) {
863 vl = &vls[i];
864 /*
865 * A probe point might be converted to
866 * several trace points.
867 */
868 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
869 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300870 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900871 nvars = 0;
872 if (vl->vars) {
873 strlist__for_each(node, vl->vars) {
874 var = strchr(node->s, '\t') + 1;
875 if (strfilter__compare(_filter, var)) {
876 fprintf(stdout, "\t\t%s\n", node->s);
877 nvars++;
878 }
879 }
880 strlist__delete(vl->vars);
881 }
882 if (nvars == 0)
883 fprintf(stdout, "\t\t(No matched variables)\n");
884 }
885 free(vls);
886end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900887 free(buf);
888 return ret;
889}
890
891/* Show available variables on given probe point */
892int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900893 struct strfilter *_filter)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900894{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900895 int i, ret = 0;
896 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900897
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000898 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900899 if (ret < 0)
900 return ret;
901
Masami Hiramatsu44225522015-05-08 10:03:28 +0900902 dinfo = open_debuginfo(pevs->target, false);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900903 if (!dinfo) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000904 ret = -ENOENT;
905 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900906 }
907
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900908 setup_pager();
909
Masami Hiramatsuff741782011-06-27 16:27:39 +0900910 for (i = 0; i < npevs && ret >= 0; i++)
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900911 ret = show_available_vars_at(dinfo, &pevs[i], _filter);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900912
913 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000914out:
915 exit_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900916 return ret;
917}
918
Ingo Molnar89fe8082013-09-30 12:07:11 +0200919#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300920
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +0000921static int
922find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
923 struct perf_probe_point *pp __maybe_unused,
924 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300925{
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +0000926 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300927}
928
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530929static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900930 struct probe_trace_event **tevs __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300931{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400932 if (perf_probe_event_need_dwarf(pev)) {
933 pr_warning("Debuginfo-analysis is not supported.\n");
934 return -ENOSYS;
935 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530936
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300937 return 0;
938}
939
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300940int show_line_range(struct line_range *lr __maybe_unused,
Masami Hiramatsu2b394bc2014-09-17 08:40:54 +0000941 const char *module __maybe_unused,
942 bool user __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300943{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400944 pr_warning("Debuginfo-analysis is not supported.\n");
945 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300946}
947
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300948int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +0900949 int npevs __maybe_unused,
950 struct strfilter *filter __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900951{
952 pr_warning("Debuginfo-analysis is not supported.\n");
953 return -ENOSYS;
954}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400955#endif
956
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000957void line_range__clear(struct line_range *lr)
958{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000959 free(lr->function);
960 free(lr->file);
961 free(lr->path);
962 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000963 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000964 memset(lr, 0, sizeof(*lr));
965}
966
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000967int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000968{
969 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000970 lr->line_list = intlist__new(NULL);
971 if (!lr->line_list)
972 return -ENOMEM;
973 else
974 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000975}
976
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100977static int parse_line_num(char **ptr, int *val, const char *what)
978{
979 const char *start = *ptr;
980
981 errno = 0;
982 *val = strtol(*ptr, ptr, 0);
983 if (errno || *ptr == start) {
984 semantic_error("'%s' is not a valid number.\n", what);
985 return -EINVAL;
986 }
987 return 0;
988}
989
Masami Hiramatsu573709f2015-05-06 21:46:47 +0900990/* Check the name is good for event, group or function */
991static bool is_c_func_name(const char *name)
992{
993 if (!isalpha(*name) && *name != '_')
994 return false;
995 while (*++name != '\0') {
996 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
997 return false;
998 }
999 return true;
1000}
1001
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001002/*
1003 * Stuff 'lr' according to the line range described by 'arg'.
1004 * The line range syntax is described by:
1005 *
1006 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001007 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001008 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001009int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001010{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001011 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001012 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +01001013
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001014 if (!name)
1015 return -ENOMEM;
1016
1017 lr->start = 0;
1018 lr->end = INT_MAX;
1019
1020 range = strchr(name, ':');
1021 if (range) {
1022 *range++ = '\0';
1023
1024 err = parse_line_num(&range, &lr->start, "start line");
1025 if (err)
1026 goto err;
1027
1028 if (*range == '+' || *range == '-') {
1029 const char c = *range++;
1030
1031 err = parse_line_num(&range, &lr->end, "end line");
1032 if (err)
1033 goto err;
1034
1035 if (c == '+') {
1036 lr->end += lr->start;
1037 /*
1038 * Adjust the number of lines here.
1039 * If the number of lines == 1, the
1040 * the end of line should be equal to
1041 * the start of line.
1042 */
1043 lr->end--;
1044 }
1045 }
1046
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001047 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001048
1049 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001050 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001051 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001052 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001053 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001054 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001055 if (*range != '\0') {
1056 semantic_error("Tailing with invalid str '%s'.\n", range);
1057 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001058 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001059 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001060
Masami Hiramatsue116dfa2011-02-10 18:08:10 +09001061 file = strchr(name, '@');
1062 if (file) {
1063 *file = '\0';
1064 lr->file = strdup(++file);
1065 if (lr->file == NULL) {
1066 err = -ENOMEM;
1067 goto err;
1068 }
1069 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001070 } else if (strchr(name, '/') || strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001071 lr->file = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001072 else if (is_c_func_name(name))/* We reuse it for checking funcname */
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001073 lr->function = name;
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001074 else { /* Invalid name */
1075 semantic_error("'%s' is not a valid function name.\n", name);
1076 err = -EINVAL;
1077 goto err;
1078 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001079
1080 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +01001081err:
1082 free(name);
1083 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001084}
1085
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001086/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001087static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001088{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001089 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001090 char *ptr, *tmp;
1091 char c, nc = 0;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301092 bool file_spec = false;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001093 /*
1094 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001095 * perf probe [EVENT=]SRC[:LN|;PTN]
1096 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001097 *
1098 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001099 */
Wang Nane59d29e2015-04-28 08:46:09 +00001100 if (!arg)
1101 return -EINVAL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001102
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001103 ptr = strpbrk(arg, ";=@+%");
1104 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001105 *ptr = '\0';
1106 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001107 if (strchr(arg, ':')) {
1108 semantic_error("Group name is not supported yet.\n");
1109 return -ENOTSUP;
1110 }
Masami Hiramatsu573709f2015-05-06 21:46:47 +09001111 if (!is_c_func_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -05001112 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001113 "follow C symbol-naming rule.\n", arg);
1114 return -EINVAL;
1115 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001116 pev->event = strdup(arg);
1117 if (pev->event == NULL)
1118 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001119 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -05001120 arg = tmp;
1121 }
1122
Naveen N. Rao3099c022015-04-28 17:35:34 +05301123 /*
1124 * Check arg is function or file name and copy it.
1125 *
1126 * We consider arg to be a file spec if and only if it satisfies
1127 * all of the below criteria::
1128 * - it does not include any of "+@%",
1129 * - it includes one of ":;", and
1130 * - it has a period '.' in the name.
1131 *
1132 * Otherwise, we consider arg to be a function specification.
1133 */
1134 if (!strpbrk(arg, "+@%") && (ptr = strpbrk(arg, ";:")) != NULL) {
1135 /* This is a file spec if it includes a '.' before ; or : */
1136 if (memchr(arg, '.', ptr - arg))
1137 file_spec = true;
1138 }
1139
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001140 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001141 if (ptr) {
1142 nc = *ptr;
1143 *ptr++ = '\0';
1144 }
1145
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001146 tmp = strdup(arg);
1147 if (tmp == NULL)
1148 return -ENOMEM;
1149
Naveen N. Rao3099c022015-04-28 17:35:34 +05301150 if (file_spec)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001151 pp->file = tmp;
Naveen N. Rao3099c022015-04-28 17:35:34 +05301152 else
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001153 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001154
1155 /* Parse other options */
1156 while (ptr) {
1157 arg = ptr;
1158 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001159 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001160 pp->lazy_line = strdup(arg);
1161 if (pp->lazy_line == NULL)
1162 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001163 break;
1164 }
1165 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001166 if (ptr) {
1167 nc = *ptr;
1168 *ptr++ = '\0';
1169 }
1170 switch (c) {
1171 case ':': /* Line number */
1172 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001173 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001174 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001175 " in line number.\n");
1176 return -EINVAL;
1177 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001178 break;
1179 case '+': /* Byte offset from a symbol */
1180 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001181 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001182 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001183 " in offset.\n");
1184 return -EINVAL;
1185 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001186 break;
1187 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001188 if (pp->file) {
1189 semantic_error("SRC@SRC is not allowed.\n");
1190 return -EINVAL;
1191 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001192 pp->file = strdup(arg);
1193 if (pp->file == NULL)
1194 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001195 break;
1196 case '%': /* Probe places */
1197 if (strcmp(arg, "return") == 0) {
1198 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001199 } else { /* Others not supported yet */
1200 semantic_error("%%%s is not supported.\n", arg);
1201 return -ENOTSUP;
1202 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001203 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001204 default: /* Buggy case */
1205 pr_err("This program has a bug at %s:%d.\n",
1206 __FILE__, __LINE__);
1207 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001208 break;
1209 }
1210 }
1211
1212 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001213 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001214 semantic_error("Lazy pattern can't be used with"
1215 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001216 return -EINVAL;
1217 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001218
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001219 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001220 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001221 return -EINVAL;
1222 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001223
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001224 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001225 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001226 return -EINVAL;
1227 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001228
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001229 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001230 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001231 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001232 return -EINVAL;
1233 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001234
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001235 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001236 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001237 return -EINVAL;
1238 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001239
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001240 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001241 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001242 return -EINVAL;
1243 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001244
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001245 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001246 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001247 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001248 return -EINVAL;
1249 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001250
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001251 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001252 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1253 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001254 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001255}
1256
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001257/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001258static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001259{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001260 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001261 struct perf_probe_arg_field **fieldp;
1262
1263 pr_debug("parsing arg: %s into ", str);
1264
Masami Hiramatsu48481932010-04-12 13:16:53 -04001265 tmp = strchr(str, '=');
1266 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001267 arg->name = strndup(str, tmp - str);
1268 if (arg->name == NULL)
1269 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001270 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001271 str = tmp + 1;
1272 }
1273
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001274 tmp = strchr(str, ':');
1275 if (tmp) { /* Type setting */
1276 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001277 arg->type = strdup(tmp + 1);
1278 if (arg->type == NULL)
1279 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001280 pr_debug("type:%s ", arg->type);
1281 }
1282
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001283 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001284 if (!is_c_varname(str) || !tmp) {
1285 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001286 arg->var = strdup(str);
1287 if (arg->var == NULL)
1288 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001289 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001290 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001291 }
1292
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001293 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001294 arg->var = strndup(str, tmp - str);
1295 if (arg->var == NULL)
1296 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001297 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001298 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001299 fieldp = &arg->field;
1300
1301 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001302 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1303 if (*fieldp == NULL)
1304 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001305 if (*tmp == '[') { /* Array */
1306 str = tmp;
1307 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001308 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001309 if (*tmp != ']' || tmp == str + 1) {
1310 semantic_error("Array index must be a"
1311 " number.\n");
1312 return -EINVAL;
1313 }
1314 tmp++;
1315 if (*tmp == '\0')
1316 tmp = NULL;
1317 } else { /* Structure */
1318 if (*tmp == '.') {
1319 str = tmp + 1;
1320 (*fieldp)->ref = false;
1321 } else if (tmp[1] == '>') {
1322 str = tmp + 2;
1323 (*fieldp)->ref = true;
1324 } else {
1325 semantic_error("Argument parse error: %s\n",
1326 str);
1327 return -EINVAL;
1328 }
1329 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001330 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001331 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001332 (*fieldp)->name = strndup(str, tmp - str);
1333 if ((*fieldp)->name == NULL)
1334 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001335 if (*str != '[')
1336 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001337 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1338 fieldp = &(*fieldp)->next;
1339 }
1340 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001341 (*fieldp)->name = strdup(str);
1342 if ((*fieldp)->name == NULL)
1343 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001344 if (*str != '[')
1345 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001346 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001347
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001348 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001349 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001350 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001351 if (arg->name == NULL)
1352 return -ENOMEM;
1353 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001354 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001355}
1356
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001357/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001358int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001359{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001360 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001361 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001362
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001363 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001364 if (!argv) {
1365 pr_debug("Failed to split arguments.\n");
1366 return -ENOMEM;
1367 }
1368 if (argc - 1 > MAX_PROBE_ARGS) {
1369 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1370 ret = -ERANGE;
1371 goto out;
1372 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001373 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001374 ret = parse_perf_probe_point(argv[0], pev);
1375 if (ret < 0)
1376 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001377
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001378 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001379 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001380 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1381 if (pev->args == NULL) {
1382 ret = -ENOMEM;
1383 goto out;
1384 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001385 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1386 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1387 if (ret >= 0 &&
1388 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001389 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001390 " kretprobe.\n");
1391 ret = -EINVAL;
1392 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001393 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001394out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001395 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001396
1397 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001398}
1399
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001400/* Return true if this perf_probe_event requires debuginfo */
1401bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001402{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001403 int i;
1404
1405 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1406 return true;
1407
1408 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -04001409 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001410 return true;
1411
1412 return false;
1413}
1414
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301415/* Parse probe_events event into struct probe_point */
1416static int parse_probe_trace_command(const char *cmd,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001417 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001418{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301419 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001420 char pr;
1421 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001422 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001423 int ret, i, argc;
1424 char **argv;
1425
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301426 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001427 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001428 if (!argv) {
1429 pr_debug("Failed to split arguments.\n");
1430 return -ENOMEM;
1431 }
1432 if (argc < 2) {
1433 semantic_error("Too few probe arguments.\n");
1434 ret = -ERANGE;
1435 goto out;
1436 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001437
1438 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001439 argv0_str = strdup(argv[0]);
1440 if (argv0_str == NULL) {
1441 ret = -ENOMEM;
1442 goto out;
1443 }
1444 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1445 fmt2_str = strtok_r(NULL, "/", &fmt);
1446 fmt3_str = strtok_r(NULL, " \t", &fmt);
1447 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1448 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001449 semantic_error("Failed to parse event name: %s\n", argv[0]);
1450 ret = -EINVAL;
1451 goto out;
1452 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001453 pr = fmt1_str[0];
1454 tev->group = strdup(fmt2_str);
1455 tev->event = strdup(fmt3_str);
1456 if (tev->group == NULL || tev->event == NULL) {
1457 ret = -ENOMEM;
1458 goto out;
1459 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001460 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001461
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001462 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001463
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001464 /* Scan module name(if there), function name and offset */
1465 p = strchr(argv[1], ':');
1466 if (p) {
1467 tp->module = strndup(argv[1], p - argv[1]);
1468 p++;
1469 } else
1470 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001471 fmt1_str = strtok_r(p, "+", &fmt);
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +00001472 if (fmt1_str[0] == '0') /* only the address started with 0x */
1473 tp->address = strtoul(fmt1_str, NULL, 0);
1474 else {
1475 /* Only the symbol-based probe has offset */
1476 tp->symbol = strdup(fmt1_str);
1477 if (tp->symbol == NULL) {
1478 ret = -ENOMEM;
1479 goto out;
1480 }
1481 fmt2_str = strtok_r(NULL, "", &fmt);
1482 if (fmt2_str == NULL)
1483 tp->offset = 0;
1484 else
1485 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001486 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001487
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001488 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301489 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001490 if (tev->args == NULL) {
1491 ret = -ENOMEM;
1492 goto out;
1493 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001494 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001495 p = strchr(argv[i + 2], '=');
1496 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001497 *p++ = '\0';
1498 else
1499 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001500 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001501 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001502 tev->args[i].value = strdup(p);
1503 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1504 ret = -ENOMEM;
1505 goto out;
1506 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001507 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001508 ret = 0;
1509out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001510 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001511 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001512 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001513}
1514
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001515/* Compose only probe arg */
1516int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1517{
1518 struct perf_probe_arg_field *field = pa->field;
1519 int ret;
1520 char *tmp = buf;
1521
Masami Hiramatsu48481932010-04-12 13:16:53 -04001522 if (pa->name && pa->var)
1523 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1524 else
1525 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001526 if (ret <= 0)
1527 goto error;
1528 tmp += ret;
1529 len -= ret;
1530
1531 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001532 if (field->name[0] == '[')
1533 ret = e_snprintf(tmp, len, "%s", field->name);
1534 else
1535 ret = e_snprintf(tmp, len, "%s%s",
1536 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001537 if (ret <= 0)
1538 goto error;
1539 tmp += ret;
1540 len -= ret;
1541 field = field->next;
1542 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001543
1544 if (pa->type) {
1545 ret = e_snprintf(tmp, len, ":%s", pa->type);
1546 if (ret <= 0)
1547 goto error;
1548 tmp += ret;
1549 len -= ret;
1550 }
1551
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001552 return tmp - buf;
1553error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001554 pr_debug("Failed to synthesize perf probe argument: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001555 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001556}
1557
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001558/* Compose only probe point (not argument) */
1559static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001560{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001561 char *buf, *tmp;
1562 char offs[32] = "", line[32] = "", file[32] = "";
1563 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001564
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001565 buf = zalloc(MAX_CMDLEN);
1566 if (buf == NULL) {
1567 ret = -ENOMEM;
1568 goto error;
1569 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001570 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001571 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001572 if (ret <= 0)
1573 goto error;
1574 }
1575 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001576 ret = e_snprintf(line, 32, ":%d", pp->line);
1577 if (ret <= 0)
1578 goto error;
1579 }
1580 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001581 tmp = pp->file;
1582 len = strlen(tmp);
1583 if (len > 30) {
1584 tmp = strchr(pp->file + len - 30, '/');
1585 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1586 }
1587 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001588 if (ret <= 0)
1589 goto error;
1590 }
1591
1592 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001593 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1594 offs, pp->retprobe ? "%return" : "", line,
1595 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001596 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001597 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001598 if (ret <= 0)
1599 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001600
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001601 return buf;
1602error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001603 pr_debug("Failed to synthesize perf probe point: %d\n", ret);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001604 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001605 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001606}
1607
1608#if 0
1609char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1610{
1611 char *buf;
1612 int i, len, ret;
1613
1614 buf = synthesize_perf_probe_point(&pev->point);
1615 if (!buf)
1616 return NULL;
1617
1618 len = strlen(buf);
1619 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001620 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001621 pev->args[i].name);
1622 if (ret <= 0) {
1623 free(buf);
1624 return NULL;
1625 }
1626 len += ret;
1627 }
1628
1629 return buf;
1630}
1631#endif
1632
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301633static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001634 char **buf, size_t *buflen,
1635 int depth)
1636{
1637 int ret;
1638 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301639 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001640 buflen, depth + 1);
1641 if (depth < 0)
1642 goto out;
1643 }
1644
1645 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1646 if (ret < 0)
1647 depth = ret;
1648 else {
1649 *buf += ret;
1650 *buflen -= ret;
1651 }
1652out:
1653 return depth;
1654
1655}
1656
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301657static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001658 char *buf, size_t buflen)
1659{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301660 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001661 int ret, depth = 0;
1662 char *tmp = buf;
1663
1664 /* Argument name or separator */
1665 if (arg->name)
1666 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1667 else
1668 ret = e_snprintf(buf, buflen, " ");
1669 if (ret < 0)
1670 return ret;
1671 buf += ret;
1672 buflen -= ret;
1673
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001674 /* Special case: @XXX */
1675 if (arg->value[0] == '@' && arg->ref)
1676 ref = ref->next;
1677
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001678 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001679 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301680 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001681 &buflen, 1);
1682 if (depth < 0)
1683 return depth;
1684 }
1685
1686 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001687 if (arg->value[0] == '@' && arg->ref)
1688 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1689 arg->ref->offset);
1690 else
1691 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001692 if (ret < 0)
1693 return ret;
1694 buf += ret;
1695 buflen -= ret;
1696
1697 /* Closing */
1698 while (depth--) {
1699 ret = e_snprintf(buf, buflen, ")");
1700 if (ret < 0)
1701 return ret;
1702 buf += ret;
1703 buflen -= ret;
1704 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001705 /* Print argument type */
1706 if (arg->type) {
1707 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1708 if (ret <= 0)
1709 return ret;
1710 buf += ret;
1711 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001712
1713 return buf - tmp;
1714}
1715
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301716char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001717{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301718 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001719 char *buf;
1720 int i, len, ret;
1721
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001722 buf = zalloc(MAX_CMDLEN);
1723 if (buf == NULL)
1724 return NULL;
1725
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001726 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
1727 tev->group, tev->event);
1728 if (len <= 0)
1729 goto error;
1730
1731 /* Uprobes must have tp->address and tp->module */
1732 if (tev->uprobes && (!tp->address || !tp->module))
1733 goto error;
1734
1735 /* Use the tp->address for uprobes */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301736 if (tev->uprobes)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001737 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s:0x%lx",
1738 tp->module, tp->address);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301739 else
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001740 ret = e_snprintf(buf + len, MAX_CMDLEN - len, "%s%s%s+%lu",
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301741 tp->module ?: "", tp->module ? ":" : "",
1742 tp->symbol, tp->offset);
1743
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001744 if (ret <= 0)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001745 goto error;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00001746 len += ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001747
1748 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301749 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001750 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001751 if (ret <= 0)
1752 goto error;
1753 len += ret;
1754 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001755
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001756 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001757error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001758 free(buf);
1759 return NULL;
1760}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001761
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +00001762static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1763 struct perf_probe_point *pp,
1764 bool is_kprobe)
1765{
1766 struct symbol *sym = NULL;
1767 struct map *map;
1768 u64 addr;
1769 int ret = -ENOENT;
1770
1771 if (!is_kprobe) {
1772 map = dso__new_map(tp->module);
1773 if (!map)
1774 goto out;
1775 addr = tp->address;
1776 sym = map__find_symbol(map, addr, NULL);
1777 } else {
1778 addr = kernel_get_symbol_address_by_name(tp->symbol, true);
1779 if (addr) {
1780 addr += tp->offset;
1781 sym = __find_kernel_function(addr, &map);
1782 }
1783 }
1784 if (!sym)
1785 goto out;
1786
1787 pp->retprobe = tp->retprobe;
1788 pp->offset = addr - map->unmap_ip(map, sym->start);
1789 pp->function = strdup(sym->name);
1790 ret = pp->function ? 0 : -ENOMEM;
1791
1792out:
1793 if (map && !is_kprobe) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001794 map__put(map);
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +00001795 }
1796
1797 return ret;
1798}
1799
1800static int convert_to_perf_probe_point(struct probe_trace_point *tp,
1801 struct perf_probe_point *pp,
1802 bool is_kprobe)
1803{
1804 char buf[128];
1805 int ret;
1806
1807 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1808 if (!ret)
1809 return 0;
1810 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1811 if (!ret)
1812 return 0;
1813
1814 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1815
1816 if (tp->symbol) {
1817 pp->function = strdup(tp->symbol);
1818 pp->offset = tp->offset;
1819 } else if (!tp->module && !is_kprobe) {
1820 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
1821 if (ret < 0)
1822 return ret;
1823 pp->function = strdup(buf);
1824 pp->offset = 0;
1825 }
1826 if (pp->function == NULL)
1827 return -ENOMEM;
1828
1829 pp->retprobe = tp->retprobe;
1830
1831 return 0;
1832}
1833
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301834static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301835 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001836{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001837 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001838 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001839
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001840 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001841 pev->event = strdup(tev->event);
1842 pev->group = strdup(tev->group);
1843 if (pev->event == NULL || pev->group == NULL)
1844 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001845
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001846 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f63142014-02-06 05:32:23 +00001847 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001848 if (ret < 0)
1849 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001850
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001851 /* Convert trace_arg to probe_arg */
1852 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001853 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1854 if (pev->args == NULL)
1855 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001856 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001857 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001858 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001859 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301860 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001861 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001862 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001863 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001864 if (pev->args[i].name == NULL && ret >= 0)
1865 ret = -ENOMEM;
1866 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001867
1868 if (ret < 0)
1869 clear_perf_probe_event(pev);
1870
1871 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001872}
1873
1874void clear_perf_probe_event(struct perf_probe_event *pev)
1875{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001876 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001877 int i;
1878
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001879 free(pev->event);
1880 free(pev->group);
Masami Hiramatsu7afb3fa2015-04-01 19:25:39 +09001881 free(pev->target);
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09001882 clear_perf_probe_point(&pev->point);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001883
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001884 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001885 free(pev->args[i].name);
1886 free(pev->args[i].var);
1887 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001888 field = pev->args[i].field;
1889 while (field) {
1890 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001891 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001892 free(field);
1893 field = next;
1894 }
1895 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001896 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001897 memset(pev, 0, sizeof(*pev));
1898}
1899
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301900static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001901{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301902 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001903 int i;
1904
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001905 free(tev->event);
1906 free(tev->group);
1907 free(tev->point.symbol);
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001908 free(tev->point.realname);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001909 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001910 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001911 free(tev->args[i].name);
1912 free(tev->args[i].value);
1913 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001914 ref = tev->args[i].ref;
1915 while (ref) {
1916 next = ref->next;
1917 free(ref);
1918 ref = next;
1919 }
1920 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001921 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001922 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001923}
1924
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001925static void print_open_warning(int err, bool is_kprobe)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301926{
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001927 char sbuf[STRERR_BUFSIZE];
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301928
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001929 if (err == -ENOENT) {
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301930 const char *config;
1931
1932 if (!is_kprobe)
1933 config = "CONFIG_UPROBE_EVENTS";
1934 else
1935 config = "CONFIG_KPROBE_EVENTS";
1936
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001937 pr_warning("%cprobe_events file does not exist"
1938 " - please rebuild kernel with %s.\n",
1939 is_kprobe ? 'k' : 'u', config);
1940 } else if (err == -ENOTSUP)
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001941 pr_warning("Tracefs or debugfs is not mounted.\n");
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001942 else
1943 pr_warning("Failed to open %cprobe_events: %s\n",
1944 is_kprobe ? 'k' : 'u',
1945 strerror_r(-err, sbuf, sizeof(sbuf)));
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301946}
1947
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001948static void print_both_open_warning(int kerr, int uerr)
1949{
1950 /* Both kprobes and uprobes are disabled, warn it. */
1951 if (kerr == -ENOTSUP && uerr == -ENOTSUP)
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001952 pr_warning("Tracefs or debugfs is not mounted.\n");
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001953 else if (kerr == -ENOENT && uerr == -ENOENT)
1954 pr_warning("Please rebuild kernel with CONFIG_KPROBE_EVENTS "
1955 "or/and CONFIG_UPROBE_EVENTS.\n");
1956 else {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00001957 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu467ec082014-08-13 16:12:50 +00001958 pr_warning("Failed to open kprobe events: %s.\n",
1959 strerror_r(-kerr, sbuf, sizeof(sbuf)));
1960 pr_warning("Failed to open uprobe events: %s.\n",
1961 strerror_r(-uerr, sbuf, sizeof(sbuf)));
1962 }
1963}
1964
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001965static int open_probe_events(const char *trace_file, bool readwrite)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001966{
1967 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001968 const char *__debugfs;
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001969 const char *tracing_dir = "";
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001970 int ret;
1971
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001972 __debugfs = tracefs_find_mountpoint();
1973 if (__debugfs == NULL) {
1974 tracing_dir = "tracing/";
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001975
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001976 __debugfs = debugfs_find_mountpoint();
1977 if (__debugfs == NULL)
1978 return -ENOTSUP;
1979 }
1980
1981 ret = e_snprintf(buf, PATH_MAX, "%s/%s%s",
1982 __debugfs, tracing_dir, trace_file);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001983 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001984 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001985 if (readwrite && !probe_event_dry_run)
Masami Hiramatsub8dc3982015-05-06 21:46:42 +09001986 ret = open(buf, O_RDWR | O_APPEND, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001987 else
1988 ret = open(buf, O_RDONLY, 0);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001989
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301990 if (ret < 0)
Masami Hiramatsu5e451872014-08-13 16:12:48 +00001991 ret = -errno;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001992 }
1993 return ret;
1994}
1995
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301996static int open_kprobe_events(bool readwrite)
1997{
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001998 return open_probe_events("kprobe_events", readwrite);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301999}
2000
2001static int open_uprobe_events(bool readwrite)
2002{
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05002003 return open_probe_events("uprobe_events", readwrite);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302004}
2005
2006/* Get raw string list of current kprobe_events or uprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302007static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002008{
2009 int ret, idx;
2010 FILE *fp;
2011 char buf[MAX_CMDLEN];
2012 char *p;
2013 struct strlist *sl;
2014
2015 sl = strlist__new(true, NULL);
2016
2017 fp = fdopen(dup(fd), "r");
2018 while (!feof(fp)) {
2019 p = fgets(buf, MAX_CMDLEN, fp);
2020 if (!p)
2021 break;
2022
2023 idx = strlen(p) - 1;
2024 if (p[idx] == '\n')
2025 p[idx] = '\0';
2026 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002027 if (ret < 0) {
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002028 pr_debug("strlist__add failed (%d)\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002029 strlist__delete(sl);
2030 return NULL;
2031 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002032 }
2033 fclose(fp);
2034
2035 return sl;
2036}
2037
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002038struct kprobe_blacklist_node {
2039 struct list_head list;
2040 unsigned long start;
2041 unsigned long end;
2042 char *symbol;
2043};
2044
2045static void kprobe_blacklist__delete(struct list_head *blacklist)
2046{
2047 struct kprobe_blacklist_node *node;
2048
2049 while (!list_empty(blacklist)) {
2050 node = list_first_entry(blacklist,
2051 struct kprobe_blacklist_node, list);
2052 list_del(&node->list);
2053 free(node->symbol);
2054 free(node);
2055 }
2056}
2057
2058static int kprobe_blacklist__load(struct list_head *blacklist)
2059{
2060 struct kprobe_blacklist_node *node;
2061 const char *__debugfs = debugfs_find_mountpoint();
2062 char buf[PATH_MAX], *p;
2063 FILE *fp;
2064 int ret;
2065
2066 if (__debugfs == NULL)
2067 return -ENOTSUP;
2068
2069 ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2070 if (ret < 0)
2071 return ret;
2072
2073 fp = fopen(buf, "r");
2074 if (!fp)
2075 return -errno;
2076
2077 ret = 0;
2078 while (fgets(buf, PATH_MAX, fp)) {
2079 node = zalloc(sizeof(*node));
2080 if (!node) {
2081 ret = -ENOMEM;
2082 break;
2083 }
2084 INIT_LIST_HEAD(&node->list);
2085 list_add_tail(&node->list, blacklist);
2086 if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2087 ret = -EINVAL;
2088 break;
2089 }
2090 p = strchr(buf, '\t');
2091 if (p) {
2092 p++;
2093 if (p[strlen(p) - 1] == '\n')
2094 p[strlen(p) - 1] = '\0';
2095 } else
2096 p = (char *)"unknown";
2097 node->symbol = strdup(p);
2098 if (!node->symbol) {
2099 ret = -ENOMEM;
2100 break;
2101 }
2102 pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2103 node->start, node->end, node->symbol);
2104 ret++;
2105 }
2106 if (ret < 0)
2107 kprobe_blacklist__delete(blacklist);
2108 fclose(fp);
2109
2110 return ret;
2111}
2112
2113static struct kprobe_blacklist_node *
2114kprobe_blacklist__find_by_address(struct list_head *blacklist,
2115 unsigned long address)
2116{
2117 struct kprobe_blacklist_node *node;
2118
2119 list_for_each_entry(node, blacklist, list) {
2120 if (node->start <= address && address <= node->end)
2121 return node;
2122 }
2123
2124 return NULL;
2125}
2126
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002127/* Show an event */
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002128static int show_perf_probe_event(struct perf_probe_event *pev,
2129 const char *module)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002130{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05002131 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002132 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002133 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002134
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002135 /* Synthesize only event probe point */
2136 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002137 if (!place)
2138 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002139
2140 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05002141 if (ret < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002142 return ret;
2143
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002144 pr_info(" %-20s (on %s", buf, place);
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002145 if (module)
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002146 pr_info(" in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002147
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002148 if (pev->nargs > 0) {
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002149 pr_info(" with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002150 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002151 ret = synthesize_perf_probe_arg(&pev->args[i],
2152 buf, 128);
2153 if (ret < 0)
2154 break;
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002155 pr_info(" %s", buf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04002156 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002157 }
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002158 pr_info(")\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002159 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002160 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05002161}
2162
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002163static bool filter_probe_trace_event(struct probe_trace_event *tev,
2164 struct strfilter *filter)
2165{
2166 char tmp[128];
2167
2168 /* At first, check the event name itself */
2169 if (strfilter__compare(filter, tev->event))
2170 return true;
2171
2172 /* Next, check the combination of name and group */
2173 if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2174 return false;
2175 return strfilter__compare(filter, tmp);
2176}
2177
2178static int __show_perf_probe_events(int fd, bool is_kprobe,
2179 struct strfilter *filter)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002180{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302181 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302182 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002183 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002184 struct strlist *rawlist;
2185 struct str_node *ent;
2186
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002187 memset(&tev, 0, sizeof(tev));
2188 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05002189
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302190 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002191 if (!rawlist)
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002192 return -ENOMEM;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002193
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002194 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302195 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002196 if (ret >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002197 if (!filter_probe_trace_event(&tev, filter))
2198 goto next;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302199 ret = convert_to_perf_probe_event(&tev, &pev,
2200 is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002201 if (ret >= 0)
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002202 ret = show_perf_probe_event(&pev,
2203 tev.point.module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002204 }
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002205next:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002206 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302207 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002208 if (ret < 0)
2209 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002210 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002211 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002212
2213 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05002214}
2215
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302216/* List up current perf-probe events */
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002217int show_perf_probe_events(struct strfilter *filter)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302218{
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002219 int kp_fd, up_fd, ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302220
2221 setup_pager();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302222
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002223 ret = init_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302224 if (ret < 0)
2225 return ret;
2226
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002227 kp_fd = open_kprobe_events(false);
2228 if (kp_fd >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002229 ret = __show_perf_probe_events(kp_fd, true, filter);
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002230 close(kp_fd);
2231 if (ret < 0)
2232 goto out;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302233 }
2234
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002235 up_fd = open_uprobe_events(false);
2236 if (kp_fd < 0 && up_fd < 0) {
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002237 print_both_open_warning(kp_fd, up_fd);
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002238 ret = kp_fd;
2239 goto out;
2240 }
2241
2242 if (up_fd >= 0) {
Masami Hiramatsub6a89642015-04-24 18:47:50 +09002243 ret = __show_perf_probe_events(up_fd, false, filter);
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002244 close(up_fd);
2245 }
2246out:
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002247 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302248 return ret;
2249}
2250
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002251/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302252static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002253{
Masami Hiramatsufa282442009-12-08 17:03:23 -05002254 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002255 struct strlist *sl, *rawlist;
2256 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302257 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002258 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002259
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002260 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302261 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu6eb08662014-08-14 02:22:30 +00002262 if (!rawlist)
2263 return NULL;
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002264 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002265 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302266 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002267 if (ret < 0)
2268 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002269 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002270 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
2271 tev.event);
2272 if (ret >= 0)
2273 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05002274 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002275 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302276 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002277 if (ret < 0)
2278 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002279 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002280 strlist__delete(rawlist);
2281
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002282 if (ret < 0) {
2283 strlist__delete(sl);
2284 return NULL;
2285 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002286 return sl;
2287}
2288
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302289static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002290{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02002291 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302292 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002293 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002294
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002295 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302296 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002297 return -EINVAL;
2298 }
2299
Masami Hiramatsufa282442009-12-08 17:03:23 -05002300 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002301 if (!probe_event_dry_run) {
2302 ret = write(fd, buf, strlen(buf));
Namhyung Kim7949ba12015-01-10 19:33:48 +09002303 if (ret <= 0) {
2304 ret = -errno;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002305 pr_warning("Failed to write event: %s\n",
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002306 strerror_r(errno, sbuf, sizeof(sbuf)));
Namhyung Kim7949ba12015-01-10 19:33:48 +09002307 }
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002308 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002309 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002310 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002311}
2312
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002313static int get_new_event_name(char *buf, size_t len, const char *base,
2314 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002315{
2316 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002317
Naveen N. Rao3099c022015-04-28 17:35:34 +05302318 if (*base == '.')
2319 base++;
2320
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002321 /* Try no suffix */
2322 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002323 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002324 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002325 return ret;
2326 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002327 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002328 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002329
Masami Hiramatsud761b082009-12-15 10:32:25 -05002330 if (!allow_suffix) {
2331 pr_warning("Error: event \"%s\" already exists. "
2332 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002333 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002334 }
2335
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002336 /* Try to add suffix */
2337 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002338 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002339 if (ret < 0) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002340 pr_debug("snprintf() failed: %d\n", ret);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002341 return ret;
2342 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002343 if (!strlist__has_entry(namelist, buf))
2344 break;
2345 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002346 if (i == MAX_EVENT_INDEX) {
2347 pr_warning("Too many events are on the same function.\n");
2348 ret = -ERANGE;
2349 }
2350
2351 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002352}
2353
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002354/* Warn if the current kernel's uprobe implementation is old */
2355static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2356{
2357 int i;
2358 char *buf = synthesize_probe_trace_command(tev);
2359
2360 /* Old uprobe event doesn't support memory dereference */
2361 if (!tev->uprobes || tev->nargs == 0 || !buf)
2362 goto out;
2363
2364 for (i = 0; i < tev->nargs; i++)
2365 if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2366 pr_warning("Please upgrade your kernel to at least "
2367 "3.14 to have access to feature %s\n",
2368 tev->args[i].value);
2369 break;
2370 }
2371out:
2372 free(buf);
2373}
2374
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302375static int __add_probe_trace_events(struct perf_probe_event *pev,
2376 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002377 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002378{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002379 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302380 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002381 char buf[64];
2382 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002383 struct strlist *namelist;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002384 LIST_HEAD(blacklist);
2385 struct kprobe_blacklist_node *node;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002386 bool safename;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002387
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302388 if (pev->uprobes)
2389 fd = open_uprobe_events(true);
2390 else
2391 fd = open_kprobe_events(true);
2392
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002393 if (fd < 0) {
2394 print_open_warning(fd, !pev->uprobes);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002395 return fd;
Masami Hiramatsu5e451872014-08-13 16:12:48 +00002396 }
2397
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002398 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302399 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002400 if (!namelist) {
2401 pr_debug("Failed to get current event list.\n");
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002402 ret = -ENOMEM;
2403 goto close_out;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002404 }
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002405 /* Get kprobe blacklist if exists */
2406 if (!pev->uprobes) {
2407 ret = kprobe_blacklist__load(&blacklist);
2408 if (ret < 0)
2409 pr_debug("No kprobe blacklist support, ignored\n");
2410 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002411
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002412 safename = (pev->point.function && !strisglob(pev->point.function));
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002413 ret = 0;
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002414 pr_info("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002415 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002416 tev = &tevs[i];
Masami Hiramatsu5a51fcd2015-05-06 21:46:49 +09002417 /* Skip if the symbol is out of .text (marked previously) */
2418 if (!tev->point.symbol)
2419 continue;
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002420 /* Ensure that the address is NOT blacklisted */
2421 node = kprobe_blacklist__find_by_address(&blacklist,
2422 tev->point.address);
2423 if (node) {
2424 pr_warning("Warning: Skipped probing on blacklisted function: %s\n", node->symbol);
2425 continue;
2426 }
2427
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002428 if (pev->event)
2429 event = pev->event;
2430 else
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002431 if (safename)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002432 event = pev->point.function;
2433 else
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002434 event = tev->point.realname;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002435 if (pev->group)
2436 group = pev->group;
2437 else
2438 group = PERFPROBE_GROUP;
2439
2440 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002441 ret = get_new_event_name(buf, 64, event,
2442 namelist, allow_suffix);
2443 if (ret < 0)
2444 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002445 event = buf;
2446
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002447 tev->event = strdup(event);
2448 tev->group = strdup(group);
2449 if (tev->event == NULL || tev->group == NULL) {
2450 ret = -ENOMEM;
2451 break;
2452 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302453 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002454 if (ret < 0)
2455 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002456 /* Add added event name to namelist */
2457 strlist__add(namelist, event);
2458
2459 /* Trick here - save current event/group */
2460 event = pev->event;
2461 group = pev->group;
2462 pev->event = tev->event;
2463 pev->group = tev->group;
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002464 show_perf_probe_event(pev, tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002465 /* Trick here - restore current event/group */
2466 pev->event = (char *)event;
2467 pev->group = (char *)group;
2468
2469 /*
2470 * Probes after the first probe which comes from same
2471 * user input are always allowed to add suffix, because
2472 * there might be several addresses corresponding to
2473 * one code line.
2474 */
2475 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002476 }
Masami Hiramatsu79702f62015-02-28 11:53:29 +09002477 if (ret == -EINVAL && pev->uprobes)
2478 warn_uprobe_event_compat(tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002479
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002480 /* Note that it is possible to skip all events because of blacklist */
2481 if (ret >= 0 && tev->event) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002482 /* Show how to use the event. */
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002483 pr_info("\nYou can now use it in all perf tools, such as:\n\n");
2484 pr_info("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002485 tev->event);
2486 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05002487
Masami Hiramatsu9aaf5a52015-02-19 23:31:13 +09002488 kprobe_blacklist__delete(&blacklist);
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002489 strlist__delete(namelist);
Masami Hiramatsuae2cb1a2015-05-06 21:46:40 +09002490close_out:
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002491 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002492 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002493}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002494
Namhyung Kim564c62a2015-01-14 20:18:07 +09002495static int find_probe_functions(struct map *map, char *name)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002496{
Namhyung Kim564c62a2015-01-14 20:18:07 +09002497 int found = 0;
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002498 struct symbol *sym;
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002499 struct rb_node *tmp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002500
Wang Nan75e4a2a2015-05-15 12:14:44 +00002501 if (map__load(map, NULL) < 0)
2502 return 0;
2503
Masami Hiramatsu4c859352015-05-08 10:03:35 +09002504 map__for_each_symbol(map, sym, tmp) {
2505 if (strglobmatch(sym->name, name))
2506 found++;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002507 }
Namhyung Kim564c62a2015-01-14 20:18:07 +09002508
2509 return found;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002510}
2511
2512#define strdup_or_goto(str, label) \
2513 ({ char *__p = strdup(str); if (!__p) goto label; __p; })
2514
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302515void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2516 struct probe_trace_event *tev __maybe_unused,
2517 struct map *map __maybe_unused) { }
2518
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002519/*
2520 * Find probe function addresses from map.
2521 * Return an error or the number of found probe_trace_event
2522 */
2523static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002524 struct probe_trace_event **tevs)
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002525{
2526 struct map *map = NULL;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002527 struct ref_reloc_sym *reloc_sym = NULL;
2528 struct symbol *sym;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002529 struct probe_trace_event *tev;
2530 struct perf_probe_point *pp = &pev->point;
2531 struct probe_trace_point *tp;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002532 int num_matched_functions;
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002533 int ret, i;
2534
Masami Hiramatsu44225522015-05-08 10:03:28 +09002535 map = get_target_map(pev->target, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002536 if (!map) {
2537 ret = -EINVAL;
2538 goto out;
2539 }
2540
2541 /*
2542 * Load matched symbols: Since the different local symbols may have
2543 * same name but different addresses, this lists all the symbols.
2544 */
Namhyung Kim564c62a2015-01-14 20:18:07 +09002545 num_matched_functions = find_probe_functions(map, pp->function);
2546 if (num_matched_functions == 0) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002547 pr_err("Failed to find symbol %s in %s\n", pp->function,
Masami Hiramatsu44225522015-05-08 10:03:28 +09002548 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002549 ret = -ENOENT;
2550 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002551 } else if (num_matched_functions > probe_conf.max_probes) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002552 pr_err("Too many functions matched in %s\n",
Masami Hiramatsu44225522015-05-08 10:03:28 +09002553 pev->target ? : "kernel");
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002554 ret = -E2BIG;
2555 goto out;
2556 }
2557
Namhyung Kim25dd9172015-01-14 20:18:08 +09002558 if (!pev->uprobes && !pp->retprobe) {
He Kuang0560a0c2015-03-20 09:56:56 +08002559 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002560 if (!reloc_sym) {
2561 pr_warning("Relocated base symbol is not found!\n");
2562 ret = -EINVAL;
2563 goto out;
2564 }
2565 }
2566
2567 /* Setup result trace-probe-events */
2568 *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2569 if (!*tevs) {
2570 ret = -ENOMEM;
2571 goto out;
2572 }
2573
2574 ret = 0;
Namhyung Kim564c62a2015-01-14 20:18:07 +09002575
Arnaldo Carvalho de Melo0a3873a2015-01-16 16:40:25 -03002576 map__for_each_symbol_by_name(map, pp->function, sym) {
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002577 tev = (*tevs) + ret;
2578 tp = &tev->point;
2579 if (ret == num_matched_functions) {
2580 pr_warning("Too many symbols are listed. Skip it.\n");
2581 break;
2582 }
2583 ret++;
2584
2585 if (pp->offset > sym->end - sym->start) {
2586 pr_warning("Offset %ld is bigger than the size of %s\n",
2587 pp->offset, sym->name);
2588 ret = -ENOENT;
2589 goto err_out;
2590 }
2591 /* Add one probe point */
2592 tp->address = map->unmap_ip(map, sym->start) + pp->offset;
2593 if (reloc_sym) {
2594 tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2595 tp->offset = tp->address - reloc_sym->addr;
2596 } else {
2597 tp->symbol = strdup_or_goto(sym->name, nomem_out);
2598 tp->offset = pp->offset;
2599 }
2600 tp->retprobe = pp->retprobe;
Masami Hiramatsu44225522015-05-08 10:03:28 +09002601 if (pev->target)
2602 tev->point.module = strdup_or_goto(pev->target,
2603 nomem_out);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002604 tev->uprobes = pev->uprobes;
2605 tev->nargs = pev->nargs;
2606 if (tev->nargs) {
2607 tev->args = zalloc(sizeof(struct probe_trace_arg) *
2608 tev->nargs);
2609 if (tev->args == NULL)
2610 goto nomem_out;
2611 }
2612 for (i = 0; i < tev->nargs; i++) {
2613 if (pev->args[i].name)
2614 tev->args[i].name =
2615 strdup_or_goto(pev->args[i].name,
2616 nomem_out);
2617
2618 tev->args[i].value = strdup_or_goto(pev->args[i].var,
2619 nomem_out);
2620 if (pev->args[i].type)
2621 tev->args[i].type =
2622 strdup_or_goto(pev->args[i].type,
2623 nomem_out);
2624 }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +05302625 arch__fix_tev_from_maps(pev, tev, map);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002626 }
2627
2628out:
Masami Hiramatsu9b118ac2015-03-06 16:31:20 +09002629 put_target_map(map, pev->uprobes);
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002630 return ret;
2631
2632nomem_out:
2633 ret = -ENOMEM;
2634err_out:
2635 clear_probe_trace_events(*tevs, num_matched_functions);
2636 zfree(tevs);
2637 goto out;
2638}
2639
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302640bool __weak arch__prefers_symtab(void) { return false; }
2641
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302642static int convert_to_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002643 struct probe_trace_event **tevs)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002644{
Masami Hiramatsueb948e52014-02-06 05:32:25 +00002645 int ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002646
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002647 if (pev->uprobes && !pev->group) {
2648 /* Replace group name if not given */
Masami Hiramatsu44225522015-05-08 10:03:28 +09002649 ret = convert_exec_to_group(pev->target, &pev->group);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002650 if (ret != 0) {
2651 pr_warning("Failed to make a group name.\n");
2652 return ret;
2653 }
2654 }
2655
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302656 if (arch__prefers_symtab() && !perf_probe_event_need_dwarf(pev)) {
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002657 ret = find_probe_trace_events_from_map(pev, tevs);
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +05302658 if (ret > 0)
2659 return ret; /* Found in symbol table */
2660 }
2661
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002662 /* Convert perf_probe_event with debuginfo */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002663 ret = try_to_find_probe_trace_events(pev, tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002664 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002665 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002666
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002667 return find_probe_trace_events_from_map(pev, tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002668}
2669
2670struct __event_package {
2671 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302672 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002673 int ntevs;
2674};
2675
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002676int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002677{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002678 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002679 struct __event_package *pkgs;
2680
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302681 ret = 0;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002682 pkgs = zalloc(sizeof(struct __event_package) * npevs);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302683
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002684 if (pkgs == NULL)
2685 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002686
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002687 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002688 if (ret < 0) {
2689 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002690 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002691 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002692
2693 /* Loop 1: convert all events */
2694 for (i = 0; i < npevs; i++) {
2695 pkgs[i].pev = &pevs[i];
2696 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302697 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002698 &pkgs[i].tevs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002699 if (ret < 0)
2700 goto end;
2701 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002702 }
2703
2704 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03002705 for (i = 0; i < npevs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302706 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09002707 pkgs[i].ntevs,
2708 probe_conf.force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03002709 if (ret < 0)
2710 break;
2711 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002712end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002713 /* Loop 3: cleanup and free trace events */
2714 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002715 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302716 clear_probe_trace_event(&pkgs[i].tevs[j]);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002717 zfree(&pkgs[i].tevs);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002718 }
2719 free(pkgs);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002720 exit_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002721
2722 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002723}
2724
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302725static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002726{
2727 char *p;
2728 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002729 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002730
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302731 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002732 ret = e_snprintf(buf, 128, "-:%s", ent->s);
2733 if (ret < 0)
2734 goto error;
2735
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002736 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002737 if (!p) {
2738 pr_debug("Internal error: %s should have ':' but not.\n",
2739 ent->s);
2740 ret = -ENOTSUP;
2741 goto error;
2742 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002743 *p = '/';
2744
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002745 pr_debug("Writing event: %s\n", buf);
2746 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002747 if (ret < 0) {
2748 ret = -errno;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002749 goto error;
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002750 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002751
Masami Hiramatsu5e17b282014-10-27 16:31:31 -04002752 pr_info("Removed event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002753 return 0;
2754error:
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +00002755 pr_warning("Failed to delete event: %s\n",
2756 strerror_r(-ret, buf, sizeof(buf)));
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002757 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002758}
2759
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002760static int del_trace_probe_events(int fd, struct strfilter *filter,
2761 struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002762{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002763 struct str_node *ent;
2764 const char *p;
Masami Hiramatsu6dbe31f2015-04-23 22:46:14 +09002765 int ret = -ENOENT;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002766
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002767 if (!namelist)
2768 return -ENOENT;
2769
2770 strlist__for_each(ent, namelist) {
2771 p = strchr(ent->s, ':');
2772 if ((p && strfilter__compare(filter, p + 1)) ||
2773 strfilter__compare(filter, ent->s)) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302774 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002775 if (ret < 0)
2776 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002777 }
2778 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002779
2780 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002781}
2782
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002783int del_perf_probe_events(struct strfilter *filter)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002784{
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002785 int ret, ret2, ufd = -1, kfd = -1;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302786 struct strlist *namelist = NULL, *unamelist = NULL;
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002787 char *str = strfilter__string(filter);
2788
2789 if (!str)
2790 return -EINVAL;
2791
2792 pr_debug("Delete filter: \'%s\'\n", str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002793
Masami Hiramatsufa282442009-12-08 17:03:23 -05002794 /* Get current event names */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302795 kfd = open_kprobe_events(true);
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002796 if (kfd >= 0)
2797 namelist = get_probe_trace_event_names(kfd, true);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302798
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302799 ufd = open_uprobe_events(true);
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002800 if (ufd >= 0)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302801 unamelist = get_probe_trace_event_names(ufd, true);
2802
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002803 if (kfd < 0 && ufd < 0) {
2804 print_both_open_warning(kfd, ufd);
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002805 ret = kfd;
Masami Hiramatsu467ec082014-08-13 16:12:50 +00002806 goto error;
2807 }
2808
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002809 ret = del_trace_probe_events(kfd, filter, namelist);
2810 if (ret < 0 && ret != -ENOENT)
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302811 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002812
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002813 ret2 = del_trace_probe_events(ufd, filter, unamelist);
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002814 if (ret2 < 0 && ret2 != -ENOENT) {
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002815 ret = ret2;
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002816 goto error;
2817 }
2818 if (ret == -ENOENT && ret2 == -ENOENT)
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002819 pr_debug("\"%s\" does not hit any event.\n", str);
2820 /* Note that this is silently ignored */
Masami Hiramatsudddc7ee2015-05-27 17:37:25 +09002821 ret = 0;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302822
2823error:
2824 if (kfd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302825 strlist__delete(namelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302826 close(kfd);
2827 }
2828
2829 if (ufd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302830 strlist__delete(unamelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302831 close(ufd);
2832 }
Masami Hiramatsu307a4642015-05-05 11:29:48 +09002833 free(str);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002834
2835 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002836}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302837
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002838/* TODO: don't use a global variable for filter ... */
2839static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002840
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002841/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002842 * If a symbol corresponds to a function with global binding and
2843 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002844 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002845static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002846 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002847{
Namhyung Kime578da32015-03-06 16:31:29 +09002848 if (strfilter__compare(available_func_filter, sym->name))
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002849 return 0;
2850 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002851}
2852
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002853int show_available_funcs(const char *target, struct strfilter *_filter,
2854 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002855{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002856 struct map *map;
2857 int ret;
2858
2859 ret = init_symbol_maps(user);
2860 if (ret < 0)
2861 return ret;
2862
2863 /* Get a symbol map */
2864 if (user)
2865 map = dso__new_map(target);
2866 else
2867 map = kernel_get_module_map(target);
2868 if (!map) {
2869 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002870 return -EINVAL;
2871 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002872
2873 /* Load symbols with given filter */
2874 available_func_filter = _filter;
2875 if (map__load(map, filter_available_functions)) {
2876 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2877 goto end;
2878 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002879 if (!dso__sorted_by_name(map->dso, map->type))
2880 dso__sort_by_name(map->dso, map->type);
2881
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002882 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302883 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002884 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2885end:
2886 if (user) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03002887 map__put(map);
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002888 }
2889 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302890
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002891 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302892}
2893