perf probe: Remove incorrect symbol check for --list
[deliverable/linux.git] / tools / perf / util / probe-finder.c
CommitLineData
4ea42b18
MH
1/*
2 * probe-finder.c : C expression to kprobe event converter
3 *
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
22#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 <getopt.h>
30#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
cd932c59 33#include <dwarf-regs.h>
074fc0e4 34
124bb83c 35#include <linux/bitops.h>
89c69c0e
MH
36#include "event.h"
37#include "debug.h"
074fc0e4 38#include "util.h"
9ed7e1b8 39#include "symbol.h"
4ea42b18
MH
40#include "probe-finder.h"
41
4984912e
MH
42/* Kprobe tracer basic type is up to u64 */
43#define MAX_BASIC_TYPE_BITS 64
44
2a9c8c36
MH
45/* Line number list operations */
46
47/* Add a line to line number list */
d3b63d7a 48static int line_list__add_line(struct list_head *head, int line)
2a9c8c36
MH
49{
50 struct line_node *ln;
51 struct list_head *p;
52
53 /* Reverse search, because new line will be the last one */
54 list_for_each_entry_reverse(ln, head, list) {
55 if (ln->line < line) {
56 p = &ln->list;
57 goto found;
58 } else if (ln->line == line) /* Already exist */
e334016f 59 return 1;
2a9c8c36
MH
60 }
61 /* List is empty, or the smallest entry */
62 p = head;
63found:
64 pr_debug("line list: add a line %u\n", line);
e334016f
MH
65 ln = zalloc(sizeof(struct line_node));
66 if (ln == NULL)
67 return -ENOMEM;
2a9c8c36
MH
68 ln->line = line;
69 INIT_LIST_HEAD(&ln->list);
70 list_add(&ln->list, p);
e334016f 71 return 0;
2a9c8c36
MH
72}
73
74/* Check if the line in line number list */
d3b63d7a 75static int line_list__has_line(struct list_head *head, int line)
2a9c8c36
MH
76{
77 struct line_node *ln;
78
79 /* Reverse search, because new line will be the last one */
80 list_for_each_entry(ln, head, list)
81 if (ln->line == line)
82 return 1;
83
84 return 0;
85}
86
87/* Init line number list */
88static void line_list__init(struct list_head *head)
89{
90 INIT_LIST_HEAD(head);
91}
92
93/* Free line number list */
94static void line_list__free(struct list_head *head)
95{
96 struct line_node *ln;
97 while (!list_empty(head)) {
98 ln = list_first_entry(head, struct line_node, list);
99 list_del(&ln->list);
100 free(ln);
101 }
102}
103
469b9b88 104/* Dwarf FL wrappers */
469b9b88
MH
105static char *debuginfo_path; /* Currently dummy */
106
107static const Dwfl_Callbacks offline_callbacks = {
108 .find_debuginfo = dwfl_standard_find_debuginfo,
109 .debuginfo_path = &debuginfo_path,
110
111 .section_address = dwfl_offline_section_address,
112
113 /* We use this table for core files too. */
114 .find_elf = dwfl_build_id_find_elf,
115};
116
469b9b88 117/* Get a Dwarf from offline image */
316c7136 118static int debuginfo__init_offline_dwarf(struct debuginfo *dbg,
ff741783 119 const char *path)
469b9b88 120{
ff741783 121 int fd;
469b9b88 122
ff741783
MH
123 fd = open(path, O_RDONLY);
124 if (fd < 0)
125 return fd;
469b9b88 126
316c7136
ACM
127 dbg->dwfl = dwfl_begin(&offline_callbacks);
128 if (!dbg->dwfl)
ff741783 129 goto error;
469b9b88 130
316c7136
ACM
131 dbg->mod = dwfl_report_offline(dbg->dwfl, "", "", fd);
132 if (!dbg->mod)
469b9b88
MH
133 goto error;
134
316c7136
ACM
135 dbg->dbg = dwfl_module_getdwarf(dbg->mod, &dbg->bias);
136 if (!dbg->dbg)
ff741783
MH
137 goto error;
138
139 return 0;
469b9b88 140error:
316c7136
ACM
141 if (dbg->dwfl)
142 dwfl_end(dbg->dwfl);
ff741783
MH
143 else
144 close(fd);
316c7136 145 memset(dbg, 0, sizeof(*dbg));
ff741783
MH
146
147 return -ENOENT;
469b9b88
MH
148}
149
3b4694de
MH
150#if _ELFUTILS_PREREQ(0, 148)
151/* This method is buggy if elfutils is older than 0.148 */
152static int __linux_kernel_find_elf(Dwfl_Module *mod,
153 void **userdata,
154 const char *module_name,
155 Dwarf_Addr base,
156 char **file_name, Elf **elfp)
157{
158 int fd;
159 const char *path = kernel_get_module_path(module_name);
160
161 pr_debug2("Use file %s for %s\n", path, module_name);
162 if (path) {
163 fd = open(path, O_RDONLY);
164 if (fd >= 0) {
165 *file_name = strdup(path);
166 return fd;
167 }
168 }
169 /* If failed, try to call standard method */
170 return dwfl_linux_kernel_find_elf(mod, userdata, module_name, base,
171 file_name, elfp);
172}
173
174static const Dwfl_Callbacks kernel_callbacks = {
175 .find_debuginfo = dwfl_standard_find_debuginfo,
176 .debuginfo_path = &debuginfo_path,
177
178 .find_elf = __linux_kernel_find_elf,
179 .section_address = dwfl_linux_kernel_module_section_address,
180};
181
469b9b88 182/* Get a Dwarf from live kernel image */
316c7136 183static int debuginfo__init_online_kernel_dwarf(struct debuginfo *dbg,
ff741783 184 Dwarf_Addr addr)
469b9b88 185{
316c7136
ACM
186 dbg->dwfl = dwfl_begin(&kernel_callbacks);
187 if (!dbg->dwfl)
ff741783 188 return -EINVAL;
469b9b88
MH
189
190 /* Load the kernel dwarves: Don't care the result here */
316c7136
ACM
191 dwfl_linux_kernel_report_kernel(dbg->dwfl);
192 dwfl_linux_kernel_report_modules(dbg->dwfl);
469b9b88 193
316c7136 194 dbg->dbg = dwfl_addrdwarf(dbg->dwfl, addr, &dbg->bias);
469b9b88 195 /* Here, check whether we could get a real dwarf */
316c7136 196 if (!dbg->dbg) {
3b4694de
MH
197 pr_debug("Failed to find kernel dwarf at %lx\n",
198 (unsigned long)addr);
316c7136
ACM
199 dwfl_end(dbg->dwfl);
200 memset(dbg, 0, sizeof(*dbg));
ff741783 201 return -ENOENT;
469b9b88 202 }
ff741783
MH
203
204 return 0;
469b9b88 205}
3b4694de
MH
206#else
207/* With older elfutils, this just support kernel module... */
316c7136 208static int debuginfo__init_online_kernel_dwarf(struct debuginfo *dbg,
1d037ca1 209 Dwarf_Addr addr __maybe_unused)
3b4694de 210{
3b4694de
MH
211 const char *path = kernel_get_module_path("kernel");
212
213 if (!path) {
214 pr_err("Failed to find vmlinux path\n");
ff741783 215 return -ENOENT;
3b4694de
MH
216 }
217
218 pr_debug2("Use file %s for debuginfo\n", path);
316c7136 219 return debuginfo__init_offline_dwarf(dbg, path);
ff741783
MH
220}
221#endif
222
223struct debuginfo *debuginfo__new(const char *path)
224{
316c7136
ACM
225 struct debuginfo *dbg = zalloc(sizeof(*dbg));
226 if (!dbg)
3b4694de
MH
227 return NULL;
228
04662523
ACM
229 if (debuginfo__init_offline_dwarf(dbg, path) < 0)
230 zfree(&dbg);
ff741783 231
316c7136 232 return dbg;
ff741783
MH
233}
234
235struct debuginfo *debuginfo__new_online_kernel(unsigned long addr)
236{
316c7136
ACM
237 struct debuginfo *dbg = zalloc(sizeof(*dbg));
238
239 if (!dbg)
ff741783
MH
240 return NULL;
241
04662523
ACM
242 if (debuginfo__init_online_kernel_dwarf(dbg, (Dwarf_Addr)addr) < 0)
243 zfree(&dbg);
ff741783 244
316c7136 245 return dbg;
ff741783
MH
246}
247
316c7136 248void debuginfo__delete(struct debuginfo *dbg)
ff741783 249{
316c7136
ACM
250 if (dbg) {
251 if (dbg->dwfl)
252 dwfl_end(dbg->dwfl);
253 free(dbg);
ff741783 254 }
3b4694de 255}
469b9b88 256
4ea42b18
MH
257/*
258 * Probe finder related functions
259 */
260
0e60836b 261static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
b7dcb857 262{
0e60836b
SD
263 struct probe_trace_arg_ref *ref;
264 ref = zalloc(sizeof(struct probe_trace_arg_ref));
b7dcb857
MH
265 if (ref != NULL)
266 ref->offset = offs;
267 return ref;
268}
269
cf6eb489
MH
270/*
271 * Convert a location into trace_arg.
272 * If tvar == NULL, this just checks variable can be converted.
3d918a12
MH
273 * If fentry == true and vr_die is a parameter, do huristic search
274 * for the location fuzzed by function entry mcount.
cf6eb489
MH
275 */
276static int convert_variable_location(Dwarf_Die *vr_die, Dwarf_Addr addr,
3d918a12 277 Dwarf_Op *fb_ops, Dwarf_Die *sp_die,
cf6eb489 278 struct probe_trace_arg *tvar)
4ea42b18 279{
b7dcb857 280 Dwarf_Attribute attr;
3d918a12 281 Dwarf_Addr tmp = 0;
b7dcb857
MH
282 Dwarf_Op *op;
283 size_t nops;
804b3606
MH
284 unsigned int regn;
285 Dwarf_Word offs = 0;
4235b045 286 bool ref = false;
4ea42b18 287 const char *regs;
b7dcb857
MH
288 int ret;
289
632941c4
MH
290 if (dwarf_attr(vr_die, DW_AT_external, &attr) != NULL)
291 goto static_var;
292
b7dcb857 293 /* TODO: handle more than 1 exprs */
3d918a12
MH
294 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
295 return -EINVAL; /* Broken DIE ? */
296 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) {
297 ret = dwarf_entrypc(sp_die, &tmp);
298 if (ret || addr != tmp ||
299 dwarf_tag(vr_die) != DW_TAG_formal_parameter ||
300 dwarf_highpc(sp_die, &tmp))
301 return -ENOENT;
302 /*
303 * This is fuzzed by fentry mcount. We try to find the
304 * parameter location at the earliest address.
305 */
306 for (addr += 1; addr <= tmp; addr++) {
307 if (dwarf_getlocation_addr(&attr, addr, &op,
308 &nops, 1) > 0)
309 goto found;
310 }
b7dcb857
MH
311 return -ENOENT;
312 }
3d918a12
MH
313found:
314 if (nops == 0)
315 /* TODO: Support const_value */
316 return -ENOENT;
b7dcb857
MH
317
318 if (op->atom == DW_OP_addr) {
632941c4 319static_var:
cf6eb489
MH
320 if (!tvar)
321 return 0;
b7dcb857
MH
322 /* Static variables on memory (not stack), make @varname */
323 ret = strlen(dwarf_diename(vr_die));
324 tvar->value = zalloc(ret + 2);
325 if (tvar->value == NULL)
326 return -ENOMEM;
327 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
328 tvar->ref = alloc_trace_arg_ref((long)offs);
329 if (tvar->ref == NULL)
330 return -ENOMEM;
331 return 0;
332 }
4ea42b18 333
4ea42b18 334 /* If this is based on frame buffer, set the offset */
804b3606 335 if (op->atom == DW_OP_fbreg) {
cf6eb489 336 if (fb_ops == NULL)
b55a87ad 337 return -ENOTSUP;
4235b045 338 ref = true;
804b3606 339 offs = op->number;
cf6eb489 340 op = &fb_ops[0];
804b3606 341 }
4ea42b18 342
804b3606
MH
343 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
344 regn = op->atom - DW_OP_breg0;
345 offs += op->number;
4235b045 346 ref = true;
804b3606
MH
347 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
348 regn = op->atom - DW_OP_reg0;
349 } else if (op->atom == DW_OP_bregx) {
350 regn = op->number;
351 offs += op->number2;
4235b045 352 ref = true;
804b3606
MH
353 } else if (op->atom == DW_OP_regx) {
354 regn = op->number;
b55a87ad 355 } else {
cf6eb489 356 pr_debug("DW_OP %x is not supported.\n", op->atom);
b55a87ad
MH
357 return -ENOTSUP;
358 }
4ea42b18 359
cf6eb489
MH
360 if (!tvar)
361 return 0;
362
4ea42b18 363 regs = get_arch_regstr(regn);
b55a87ad 364 if (!regs) {
cf6eb489 365 /* This should be a bug in DWARF or this tool */
0e43e5d2
MH
366 pr_warning("Mapping for the register number %u "
367 "missing on this architecture.\n", regn);
b55a87ad
MH
368 return -ERANGE;
369 }
4ea42b18 370
02b95dad
MH
371 tvar->value = strdup(regs);
372 if (tvar->value == NULL)
373 return -ENOMEM;
374
4235b045 375 if (ref) {
b7dcb857 376 tvar->ref = alloc_trace_arg_ref((long)offs);
e334016f
MH
377 if (tvar->ref == NULL)
378 return -ENOMEM;
4235b045 379 }
b55a87ad 380 return 0;
4ea42b18
MH
381}
382
124bb83c
MH
383#define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
384
b55a87ad 385static int convert_variable_type(Dwarf_Die *vr_die,
0e60836b 386 struct probe_trace_arg *tvar,
73317b95 387 const char *cast)
4984912e 388{
0e60836b 389 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
4984912e
MH
390 Dwarf_Die type;
391 char buf[16];
bcfc0821 392 int bsize, boffs, total;
4984912e
MH
393 int ret;
394
73317b95
MH
395 /* TODO: check all types */
396 if (cast && strcmp(cast, "string") != 0) {
397 /* Non string type is OK */
398 tvar->type = strdup(cast);
399 return (tvar->type == NULL) ? -ENOMEM : 0;
400 }
401
bcfc0821
MH
402 bsize = dwarf_bitsize(vr_die);
403 if (bsize > 0) {
124bb83c 404 /* This is a bitfield */
bcfc0821
MH
405 boffs = dwarf_bitoffset(vr_die);
406 total = dwarf_bytesize(vr_die);
407 if (boffs < 0 || total < 0)
408 return -ENOENT;
409 ret = snprintf(buf, 16, "b%d@%d/%zd", bsize, boffs,
410 BYTES_TO_BITS(total));
124bb83c
MH
411 goto formatted;
412 }
413
b55a87ad
MH
414 if (die_get_real_type(vr_die, &type) == NULL) {
415 pr_warning("Failed to get a type information of %s.\n",
416 dwarf_diename(vr_die));
417 return -ENOENT;
418 }
4984912e 419
b2a3c12b
MH
420 pr_debug("%s type is %s.\n",
421 dwarf_diename(vr_die), dwarf_diename(&type));
422
73317b95
MH
423 if (cast && strcmp(cast, "string") == 0) { /* String type */
424 ret = dwarf_tag(&type);
425 if (ret != DW_TAG_pointer_type &&
426 ret != DW_TAG_array_type) {
427 pr_warning("Failed to cast into string: "
0e43e5d2 428 "%s(%s) is not a pointer nor array.\n",
73317b95
MH
429 dwarf_diename(vr_die), dwarf_diename(&type));
430 return -EINVAL;
431 }
7ce28b5b
HL
432 if (die_get_real_type(&type, &type) == NULL) {
433 pr_warning("Failed to get a type"
434 " information.\n");
435 return -ENOENT;
436 }
73317b95 437 if (ret == DW_TAG_pointer_type) {
73317b95
MH
438 while (*ref_ptr)
439 ref_ptr = &(*ref_ptr)->next;
440 /* Add new reference with offset +0 */
0e60836b 441 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
73317b95
MH
442 if (*ref_ptr == NULL) {
443 pr_warning("Out of memory error\n");
444 return -ENOMEM;
445 }
446 }
82175633
MH
447 if (!die_compare_name(&type, "char") &&
448 !die_compare_name(&type, "unsigned char")) {
73317b95 449 pr_warning("Failed to cast into string: "
0e43e5d2 450 "%s is not (unsigned) char *.\n",
73317b95
MH
451 dwarf_diename(vr_die));
452 return -EINVAL;
453 }
454 tvar->type = strdup(cast);
455 return (tvar->type == NULL) ? -ENOMEM : 0;
456 }
457
bcfc0821
MH
458 ret = dwarf_bytesize(&type);
459 if (ret <= 0)
124bb83c
MH
460 /* No size ... try to use default type */
461 return 0;
bcfc0821 462 ret = BYTES_TO_BITS(ret);
4984912e 463
124bb83c
MH
464 /* Check the bitwidth */
465 if (ret > MAX_BASIC_TYPE_BITS) {
466 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
467 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
468 ret = MAX_BASIC_TYPE_BITS;
4984912e 469 }
124bb83c
MH
470 ret = snprintf(buf, 16, "%c%d",
471 die_is_signed_type(&type) ? 's' : 'u', ret);
472
473formatted:
474 if (ret < 0 || ret >= 16) {
475 if (ret >= 16)
476 ret = -E2BIG;
477 pr_warning("Failed to convert variable type: %s\n",
478 strerror(-ret));
479 return ret;
480 }
481 tvar->type = strdup(buf);
482 if (tvar->type == NULL)
483 return -ENOMEM;
b55a87ad 484 return 0;
4984912e
MH
485}
486
b55a87ad 487static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
7df2f329 488 struct perf_probe_arg_field *field,
0e60836b 489 struct probe_trace_arg_ref **ref_ptr,
4984912e 490 Dwarf_Die *die_mem)
7df2f329 491{
0e60836b 492 struct probe_trace_arg_ref *ref = *ref_ptr;
7df2f329
MH
493 Dwarf_Die type;
494 Dwarf_Word offs;
b2a3c12b 495 int ret, tag;
7df2f329
MH
496
497 pr_debug("converting %s in %s\n", field->name, varname);
b55a87ad
MH
498 if (die_get_real_type(vr_die, &type) == NULL) {
499 pr_warning("Failed to get the type of %s.\n", varname);
500 return -ENOENT;
501 }
b2a3c12b
MH
502 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
503 tag = dwarf_tag(&type);
504
505 if (field->name[0] == '[' &&
506 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
507 if (field->next)
508 /* Save original type for next field */
509 memcpy(die_mem, &type, sizeof(*die_mem));
510 /* Get the type of this array */
511 if (die_get_real_type(&type, &type) == NULL) {
512 pr_warning("Failed to get the type of %s.\n", varname);
513 return -ENOENT;
514 }
515 pr_debug2("Array real type: (%x)\n",
516 (unsigned)dwarf_dieoffset(&type));
517 if (tag == DW_TAG_pointer_type) {
0e60836b 518 ref = zalloc(sizeof(struct probe_trace_arg_ref));
b2a3c12b
MH
519 if (ref == NULL)
520 return -ENOMEM;
521 if (*ref_ptr)
522 (*ref_ptr)->next = ref;
523 else
524 *ref_ptr = ref;
525 }
bcfc0821 526 ref->offset += dwarf_bytesize(&type) * field->index;
b2a3c12b
MH
527 if (!field->next)
528 /* Save vr_die for converting types */
529 memcpy(die_mem, vr_die, sizeof(*die_mem));
530 goto next;
531 } else if (tag == DW_TAG_pointer_type) {
532 /* Check the pointer and dereference */
b55a87ad
MH
533 if (!field->ref) {
534 pr_err("Semantic error: %s must be referred by '->'\n",
535 field->name);
536 return -EINVAL;
537 }
7df2f329 538 /* Get the type pointed by this pointer */
b55a87ad
MH
539 if (die_get_real_type(&type, &type) == NULL) {
540 pr_warning("Failed to get the type of %s.\n", varname);
541 return -ENOENT;
542 }
12e5a7ae 543 /* Verify it is a data structure */
7b0295b3
HL
544 tag = dwarf_tag(&type);
545 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
546 pr_warning("%s is not a data structure nor an union.\n",
547 varname);
b55a87ad
MH
548 return -EINVAL;
549 }
12e5a7ae 550
0e60836b 551 ref = zalloc(sizeof(struct probe_trace_arg_ref));
e334016f
MH
552 if (ref == NULL)
553 return -ENOMEM;
7df2f329
MH
554 if (*ref_ptr)
555 (*ref_ptr)->next = ref;
556 else
557 *ref_ptr = ref;
558 } else {
12e5a7ae 559 /* Verify it is a data structure */
7b0295b3
HL
560 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
561 pr_warning("%s is not a data structure nor an union.\n",
562 varname);
b55a87ad
MH
563 return -EINVAL;
564 }
b2a3c12b 565 if (field->name[0] == '[') {
0e43e5d2
MH
566 pr_err("Semantic error: %s is not a pointor"
567 " nor array.\n", varname);
b2a3c12b
MH
568 return -EINVAL;
569 }
b55a87ad
MH
570 if (field->ref) {
571 pr_err("Semantic error: %s must be referred by '.'\n",
572 field->name);
573 return -EINVAL;
574 }
575 if (!ref) {
576 pr_warning("Structure on a register is not "
577 "supported yet.\n");
578 return -ENOTSUP;
579 }
7df2f329
MH
580 }
581
b55a87ad 582 if (die_find_member(&type, field->name, die_mem) == NULL) {
9ef0438a 583 pr_warning("%s(type:%s) has no member %s.\n", varname,
b55a87ad
MH
584 dwarf_diename(&type), field->name);
585 return -EINVAL;
586 }
7df2f329
MH
587
588 /* Get the offset of the field */
7b0295b3
HL
589 if (tag == DW_TAG_union_type) {
590 offs = 0;
591 } else {
592 ret = die_get_data_member_location(die_mem, &offs);
593 if (ret < 0) {
594 pr_warning("Failed to get the offset of %s.\n",
595 field->name);
596 return ret;
597 }
b55a87ad 598 }
7df2f329
MH
599 ref->offset += (long)offs;
600
b2a3c12b 601next:
7df2f329
MH
602 /* Converting next field */
603 if (field->next)
b55a87ad 604 return convert_variable_fields(die_mem, field->name,
de1439d8 605 field->next, &ref, die_mem);
b55a87ad
MH
606 else
607 return 0;
7df2f329
MH
608}
609
4ea42b18 610/* Show a variables in kprobe event format */
b55a87ad 611static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
4ea42b18 612{
4984912e 613 Dwarf_Die die_mem;
4ea42b18
MH
614 int ret;
615
b7dcb857
MH
616 pr_debug("Converting variable %s into trace event.\n",
617 dwarf_diename(vr_die));
804b3606 618
cf6eb489 619 ret = convert_variable_location(vr_die, pf->addr, pf->fb_ops,
3d918a12 620 &pf->sp_die, pf->tvar);
cf6eb489
MH
621 if (ret == -ENOENT)
622 pr_err("Failed to find the location of %s at this address.\n"
623 " Perhaps, it has been optimized out.\n", pf->pvar->var);
624 else if (ret == -ENOTSUP)
625 pr_err("Sorry, we don't support this variable location yet.\n");
626 else if (pf->pvar->field) {
b55a87ad
MH
627 ret = convert_variable_fields(vr_die, pf->pvar->var,
628 pf->pvar->field, &pf->tvar->ref,
629 &die_mem);
4984912e
MH
630 vr_die = &die_mem;
631 }
73317b95
MH
632 if (ret == 0)
633 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
804b3606 634 /* *expr will be cached in libdw. Don't free it. */
b55a87ad 635 return ret;
4ea42b18
MH
636}
637
221d0611
MH
638/* Find a variable in a scope DIE */
639static int find_variable(Dwarf_Die *sc_die, struct probe_finder *pf)
4ea42b18 640{
f182e3e1 641 Dwarf_Die vr_die;
11a1ca35 642 char buf[32], *ptr;
f182e3e1 643 int ret = 0;
4ea42b18 644
367e94c1
MH
645 if (!is_c_varname(pf->pvar->var)) {
646 /* Copy raw parameters */
647 pf->tvar->value = strdup(pf->pvar->var);
648 if (pf->tvar->value == NULL)
649 return -ENOMEM;
650 if (pf->pvar->type) {
651 pf->tvar->type = strdup(pf->pvar->type);
652 if (pf->tvar->type == NULL)
653 return -ENOMEM;
654 }
655 if (pf->pvar->name) {
656 pf->tvar->name = strdup(pf->pvar->name);
657 if (pf->tvar->name == NULL)
658 return -ENOMEM;
659 } else
660 pf->tvar->name = NULL;
661 return 0;
662 }
663
48481938 664 if (pf->pvar->name)
02b95dad 665 pf->tvar->name = strdup(pf->pvar->name);
48481938 666 else {
02b95dad
MH
667 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
668 if (ret < 0)
669 return ret;
11a1ca35
MH
670 ptr = strchr(buf, ':'); /* Change type separator to _ */
671 if (ptr)
672 *ptr = '_';
02b95dad 673 pf->tvar->name = strdup(buf);
48481938 674 }
02b95dad
MH
675 if (pf->tvar->name == NULL)
676 return -ENOMEM;
48481938 677
f182e3e1 678 pr_debug("Searching '%s' variable in context.\n", pf->pvar->var);
b55a87ad 679 /* Search child die for local variables and parameters. */
f182e3e1
MH
680 if (!die_find_variable_at(sc_die, pf->pvar->var, pf->addr, &vr_die)) {
681 /* Search again in global variables */
682 if (!die_find_variable_at(&pf->cu_die, pf->pvar->var, 0, &vr_die))
683 ret = -ENOENT;
b7dcb857 684 }
f66fedcb 685 if (ret >= 0)
f182e3e1
MH
686 ret = convert_variable(&vr_die, pf);
687
b7dcb857 688 if (ret < 0)
b55a87ad
MH
689 pr_warning("Failed to find '%s' in this function.\n",
690 pf->pvar->var);
b7dcb857 691 return ret;
4ea42b18
MH
692}
693
cf6eb489 694/* Convert subprogram DIE to trace point */
576b5237
MH
695static int convert_to_trace_point(Dwarf_Die *sp_die, Dwfl_Module *mod,
696 Dwarf_Addr paddr, bool retprobe,
697 struct probe_trace_point *tp)
4ea42b18 698{
26b79524 699 Dwarf_Addr eaddr, highaddr;
576b5237
MH
700 GElf_Sym sym;
701 const char *symbol;
702
703 /* Verify the address is correct */
704 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
705 pr_warning("Failed to get entry address of %s\n",
706 dwarf_diename(sp_die));
707 return -ENOENT;
708 }
709 if (dwarf_highpc(sp_die, &highaddr) != 0) {
710 pr_warning("Failed to get end address of %s\n",
711 dwarf_diename(sp_die));
712 return -ENOENT;
713 }
714 if (paddr > highaddr) {
715 pr_warning("Offset specified is greater than size of %s\n",
716 dwarf_diename(sp_die));
717 return -EINVAL;
718 }
719
720 /* Get an appropriate symbol from symtab */
721 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL);
722 if (!symbol) {
723 pr_warning("Failed to find symbol at 0x%lx\n",
724 (unsigned long)paddr);
725 return -ENOENT;
726 }
727 tp->offset = (unsigned long)(paddr - sym.st_value);
fb7345bb 728 tp->address = (unsigned long)paddr;
576b5237
MH
729 tp->symbol = strdup(symbol);
730 if (!tp->symbol)
731 return -ENOMEM;
4235b045 732
04ddd04b 733 /* Return probe must be on the head of a subprogram */
cf6eb489
MH
734 if (retprobe) {
735 if (eaddr != paddr) {
04ddd04b 736 pr_warning("Return probe must be on the head of"
0e43e5d2 737 " a real function.\n");
04ddd04b
MH
738 return -EINVAL;
739 }
cf6eb489 740 tp->retprobe = true;
04ddd04b
MH
741 }
742
cf6eb489
MH
743 return 0;
744}
745
221d0611
MH
746/* Call probe_finder callback with scope DIE */
747static int call_probe_finder(Dwarf_Die *sc_die, struct probe_finder *pf)
cf6eb489 748{
cf6eb489
MH
749 Dwarf_Attribute fb_attr;
750 size_t nops;
751 int ret;
752
221d0611
MH
753 if (!sc_die) {
754 pr_err("Caller must pass a scope DIE. Program error.\n");
755 return -EINVAL;
756 }
757
758 /* If not a real subprogram, find a real one */
0dbb1cac 759 if (!die_is_func_def(sc_die)) {
221d0611 760 if (!die_find_realfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
cf6eb489
MH
761 pr_warning("Failed to find probe point in any "
762 "functions.\n");
763 return -ENOENT;
764 }
221d0611
MH
765 } else
766 memcpy(&pf->sp_die, sc_die, sizeof(Dwarf_Die));
4ea42b18 767
221d0611
MH
768 /* Get the frame base attribute/ops from subprogram */
769 dwarf_attr(&pf->sp_die, DW_AT_frame_base, &fb_attr);
d0cb4260 770 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
a34a9854 771 if (ret <= 0 || nops == 0) {
804b3606 772 pf->fb_ops = NULL;
7752f1b0 773#if _ELFUTILS_PREREQ(0, 142)
a34a9854
MH
774 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
775 pf->cfi != NULL) {
776 Dwarf_Frame *frame;
b55a87ad
MH
777 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
778 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
0e43e5d2 779 pr_warning("Failed to get call frame on 0x%jx\n",
b55a87ad
MH
780 (uintmax_t)pf->addr);
781 return -ENOENT;
782 }
7752f1b0 783#endif
a34a9854 784 }
804b3606 785
cf6eb489 786 /* Call finder's callback handler */
221d0611 787 ret = pf->callback(sc_die, pf);
804b3606
MH
788
789 /* *pf->fb_ops will be cached in libdw. Don't free it. */
790 pf->fb_ops = NULL;
cf6eb489
MH
791
792 return ret;
4ea42b18
MH
793}
794
221d0611
MH
795struct find_scope_param {
796 const char *function;
797 const char *file;
798 int line;
799 int diff;
800 Dwarf_Die *die_mem;
801 bool found;
802};
803
804static int find_best_scope_cb(Dwarf_Die *fn_die, void *data)
805{
806 struct find_scope_param *fsp = data;
807 const char *file;
808 int lno;
809
810 /* Skip if declared file name does not match */
811 if (fsp->file) {
812 file = dwarf_decl_file(fn_die);
813 if (!file || strcmp(fsp->file, file) != 0)
814 return 0;
815 }
816 /* If the function name is given, that's what user expects */
817 if (fsp->function) {
818 if (die_compare_name(fn_die, fsp->function)) {
819 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
820 fsp->found = true;
821 return 1;
822 }
823 } else {
824 /* With the line number, find the nearest declared DIE */
825 dwarf_decl_line(fn_die, &lno);
826 if (lno < fsp->line && fsp->diff > fsp->line - lno) {
827 /* Keep a candidate and continue */
828 fsp->diff = fsp->line - lno;
829 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
830 fsp->found = true;
831 }
832 }
833 return 0;
834}
835
836/* Find an appropriate scope fits to given conditions */
837static Dwarf_Die *find_best_scope(struct probe_finder *pf, Dwarf_Die *die_mem)
838{
839 struct find_scope_param fsp = {
840 .function = pf->pev->point.function,
841 .file = pf->fname,
842 .line = pf->lno,
843 .diff = INT_MAX,
844 .die_mem = die_mem,
845 .found = false,
846 };
847
848 cu_walk_functions_at(&pf->cu_die, pf->addr, find_best_scope_cb, &fsp);
849
850 return fsp.found ? die_mem : NULL;
851}
852
4cc9cec6
MH
853static int probe_point_line_walker(const char *fname, int lineno,
854 Dwarf_Addr addr, void *data)
4ea42b18 855{
4cc9cec6 856 struct probe_finder *pf = data;
221d0611 857 Dwarf_Die *sc_die, die_mem;
4cc9cec6 858 int ret;
4ea42b18 859
4cc9cec6
MH
860 if (lineno != pf->lno || strtailcmp(fname, pf->fname) != 0)
861 return 0;
4ea42b18 862
4cc9cec6 863 pf->addr = addr;
221d0611
MH
864 sc_die = find_best_scope(pf, &die_mem);
865 if (!sc_die) {
866 pr_warning("Failed to find scope of probe point.\n");
867 return -ENOENT;
868 }
869
870 ret = call_probe_finder(sc_die, pf);
b0ef0732 871
4cc9cec6 872 /* Continue if no error, because the line will be in inline function */
fbee632d 873 return ret < 0 ? ret : 0;
4cc9cec6 874}
804b3606 875
4cc9cec6
MH
876/* Find probe point from its line number */
877static int find_probe_point_by_line(struct probe_finder *pf)
878{
879 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf);
4ea42b18
MH
880}
881
2a9c8c36
MH
882/* Find lines which match lazy pattern */
883static int find_lazy_match_lines(struct list_head *head,
884 const char *fname, const char *pat)
885{
f50c2169
FBH
886 FILE *fp;
887 char *line = NULL;
888 size_t line_len;
889 ssize_t len;
890 int count = 0, linenum = 1;
891
892 fp = fopen(fname, "r");
893 if (!fp) {
894 pr_warning("Failed to open %s: %s\n", fname, strerror(errno));
b448c4b6 895 return -errno;
b55a87ad
MH
896 }
897
f50c2169 898 while ((len = getline(&line, &line_len, fp)) > 0) {
b448c4b6 899
f50c2169
FBH
900 if (line[len - 1] == '\n')
901 line[len - 1] = '\0';
902
903 if (strlazymatch(line, pat)) {
904 line_list__add_line(head, linenum);
905 count++;
2a9c8c36 906 }
f50c2169 907 linenum++;
2a9c8c36 908 }
f50c2169
FBH
909
910 if (ferror(fp))
911 count = -errno;
912 free(line);
913 fclose(fp);
914
915 if (count == 0)
916 pr_debug("No matched lines found in %s.\n", fname);
917 return count;
2a9c8c36
MH
918}
919
4cc9cec6
MH
920static int probe_point_lazy_walker(const char *fname, int lineno,
921 Dwarf_Addr addr, void *data)
922{
923 struct probe_finder *pf = data;
221d0611 924 Dwarf_Die *sc_die, die_mem;
4cc9cec6
MH
925 int ret;
926
927 if (!line_list__has_line(&pf->lcache, lineno) ||
928 strtailcmp(fname, pf->fname) != 0)
929 return 0;
930
931 pr_debug("Probe line found: line:%d addr:0x%llx\n",
932 lineno, (unsigned long long)addr);
933 pf->addr = addr;
221d0611
MH
934 pf->lno = lineno;
935 sc_die = find_best_scope(pf, &die_mem);
936 if (!sc_die) {
937 pr_warning("Failed to find scope of probe point.\n");
938 return -ENOENT;
939 }
940
941 ret = call_probe_finder(sc_die, pf);
4cc9cec6
MH
942
943 /*
944 * Continue if no error, because the lazy pattern will match
945 * to other lines
946 */
5e814dd5 947 return ret < 0 ? ret : 0;
4cc9cec6
MH
948}
949
2a9c8c36 950/* Find probe points from lazy pattern */
b55a87ad 951static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
2a9c8c36 952{
b55a87ad 953 int ret = 0;
2a9c8c36
MH
954
955 if (list_empty(&pf->lcache)) {
956 /* Matching lazy line pattern */
957 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
4235b045 958 pf->pev->point.lazy_line);
f50c2169 959 if (ret <= 0)
b55a87ad 960 return ret;
2a9c8c36
MH
961 }
962
4cc9cec6 963 return die_walk_lines(sp_die, probe_point_lazy_walker, pf);
2a9c8c36
MH
964}
965
e92b85e1
MH
966static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
967{
db0d2c64 968 struct probe_finder *pf = data;
4235b045 969 struct perf_probe_point *pp = &pf->pev->point;
b55a87ad 970 Dwarf_Addr addr;
db0d2c64 971 int ret;
e92b85e1 972
2a9c8c36 973 if (pp->lazy_line)
db0d2c64 974 ret = find_probe_point_lazy(in_die, pf);
2a9c8c36
MH
975 else {
976 /* Get probe address */
b55a87ad 977 if (dwarf_entrypc(in_die, &addr) != 0) {
0e43e5d2 978 pr_warning("Failed to get entry address of %s.\n",
b55a87ad 979 dwarf_diename(in_die));
db0d2c64 980 return -ENOENT;
b55a87ad
MH
981 }
982 pf->addr = addr;
2a9c8c36
MH
983 pf->addr += pp->offset;
984 pr_debug("found inline addr: 0x%jx\n",
985 (uintmax_t)pf->addr);
986
db0d2c64 987 ret = call_probe_finder(in_die, pf);
2a9c8c36 988 }
e92b85e1 989
db0d2c64 990 return ret;
e92b85e1 991}
804b3606 992
db0d2c64
MH
993/* Callback parameter with return value for libdw */
994struct dwarf_callback_param {
995 void *data;
996 int retval;
997};
998
4ea42b18 999/* Search function from function name */
e92b85e1 1000static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
4ea42b18 1001{
b55a87ad
MH
1002 struct dwarf_callback_param *param = data;
1003 struct probe_finder *pf = param->data;
4235b045 1004 struct perf_probe_point *pp = &pf->pev->point;
4ea42b18 1005
e92b85e1 1006 /* Check tag and diename */
0dbb1cac
MH
1007 if (!die_is_func_def(sp_die) ||
1008 !die_compare_name(sp_die, pp->function))
b55a87ad 1009 return DWARF_CB_OK;
e92b85e1 1010
7d21635a
MH
1011 /* Check declared file */
1012 if (pp->file && strtailcmp(pp->file, dwarf_decl_file(sp_die)))
1013 return DWARF_CB_OK;
1014
2a9c8c36 1015 pf->fname = dwarf_decl_file(sp_die);
e92b85e1 1016 if (pp->line) { /* Function relative line */
e92b85e1
MH
1017 dwarf_decl_line(sp_die, &pf->lno);
1018 pf->lno += pp->line;
b55a87ad 1019 param->retval = find_probe_point_by_line(pf);
e92b85e1
MH
1020 } else if (!dwarf_func_inline(sp_die)) {
1021 /* Real function */
2a9c8c36 1022 if (pp->lazy_line)
b55a87ad 1023 param->retval = find_probe_point_lazy(sp_die, pf);
2a9c8c36 1024 else {
b55a87ad 1025 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
0e43e5d2
MH
1026 pr_warning("Failed to get entry address of "
1027 "%s.\n", dwarf_diename(sp_die));
b55a87ad
MH
1028 param->retval = -ENOENT;
1029 return DWARF_CB_ABORT;
1030 }
2a9c8c36
MH
1031 pf->addr += pp->offset;
1032 /* TODO: Check the address in this function */
cf6eb489 1033 param->retval = call_probe_finder(sp_die, pf);
2a9c8c36 1034 }
db0d2c64 1035 } else
e92b85e1 1036 /* Inlined function: search instances */
db0d2c64
MH
1037 param->retval = die_walk_instances(sp_die,
1038 probe_point_inline_cb, (void *)pf);
e92b85e1 1039
b55a87ad 1040 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
4ea42b18
MH
1041}
1042
b55a87ad 1043static int find_probe_point_by_func(struct probe_finder *pf)
4ea42b18 1044{
b55a87ad
MH
1045 struct dwarf_callback_param _param = {.data = (void *)pf,
1046 .retval = 0};
1047 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
1048 return _param.retval;
4ea42b18
MH
1049}
1050
cd25f8bc
LM
1051struct pubname_callback_param {
1052 char *function;
1053 char *file;
1054 Dwarf_Die *cu_die;
1055 Dwarf_Die *sp_die;
1056 int found;
1057};
1058
1059static int pubname_search_cb(Dwarf *dbg, Dwarf_Global *gl, void *data)
1060{
1061 struct pubname_callback_param *param = data;
1062
1063 if (dwarf_offdie(dbg, gl->die_offset, param->sp_die)) {
1064 if (dwarf_tag(param->sp_die) != DW_TAG_subprogram)
1065 return DWARF_CB_OK;
1066
1067 if (die_compare_name(param->sp_die, param->function)) {
1068 if (!dwarf_offdie(dbg, gl->cu_offset, param->cu_die))
1069 return DWARF_CB_OK;
1070
1071 if (param->file &&
1072 strtailcmp(param->file, dwarf_decl_file(param->sp_die)))
1073 return DWARF_CB_OK;
1074
1075 param->found = 1;
1076 return DWARF_CB_ABORT;
1077 }
1078 }
1079
1080 return DWARF_CB_OK;
1081}
1082
cf6eb489 1083/* Find probe points from debuginfo */
316c7136 1084static int debuginfo__find_probes(struct debuginfo *dbg,
ff741783 1085 struct probe_finder *pf)
4ea42b18 1086{
cf6eb489 1087 struct perf_probe_point *pp = &pf->pev->point;
804b3606
MH
1088 Dwarf_Off off, noff;
1089 size_t cuhl;
1090 Dwarf_Die *diep;
b55a87ad 1091 int ret = 0;
804b3606 1092
7752f1b0 1093#if _ELFUTILS_PREREQ(0, 142)
a34a9854 1094 /* Get the call frame information from this dwarf */
316c7136 1095 pf->cfi = dwarf_getcfi(dbg->dbg);
7752f1b0 1096#endif
a34a9854 1097
804b3606 1098 off = 0;
cf6eb489 1099 line_list__init(&pf->lcache);
cd25f8bc
LM
1100
1101 /* Fastpath: lookup by function name from .debug_pubnames section */
1102 if (pp->function) {
1103 struct pubname_callback_param pubname_param = {
1104 .function = pp->function,
1105 .file = pp->file,
1106 .cu_die = &pf->cu_die,
1107 .sp_die = &pf->sp_die,
2b348a77 1108 .found = 0,
cd25f8bc
LM
1109 };
1110 struct dwarf_callback_param probe_param = {
1111 .data = pf,
1112 };
1113
316c7136 1114 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
ff741783 1115 &pubname_param, 0);
cd25f8bc
LM
1116 if (pubname_param.found) {
1117 ret = probe_point_search_cb(&pf->sp_die, &probe_param);
1118 if (ret)
1119 goto found;
1120 }
1121 }
1122
804b3606 1123 /* Loop on CUs (Compilation Unit) */
316c7136 1124 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
4ea42b18 1125 /* Get the DIE(Debugging Information Entry) of this CU */
316c7136 1126 diep = dwarf_offdie(dbg->dbg, off + cuhl, &pf->cu_die);
804b3606
MH
1127 if (!diep)
1128 continue;
4ea42b18
MH
1129
1130 /* Check if target file is included. */
1131 if (pp->file)
cf6eb489 1132 pf->fname = cu_find_realpath(&pf->cu_die, pp->file);
804b3606 1133 else
cf6eb489 1134 pf->fname = NULL;
4ea42b18 1135
cf6eb489 1136 if (!pp->file || pf->fname) {
4ea42b18 1137 if (pp->function)
cf6eb489 1138 ret = find_probe_point_by_func(pf);
2a9c8c36 1139 else if (pp->lazy_line)
cf6eb489 1140 ret = find_probe_point_lazy(NULL, pf);
b0ef0732 1141 else {
cf6eb489
MH
1142 pf->lno = pp->line;
1143 ret = find_probe_point_by_line(pf);
b0ef0732 1144 }
8635bf6e 1145 if (ret < 0)
fbee632d 1146 break;
4ea42b18 1147 }
804b3606 1148 off = noff;
4ea42b18 1149 }
cd25f8bc
LM
1150
1151found:
cf6eb489 1152 line_list__free(&pf->lcache);
4ea42b18 1153
cf6eb489
MH
1154 return ret;
1155}
1156
7969ec77
MH
1157struct local_vars_finder {
1158 struct probe_finder *pf;
1159 struct perf_probe_arg *args;
1160 int max_args;
1161 int nargs;
1162 int ret;
1163};
1164
1165/* Collect available variables in this scope */
1166static int copy_variables_cb(Dwarf_Die *die_mem, void *data)
1167{
1168 struct local_vars_finder *vf = data;
3d918a12 1169 struct probe_finder *pf = vf->pf;
7969ec77
MH
1170 int tag;
1171
1172 tag = dwarf_tag(die_mem);
1173 if (tag == DW_TAG_formal_parameter ||
1174 tag == DW_TAG_variable) {
1175 if (convert_variable_location(die_mem, vf->pf->addr,
3d918a12
MH
1176 vf->pf->fb_ops, &pf->sp_die,
1177 NULL) == 0) {
7969ec77
MH
1178 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem);
1179 if (vf->args[vf->nargs].var == NULL) {
1180 vf->ret = -ENOMEM;
1181 return DIE_FIND_CB_END;
1182 }
1183 pr_debug(" %s", vf->args[vf->nargs].var);
1184 vf->nargs++;
1185 }
1186 }
1187
1188 if (dwarf_haspc(die_mem, vf->pf->addr))
1189 return DIE_FIND_CB_CONTINUE;
1190 else
1191 return DIE_FIND_CB_SIBLING;
1192}
1193
1194static int expand_probe_args(Dwarf_Die *sc_die, struct probe_finder *pf,
1195 struct perf_probe_arg *args)
1196{
1197 Dwarf_Die die_mem;
1198 int i;
1199 int n = 0;
1200 struct local_vars_finder vf = {.pf = pf, .args = args,
1201 .max_args = MAX_PROBE_ARGS, .ret = 0};
1202
1203 for (i = 0; i < pf->pev->nargs; i++) {
1204 /* var never be NULL */
1205 if (strcmp(pf->pev->args[i].var, "$vars") == 0) {
1206 pr_debug("Expanding $vars into:");
1207 vf.nargs = n;
1208 /* Special local variables */
1209 die_find_child(sc_die, copy_variables_cb, (void *)&vf,
1210 &die_mem);
1211 pr_debug(" (%d)\n", vf.nargs - n);
1212 if (vf.ret < 0)
1213 return vf.ret;
1214 n = vf.nargs;
1215 } else {
1216 /* Copy normal argument */
1217 args[n] = pf->pev->args[i];
1218 n++;
1219 }
1220 }
1221 return n;
1222}
1223
cf6eb489 1224/* Add a found probe point into trace event list */
221d0611 1225static int add_probe_trace_event(Dwarf_Die *sc_die, struct probe_finder *pf)
cf6eb489
MH
1226{
1227 struct trace_event_finder *tf =
1228 container_of(pf, struct trace_event_finder, pf);
1229 struct probe_trace_event *tev;
7969ec77 1230 struct perf_probe_arg *args;
cf6eb489
MH
1231 int ret, i;
1232
1233 /* Check number of tevs */
1234 if (tf->ntevs == tf->max_tevs) {
1235 pr_warning("Too many( > %d) probe point found.\n",
1236 tf->max_tevs);
1237 return -ERANGE;
1238 }
1239 tev = &tf->tevs[tf->ntevs++];
1240
221d0611 1241 /* Trace point should be converted from subprogram DIE */
576b5237 1242 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr,
221d0611 1243 pf->pev->point.retprobe, &tev->point);
cf6eb489
MH
1244 if (ret < 0)
1245 return ret;
1246
1247 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
1248 tev->point.offset);
1249
7969ec77
MH
1250 /* Expand special probe argument if exist */
1251 args = zalloc(sizeof(struct perf_probe_arg) * MAX_PROBE_ARGS);
1252 if (args == NULL)
cf6eb489 1253 return -ENOMEM;
7969ec77
MH
1254
1255 ret = expand_probe_args(sc_die, pf, args);
1256 if (ret < 0)
1257 goto end;
1258
1259 tev->nargs = ret;
1260 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1261 if (tev->args == NULL) {
1262 ret = -ENOMEM;
1263 goto end;
1264 }
1265
1266 /* Find each argument */
1267 for (i = 0; i < tev->nargs; i++) {
1268 pf->pvar = &args[i];
cf6eb489 1269 pf->tvar = &tev->args[i];
221d0611
MH
1270 /* Variable should be found from scope DIE */
1271 ret = find_variable(sc_die, pf);
cf6eb489 1272 if (ret != 0)
7969ec77 1273 break;
cf6eb489
MH
1274 }
1275
7969ec77
MH
1276end:
1277 free(args);
1278 return ret;
cf6eb489
MH
1279}
1280
1281/* Find probe_trace_events specified by perf_probe_event from debuginfo */
316c7136 1282int debuginfo__find_trace_events(struct debuginfo *dbg,
ff741783
MH
1283 struct perf_probe_event *pev,
1284 struct probe_trace_event **tevs, int max_tevs)
cf6eb489
MH
1285{
1286 struct trace_event_finder tf = {
1287 .pf = {.pev = pev, .callback = add_probe_trace_event},
316c7136 1288 .mod = dbg->mod, .max_tevs = max_tevs};
cf6eb489
MH
1289 int ret;
1290
1291 /* Allocate result tevs array */
1292 *tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs);
1293 if (*tevs == NULL)
1294 return -ENOMEM;
1295
1296 tf.tevs = *tevs;
1297 tf.ntevs = 0;
1298
316c7136 1299 ret = debuginfo__find_probes(dbg, &tf.pf);
cf6eb489 1300 if (ret < 0) {
04662523 1301 zfree(tevs);
cf6eb489
MH
1302 return ret;
1303 }
1304
1305 return (ret < 0) ? ret : tf.ntevs;
1306}
1307
1308#define MAX_VAR_LEN 64
1309
1310/* Collect available variables in this scope */
1311static int collect_variables_cb(Dwarf_Die *die_mem, void *data)
1312{
1313 struct available_var_finder *af = data;
1314 struct variable_list *vl;
1315 char buf[MAX_VAR_LEN];
1316 int tag, ret;
1317
1318 vl = &af->vls[af->nvls - 1];
1319
1320 tag = dwarf_tag(die_mem);
1321 if (tag == DW_TAG_formal_parameter ||
1322 tag == DW_TAG_variable) {
1323 ret = convert_variable_location(die_mem, af->pf.addr,
3d918a12
MH
1324 af->pf.fb_ops, &af->pf.sp_die,
1325 NULL);
cf6eb489
MH
1326 if (ret == 0) {
1327 ret = die_get_varname(die_mem, buf, MAX_VAR_LEN);
fb8c5a56 1328 pr_debug2("Add new var: %s\n", buf);
cf6eb489
MH
1329 if (ret > 0)
1330 strlist__add(vl->vars, buf);
1331 }
1332 }
1333
fb8c5a56 1334 if (af->child && dwarf_haspc(die_mem, af->pf.addr))
cf6eb489
MH
1335 return DIE_FIND_CB_CONTINUE;
1336 else
1337 return DIE_FIND_CB_SIBLING;
1338}
1339
1340/* Add a found vars into available variables list */
221d0611 1341static int add_available_vars(Dwarf_Die *sc_die, struct probe_finder *pf)
cf6eb489
MH
1342{
1343 struct available_var_finder *af =
1344 container_of(pf, struct available_var_finder, pf);
1345 struct variable_list *vl;
f182e3e1
MH
1346 Dwarf_Die die_mem;
1347 int ret;
cf6eb489
MH
1348
1349 /* Check number of tevs */
1350 if (af->nvls == af->max_vls) {
1351 pr_warning("Too many( > %d) probe point found.\n", af->max_vls);
1352 return -ERANGE;
1353 }
1354 vl = &af->vls[af->nvls++];
1355
221d0611 1356 /* Trace point should be converted from subprogram DIE */
576b5237 1357 ret = convert_to_trace_point(&pf->sp_die, af->mod, pf->addr,
221d0611 1358 pf->pev->point.retprobe, &vl->point);
cf6eb489
MH
1359 if (ret < 0)
1360 return ret;
1361
1362 pr_debug("Probe point found: %s+%lu\n", vl->point.symbol,
1363 vl->point.offset);
1364
1365 /* Find local variables */
1366 vl->vars = strlist__new(true, NULL);
1367 if (vl->vars == NULL)
1368 return -ENOMEM;
fb8c5a56 1369 af->child = true;
221d0611 1370 die_find_child(sc_die, collect_variables_cb, (void *)af, &die_mem);
cf6eb489 1371
fb8c5a56
MH
1372 /* Find external variables */
1373 if (!af->externs)
1374 goto out;
1375 /* Don't need to search child DIE for externs. */
1376 af->child = false;
f182e3e1 1377 die_find_child(&pf->cu_die, collect_variables_cb, (void *)af, &die_mem);
fb8c5a56
MH
1378
1379out:
cf6eb489
MH
1380 if (strlist__empty(vl->vars)) {
1381 strlist__delete(vl->vars);
1382 vl->vars = NULL;
1383 }
1384
1385 return ret;
1386}
1387
1388/* Find available variables at given probe point */
316c7136 1389int debuginfo__find_available_vars_at(struct debuginfo *dbg,
ff741783
MH
1390 struct perf_probe_event *pev,
1391 struct variable_list **vls,
1392 int max_vls, bool externs)
cf6eb489
MH
1393{
1394 struct available_var_finder af = {
1395 .pf = {.pev = pev, .callback = add_available_vars},
316c7136 1396 .mod = dbg->mod,
fb8c5a56 1397 .max_vls = max_vls, .externs = externs};
cf6eb489
MH
1398 int ret;
1399
1400 /* Allocate result vls array */
1401 *vls = zalloc(sizeof(struct variable_list) * max_vls);
1402 if (*vls == NULL)
1403 return -ENOMEM;
1404
1405 af.vls = *vls;
1406 af.nvls = 0;
1407
316c7136 1408 ret = debuginfo__find_probes(dbg, &af.pf);
cf6eb489
MH
1409 if (ret < 0) {
1410 /* Free vlist for error */
1411 while (af.nvls--) {
74cf249d 1412 zfree(&af.vls[af.nvls].point.symbol);
f5385650 1413 strlist__delete(af.vls[af.nvls].vars);
cf6eb489 1414 }
04662523 1415 zfree(vls);
cf6eb489
MH
1416 return ret;
1417 }
1418
1419 return (ret < 0) ? ret : af.nvls;
4ea42b18
MH
1420}
1421
fb1587d8 1422/* Reverse search */
316c7136 1423int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
ff741783 1424 struct perf_probe_point *ppt)
fb1587d8
MH
1425{
1426 Dwarf_Die cudie, spdie, indie;
e08cfd4b
MH
1427 Dwarf_Addr _addr = 0, baseaddr = 0;
1428 const char *fname = NULL, *func = NULL, *basefunc = NULL, *tmp;
1d46ea2a 1429 int baseline = 0, lineno = 0, ret = 0;
fb1587d8 1430
469b9b88 1431 /* Adjust address with bias */
316c7136 1432 addr += dbg->bias;
ff741783 1433
fb1587d8 1434 /* Find cu die */
316c7136 1435 if (!dwarf_addrdie(dbg->dbg, (Dwarf_Addr)addr - dbg->bias, &cudie)) {
0e43e5d2
MH
1436 pr_warning("Failed to find debug information for address %lx\n",
1437 addr);
75ec5a24
MH
1438 ret = -EINVAL;
1439 goto end;
1440 }
fb1587d8 1441
1d46ea2a
MH
1442 /* Find a corresponding line (filename and lineno) */
1443 cu_find_lineinfo(&cudie, addr, &fname, &lineno);
1444 /* Don't care whether it failed or not */
fb1587d8 1445
1d46ea2a 1446 /* Find a corresponding function (name, baseline and baseaddr) */
e0d153c6 1447 if (die_find_realfunc(&cudie, (Dwarf_Addr)addr, &spdie)) {
1d46ea2a 1448 /* Get function entry information */
e08cfd4b
MH
1449 func = basefunc = dwarf_diename(&spdie);
1450 if (!func ||
1d46ea2a 1451 dwarf_entrypc(&spdie, &baseaddr) != 0 ||
e08cfd4b
MH
1452 dwarf_decl_line(&spdie, &baseline) != 0) {
1453 lineno = 0;
1d46ea2a 1454 goto post;
e08cfd4b 1455 }
1d46ea2a 1456
1b286bdd 1457 fname = dwarf_decl_file(&spdie);
e08cfd4b 1458 if (addr == (unsigned long)baseaddr) {
1d46ea2a
MH
1459 /* Function entry - Relative line number is 0 */
1460 lineno = baseline;
e08cfd4b
MH
1461 goto post;
1462 }
1463
1464 /* Track down the inline functions step by step */
1465 while (die_find_top_inlinefunc(&spdie, (Dwarf_Addr)addr,
1466 &indie)) {
1467 /* There is an inline function */
1d46ea2a 1468 if (dwarf_entrypc(&indie, &_addr) == 0 &&
e08cfd4b 1469 _addr == addr) {
1d46ea2a
MH
1470 /*
1471 * addr is at an inline function entry.
1472 * In this case, lineno should be the call-site
e08cfd4b 1473 * line number. (overwrite lineinfo)
1d46ea2a
MH
1474 */
1475 lineno = die_get_call_lineno(&indie);
e08cfd4b
MH
1476 fname = die_get_call_file(&indie);
1477 break;
1478 } else {
1d46ea2a
MH
1479 /*
1480 * addr is in an inline function body.
1481 * Since lineno points one of the lines
1482 * of the inline function, baseline should
1483 * be the entry line of the inline function.
1484 */
b55a87ad 1485 tmp = dwarf_diename(&indie);
e08cfd4b
MH
1486 if (!tmp ||
1487 dwarf_decl_line(&indie, &baseline) != 0)
1488 break;
1489 func = tmp;
1490 spdie = indie;
b55a87ad 1491 }
fb1587d8 1492 }
e08cfd4b
MH
1493 /* Verify the lineno and baseline are in a same file */
1494 tmp = dwarf_decl_file(&spdie);
1495 if (!tmp || strcmp(tmp, fname) != 0)
1496 lineno = 0;
1d46ea2a
MH
1497 }
1498
1499post:
1500 /* Make a relative line number or an offset */
1501 if (lineno)
1502 ppt->line = lineno - baseline;
e08cfd4b 1503 else if (basefunc) {
1d46ea2a 1504 ppt->offset = addr - (unsigned long)baseaddr;
e08cfd4b
MH
1505 func = basefunc;
1506 }
1d46ea2a
MH
1507
1508 /* Duplicate strings */
1509 if (func) {
1510 ppt->function = strdup(func);
02b95dad
MH
1511 if (ppt->function == NULL) {
1512 ret = -ENOMEM;
1513 goto end;
1514 }
fb1587d8 1515 }
1d46ea2a
MH
1516 if (fname) {
1517 ppt->file = strdup(fname);
1518 if (ppt->file == NULL) {
04662523 1519 zfree(&ppt->function);
1d46ea2a
MH
1520 ret = -ENOMEM;
1521 goto end;
1522 }
1523 }
fb1587d8 1524end:
1d46ea2a
MH
1525 if (ret == 0 && (fname || func))
1526 ret = 1; /* Found a point */
fb1587d8
MH
1527 return ret;
1528}
1529
f6c903f5
MH
1530/* Add a line and store the src path */
1531static int line_range_add_line(const char *src, unsigned int lineno,
1532 struct line_range *lr)
1533{
7cf0b79e 1534 /* Copy source path */
f6c903f5 1535 if (!lr->path) {
7cf0b79e
MH
1536 lr->path = strdup(src);
1537 if (lr->path == NULL)
1538 return -ENOMEM;
f6c903f5
MH
1539 }
1540 return line_list__add_line(&lr->line_list, lineno);
1541}
1542
4cc9cec6 1543static int line_range_walk_cb(const char *fname, int lineno,
1d037ca1 1544 Dwarf_Addr addr __maybe_unused,
4cc9cec6 1545 void *data)
f6c903f5 1546{
4cc9cec6 1547 struct line_finder *lf = data;
f6c903f5 1548
4cc9cec6 1549 if ((strtailcmp(fname, lf->fname) != 0) ||
f6c903f5 1550 (lf->lno_s > lineno || lf->lno_e < lineno))
4cc9cec6 1551 return 0;
f6c903f5 1552
4cc9cec6
MH
1553 if (line_range_add_line(fname, lineno, lf->lr) < 0)
1554 return -EINVAL;
f6c903f5 1555
4cc9cec6 1556 return 0;
f6c903f5 1557}
fb1587d8 1558
631c9def 1559/* Find line range from its line number */
b55a87ad 1560static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
631c9def 1561{
4cc9cec6 1562 int ret;
f6c903f5 1563
4cc9cec6 1564 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
f6c903f5 1565
804b3606 1566 /* Update status */
f6c903f5
MH
1567 if (ret >= 0)
1568 if (!list_empty(&lf->lr->line_list))
1569 ret = lf->found = 1;
1570 else
1571 ret = 0; /* Lines are not found */
804b3606 1572 else {
04662523 1573 zfree(&lf->lr->path);
804b3606 1574 }
f6c903f5 1575 return ret;
631c9def
MH
1576}
1577
161a26b0
MH
1578static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1579{
db0d2c64 1580 find_line_range_by_line(in_die, data);
36c0c588
MH
1581
1582 /*
1583 * We have to check all instances of inlined function, because
1584 * some execution paths can be optimized out depends on the
1585 * function argument of instances
1586 */
db0d2c64 1587 return 0;
161a26b0
MH
1588}
1589
0dbb1cac 1590/* Search function definition from function name */
e92b85e1 1591static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
631c9def 1592{
b55a87ad
MH
1593 struct dwarf_callback_param *param = data;
1594 struct line_finder *lf = param->data;
631c9def 1595 struct line_range *lr = lf->lr;
631c9def 1596
7d21635a
MH
1597 /* Check declared file */
1598 if (lr->file && strtailcmp(lr->file, dwarf_decl_file(sp_die)))
1599 return DWARF_CB_OK;
1600
0dbb1cac 1601 if (die_is_func_def(sp_die) &&
82175633 1602 die_compare_name(sp_die, lr->function)) {
e92b85e1
MH
1603 lf->fname = dwarf_decl_file(sp_die);
1604 dwarf_decl_line(sp_die, &lr->offset);
804b3606 1605 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
631c9def 1606 lf->lno_s = lr->offset + lr->start;
d3b63d7a
MH
1607 if (lf->lno_s < 0) /* Overflow */
1608 lf->lno_s = INT_MAX;
1609 lf->lno_e = lr->offset + lr->end;
1610 if (lf->lno_e < 0) /* Overflow */
804b3606 1611 lf->lno_e = INT_MAX;
d3b63d7a 1612 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
631c9def
MH
1613 lr->start = lf->lno_s;
1614 lr->end = lf->lno_e;
db0d2c64
MH
1615 if (dwarf_func_inline(sp_die))
1616 param->retval = die_walk_instances(sp_die,
1617 line_range_inline_cb, lf);
1618 else
b55a87ad
MH
1619 param->retval = find_line_range_by_line(sp_die, lf);
1620 return DWARF_CB_ABORT;
631c9def 1621 }
b55a87ad 1622 return DWARF_CB_OK;
631c9def
MH
1623}
1624
b55a87ad 1625static int find_line_range_by_func(struct line_finder *lf)
631c9def 1626{
b55a87ad
MH
1627 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1628 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1629 return param.retval;
631c9def
MH
1630}
1631
316c7136 1632int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr)
631c9def 1633{
804b3606 1634 struct line_finder lf = {.lr = lr, .found = 0};
b55a87ad 1635 int ret = 0;
804b3606
MH
1636 Dwarf_Off off = 0, noff;
1637 size_t cuhl;
1638 Dwarf_Die *diep;
6a330a3c 1639 const char *comp_dir;
804b3606 1640
cd25f8bc
LM
1641 /* Fastpath: lookup by function name from .debug_pubnames section */
1642 if (lr->function) {
1643 struct pubname_callback_param pubname_param = {
1644 .function = lr->function, .file = lr->file,
1645 .cu_die = &lf.cu_die, .sp_die = &lf.sp_die, .found = 0};
1646 struct dwarf_callback_param line_range_param = {
1647 .data = (void *)&lf, .retval = 0};
1648
316c7136 1649 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
ff741783 1650 &pubname_param, 0);
cd25f8bc
LM
1651 if (pubname_param.found) {
1652 line_range_search_cb(&lf.sp_die, &line_range_param);
1653 if (lf.found)
1654 goto found;
1655 }
1656 }
1657
804b3606 1658 /* Loop on CUs (Compilation Unit) */
b55a87ad 1659 while (!lf.found && ret >= 0) {
316c7136 1660 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl,
ff741783 1661 NULL, NULL, NULL) != 0)
631c9def
MH
1662 break;
1663
1664 /* Get the DIE(Debugging Information Entry) of this CU */
316c7136 1665 diep = dwarf_offdie(dbg->dbg, off + cuhl, &lf.cu_die);
804b3606
MH
1666 if (!diep)
1667 continue;
631c9def
MH
1668
1669 /* Check if target file is included. */
1670 if (lr->file)
2a9c8c36 1671 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
804b3606 1672 else
2a9c8c36 1673 lf.fname = 0;
631c9def 1674
2a9c8c36 1675 if (!lr->file || lf.fname) {
631c9def 1676 if (lr->function)
b55a87ad 1677 ret = find_line_range_by_func(&lf);
631c9def
MH
1678 else {
1679 lf.lno_s = lr->start;
d3b63d7a 1680 lf.lno_e = lr->end;
b55a87ad 1681 ret = find_line_range_by_line(NULL, &lf);
631c9def 1682 }
631c9def 1683 }
804b3606 1684 off = noff;
631c9def 1685 }
6a330a3c 1686
cd25f8bc 1687found:
6a330a3c
MH
1688 /* Store comp_dir */
1689 if (lf.found) {
1690 comp_dir = cu_get_comp_dir(&lf.cu_die);
1691 if (comp_dir) {
1692 lr->comp_dir = strdup(comp_dir);
1693 if (!lr->comp_dir)
1694 ret = -ENOMEM;
1695 }
1696 }
1697
7cf0b79e 1698 pr_debug("path: %s\n", lr->path);
b55a87ad 1699 return (ret < 0) ? ret : lf.found;
631c9def
MH
1700}
1701
This page took 0.264601 seconds and 5 git commands to generate.