blob: 3c35b7af2adbcfb5016f50803bca83588b54b05e [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>
Irina Tirdea1d037ca2012-09-11 01:15:03 +030044#include "trace-event.h" /* For __maybe_unused */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050045#include "probe-event.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -040046#include "probe-finder.h"
Srikar Dronamraju225466f2012-04-16 17:39:09 +053047#include "session.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050048
49#define MAX_CMDLEN 256
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050050#define PERFPROBE_GROUP "probe"
51
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -040052bool probe_event_dry_run; /* Dry run flag */
53
Masami Hiramatsu146a1432010-04-12 13:17:42 -040054#define semantic_error(msg ...) pr_err("Semantic error :" msg)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050055
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050056/* If there is no space to write, returns -E2BIG. */
57static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu84988452009-12-07 12:00:53 -050058 __attribute__((format(printf, 3, 4)));
59
60static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050061{
62 int ret;
63 va_list ap;
64 va_start(ap, format);
65 ret = vsnprintf(str, size, format, ap);
66 va_end(ap);
67 if (ret >= (int)size)
68 ret = -E2BIG;
69 return ret;
70}
71
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030072static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
Srikar Dronamraju225466f2012-04-16 17:39:09 +053073static int convert_name_to_addr(struct perf_probe_event *pev,
74 const char *exec);
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;
Masami Hiramatsu146a1432010-04-12 13:17:42 -040084 ret = symbol__init();
85 if (ret < 0) {
86 pr_debug("Failed to init symbol map.\n");
87 goto out;
88 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -040089
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000090 if (host_machine || user_only) /* already initialized */
91 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -030092
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +000093 if (symbol_conf.vmlinux_name)
94 pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
95
96 host_machine = machine__new_host();
97 if (!host_machine) {
98 pr_debug("machine__new_host() failed.\n");
99 symbol__exit();
100 ret = -1;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900101 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400102out:
103 if (ret < 0)
104 pr_warning("Failed to init vmlinux path.\n");
105 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400106}
107
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000108static void exit_symbol_maps(void)
109{
110 if (host_machine) {
111 machine__delete(host_machine);
112 host_machine = NULL;
113 }
114 symbol__exit();
115}
116
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900117static struct symbol *__find_kernel_function_by_name(const char *name,
118 struct map **mapp)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400119{
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000120 return machine__find_kernel_function_by_name(host_machine, name, mapp,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900121 NULL);
122}
123
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000124static struct symbol *__find_kernel_function(u64 addr, struct map **mapp)
125{
126 return machine__find_kernel_function(host_machine, addr, mapp, NULL);
127}
128
129static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
130{
131 /* kmap->ref_reloc_sym should be set if host_machine is initialized */
132 struct kmap *kmap;
133
134 if (map__load(host_machine->vmlinux_maps[MAP__FUNCTION], NULL) < 0)
135 return NULL;
136
137 kmap = map__kmap(host_machine->vmlinux_maps[MAP__FUNCTION]);
138 return kmap->ref_reloc_sym;
139}
140
141static u64 kernel_get_symbol_address_by_name(const char *name, bool reloc)
142{
143 struct ref_reloc_sym *reloc_sym;
144 struct symbol *sym;
145 struct map *map;
146
147 /* ref_reloc_sym is just a label. Need a special fix*/
148 reloc_sym = kernel_get_ref_reloc_sym();
149 if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
150 return (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
151 else {
152 sym = __find_kernel_function_by_name(name, &map);
153 if (sym)
154 return map->unmap_ip(map, sym->start) -
155 (reloc) ? 0 : map->reloc;
156 }
157 return 0;
158}
159
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900160static struct map *kernel_get_module_map(const char *module)
161{
162 struct rb_node *nd;
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000163 struct map_groups *grp = &host_machine->kmaps;
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900164
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900165 /* A file path -- this is an offline module */
166 if (module && strchr(module, '/'))
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000167 return machine__new_module(host_machine, 0, module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900168
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900169 if (!module)
170 module = "kernel";
171
172 for (nd = rb_first(&grp->maps[MAP__FUNCTION]); nd; nd = rb_next(nd)) {
173 struct map *pos = rb_entry(nd, struct map, rb_node);
174 if (strncmp(pos->dso->short_name + 1, module,
175 pos->dso->short_name_len - 2) == 0) {
176 return pos;
177 }
178 }
179 return NULL;
180}
181
182static struct dso *kernel_get_module_dso(const char *module)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900183{
184 struct dso *dso;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100185 struct map *map;
186 const char *vmlinux_name;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900187
188 if (module) {
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000189 list_for_each_entry(dso, &host_machine->kernel_dsos, node) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900190 if (strncmp(dso->short_name + 1, module,
191 dso->short_name_len - 2) == 0)
192 goto found;
193 }
194 pr_debug("Failed to find module %s.\n", module);
195 return NULL;
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100196 }
197
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000198 map = host_machine->vmlinux_maps[MAP__FUNCTION];
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100199 dso = map->dso;
200
201 vmlinux_name = symbol_conf.vmlinux_name;
202 if (vmlinux_name) {
Arnaldo Carvalho de Melo5230fb72013-12-10 11:58:52 -0300203 if (dso__load_vmlinux(dso, map, vmlinux_name, false, NULL) <= 0)
Franck Bui-Huufd930ff2010-12-10 14:06:03 +0100204 return NULL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900205 } else {
Franck Bui-Huuc3a34e02010-12-10 14:07:14 +0100206 if (dso__load_vmlinux_path(dso, map, NULL) <= 0) {
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900207 pr_debug("Failed to load kernel map.\n");
208 return NULL;
209 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400210 }
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900211found:
Masami Hiramatsue80711c2011-01-13 21:46:11 +0900212 return dso;
213}
214
215const char *kernel_get_module_path(const char *module)
216{
217 struct dso *dso = kernel_get_module_dso(module);
218 return (dso) ? dso->long_name : NULL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900219}
220
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000221static int convert_exec_to_group(const char *exec, char **result)
222{
223 char *ptr1, *ptr2, *exec_copy;
224 char buf[64];
225 int ret;
226
227 exec_copy = strdup(exec);
228 if (!exec_copy)
229 return -ENOMEM;
230
231 ptr1 = basename(exec_copy);
232 if (!ptr1) {
233 ret = -EINVAL;
234 goto out;
235 }
236
237 ptr2 = strpbrk(ptr1, "-._");
238 if (ptr2)
239 *ptr2 = '\0';
240 ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
241 if (ret < 0)
242 goto out;
243
244 *result = strdup(buf);
245 ret = *result ? 0 : -ENOMEM;
246
247out:
248 free(exec_copy);
249 return ret;
250}
251
Ingo Molnar89fe8082013-09-30 12:07:11 +0200252#ifdef HAVE_DWARF_SUPPORT
Masami Hiramatsuff741782011-06-27 16:27:39 +0900253/* Open new debuginfo of given module */
254static struct debuginfo *open_debuginfo(const char *module)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900255{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900256 const char *path;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900257
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900258 /* A file path -- this is an offline module */
259 if (module && strchr(module, '/'))
260 path = module;
261 else {
262 path = kernel_get_module_path(module);
263
264 if (!path) {
265 pr_err("Failed to find path of %s module.\n",
266 module ?: "kernel");
267 return NULL;
268 }
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900269 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900270 return debuginfo__new(path);
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400271}
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300272
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000273static int get_text_start_address(const char *exec, unsigned long *address)
274{
275 Elf *elf;
276 GElf_Ehdr ehdr;
277 GElf_Shdr shdr;
278 int fd, ret = -ENOENT;
279
280 fd = open(exec, O_RDONLY);
281 if (fd < 0)
282 return -errno;
283
284 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
285 if (elf == NULL)
286 return -EINVAL;
287
288 if (gelf_getehdr(elf, &ehdr) == NULL)
289 goto out;
290
291 if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
292 goto out;
293
294 *address = shdr.sh_addr - shdr.sh_offset;
295 ret = 0;
296out:
297 elf_end(elf);
298 return ret;
299}
300
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000301/*
302 * Convert trace point to probe point with debuginfo
303 */
304static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
305 struct perf_probe_point *pp,
306 bool is_kprobe)
307{
308 struct debuginfo *dinfo = NULL;
309 unsigned long stext = 0;
310 u64 addr = tp->address;
311 int ret = -ENOENT;
312
313 /* convert the address to dwarf address */
314 if (!is_kprobe) {
315 if (!addr) {
316 ret = -EINVAL;
317 goto error;
318 }
319 ret = get_text_start_address(tp->module, &stext);
320 if (ret < 0)
321 goto error;
322 addr += stext;
323 } else {
324 addr = kernel_get_symbol_address_by_name(tp->symbol, false);
325 if (addr == 0)
326 goto error;
327 addr += tp->offset;
328 }
329
330 pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
331 tp->module ? : "kernel");
332
333 dinfo = open_debuginfo(tp->module);
334 if (dinfo) {
335 ret = debuginfo__find_probe_point(dinfo,
336 (unsigned long)addr, pp);
337 debuginfo__delete(dinfo);
338 } else {
339 pr_debug("Failed to open debuginfo at 0x%" PRIx64 "\n", addr);
340 ret = -ENOENT;
341 }
342
343 if (ret > 0) {
344 pp->retprobe = tp->retprobe;
345 return 0;
346 }
347error:
348 pr_debug("Failed to find corresponding probes from debuginfo.\n");
349 return ret ? : -ENOENT;
350}
351
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000352static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
353 int ntevs, const char *exec)
354{
355 int i, ret = 0;
356 unsigned long offset, stext = 0;
357 char buf[32];
358
359 if (!exec)
360 return 0;
361
362 ret = get_text_start_address(exec, &stext);
363 if (ret < 0)
364 return ret;
365
366 for (i = 0; i < ntevs && ret >= 0; i++) {
Masami Hiramatsu981a2372014-02-05 05:18:58 +0000367 /* point.address is the addres of point.symbol + point.offset */
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000368 offset = tevs[i].point.address - stext;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000369 tevs[i].point.offset = 0;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300370 zfree(&tevs[i].point.symbol);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000371 ret = e_snprintf(buf, 32, "0x%lx", offset);
372 if (ret < 0)
373 break;
374 tevs[i].point.module = strdup(exec);
375 tevs[i].point.symbol = strdup(buf);
376 if (!tevs[i].point.symbol || !tevs[i].point.module) {
377 ret = -ENOMEM;
378 break;
379 }
380 tevs[i].uprobes = true;
381 }
382
383 return ret;
384}
385
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900386static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
387 int ntevs, const char *module)
388{
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900389 int i, ret = 0;
390 char *tmp;
391
392 if (!module)
393 return 0;
394
395 tmp = strrchr(module, '/');
396 if (tmp) {
397 /* This is a module path -- get the module name */
398 module = strdup(tmp + 1);
399 if (!module)
400 return -ENOMEM;
401 tmp = strchr(module, '.');
402 if (tmp)
403 *tmp = '\0';
404 tmp = (char *)module; /* For free() */
405 }
406
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900407 for (i = 0; i < ntevs; i++) {
408 tevs[i].point.module = strdup(module);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900409 if (!tevs[i].point.module) {
410 ret = -ENOMEM;
411 break;
412 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900413 }
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900414
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -0300415 free(tmp);
Masami Hiramatsu14a8fd72011-06-27 16:27:51 +0900416 return ret;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900417}
418
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000419/* Post processing the probe events */
420static int post_process_probe_trace_events(struct probe_trace_event *tevs,
421 int ntevs, const char *module,
422 bool uprobe)
423{
424 struct ref_reloc_sym *reloc_sym;
425 char *tmp;
426 int i;
427
428 if (uprobe)
429 return add_exec_to_probe_trace_events(tevs, ntevs, module);
430
431 /* Note that currently ref_reloc_sym based probe is not for drivers */
432 if (module)
433 return add_module_to_probe_trace_events(tevs, ntevs, module);
434
Masami Hiramatsu8f33f7d2014-02-06 05:32:20 +0000435 reloc_sym = kernel_get_ref_reloc_sym();
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000436 if (!reloc_sym) {
437 pr_warning("Relocated base symbol is not found!\n");
438 return -EINVAL;
439 }
440
441 for (i = 0; i < ntevs; i++) {
442 if (tevs[i].point.address) {
443 tmp = strdup(reloc_sym->name);
444 if (!tmp)
445 return -ENOMEM;
446 free(tevs[i].point.symbol);
447 tevs[i].point.symbol = tmp;
448 tevs[i].point.offset = tevs[i].point.address -
449 reloc_sym->unrelocated_addr;
450 }
451 }
452 return 0;
453}
454
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000455static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
456{
457 int i;
458
459 for (i = 0; i < ntevs; i++)
460 clear_probe_trace_event(tevs + i);
461}
462
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300463/* Try to find perf_probe_event with debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530464static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900465 struct probe_trace_event **tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +0530466 int max_tevs, const char *target)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300467{
468 bool need_dwarf = perf_probe_event_need_dwarf(pev);
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530469 struct debuginfo *dinfo;
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900470 int ntevs, ret = 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300471
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530472 dinfo = open_debuginfo(target);
473
Masami Hiramatsuff741782011-06-27 16:27:39 +0900474 if (!dinfo) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400475 if (need_dwarf) {
476 pr_warning("Failed to open debuginfo file.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900477 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400478 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900479 pr_debug("Could not open debuginfo. Try to use symbols.\n");
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300480 return 0;
481 }
482
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000483 pr_debug("Try to find probe point from debuginfo.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900484 /* Searching trace events corresponding to a probe event */
485 ntevs = debuginfo__find_trace_events(dinfo, pev, tevs, max_tevs);
486
487 debuginfo__delete(dinfo);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300488
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400489 if (ntevs > 0) { /* Succeeded to find trace events */
Masami Hiramatsudfef99c2014-02-06 05:32:16 +0000490 pr_debug("Found %d probe_trace_events.\n", ntevs);
491 ret = post_process_probe_trace_events(*tevs, ntevs,
492 target, pev->uprobes);
Masami Hiramatsu981d05a2014-01-16 09:39:44 +0000493 if (ret < 0) {
494 clear_probe_trace_events(*tevs, ntevs);
495 zfree(tevs);
496 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +0900497 return ret < 0 ? ret : ntevs;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400498 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300499
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400500 if (ntevs == 0) { /* No error but failed to find probe point. */
501 pr_warning("Probe point '%s' not found.\n",
502 synthesize_perf_probe_point(&pev->point));
503 return -ENOENT;
504 }
505 /* Error path : ntevs < 0 */
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400506 pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
507 if (ntevs == -EBADF) {
508 pr_warning("Warning: No dwarf info found in the vmlinux - "
509 "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
510 if (!need_dwarf) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900511 pr_debug("Trying to use symbols.\n");
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400512 return 0;
513 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300514 }
Masami Hiramatsu15eca302010-04-21 15:56:24 -0400515 return ntevs;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300516}
517
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900518/*
519 * Find a src file from a DWARF tag path. Prepend optional source path prefix
520 * and chop off leading directories that do not exist. Result is passed back as
521 * a newly allocated path on success.
522 * Return 0 if file was found and readable, -errno otherwise.
523 */
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900524static int get_real_path(const char *raw_path, const char *comp_dir,
525 char **new_path)
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900526{
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900527 const char *prefix = symbol_conf.source_prefix;
528
529 if (!prefix) {
530 if (raw_path[0] != '/' && comp_dir)
531 /* If not an absolute path, try to use comp_dir */
532 prefix = comp_dir;
533 else {
534 if (access(raw_path, R_OK) == 0) {
535 *new_path = strdup(raw_path);
536 return 0;
537 } else
538 return -errno;
539 }
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900540 }
541
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900542 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900543 if (!*new_path)
544 return -ENOMEM;
545
546 for (;;) {
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900547 sprintf(*new_path, "%s/%s", prefix, raw_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900548
549 if (access(*new_path, R_OK) == 0)
550 return 0;
551
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900552 if (!symbol_conf.source_prefix)
553 /* In case of searching comp_dir, don't retry */
554 return -errno;
555
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900556 switch (errno) {
557 case ENAMETOOLONG:
558 case ENOENT:
559 case EROFS:
560 case EFAULT:
561 raw_path = strchr(++raw_path, '/');
562 if (!raw_path) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300563 zfree(new_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900564 return -ENOENT;
565 }
566 continue;
567
568 default:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300569 zfree(new_path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900570 return -errno;
571 }
572 }
573}
574
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300575#define LINEBUF_SIZE 256
576#define NR_ADDITIONAL_LINES 2
577
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100578static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300579{
580 char buf[LINEBUF_SIZE];
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100581 const char *color = show_num ? "" : PERF_COLOR_BLUE;
582 const char *prefix = NULL;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300583
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100584 do {
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300585 if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
586 goto error;
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100587 if (skip)
588 continue;
589 if (!prefix) {
590 prefix = show_num ? "%7d " : " ";
591 color_fprintf(stdout, color, prefix, l);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300592 }
Franck Bui-Huubefe3412010-12-20 15:18:01 +0100593 color_fprintf(stdout, color, "%s", buf);
594
595 } while (strchr(buf, '\n') == NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400596
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100597 return 1;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300598error:
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100599 if (ferror(fp)) {
Franck Bui-Huu32b2b6e2010-12-22 17:37:13 +0100600 pr_warning("File read error: %s\n", strerror(errno));
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100601 return -1;
602 }
603 return 0;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300604}
605
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100606static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
607{
608 int rv = __show_one_line(fp, l, skip, show_num);
609 if (rv == 0) {
610 pr_warning("Source file is shorter than expected.\n");
611 rv = -1;
612 }
613 return rv;
614}
615
616#define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
617#define show_one_line(f,l) _show_one_line(f,l,false,false)
618#define skip_one_line(f,l) _show_one_line(f,l,true,false)
619#define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
620
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300621/*
622 * Show line-range always requires debuginfo to find source file and
623 * line number.
624 */
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000625static int __show_line_range(struct line_range *lr, const char *module)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300626{
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400627 int l = 1;
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000628 struct int_node *ln;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900629 struct debuginfo *dinfo;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300630 FILE *fp;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900631 int ret;
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900632 char *tmp;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300633
634 /* Search a line range */
Masami Hiramatsuff741782011-06-27 16:27:39 +0900635 dinfo = open_debuginfo(module);
636 if (!dinfo) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400637 pr_warning("Failed to open debuginfo file.\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900638 return -ENOENT;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400639 }
640
Masami Hiramatsuff741782011-06-27 16:27:39 +0900641 ret = debuginfo__find_line_range(dinfo, lr);
642 debuginfo__delete(dinfo);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400643 if (ret == 0) {
644 pr_warning("Specified source line is not found.\n");
645 return -ENOENT;
646 } else if (ret < 0) {
647 pr_warning("Debuginfo analysis failed. (%d)\n", ret);
648 return ret;
649 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300650
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900651 /* Convert source file path */
652 tmp = lr->path;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900653 ret = get_real_path(tmp, lr->comp_dir, &lr->path);
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +0900654 free(tmp); /* Free old path */
655 if (ret < 0) {
656 pr_warning("Failed to find source file. (%d)\n", ret);
657 return ret;
658 }
659
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300660 setup_pager();
661
662 if (lr->function)
Masami Hiramatsu8737ebd2011-02-10 18:08:16 +0900663 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300664 lr->start - lr->offset);
665 else
Franck Bui-Huu62c15fc2010-12-20 15:18:00 +0100666 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300667
668 fp = fopen(lr->path, "r");
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400669 if (fp == NULL) {
670 pr_warning("Failed to open %s: %s\n", lr->path,
671 strerror(errno));
672 return -errno;
673 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300674 /* Skip to starting line number */
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100675 while (l < lr->start) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100676 ret = skip_one_line(fp, l++);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100677 if (ret < 0)
678 goto end;
679 }
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300680
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000681 intlist__for_each(ln, lr->line_list) {
682 for (; ln->i > l; l++) {
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100683 ret = show_one_line(fp, l - lr->offset);
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100684 if (ret < 0)
685 goto end;
686 }
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100687 ret = show_one_line_with_num(fp, l++ - lr->offset);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400688 if (ret < 0)
689 goto end;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300690 }
691
692 if (lr->end == INT_MAX)
693 lr->end = l + NR_ADDITIONAL_LINES;
Franck Bui-Huufde52db2010-12-20 15:18:04 +0100694 while (l <= lr->end) {
695 ret = show_one_line_or_eof(fp, l++ - lr->offset);
696 if (ret <= 0)
Franck Bui-Huu44b81e92010-12-20 15:18:02 +0100697 break;
698 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400699end:
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300700 fclose(fp);
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400701 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300702}
703
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000704int show_line_range(struct line_range *lr, const char *module)
705{
706 int ret;
707
708 ret = init_symbol_maps(false);
709 if (ret < 0)
710 return ret;
711 ret = __show_line_range(lr, module);
712 exit_symbol_maps();
713
714 return ret;
715}
716
Masami Hiramatsuff741782011-06-27 16:27:39 +0900717static int show_available_vars_at(struct debuginfo *dinfo,
718 struct perf_probe_event *pev,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900719 int max_vls, struct strfilter *_filter,
720 bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900721{
722 char *buf;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900723 int ret, i, nvars;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900724 struct str_node *node;
725 struct variable_list *vls = NULL, *vl;
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900726 const char *var;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900727
728 buf = synthesize_perf_probe_point(&pev->point);
729 if (!buf)
730 return -EINVAL;
731 pr_debug("Searching variables at %s\n", buf);
732
Masami Hiramatsuff741782011-06-27 16:27:39 +0900733 ret = debuginfo__find_available_vars_at(dinfo, pev, &vls,
734 max_vls, externs);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900735 if (ret <= 0) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900736 pr_err("Failed to find variables at %s (%d)\n", buf, ret);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900737 goto end;
738 }
739 /* Some variables are found */
740 fprintf(stdout, "Available variables at %s\n", buf);
741 for (i = 0; i < ret; i++) {
742 vl = &vls[i];
743 /*
744 * A probe point might be converted to
745 * several trace points.
746 */
747 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
748 vl->point.offset);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300749 zfree(&vl->point.symbol);
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900750 nvars = 0;
751 if (vl->vars) {
752 strlist__for_each(node, vl->vars) {
753 var = strchr(node->s, '\t') + 1;
754 if (strfilter__compare(_filter, var)) {
755 fprintf(stdout, "\t\t%s\n", node->s);
756 nvars++;
757 }
758 }
759 strlist__delete(vl->vars);
760 }
761 if (nvars == 0)
762 fprintf(stdout, "\t\t(No matched variables)\n");
763 }
764 free(vls);
765end:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900766 free(buf);
767 return ret;
768}
769
770/* Show available variables on given probe point */
771int show_available_vars(struct perf_probe_event *pevs, int npevs,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900772 int max_vls, const char *module,
773 struct strfilter *_filter, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900774{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900775 int i, ret = 0;
776 struct debuginfo *dinfo;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900777
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000778 ret = init_symbol_maps(false);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900779 if (ret < 0)
780 return ret;
781
Masami Hiramatsuff741782011-06-27 16:27:39 +0900782 dinfo = open_debuginfo(module);
783 if (!dinfo) {
784 pr_warning("Failed to open debuginfo file.\n");
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000785 ret = -ENOENT;
786 goto out;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900787 }
788
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900789 setup_pager();
790
Masami Hiramatsuff741782011-06-27 16:27:39 +0900791 for (i = 0; i < npevs && ret >= 0; i++)
792 ret = show_available_vars_at(dinfo, &pevs[i], max_vls, _filter,
Masami Hiramatsubd09d7b2011-01-20 23:15:39 +0900793 externs);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900794
795 debuginfo__delete(dinfo);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +0000796out:
797 exit_symbol_maps();
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900798 return ret;
799}
800
Ingo Molnar89fe8082013-09-30 12:07:11 +0200801#else /* !HAVE_DWARF_SUPPORT */
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300802
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000803static int
804find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
805 struct perf_probe_point *pp __maybe_unused,
806 bool is_kprobe __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300807{
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +0000808 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300809}
810
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530811static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300812 struct probe_trace_event **tevs __maybe_unused,
Arnaldo Carvalho de Melo1d027ee2014-01-13 15:15:25 -0300813 int max_tevs __maybe_unused,
814 const char *target __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300815{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400816 if (perf_probe_event_need_dwarf(pev)) {
817 pr_warning("Debuginfo-analysis is not supported.\n");
818 return -ENOSYS;
819 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +0530820
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300821 return 0;
822}
823
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300824int show_line_range(struct line_range *lr __maybe_unused,
825 const char *module __maybe_unused)
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300826{
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400827 pr_warning("Debuginfo-analysis is not supported.\n");
828 return -ENOSYS;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300829}
830
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300831int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
832 int npevs __maybe_unused, int max_vls __maybe_unused,
833 const char *module __maybe_unused,
834 struct strfilter *filter __maybe_unused,
835 bool externs __maybe_unused)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900836{
837 pr_warning("Debuginfo-analysis is not supported.\n");
838 return -ENOSYS;
839}
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -0400840#endif
841
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000842void line_range__clear(struct line_range *lr)
843{
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000844 free(lr->function);
845 free(lr->file);
846 free(lr->path);
847 free(lr->comp_dir);
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000848 intlist__delete(lr->line_list);
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000849 memset(lr, 0, sizeof(*lr));
850}
851
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000852int line_range__init(struct line_range *lr)
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000853{
854 memset(lr, 0, sizeof(*lr));
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000855 lr->line_list = intlist__new(NULL);
856 if (!lr->line_list)
857 return -ENOMEM;
858 else
859 return 0;
Masami Hiramatsue53b00d2014-01-16 09:39:47 +0000860}
861
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100862static int parse_line_num(char **ptr, int *val, const char *what)
863{
864 const char *start = *ptr;
865
866 errno = 0;
867 *val = strtol(*ptr, ptr, 0);
868 if (errno || *ptr == start) {
869 semantic_error("'%s' is not a valid number.\n", what);
870 return -EINVAL;
871 }
872 return 0;
873}
874
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100875/*
876 * Stuff 'lr' according to the line range described by 'arg'.
877 * The line range syntax is described by:
878 *
879 * SRC[:SLN[+NUM|-ELN]]
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900880 * FNC[@SRC][:SLN[+NUM|-ELN]]
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100881 */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400882int parse_line_range_desc(const char *arg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500883{
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900884 char *range, *file, *name = strdup(arg);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100885 int err;
Franck Bui-Huu9d95b582010-12-20 15:18:03 +0100886
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100887 if (!name)
888 return -ENOMEM;
889
890 lr->start = 0;
891 lr->end = INT_MAX;
892
893 range = strchr(name, ':');
894 if (range) {
895 *range++ = '\0';
896
897 err = parse_line_num(&range, &lr->start, "start line");
898 if (err)
899 goto err;
900
901 if (*range == '+' || *range == '-') {
902 const char c = *range++;
903
904 err = parse_line_num(&range, &lr->end, "end line");
905 if (err)
906 goto err;
907
908 if (c == '+') {
909 lr->end += lr->start;
910 /*
911 * Adjust the number of lines here.
912 * If the number of lines == 1, the
913 * the end of line should be equal to
914 * the start of line.
915 */
916 lr->end--;
917 }
918 }
919
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400920 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100921
922 err = -EINVAL;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400923 if (lr->start > lr->end) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500924 semantic_error("Start line must be smaller"
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400925 " than end line.\n");
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100926 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400927 }
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100928 if (*range != '\0') {
929 semantic_error("Tailing with invalid str '%s'.\n", range);
930 goto err;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400931 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400932 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400933
Masami Hiramatsue116dfa2011-02-10 18:08:10 +0900934 file = strchr(name, '@');
935 if (file) {
936 *file = '\0';
937 lr->file = strdup(++file);
938 if (lr->file == NULL) {
939 err = -ENOMEM;
940 goto err;
941 }
942 lr->function = name;
943 } else if (strchr(name, '.'))
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100944 lr->file = name;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500945 else
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100946 lr->function = name;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400947
948 return 0;
Franck Bui-Huu21dd9ae2010-12-20 15:18:05 +0100949err:
950 free(name);
951 return err;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500952}
953
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500954/* Check the name is good for event/group */
955static bool check_event_name(const char *name)
956{
957 if (!isalpha(*name) && *name != '_')
958 return false;
959 while (*++name != '\0') {
960 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
961 return false;
962 }
963 return true;
964}
965
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500966/* Parse probepoint definition. */
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400967static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500968{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400969 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500970 char *ptr, *tmp;
971 char c, nc = 0;
972 /*
973 * <Syntax>
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500974 * perf probe [EVENT=]SRC[:LN|;PTN]
975 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500976 *
977 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500978 */
979
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500980 ptr = strpbrk(arg, ";=@+%");
981 if (ptr && *ptr == '=') { /* Event name */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500982 *ptr = '\0';
983 tmp = ptr + 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400984 if (strchr(arg, ':')) {
985 semantic_error("Group name is not supported yet.\n");
986 return -ENOTSUP;
987 }
988 if (!check_event_name(arg)) {
Masami Hiramatsub7702a22009-12-16 17:24:15 -0500989 semantic_error("%s is bad for event name -it must "
Masami Hiramatsu146a1432010-04-12 13:17:42 -0400990 "follow C symbol-naming rule.\n", arg);
991 return -EINVAL;
992 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400993 pev->event = strdup(arg);
994 if (pev->event == NULL)
995 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400996 pev->group = NULL;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500997 arg = tmp;
998 }
999
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001000 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001001 if (ptr) {
1002 nc = *ptr;
1003 *ptr++ = '\0';
1004 }
1005
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001006 tmp = strdup(arg);
1007 if (tmp == NULL)
1008 return -ENOMEM;
1009
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001010 /* Check arg is function or file and copy it */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001011 if (strchr(tmp, '.')) /* File */
1012 pp->file = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001013 else /* Function */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001014 pp->function = tmp;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001015
1016 /* Parse other options */
1017 while (ptr) {
1018 arg = ptr;
1019 c = nc;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001020 if (c == ';') { /* Lazy pattern must be the last part */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001021 pp->lazy_line = strdup(arg);
1022 if (pp->lazy_line == NULL)
1023 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001024 break;
1025 }
1026 ptr = strpbrk(arg, ";:+@%");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001027 if (ptr) {
1028 nc = *ptr;
1029 *ptr++ = '\0';
1030 }
1031 switch (c) {
1032 case ':': /* Line number */
1033 pp->line = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001034 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001035 semantic_error("There is non-digit char"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001036 " in line number.\n");
1037 return -EINVAL;
1038 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001039 break;
1040 case '+': /* Byte offset from a symbol */
1041 pp->offset = strtoul(arg, &tmp, 0);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001042 if (*tmp != '\0') {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001043 semantic_error("There is non-digit character"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001044 " in offset.\n");
1045 return -EINVAL;
1046 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001047 break;
1048 case '@': /* File name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001049 if (pp->file) {
1050 semantic_error("SRC@SRC is not allowed.\n");
1051 return -EINVAL;
1052 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001053 pp->file = strdup(arg);
1054 if (pp->file == NULL)
1055 return -ENOMEM;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001056 break;
1057 case '%': /* Probe places */
1058 if (strcmp(arg, "return") == 0) {
1059 pp->retprobe = 1;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001060 } else { /* Others not supported yet */
1061 semantic_error("%%%s is not supported.\n", arg);
1062 return -ENOTSUP;
1063 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001064 break;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001065 default: /* Buggy case */
1066 pr_err("This program has a bug at %s:%d.\n",
1067 __FILE__, __LINE__);
1068 return -ENOTSUP;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001069 break;
1070 }
1071 }
1072
1073 /* Exclusion check */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001074 if (pp->lazy_line && pp->line) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001075 semantic_error("Lazy pattern can't be used with"
1076 " line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001077 return -EINVAL;
1078 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001079
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001080 if (pp->lazy_line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001081 semantic_error("Lazy pattern can't be used with offset.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001082 return -EINVAL;
1083 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001084
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001085 if (pp->line && pp->offset) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001086 semantic_error("Offset can't be used with line number.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001087 return -EINVAL;
1088 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001089
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001090 if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001091 semantic_error("File always requires line number or "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001092 "lazy pattern.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001093 return -EINVAL;
1094 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001095
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001096 if (pp->offset && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001097 semantic_error("Offset requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001098 return -EINVAL;
1099 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001100
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001101 if (pp->retprobe && !pp->function) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001102 semantic_error("Return probe requires an entry function.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001103 return -EINVAL;
1104 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001105
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001106 if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001107 semantic_error("Offset/Line/Lazy pattern can't be used with "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001108 "return probe.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001109 return -EINVAL;
1110 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001111
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001112 pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001113 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1114 pp->lazy_line);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001115 return 0;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001116}
1117
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001118/* Parse perf-probe event argument */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001119static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001120{
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001121 char *tmp, *goodname;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001122 struct perf_probe_arg_field **fieldp;
1123
1124 pr_debug("parsing arg: %s into ", str);
1125
Masami Hiramatsu48481932010-04-12 13:16:53 -04001126 tmp = strchr(str, '=');
1127 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001128 arg->name = strndup(str, tmp - str);
1129 if (arg->name == NULL)
1130 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001131 pr_debug("name:%s ", arg->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001132 str = tmp + 1;
1133 }
1134
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001135 tmp = strchr(str, ':');
1136 if (tmp) { /* Type setting */
1137 *tmp = '\0';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001138 arg->type = strdup(tmp + 1);
1139 if (arg->type == NULL)
1140 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001141 pr_debug("type:%s ", arg->type);
1142 }
1143
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001144 tmp = strpbrk(str, "-.[");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001145 if (!is_c_varname(str) || !tmp) {
1146 /* A variable, register, symbol or special value */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001147 arg->var = strdup(str);
1148 if (arg->var == NULL)
1149 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001150 pr_debug("%s\n", arg->var);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001151 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001152 }
1153
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001154 /* Structure fields or array element */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001155 arg->var = strndup(str, tmp - str);
1156 if (arg->var == NULL)
1157 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001158 goodname = arg->var;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001159 pr_debug("%s, ", arg->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001160 fieldp = &arg->field;
1161
1162 do {
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001163 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1164 if (*fieldp == NULL)
1165 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001166 if (*tmp == '[') { /* Array */
1167 str = tmp;
1168 (*fieldp)->index = strtol(str + 1, &tmp, 0);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001169 (*fieldp)->ref = true;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001170 if (*tmp != ']' || tmp == str + 1) {
1171 semantic_error("Array index must be a"
1172 " number.\n");
1173 return -EINVAL;
1174 }
1175 tmp++;
1176 if (*tmp == '\0')
1177 tmp = NULL;
1178 } else { /* Structure */
1179 if (*tmp == '.') {
1180 str = tmp + 1;
1181 (*fieldp)->ref = false;
1182 } else if (tmp[1] == '>') {
1183 str = tmp + 2;
1184 (*fieldp)->ref = true;
1185 } else {
1186 semantic_error("Argument parse error: %s\n",
1187 str);
1188 return -EINVAL;
1189 }
1190 tmp = strpbrk(str, "-.[");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001191 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001192 if (tmp) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001193 (*fieldp)->name = strndup(str, tmp - str);
1194 if ((*fieldp)->name == NULL)
1195 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001196 if (*str != '[')
1197 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001198 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1199 fieldp = &(*fieldp)->next;
1200 }
1201 } while (tmp);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001202 (*fieldp)->name = strdup(str);
1203 if ((*fieldp)->name == NULL)
1204 return -ENOMEM;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001205 if (*str != '[')
1206 goodname = (*fieldp)->name;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001207 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
Masami Hiramatsudf0faf42010-04-12 13:17:00 -04001208
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001209 /* If no name is specified, set the last field name (not array index)*/
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001210 if (!arg->name) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001211 arg->name = strdup(goodname);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001212 if (arg->name == NULL)
1213 return -ENOMEM;
1214 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001215 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001216}
1217
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001218/* Parse perf-probe event command */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001219int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001220{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001221 char **argv;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001222 int argc, i, ret = 0;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -05001223
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001224 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001225 if (!argv) {
1226 pr_debug("Failed to split arguments.\n");
1227 return -ENOMEM;
1228 }
1229 if (argc - 1 > MAX_PROBE_ARGS) {
1230 semantic_error("Too many probe arguments (%d).\n", argc - 1);
1231 ret = -ERANGE;
1232 goto out;
1233 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001234 /* Parse probe point */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001235 ret = parse_perf_probe_point(argv[0], pev);
1236 if (ret < 0)
1237 goto out;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001238
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001239 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001240 pev->nargs = argc - 1;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001241 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1242 if (pev->args == NULL) {
1243 ret = -ENOMEM;
1244 goto out;
1245 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001246 for (i = 0; i < pev->nargs && ret >= 0; i++) {
1247 ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1248 if (ret >= 0 &&
1249 is_c_varname(pev->args[i].var) && pev->point.retprobe) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001250 semantic_error("You can't specify local variable for"
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001251 " kretprobe.\n");
1252 ret = -EINVAL;
1253 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001254 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001255out:
Masami Hiramatsue1c01d62009-11-30 19:20:05 -05001256 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001257
1258 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001259}
1260
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001261/* Return true if this perf_probe_event requires debuginfo */
1262bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001263{
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001264 int i;
1265
1266 if (pev->point.file || pev->point.line || pev->point.lazy_line)
1267 return true;
1268
1269 for (i = 0; i < pev->nargs; i++)
Masami Hiramatsu48481932010-04-12 13:16:53 -04001270 if (is_c_varname(pev->args[i].var))
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001271 return true;
1272
1273 return false;
1274}
1275
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301276/* Parse probe_events event into struct probe_point */
1277static int parse_probe_trace_command(const char *cmd,
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001278 struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001279{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301280 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001281 char pr;
1282 char *p;
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001283 char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001284 int ret, i, argc;
1285 char **argv;
1286
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301287 pr_debug("Parsing probe_events: %s\n", cmd);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001288 argv = argv_split(cmd, &argc);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001289 if (!argv) {
1290 pr_debug("Failed to split arguments.\n");
1291 return -ENOMEM;
1292 }
1293 if (argc < 2) {
1294 semantic_error("Too few probe arguments.\n");
1295 ret = -ERANGE;
1296 goto out;
1297 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001298
1299 /* Scan event and group name. */
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001300 argv0_str = strdup(argv[0]);
1301 if (argv0_str == NULL) {
1302 ret = -ENOMEM;
1303 goto out;
1304 }
1305 fmt1_str = strtok_r(argv0_str, ":", &fmt);
1306 fmt2_str = strtok_r(NULL, "/", &fmt);
1307 fmt3_str = strtok_r(NULL, " \t", &fmt);
1308 if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1309 || fmt3_str == NULL) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001310 semantic_error("Failed to parse event name: %s\n", argv[0]);
1311 ret = -EINVAL;
1312 goto out;
1313 }
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001314 pr = fmt1_str[0];
1315 tev->group = strdup(fmt2_str);
1316 tev->event = strdup(fmt3_str);
1317 if (tev->group == NULL || tev->event == NULL) {
1318 ret = -ENOMEM;
1319 goto out;
1320 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001321 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001322
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001323 tp->retprobe = (pr == 'r');
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001324
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09001325 /* Scan module name(if there), function name and offset */
1326 p = strchr(argv[1], ':');
1327 if (p) {
1328 tp->module = strndup(argv[1], p - argv[1]);
1329 p++;
1330 } else
1331 p = argv[1];
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001332 fmt1_str = strtok_r(p, "+", &fmt);
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001333 if (fmt1_str[0] == '0') /* only the address started with 0x */
1334 tp->address = strtoul(fmt1_str, NULL, 0);
1335 else {
1336 /* Only the symbol-based probe has offset */
1337 tp->symbol = strdup(fmt1_str);
1338 if (tp->symbol == NULL) {
1339 ret = -ENOMEM;
1340 goto out;
1341 }
1342 fmt2_str = strtok_r(NULL, "", &fmt);
1343 if (fmt2_str == NULL)
1344 tp->offset = 0;
1345 else
1346 tp->offset = strtoul(fmt2_str, NULL, 10);
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001347 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001348
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001349 tev->nargs = argc - 2;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301350 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001351 if (tev->args == NULL) {
1352 ret = -ENOMEM;
1353 goto out;
1354 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001355 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001356 p = strchr(argv[i + 2], '=');
1357 if (p) /* We don't need which register is assigned. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001358 *p++ = '\0';
1359 else
1360 p = argv[i + 2];
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001361 tev->args[i].name = strdup(argv[i + 2]);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001362 /* TODO: parse regs and offset */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001363 tev->args[i].value = strdup(p);
1364 if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1365 ret = -ENOMEM;
1366 goto out;
1367 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001368 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001369 ret = 0;
1370out:
Irina Tirdeabcbd0042012-09-20 23:37:50 +03001371 free(argv0_str);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001372 argv_free(argv);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001373 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001374}
1375
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001376/* Compose only probe arg */
1377int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
1378{
1379 struct perf_probe_arg_field *field = pa->field;
1380 int ret;
1381 char *tmp = buf;
1382
Masami Hiramatsu48481932010-04-12 13:16:53 -04001383 if (pa->name && pa->var)
1384 ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
1385 else
1386 ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001387 if (ret <= 0)
1388 goto error;
1389 tmp += ret;
1390 len -= ret;
1391
1392 while (field) {
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001393 if (field->name[0] == '[')
1394 ret = e_snprintf(tmp, len, "%s", field->name);
1395 else
1396 ret = e_snprintf(tmp, len, "%s%s",
1397 field->ref ? "->" : ".", field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001398 if (ret <= 0)
1399 goto error;
1400 tmp += ret;
1401 len -= ret;
1402 field = field->next;
1403 }
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001404
1405 if (pa->type) {
1406 ret = e_snprintf(tmp, len, ":%s", pa->type);
1407 if (ret <= 0)
1408 goto error;
1409 tmp += ret;
1410 len -= ret;
1411 }
1412
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001413 return tmp - buf;
1414error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001415 pr_debug("Failed to synthesize perf probe argument: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001416 strerror(-ret));
1417 return ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001418}
1419
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001420/* Compose only probe point (not argument) */
1421static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001422{
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001423 char *buf, *tmp;
1424 char offs[32] = "", line[32] = "", file[32] = "";
1425 int ret, len;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001426
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001427 buf = zalloc(MAX_CMDLEN);
1428 if (buf == NULL) {
1429 ret = -ENOMEM;
1430 goto error;
1431 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001432 if (pp->offset) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001433 ret = e_snprintf(offs, 32, "+%lu", pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001434 if (ret <= 0)
1435 goto error;
1436 }
1437 if (pp->line) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001438 ret = e_snprintf(line, 32, ":%d", pp->line);
1439 if (ret <= 0)
1440 goto error;
1441 }
1442 if (pp->file) {
Franck Bui-Huu32ae2ad2010-12-23 16:04:23 +01001443 tmp = pp->file;
1444 len = strlen(tmp);
1445 if (len > 30) {
1446 tmp = strchr(pp->file + len - 30, '/');
1447 tmp = tmp ? tmp + 1 : pp->file + len - 30;
1448 }
1449 ret = e_snprintf(file, 32, "@%s", tmp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001450 if (ret <= 0)
1451 goto error;
1452 }
1453
1454 if (pp->function)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001455 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
1456 offs, pp->retprobe ? "%return" : "", line,
1457 file);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001458 else
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001459 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001460 if (ret <= 0)
1461 goto error;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001462
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001463 return buf;
1464error:
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001465 pr_debug("Failed to synthesize perf probe point: %s\n",
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001466 strerror(-ret));
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001467 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001468 return NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001469}
1470
1471#if 0
1472char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1473{
1474 char *buf;
1475 int i, len, ret;
1476
1477 buf = synthesize_perf_probe_point(&pev->point);
1478 if (!buf)
1479 return NULL;
1480
1481 len = strlen(buf);
1482 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001483 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001484 pev->args[i].name);
1485 if (ret <= 0) {
1486 free(buf);
1487 return NULL;
1488 }
1489 len += ret;
1490 }
1491
1492 return buf;
1493}
1494#endif
1495
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301496static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001497 char **buf, size_t *buflen,
1498 int depth)
1499{
1500 int ret;
1501 if (ref->next) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301502 depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001503 buflen, depth + 1);
1504 if (depth < 0)
1505 goto out;
1506 }
1507
1508 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
1509 if (ret < 0)
1510 depth = ret;
1511 else {
1512 *buf += ret;
1513 *buflen -= ret;
1514 }
1515out:
1516 return depth;
1517
1518}
1519
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301520static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001521 char *buf, size_t buflen)
1522{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301523 struct probe_trace_arg_ref *ref = arg->ref;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001524 int ret, depth = 0;
1525 char *tmp = buf;
1526
1527 /* Argument name or separator */
1528 if (arg->name)
1529 ret = e_snprintf(buf, buflen, " %s=", arg->name);
1530 else
1531 ret = e_snprintf(buf, buflen, " ");
1532 if (ret < 0)
1533 return ret;
1534 buf += ret;
1535 buflen -= ret;
1536
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001537 /* Special case: @XXX */
1538 if (arg->value[0] == '@' && arg->ref)
1539 ref = ref->next;
1540
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001541 /* Dereferencing arguments */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001542 if (ref) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301543 depth = __synthesize_probe_trace_arg_ref(ref, &buf,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001544 &buflen, 1);
1545 if (depth < 0)
1546 return depth;
1547 }
1548
1549 /* Print argument value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001550 if (arg->value[0] == '@' && arg->ref)
1551 ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
1552 arg->ref->offset);
1553 else
1554 ret = e_snprintf(buf, buflen, "%s", arg->value);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001555 if (ret < 0)
1556 return ret;
1557 buf += ret;
1558 buflen -= ret;
1559
1560 /* Closing */
1561 while (depth--) {
1562 ret = e_snprintf(buf, buflen, ")");
1563 if (ret < 0)
1564 return ret;
1565 buf += ret;
1566 buflen -= ret;
1567 }
Masami Hiramatsu49849122010-04-12 13:17:15 -04001568 /* Print argument type */
1569 if (arg->type) {
1570 ret = e_snprintf(buf, buflen, ":%s", arg->type);
1571 if (ret <= 0)
1572 return ret;
1573 buf += ret;
1574 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001575
1576 return buf - tmp;
1577}
1578
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301579char *synthesize_probe_trace_command(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001580{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301581 struct probe_trace_point *tp = &tev->point;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001582 char *buf;
1583 int i, len, ret;
1584
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001585 buf = zalloc(MAX_CMDLEN);
1586 if (buf == NULL)
1587 return NULL;
1588
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301589 if (tev->uprobes)
1590 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s:%s",
1591 tp->retprobe ? 'r' : 'p',
1592 tev->group, tev->event,
1593 tp->module, tp->symbol);
1594 else
1595 len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s%s%s+%lu",
1596 tp->retprobe ? 'r' : 'p',
1597 tev->group, tev->event,
1598 tp->module ?: "", tp->module ? ":" : "",
1599 tp->symbol, tp->offset);
1600
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001601 if (len <= 0)
1602 goto error;
1603
1604 for (i = 0; i < tev->nargs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301605 ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001606 MAX_CMDLEN - len);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001607 if (ret <= 0)
1608 goto error;
1609 len += ret;
1610 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001611
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001612 return buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001613error:
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001614 free(buf);
1615 return NULL;
1616}
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001617
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001618static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
1619 struct perf_probe_point *pp,
1620 bool is_kprobe)
1621{
1622 struct symbol *sym = NULL;
1623 struct map *map;
1624 u64 addr;
1625 int ret = -ENOENT;
1626
1627 if (!is_kprobe) {
1628 map = dso__new_map(tp->module);
1629 if (!map)
1630 goto out;
1631 addr = tp->address;
1632 sym = map__find_symbol(map, addr, NULL);
1633 } else {
1634 addr = kernel_get_symbol_address_by_name(tp->symbol, true);
1635 if (addr) {
1636 addr += tp->offset;
1637 sym = __find_kernel_function(addr, &map);
1638 }
1639 }
1640 if (!sym)
1641 goto out;
1642
1643 pp->retprobe = tp->retprobe;
1644 pp->offset = addr - map->unmap_ip(map, sym->start);
1645 pp->function = strdup(sym->name);
1646 ret = pp->function ? 0 : -ENOMEM;
1647
1648out:
1649 if (map && !is_kprobe) {
1650 dso__delete(map->dso);
1651 map__delete(map);
1652 }
1653
1654 return ret;
1655}
1656
1657static int convert_to_perf_probe_point(struct probe_trace_point *tp,
1658 struct perf_probe_point *pp,
1659 bool is_kprobe)
1660{
1661 char buf[128];
1662 int ret;
1663
1664 ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
1665 if (!ret)
1666 return 0;
1667 ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
1668 if (!ret)
1669 return 0;
1670
1671 pr_debug("Failed to find probe point from both of dwarf and map.\n");
1672
1673 if (tp->symbol) {
1674 pp->function = strdup(tp->symbol);
1675 pp->offset = tp->offset;
1676 } else if (!tp->module && !is_kprobe) {
1677 ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
1678 if (ret < 0)
1679 return ret;
1680 pp->function = strdup(buf);
1681 pp->offset = 0;
1682 }
1683 if (pp->function == NULL)
1684 return -ENOMEM;
1685
1686 pp->retprobe = tp->retprobe;
1687
1688 return 0;
1689}
1690
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301691static int convert_to_perf_probe_event(struct probe_trace_event *tev,
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301692 struct perf_probe_event *pev, bool is_kprobe)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001693{
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001694 char buf[64] = "";
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001695 int i, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001696
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001697 /* Convert event/group name */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001698 pev->event = strdup(tev->event);
1699 pev->group = strdup(tev->group);
1700 if (pev->event == NULL || pev->group == NULL)
1701 return -ENOMEM;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001702
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001703 /* Convert trace_point to probe_point */
Masami Hiramatsu5a6f6312014-02-06 05:32:23 +00001704 ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001705 if (ret < 0)
1706 return ret;
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03001707
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001708 /* Convert trace_arg to probe_arg */
1709 pev->nargs = tev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001710 pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1711 if (pev->args == NULL)
1712 return -ENOMEM;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001713 for (i = 0; i < tev->nargs && ret >= 0; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001714 if (tev->args[i].name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001715 pev->args[i].name = strdup(tev->args[i].name);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001716 else {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301717 ret = synthesize_probe_trace_arg(&tev->args[i],
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001718 buf, 64);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001719 pev->args[i].name = strdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001720 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001721 if (pev->args[i].name == NULL && ret >= 0)
1722 ret = -ENOMEM;
1723 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001724
1725 if (ret < 0)
1726 clear_perf_probe_event(pev);
1727
1728 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001729}
1730
1731void clear_perf_probe_event(struct perf_probe_event *pev)
1732{
1733 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001734 struct perf_probe_arg_field *field, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001735 int i;
1736
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001737 free(pev->event);
1738 free(pev->group);
1739 free(pp->file);
1740 free(pp->function);
1741 free(pp->lazy_line);
1742
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001743 for (i = 0; i < pev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001744 free(pev->args[i].name);
1745 free(pev->args[i].var);
1746 free(pev->args[i].type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001747 field = pev->args[i].field;
1748 while (field) {
1749 next = field->next;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001750 zfree(&field->name);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001751 free(field);
1752 field = next;
1753 }
1754 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001755 free(pev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001756 memset(pev, 0, sizeof(*pev));
1757}
1758
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301759static void clear_probe_trace_event(struct probe_trace_event *tev)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001760{
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301761 struct probe_trace_arg_ref *ref, *next;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001762 int i;
1763
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001764 free(tev->event);
1765 free(tev->group);
1766 free(tev->point.symbol);
1767 free(tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001768 for (i = 0; i < tev->nargs; i++) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001769 free(tev->args[i].name);
1770 free(tev->args[i].value);
1771 free(tev->args[i].type);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001772 ref = tev->args[i].ref;
1773 while (ref) {
1774 next = ref->next;
1775 free(ref);
1776 ref = next;
1777 }
1778 }
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001779 free(tev->args);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001780 memset(tev, 0, sizeof(*tev));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001781}
1782
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301783static void print_warn_msg(const char *file, bool is_kprobe)
1784{
1785
1786 if (errno == ENOENT) {
1787 const char *config;
1788
1789 if (!is_kprobe)
1790 config = "CONFIG_UPROBE_EVENTS";
1791 else
1792 config = "CONFIG_KPROBE_EVENTS";
1793
1794 pr_warning("%s file does not exist - please rebuild kernel"
1795 " with %s.\n", file, config);
1796 } else
1797 pr_warning("Failed to open %s file: %s\n", file,
1798 strerror(errno));
1799}
1800
1801static int open_probe_events(const char *trace_file, bool readwrite,
1802 bool is_kprobe)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001803{
1804 char buf[PATH_MAX];
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001805 const char *__debugfs;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001806 int ret;
1807
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001808 __debugfs = debugfs_find_mountpoint();
1809 if (__debugfs == NULL) {
1810 pr_warning("Debugfs is not mounted.\n");
1811 return -ENOENT;
1812 }
1813
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301814 ret = e_snprintf(buf, PATH_MAX, "%s/%s", __debugfs, trace_file);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001815 if (ret >= 0) {
Masami Hiramatsu7ca59892010-04-14 18:39:28 -04001816 pr_debug("Opening %s write=%d\n", buf, readwrite);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001817 if (readwrite && !probe_event_dry_run)
1818 ret = open(buf, O_RDWR, O_APPEND);
1819 else
1820 ret = open(buf, O_RDONLY, 0);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04001821
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301822 if (ret < 0)
1823 print_warn_msg(buf, is_kprobe);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001824 }
1825 return ret;
1826}
1827
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301828static int open_kprobe_events(bool readwrite)
1829{
1830 return open_probe_events("tracing/kprobe_events", readwrite, true);
1831}
1832
1833static int open_uprobe_events(bool readwrite)
1834{
1835 return open_probe_events("tracing/uprobe_events", readwrite, false);
1836}
1837
1838/* Get raw string list of current kprobe_events or uprobe_events */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301839static struct strlist *get_probe_trace_command_rawlist(int fd)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001840{
1841 int ret, idx;
1842 FILE *fp;
1843 char buf[MAX_CMDLEN];
1844 char *p;
1845 struct strlist *sl;
1846
1847 sl = strlist__new(true, NULL);
1848
1849 fp = fdopen(dup(fd), "r");
1850 while (!feof(fp)) {
1851 p = fgets(buf, MAX_CMDLEN, fp);
1852 if (!p)
1853 break;
1854
1855 idx = strlen(p) - 1;
1856 if (p[idx] == '\n')
1857 p[idx] = '\0';
1858 ret = strlist__add(sl, buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001859 if (ret < 0) {
1860 pr_debug("strlist__add failed: %s\n", strerror(-ret));
1861 strlist__delete(sl);
1862 return NULL;
1863 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001864 }
1865 fclose(fp);
1866
1867 return sl;
1868}
1869
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001870/* Show an event */
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001871static int show_perf_probe_event(struct perf_probe_event *pev,
1872 const char *module)
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001873{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001874 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001875 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001876 char *place;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001877
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001878 /* Synthesize only event probe point */
1879 place = synthesize_perf_probe_point(&pev->point);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001880 if (!place)
1881 return -EINVAL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001882
1883 ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -05001884 if (ret < 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001885 return ret;
1886
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001887 printf(" %-20s (on %s", buf, place);
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001888 if (module)
1889 printf(" in %s", module);
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001890
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001891 if (pev->nargs > 0) {
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001892 printf(" with");
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001893 for (i = 0; i < pev->nargs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001894 ret = synthesize_perf_probe_arg(&pev->args[i],
1895 buf, 128);
1896 if (ret < 0)
1897 break;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001898 printf(" %s", buf);
1899 }
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001900 }
1901 printf(")\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001902 free(place);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001903 return ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -05001904}
1905
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301906static int __show_perf_probe_events(int fd, bool is_kprobe)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001907{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301908 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301909 struct probe_trace_event tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001910 struct perf_probe_event pev;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001911 struct strlist *rawlist;
1912 struct str_node *ent;
1913
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001914 memset(&tev, 0, sizeof(tev));
1915 memset(&pev, 0, sizeof(pev));
Masami Hiramatsu72041332010-01-05 17:47:10 -05001916
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301917 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001918 if (!rawlist)
1919 return -ENOENT;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001920
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001921 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301922 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001923 if (ret >= 0) {
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301924 ret = convert_to_perf_probe_event(&tev, &pev,
1925 is_kprobe);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001926 if (ret >= 0)
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00001927 ret = show_perf_probe_event(&pev,
1928 tev.point.module);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001929 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001930 clear_perf_probe_event(&pev);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301931 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001932 if (ret < 0)
1933 break;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001934 }
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001935 strlist__delete(rawlist);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001936
1937 return ret;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -05001938}
1939
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301940/* List up current perf-probe events */
1941int show_perf_probe_events(void)
1942{
1943 int fd, ret;
1944
1945 setup_pager();
1946 fd = open_kprobe_events(false);
1947
1948 if (fd < 0)
1949 return fd;
1950
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001951 ret = init_symbol_maps(false);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301952 if (ret < 0)
1953 return ret;
1954
1955 ret = __show_perf_probe_events(fd, true);
1956 close(fd);
1957
1958 fd = open_uprobe_events(false);
1959 if (fd >= 0) {
1960 ret = __show_perf_probe_events(fd, false);
1961 close(fd);
1962 }
1963
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00001964 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05301965 return ret;
1966}
1967
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001968/* Get current perf-probe event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301969static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001970{
Masami Hiramatsufa282442009-12-08 17:03:23 -05001971 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001972 struct strlist *sl, *rawlist;
1973 struct str_node *ent;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301974 struct probe_trace_event tev;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001975 int ret = 0;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001976
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001977 memset(&tev, 0, sizeof(tev));
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301978 rawlist = get_probe_trace_command_rawlist(fd);
Masami Hiramatsue1d20172009-12-07 12:00:46 -05001979 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05001980 strlist__for_each(ent, rawlist) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301981 ret = parse_probe_trace_command(ent->s, &tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001982 if (ret < 0)
1983 break;
Masami Hiramatsufa282442009-12-08 17:03:23 -05001984 if (include_group) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001985 ret = e_snprintf(buf, 128, "%s:%s", tev.group,
1986 tev.event);
1987 if (ret >= 0)
1988 ret = strlist__add(sl, buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -05001989 } else
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001990 ret = strlist__add(sl, tev.event);
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301991 clear_probe_trace_event(&tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001992 if (ret < 0)
1993 break;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001994 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05001995 strlist__delete(rawlist);
1996
Masami Hiramatsu146a1432010-04-12 13:17:42 -04001997 if (ret < 0) {
1998 strlist__delete(sl);
1999 return NULL;
2000 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002001 return sl;
2002}
2003
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302004static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002005{
Frederic Weisbecker6eca8cc2010-04-21 02:01:05 +02002006 int ret = 0;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302007 char *buf = synthesize_probe_trace_command(tev);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002008
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002009 if (!buf) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302010 pr_debug("Failed to synthesize probe trace event.\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002011 return -EINVAL;
2012 }
2013
Masami Hiramatsufa282442009-12-08 17:03:23 -05002014 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002015 if (!probe_event_dry_run) {
2016 ret = write(fd, buf, strlen(buf));
2017 if (ret <= 0)
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002018 pr_warning("Failed to write event: %s\n",
2019 strerror(errno));
Masami Hiramatsuf4d7da42010-03-16 18:06:05 -04002020 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002021 free(buf);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002022 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002023}
2024
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002025static int get_new_event_name(char *buf, size_t len, const char *base,
2026 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002027{
2028 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002029
2030 /* Try no suffix */
2031 ret = e_snprintf(buf, len, "%s", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002032 if (ret < 0) {
2033 pr_debug("snprintf() failed: %s\n", strerror(-ret));
2034 return ret;
2035 }
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002036 if (!strlist__has_entry(namelist, buf))
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002037 return 0;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002038
Masami Hiramatsud761b082009-12-15 10:32:25 -05002039 if (!allow_suffix) {
2040 pr_warning("Error: event \"%s\" already exists. "
2041 "(Use -f to force duplicates.)\n", base);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002042 return -EEXIST;
Masami Hiramatsud761b082009-12-15 10:32:25 -05002043 }
2044
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -05002045 /* Try to add suffix */
2046 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002047 ret = e_snprintf(buf, len, "%s_%d", base, i);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002048 if (ret < 0) {
2049 pr_debug("snprintf() failed: %s\n", strerror(-ret));
2050 return ret;
2051 }
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002052 if (!strlist__has_entry(namelist, buf))
2053 break;
2054 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002055 if (i == MAX_EVENT_INDEX) {
2056 pr_warning("Too many events are on the same function.\n");
2057 ret = -ERANGE;
2058 }
2059
2060 return ret;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002061}
2062
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302063static int __add_probe_trace_events(struct perf_probe_event *pev,
2064 struct probe_trace_event *tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002065 int ntevs, bool allow_suffix)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002066{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002067 int i, fd, ret;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302068 struct probe_trace_event *tev = NULL;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002069 char buf[64];
2070 const char *event, *group;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002071 struct strlist *namelist;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002072
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302073 if (pev->uprobes)
2074 fd = open_uprobe_events(true);
2075 else
2076 fd = open_kprobe_events(true);
2077
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002078 if (fd < 0)
2079 return fd;
Masami Hiramatsub498ce12009-11-30 19:20:25 -05002080 /* Get current event names */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302081 namelist = get_probe_trace_event_names(fd, false);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002082 if (!namelist) {
2083 pr_debug("Failed to get current event list.\n");
2084 return -EIO;
2085 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002086
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002087 ret = 0;
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302088 printf("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002089 for (i = 0; i < ntevs; i++) {
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002090 tev = &tevs[i];
2091 if (pev->event)
2092 event = pev->event;
2093 else
2094 if (pev->point.function)
2095 event = pev->point.function;
2096 else
2097 event = tev->point.symbol;
2098 if (pev->group)
2099 group = pev->group;
2100 else
2101 group = PERFPROBE_GROUP;
2102
2103 /* Get an unused new event name */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002104 ret = get_new_event_name(buf, 64, event,
2105 namelist, allow_suffix);
2106 if (ret < 0)
2107 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002108 event = buf;
2109
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002110 tev->event = strdup(event);
2111 tev->group = strdup(group);
2112 if (tev->event == NULL || tev->group == NULL) {
2113 ret = -ENOMEM;
2114 break;
2115 }
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302116 ret = write_probe_trace_event(fd, tev);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002117 if (ret < 0)
2118 break;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002119 /* Add added event name to namelist */
2120 strlist__add(namelist, event);
2121
2122 /* Trick here - save current event/group */
2123 event = pev->event;
2124 group = pev->group;
2125 pev->event = tev->event;
2126 pev->group = tev->group;
Masami Hiramatsufb226cc2014-02-06 05:32:13 +00002127 show_perf_probe_event(pev, tev->point.module);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002128 /* Trick here - restore current event/group */
2129 pev->event = (char *)event;
2130 pev->group = (char *)group;
2131
2132 /*
2133 * Probes after the first probe which comes from same
2134 * user input are always allowed to add suffix, because
2135 * there might be several addresses corresponding to
2136 * one code line.
2137 */
2138 allow_suffix = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002139 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002140
2141 if (ret >= 0) {
2142 /* Show how to use the event. */
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302143 printf("\nYou can now use it in all perf tools, such as:\n\n");
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002144 printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
2145 tev->event);
2146 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -05002147
Masami Hiramatsue1d20172009-12-07 12:00:46 -05002148 strlist__delete(namelist);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002149 close(fd);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002150 return ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05002151}
Masami Hiramatsufa282442009-12-08 17:03:23 -05002152
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302153static int convert_to_probe_trace_events(struct perf_probe_event *pev,
2154 struct probe_trace_event **tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302155 int max_tevs, const char *target)
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002156{
2157 struct symbol *sym;
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002158 int ret, i;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302159 struct probe_trace_event *tev;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002160
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002161 if (pev->uprobes && !pev->group) {
2162 /* Replace group name if not given */
2163 ret = convert_exec_to_group(target, &pev->group);
2164 if (ret != 0) {
2165 pr_warning("Failed to make a group name.\n");
2166 return ret;
2167 }
2168 }
2169
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -03002170 /* Convert perf_probe_event with debuginfo */
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302171 ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, target);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002172 if (ret != 0)
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002173 return ret; /* Found in debuginfo or got an error */
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002174
Masami Hiramatsufb7345b2013-12-26 05:41:53 +00002175 if (pev->uprobes) {
2176 ret = convert_name_to_addr(pev, target);
2177 if (ret < 0)
2178 return ret;
2179 }
2180
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002181 /* Allocate trace event buffer */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302182 tev = *tevs = zalloc(sizeof(struct probe_trace_event));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002183 if (tev == NULL)
2184 return -ENOMEM;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002185
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002186 /* Copy parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002187 tev->point.symbol = strdup(pev->point.function);
2188 if (tev->point.symbol == NULL) {
2189 ret = -ENOMEM;
2190 goto error;
2191 }
Jovi Zhangce27a442011-07-25 22:08:08 +08002192
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302193 if (target) {
2194 tev->point.module = strdup(target);
Jovi Zhangce27a442011-07-25 22:08:08 +08002195 if (tev->point.module == NULL) {
2196 ret = -ENOMEM;
2197 goto error;
2198 }
Masami Hiramatsu190b57f2011-06-27 16:27:45 +09002199 }
Jovi Zhangce27a442011-07-25 22:08:08 +08002200
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002201 tev->point.offset = pev->point.offset;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09002202 tev->point.retprobe = pev->point.retprobe;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002203 tev->nargs = pev->nargs;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302204 tev->uprobes = pev->uprobes;
2205
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002206 if (tev->nargs) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302207 tev->args = zalloc(sizeof(struct probe_trace_arg)
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002208 * tev->nargs);
2209 if (tev->args == NULL) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002210 ret = -ENOMEM;
2211 goto error;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002212 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04002213 for (i = 0; i < tev->nargs; i++) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002214 if (pev->args[i].name) {
2215 tev->args[i].name = strdup(pev->args[i].name);
2216 if (tev->args[i].name == NULL) {
2217 ret = -ENOMEM;
2218 goto error;
2219 }
2220 }
2221 tev->args[i].value = strdup(pev->args[i].var);
2222 if (tev->args[i].value == NULL) {
2223 ret = -ENOMEM;
2224 goto error;
2225 }
2226 if (pev->args[i].type) {
2227 tev->args[i].type = strdup(pev->args[i].type);
2228 if (tev->args[i].type == NULL) {
2229 ret = -ENOMEM;
2230 goto error;
2231 }
2232 }
Masami Hiramatsu48481932010-04-12 13:16:53 -04002233 }
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002234 }
2235
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302236 if (pev->uprobes)
2237 return 1;
2238
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002239 /* Currently just checking function name from symbol map */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09002240 sym = __find_kernel_function_by_name(tev->point.symbol, NULL);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002241 if (!sym) {
2242 pr_warning("Kernel symbol \'%s\' not found.\n",
2243 tev->point.symbol);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002244 ret = -ENOENT;
2245 goto error;
Prashanth Nageshappa1c1bc922012-02-28 09:43:01 +05302246 } else if (tev->point.offset > sym->end - sym->start) {
2247 pr_warning("Offset specified is greater than size of %s\n",
2248 tev->point.symbol);
2249 ret = -ENOENT;
2250 goto error;
2251
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002252 }
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002253
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002254 return 1;
2255error:
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302256 clear_probe_trace_event(tev);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002257 free(tev);
2258 *tevs = NULL;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002259 return ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002260}
2261
2262struct __event_package {
2263 struct perf_probe_event *pev;
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302264 struct probe_trace_event *tevs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002265 int ntevs;
2266};
2267
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002268int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302269 int max_tevs, const char *target, bool force_add)
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002270{
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002271 int i, j, ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002272 struct __event_package *pkgs;
2273
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302274 ret = 0;
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002275 pkgs = zalloc(sizeof(struct __event_package) * npevs);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302276
Masami Hiramatsue334016f12010-04-12 13:17:49 -04002277 if (pkgs == NULL)
2278 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002279
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002280 ret = init_symbol_maps(pevs->uprobes);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002281 if (ret < 0) {
2282 free(pkgs);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002283 return ret;
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002284 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002285
2286 /* Loop 1: convert all events */
2287 for (i = 0; i < npevs; i++) {
2288 pkgs[i].pev = &pevs[i];
2289 /* Convert with or without debuginfo */
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302290 ret = convert_to_probe_trace_events(pkgs[i].pev,
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09002291 &pkgs[i].tevs,
2292 max_tevs,
Srikar Dronamraju4eced232012-02-02 19:50:40 +05302293 target);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002294 if (ret < 0)
2295 goto end;
2296 pkgs[i].ntevs = ret;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002297 }
2298
2299 /* Loop 2: add all events */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03002300 for (i = 0; i < npevs; i++) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302301 ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002302 pkgs[i].ntevs, force_add);
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03002303 if (ret < 0)
2304 break;
2305 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002306end:
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002307 /* Loop 3: cleanup and free trace events */
2308 for (i = 0; i < npevs; i++) {
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002309 for (j = 0; j < pkgs[i].ntevs; j++)
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302310 clear_probe_trace_event(&pkgs[i].tevs[j]);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002311 zfree(&pkgs[i].tevs);
Masami Hiramatsu449e5b22010-08-03 11:11:40 +09002312 }
2313 free(pkgs);
Masami Hiramatsuee45b6c2014-02-06 05:32:04 +00002314 exit_symbol_maps();
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002315
2316 return ret;
Masami Hiramatsue0faa8d2010-03-16 18:05:37 -04002317}
2318
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302319static int __del_trace_probe_event(int fd, struct str_node *ent)
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002320{
2321 char *p;
2322 char buf[128];
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002323 int ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002324
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302325 /* Convert from perf-probe event to trace-probe event */
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002326 ret = e_snprintf(buf, 128, "-:%s", ent->s);
2327 if (ret < 0)
2328 goto error;
2329
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002330 p = strchr(buf + 2, ':');
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002331 if (!p) {
2332 pr_debug("Internal error: %s should have ':' but not.\n",
2333 ent->s);
2334 ret = -ENOTSUP;
2335 goto error;
2336 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002337 *p = '/';
2338
Masami Hiramatsu4235b042010-03-16 18:06:12 -04002339 pr_debug("Writing event: %s\n", buf);
2340 ret = write(fd, buf, strlen(buf));
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002341 if (ret < 0) {
2342 ret = -errno;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002343 goto error;
Masami Hiramatsu44a56042011-10-04 19:45:04 +09002344 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002345
Srikar Dronamrajua844d1e2012-01-20 17:43:54 +05302346 printf("Removed event: %s\n", ent->s);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002347 return 0;
2348error:
2349 pr_warning("Failed to delete event: %s\n", strerror(-ret));
2350 return ret;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002351}
2352
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302353static int del_trace_probe_event(int fd, const char *buf,
2354 struct strlist *namelist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002355{
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002356 struct str_node *ent, *n;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302357 int ret = -1;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002358
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002359 if (strpbrk(buf, "*?")) { /* Glob-exp */
2360 strlist__for_each_safe(ent, n, namelist)
2361 if (strglobmatch(ent->s, buf)) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302362 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002363 if (ret < 0)
2364 break;
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002365 strlist__remove(namelist, ent);
2366 }
2367 } else {
2368 ent = strlist__find(namelist, buf);
2369 if (ent) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +05302370 ret = __del_trace_probe_event(fd, ent);
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002371 if (ret >= 0)
2372 strlist__remove(namelist, ent);
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002373 }
2374 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002375
2376 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002377}
2378
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002379int del_perf_probe_events(struct strlist *dellist)
Masami Hiramatsufa282442009-12-08 17:03:23 -05002380{
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302381 int ret = -1, ufd = -1, kfd = -1;
2382 char buf[128];
Masami Hiramatsufa282442009-12-08 17:03:23 -05002383 const char *group, *event;
2384 char *p, *str;
2385 struct str_node *ent;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302386 struct strlist *namelist = NULL, *unamelist = NULL;
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002387
Masami Hiramatsufa282442009-12-08 17:03:23 -05002388 /* Get current event names */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302389 kfd = open_kprobe_events(true);
2390 if (kfd < 0)
2391 return kfd;
2392
2393 namelist = get_probe_trace_event_names(kfd, true);
2394 ufd = open_uprobe_events(true);
2395
2396 if (ufd >= 0)
2397 unamelist = get_probe_trace_event_names(ufd, true);
2398
2399 if (namelist == NULL && unamelist == NULL)
2400 goto error;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002401
Masami Hiramatsuadf365f2009-12-15 10:32:03 -05002402 strlist__for_each(ent, dellist) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002403 str = strdup(ent->s);
2404 if (str == NULL) {
2405 ret = -ENOMEM;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302406 goto error;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04002407 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002408 pr_debug("Parsing: %s\n", str);
Masami Hiramatsufa282442009-12-08 17:03:23 -05002409 p = strchr(str, ':');
2410 if (p) {
2411 group = str;
2412 *p = '\0';
2413 event = p + 1;
2414 } else {
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002415 group = "*";
Masami Hiramatsufa282442009-12-08 17:03:23 -05002416 event = str;
2417 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302418
2419 ret = e_snprintf(buf, 128, "%s:%s", group, event);
2420 if (ret < 0) {
2421 pr_err("Failed to copy event.");
2422 free(str);
2423 goto error;
2424 }
2425
Masami Hiramatsubbbb5212009-12-15 10:32:10 -05002426 pr_debug("Group: %s, Event: %s\n", group, event);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302427
2428 if (namelist)
2429 ret = del_trace_probe_event(kfd, buf, namelist);
2430
2431 if (unamelist && ret != 0)
2432 ret = del_trace_probe_event(ufd, buf, unamelist);
2433
2434 if (ret != 0)
2435 pr_info("Info: Event \"%s\" does not exist.\n", buf);
2436
Masami Hiramatsufa282442009-12-08 17:03:23 -05002437 free(str);
2438 }
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302439
2440error:
2441 if (kfd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302442 strlist__delete(namelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302443 close(kfd);
2444 }
2445
2446 if (ufd >= 0) {
Srikar Dronamrajua23c4dc2012-05-31 17:16:43 +05302447 strlist__delete(unamelist);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302448 close(ufd);
2449 }
Masami Hiramatsu146a1432010-04-12 13:17:42 -04002450
2451 return ret;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002452}
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302453
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002454/* TODO: don't use a global variable for filter ... */
2455static struct strfilter *available_func_filter;
Masami Hiramatsufa282442009-12-08 17:03:23 -05002456
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002457/*
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002458 * If a symbol corresponds to a function with global binding and
2459 * matches filter return 0. For all others return 1.
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002460 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002461static int filter_available_functions(struct map *map __maybe_unused,
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002462 struct symbol *sym)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002463{
Masami Hiramatsu3c422582011-01-20 23:15:45 +09002464 if (sym->binding == STB_GLOBAL &&
2465 strfilter__compare(available_func_filter, sym->name))
2466 return 0;
2467 return 1;
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002468}
2469
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002470int show_available_funcs(const char *target, struct strfilter *_filter,
2471 bool user)
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002472{
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002473 struct map *map;
2474 int ret;
2475
2476 ret = init_symbol_maps(user);
2477 if (ret < 0)
2478 return ret;
2479
2480 /* Get a symbol map */
2481 if (user)
2482 map = dso__new_map(target);
2483 else
2484 map = kernel_get_module_map(target);
2485 if (!map) {
2486 pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002487 return -EINVAL;
2488 }
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002489
2490 /* Load symbols with given filter */
2491 available_func_filter = _filter;
2492 if (map__load(map, filter_available_functions)) {
2493 pr_err("Failed to load symbols in %s\n", (target) ? : "kernel");
2494 goto end;
2495 }
Masami Hiramatsue80711c2011-01-13 21:46:11 +09002496 if (!dso__sorted_by_name(map->dso, map->type))
2497 dso__sort_by_name(map->dso, map->type);
2498
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002499 /* Show all (filtered) symbols */
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302500 setup_pager();
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002501 dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
2502end:
2503 if (user) {
2504 dso__delete(map->dso);
2505 map__delete(map);
2506 }
2507 exit_symbol_maps();
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302508
Masami Hiramatsu2df58632014-02-06 05:32:11 +00002509 return ret;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302510}
2511
2512/*
2513 * uprobe_events only accepts address:
2514 * Convert function and any offset to address
2515 */
2516static int convert_name_to_addr(struct perf_probe_event *pev, const char *exec)
2517{
2518 struct perf_probe_point *pp = &pev->point;
2519 struct symbol *sym;
2520 struct map *map = NULL;
Masami Hiramatsu8a613d42013-12-26 05:41:50 +00002521 char *function = NULL;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302522 int ret = -EINVAL;
2523 unsigned long long vaddr = 0;
2524
2525 if (!pp->function) {
2526 pr_warning("No function specified for uprobes");
2527 goto out;
2528 }
2529
2530 function = strdup(pp->function);
2531 if (!function) {
2532 pr_warning("Failed to allocate memory by strdup.\n");
2533 ret = -ENOMEM;
2534 goto out;
2535 }
2536
Masami Hiramatsu8a613d42013-12-26 05:41:50 +00002537 map = dso__new_map(exec);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302538 if (!map) {
2539 pr_warning("Cannot find appropriate DSO for %s.\n", exec);
2540 goto out;
2541 }
2542 available_func_filter = strfilter__new(function, NULL);
2543 if (map__load(map, filter_available_functions)) {
2544 pr_err("Failed to load map.\n");
2545 goto out;
2546 }
2547
2548 sym = map__find_symbol_by_name(map, function, NULL);
2549 if (!sym) {
2550 pr_warning("Cannot find %s in DSO %s\n", function, exec);
2551 goto out;
2552 }
2553
2554 if (map->start > sym->start)
2555 vaddr = map->start;
2556 vaddr += sym->start + pp->offset + map->pgoff;
2557 pp->offset = 0;
2558
2559 if (!pev->event) {
2560 pev->event = function;
2561 function = NULL;
2562 }
2563 if (!pev->group) {
David Ahern1fb89442012-09-08 09:06:51 -06002564 char *ptr1, *ptr2, *exec_copy;
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302565
2566 pev->group = zalloc(sizeof(char *) * 64);
David Ahern1fb89442012-09-08 09:06:51 -06002567 exec_copy = strdup(exec);
2568 if (!exec_copy) {
2569 ret = -ENOMEM;
2570 pr_warning("Failed to copy exec string.\n");
2571 goto out;
2572 }
2573
2574 ptr1 = strdup(basename(exec_copy));
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302575 if (ptr1) {
2576 ptr2 = strpbrk(ptr1, "-._");
2577 if (ptr2)
2578 *ptr2 = '\0';
2579 e_snprintf(pev->group, 64, "%s_%s", PERFPROBE_GROUP,
2580 ptr1);
2581 free(ptr1);
2582 }
David Ahern1fb89442012-09-08 09:06:51 -06002583 free(exec_copy);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302584 }
2585 free(pp->function);
2586 pp->function = zalloc(sizeof(char *) * MAX_PROBE_ARGS);
2587 if (!pp->function) {
2588 ret = -ENOMEM;
2589 pr_warning("Failed to allocate memory by zalloc.\n");
2590 goto out;
2591 }
2592 e_snprintf(pp->function, MAX_PROBE_ARGS, "0x%llx", vaddr);
2593 ret = 0;
2594
2595out:
2596 if (map) {
2597 dso__delete(map->dso);
2598 map__delete(map);
2599 }
2600 if (function)
2601 free(function);
Srikar Dronamraju225466f2012-04-16 17:39:09 +05302602 return ret;
2603}