1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * probe-finder.c : C expression to kprobe event converter
5 * Written by Masami Hiramatsu <mhiramat@redhat.com>
9 #include <sys/utsname.h>
10 #include <sys/types.h>
19 #include <dwarf-regs.h>
21 #include <linux/bitops.h>
29 #include "probe-finder.h"
30 #include "probe-file.h"
33 /* Kprobe tracer basic type is up to u64 */
34 #define MAX_BASIC_TYPE_BITS 64
36 /* Dwarf FL wrappers */
37 static char *debuginfo_path
; /* Currently dummy */
39 static const Dwfl_Callbacks offline_callbacks
= {
40 .find_debuginfo
= dwfl_standard_find_debuginfo
,
41 .debuginfo_path
= &debuginfo_path
,
43 .section_address
= dwfl_offline_section_address
,
45 /* We use this table for core files too. */
46 .find_elf
= dwfl_build_id_find_elf
,
49 /* Get a Dwarf from offline image */
50 static int debuginfo__init_offline_dwarf(struct debuginfo
*dbg
,
55 fd
= open(path
, O_RDONLY
);
59 dbg
->dwfl
= dwfl_begin(&offline_callbacks
);
63 dwfl_report_begin(dbg
->dwfl
);
64 dbg
->mod
= dwfl_report_offline(dbg
->dwfl
, "", "", fd
);
68 dbg
->dbg
= dwfl_module_getdwarf(dbg
->mod
, &dbg
->bias
);
72 dwfl_report_end(dbg
->dwfl
, NULL
, NULL
);
80 memset(dbg
, 0, sizeof(*dbg
));
85 static struct debuginfo
*__debuginfo__new(const char *path
)
87 struct debuginfo
*dbg
= zalloc(sizeof(*dbg
));
91 if (debuginfo__init_offline_dwarf(dbg
, path
) < 0)
94 pr_debug("Open Debuginfo file: %s\n", path
);
98 enum dso_binary_type distro_dwarf_types
[] = {
99 DSO_BINARY_TYPE__FEDORA_DEBUGINFO
,
100 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO
,
101 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO
,
102 DSO_BINARY_TYPE__BUILDID_DEBUGINFO
,
103 DSO_BINARY_TYPE__NOT_FOUND
,
106 struct debuginfo
*debuginfo__new(const char *path
)
108 enum dso_binary_type
*type
;
109 char buf
[PATH_MAX
], nil
= '\0';
111 struct debuginfo
*dinfo
= NULL
;
113 /* Try to open distro debuginfo files */
114 dso
= dso__new(path
);
118 for (type
= distro_dwarf_types
;
119 !dinfo
&& *type
!= DSO_BINARY_TYPE__NOT_FOUND
;
121 if (dso__read_binary_type_filename(dso
, *type
, &nil
,
124 dinfo
= __debuginfo__new(buf
);
129 /* if failed to open all distro debuginfo, open given binary */
130 return dinfo
? : __debuginfo__new(path
);
133 void debuginfo__delete(struct debuginfo
*dbg
)
143 * Probe finder related functions
146 static struct probe_trace_arg_ref
*alloc_trace_arg_ref(long offs
)
148 struct probe_trace_arg_ref
*ref
;
149 ref
= zalloc(sizeof(struct probe_trace_arg_ref
));
156 * Convert a location into trace_arg.
157 * If tvar == NULL, this just checks variable can be converted.
158 * If fentry == true and vr_die is a parameter, do huristic search
159 * for the location fuzzed by function entry mcount.
161 static int convert_variable_location(Dwarf_Die
*vr_die
, Dwarf_Addr addr
,
162 Dwarf_Op
*fb_ops
, Dwarf_Die
*sp_die
,
163 unsigned int machine
,
164 struct probe_trace_arg
*tvar
)
166 Dwarf_Attribute attr
;
176 if (dwarf_attr(vr_die
, DW_AT_external
, &attr
) != NULL
)
179 /* TODO: handle more than 1 exprs */
180 if (dwarf_attr(vr_die
, DW_AT_location
, &attr
) == NULL
)
181 return -EINVAL
; /* Broken DIE ? */
182 if (dwarf_getlocation_addr(&attr
, addr
, &op
, &nops
, 1) <= 0) {
183 ret
= dwarf_entrypc(sp_die
, &tmp
);
187 if (probe_conf
.show_location_range
&&
188 (dwarf_tag(vr_die
) == DW_TAG_variable
)) {
190 } else if (addr
!= tmp
||
191 dwarf_tag(vr_die
) != DW_TAG_formal_parameter
) {
195 ret
= dwarf_highpc(sp_die
, &tmp
);
199 * This is fuzzed by fentry mcount. We try to find the
200 * parameter location at the earliest address.
202 for (addr
+= 1; addr
<= tmp
; addr
++) {
203 if (dwarf_getlocation_addr(&attr
, addr
, &op
,
211 /* TODO: Support const_value */
214 if (op
->atom
== DW_OP_addr
) {
218 /* Static variables on memory (not stack), make @varname */
219 ret
= strlen(dwarf_diename(vr_die
));
220 tvar
->value
= zalloc(ret
+ 2);
221 if (tvar
->value
== NULL
)
223 snprintf(tvar
->value
, ret
+ 2, "@%s", dwarf_diename(vr_die
));
224 tvar
->ref
= alloc_trace_arg_ref((long)offs
);
225 if (tvar
->ref
== NULL
)
230 /* If this is based on frame buffer, set the offset */
231 if (op
->atom
== DW_OP_fbreg
) {
239 if (op
->atom
>= DW_OP_breg0
&& op
->atom
<= DW_OP_breg31
) {
240 regn
= op
->atom
- DW_OP_breg0
;
243 } else if (op
->atom
>= DW_OP_reg0
&& op
->atom
<= DW_OP_reg31
) {
244 regn
= op
->atom
- DW_OP_reg0
;
245 } else if (op
->atom
== DW_OP_bregx
) {
249 } else if (op
->atom
== DW_OP_regx
) {
252 pr_debug("DW_OP %x is not supported.\n", op
->atom
);
259 regs
= get_dwarf_regstr(regn
, machine
);
261 /* This should be a bug in DWARF or this tool */
262 pr_warning("Mapping for the register number %u "
263 "missing on this architecture.\n", regn
);
267 tvar
->value
= strdup(regs
);
268 if (tvar
->value
== NULL
)
272 tvar
->ref
= alloc_trace_arg_ref((long)offs
);
273 if (tvar
->ref
== NULL
)
279 #define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
281 static int convert_variable_type(Dwarf_Die
*vr_die
,
282 struct probe_trace_arg
*tvar
,
285 struct probe_trace_arg_ref
**ref_ptr
= &tvar
->ref
;
288 char sbuf
[STRERR_BUFSIZE
];
289 int bsize
, boffs
, total
;
293 /* TODO: check all types */
294 if (cast
&& strcmp(cast
, "string") != 0 && strcmp(cast
, "x") != 0 &&
295 strcmp(cast
, "s") != 0 && strcmp(cast
, "u") != 0) {
296 /* Non string type is OK */
297 /* and respect signedness/hexadecimal cast */
298 tvar
->type
= strdup(cast
);
299 return (tvar
->type
== NULL
) ? -ENOMEM
: 0;
302 bsize
= dwarf_bitsize(vr_die
);
304 /* This is a bitfield */
305 boffs
= dwarf_bitoffset(vr_die
);
306 total
= dwarf_bytesize(vr_die
);
307 if (boffs
< 0 || total
< 0)
309 ret
= snprintf(buf
, 16, "b%d@%d/%zd", bsize
, boffs
,
310 BYTES_TO_BITS(total
));
314 if (die_get_real_type(vr_die
, &type
) == NULL
) {
315 pr_warning("Failed to get a type information of %s.\n",
316 dwarf_diename(vr_die
));
320 pr_debug("%s type is %s.\n",
321 dwarf_diename(vr_die
), dwarf_diename(&type
));
323 if (cast
&& strcmp(cast
, "string") == 0) { /* String type */
324 ret
= dwarf_tag(&type
);
325 if (ret
!= DW_TAG_pointer_type
&&
326 ret
!= DW_TAG_array_type
) {
327 pr_warning("Failed to cast into string: "
328 "%s(%s) is not a pointer nor array.\n",
329 dwarf_diename(vr_die
), dwarf_diename(&type
));
332 if (die_get_real_type(&type
, &type
) == NULL
) {
333 pr_warning("Failed to get a type"
337 if (ret
== DW_TAG_pointer_type
) {
339 ref_ptr
= &(*ref_ptr
)->next
;
340 /* Add new reference with offset +0 */
341 *ref_ptr
= zalloc(sizeof(struct probe_trace_arg_ref
));
342 if (*ref_ptr
== NULL
) {
343 pr_warning("Out of memory error\n");
347 if (!die_compare_name(&type
, "char") &&
348 !die_compare_name(&type
, "unsigned char")) {
349 pr_warning("Failed to cast into string: "
350 "%s is not (unsigned) char *.\n",
351 dwarf_diename(vr_die
));
354 tvar
->type
= strdup(cast
);
355 return (tvar
->type
== NULL
) ? -ENOMEM
: 0;
358 if (cast
&& (strcmp(cast
, "u") == 0))
360 else if (cast
&& (strcmp(cast
, "s") == 0))
362 else if (cast
&& (strcmp(cast
, "x") == 0) &&
363 probe_type_is_available(PROBE_TYPE_X
))
366 prefix
= die_is_signed_type(&type
) ? 's' :
367 probe_type_is_available(PROBE_TYPE_X
) ? 'x' : 'u';
369 ret
= dwarf_bytesize(&type
);
371 /* No size ... try to use default type */
373 ret
= BYTES_TO_BITS(ret
);
375 /* Check the bitwidth */
376 if (ret
> MAX_BASIC_TYPE_BITS
) {
377 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
378 dwarf_diename(&type
), MAX_BASIC_TYPE_BITS
);
379 ret
= MAX_BASIC_TYPE_BITS
;
381 ret
= snprintf(buf
, 16, "%c%d", prefix
, ret
);
384 if (ret
< 0 || ret
>= 16) {
387 pr_warning("Failed to convert variable type: %s\n",
388 str_error_r(-ret
, sbuf
, sizeof(sbuf
)));
391 tvar
->type
= strdup(buf
);
392 if (tvar
->type
== NULL
)
397 static int convert_variable_fields(Dwarf_Die
*vr_die
, const char *varname
,
398 struct perf_probe_arg_field
*field
,
399 struct probe_trace_arg_ref
**ref_ptr
,
402 struct probe_trace_arg_ref
*ref
= *ref_ptr
;
407 pr_debug("converting %s in %s\n", field
->name
, varname
);
408 if (die_get_real_type(vr_die
, &type
) == NULL
) {
409 pr_warning("Failed to get the type of %s.\n", varname
);
412 pr_debug2("Var real type: %s (%x)\n", dwarf_diename(&type
),
413 (unsigned)dwarf_dieoffset(&type
));
414 tag
= dwarf_tag(&type
);
416 if (field
->name
[0] == '[' &&
417 (tag
== DW_TAG_array_type
|| tag
== DW_TAG_pointer_type
)) {
418 /* Save original type for next field or type */
419 memcpy(die_mem
, &type
, sizeof(*die_mem
));
420 /* Get the type of this array */
421 if (die_get_real_type(&type
, &type
) == NULL
) {
422 pr_warning("Failed to get the type of %s.\n", varname
);
425 pr_debug2("Array real type: %s (%x)\n", dwarf_diename(&type
),
426 (unsigned)dwarf_dieoffset(&type
));
427 if (tag
== DW_TAG_pointer_type
) {
428 ref
= zalloc(sizeof(struct probe_trace_arg_ref
));
432 (*ref_ptr
)->next
= ref
;
436 ref
->offset
+= dwarf_bytesize(&type
) * field
->index
;
438 } else if (tag
== DW_TAG_pointer_type
) {
439 /* Check the pointer and dereference */
441 pr_err("Semantic error: %s must be referred by '->'\n",
445 /* Get the type pointed by this pointer */
446 if (die_get_real_type(&type
, &type
) == NULL
) {
447 pr_warning("Failed to get the type of %s.\n", varname
);
450 /* Verify it is a data structure */
451 tag
= dwarf_tag(&type
);
452 if (tag
!= DW_TAG_structure_type
&& tag
!= DW_TAG_union_type
) {
453 pr_warning("%s is not a data structure nor a union.\n",
458 ref
= zalloc(sizeof(struct probe_trace_arg_ref
));
462 (*ref_ptr
)->next
= ref
;
466 /* Verify it is a data structure */
467 if (tag
!= DW_TAG_structure_type
&& tag
!= DW_TAG_union_type
) {
468 pr_warning("%s is not a data structure nor a union.\n",
472 if (field
->name
[0] == '[') {
473 pr_err("Semantic error: %s is not a pointer"
474 " nor array.\n", varname
);
477 /* While prcessing unnamed field, we don't care about this */
478 if (field
->ref
&& dwarf_diename(vr_die
)) {
479 pr_err("Semantic error: %s must be referred by '.'\n",
484 pr_warning("Structure on a register is not "
490 if (die_find_member(&type
, field
->name
, die_mem
) == NULL
) {
491 pr_warning("%s(type:%s) has no member %s.\n", varname
,
492 dwarf_diename(&type
), field
->name
);
496 /* Get the offset of the field */
497 if (tag
== DW_TAG_union_type
) {
500 ret
= die_get_data_member_location(die_mem
, &offs
);
502 pr_warning("Failed to get the offset of %s.\n",
507 ref
->offset
+= (long)offs
;
509 /* If this member is unnamed, we need to reuse this field */
510 if (!dwarf_diename(die_mem
))
511 return convert_variable_fields(die_mem
, varname
, field
,
515 /* Converting next field */
517 return convert_variable_fields(die_mem
, field
->name
,
518 field
->next
, &ref
, die_mem
);
523 /* Show a variables in kprobe event format */
524 static int convert_variable(Dwarf_Die
*vr_die
, struct probe_finder
*pf
)
529 pr_debug("Converting variable %s into trace event.\n",
530 dwarf_diename(vr_die
));
532 ret
= convert_variable_location(vr_die
, pf
->addr
, pf
->fb_ops
,
533 &pf
->sp_die
, pf
->machine
, pf
->tvar
);
534 if (ret
== -ENOENT
|| ret
== -EINVAL
) {
535 pr_err("Failed to find the location of the '%s' variable at this address.\n"
536 " Perhaps it has been optimized out.\n"
537 " Use -V with the --range option to show '%s' location range.\n",
538 pf
->pvar
->var
, pf
->pvar
->var
);
539 } else if (ret
== -ENOTSUP
)
540 pr_err("Sorry, we don't support this variable location yet.\n");
541 else if (ret
== 0 && pf
->pvar
->field
) {
542 ret
= convert_variable_fields(vr_die
, pf
->pvar
->var
,
543 pf
->pvar
->field
, &pf
->tvar
->ref
,
548 ret
= convert_variable_type(vr_die
, pf
->tvar
, pf
->pvar
->type
);
549 /* *expr will be cached in libdw. Don't free it. */
553 /* Find a variable in a scope DIE */
554 static int find_variable(Dwarf_Die
*sc_die
, struct probe_finder
*pf
)
560 /* Copy raw parameters */
561 if (!is_c_varname(pf
->pvar
->var
))
562 return copy_to_probe_trace_arg(pf
->tvar
, pf
->pvar
);
565 pf
->tvar
->name
= strdup(pf
->pvar
->name
);
567 buf
= synthesize_perf_probe_arg(pf
->pvar
);
570 ptr
= strchr(buf
, ':'); /* Change type separator to _ */
573 pf
->tvar
->name
= buf
;
575 if (pf
->tvar
->name
== NULL
)
578 pr_debug("Searching '%s' variable in context.\n", pf
->pvar
->var
);
579 /* Search child die for local variables and parameters. */
580 if (!die_find_variable_at(sc_die
, pf
->pvar
->var
, pf
->addr
, &vr_die
)) {
581 /* Search again in global variables */
582 if (!die_find_variable_at(&pf
->cu_die
, pf
->pvar
->var
,
584 pr_warning("Failed to find '%s' in this function.\n",
590 ret
= convert_variable(&vr_die
, pf
);
595 /* Convert subprogram DIE to trace point */
596 static int convert_to_trace_point(Dwarf_Die
*sp_die
, Dwfl_Module
*mod
,
597 Dwarf_Addr paddr
, bool retprobe
,
598 const char *function
,
599 struct probe_trace_point
*tp
)
601 Dwarf_Addr eaddr
, highaddr
;
605 /* Verify the address is correct */
606 if (dwarf_entrypc(sp_die
, &eaddr
) != 0) {
607 pr_warning("Failed to get entry address of %s\n",
608 dwarf_diename(sp_die
));
611 if (dwarf_highpc(sp_die
, &highaddr
) != 0) {
612 pr_warning("Failed to get end address of %s\n",
613 dwarf_diename(sp_die
));
616 if (paddr
> highaddr
) {
617 pr_warning("Offset specified is greater than size of %s\n",
618 dwarf_diename(sp_die
));
622 symbol
= dwarf_diename(sp_die
);
624 /* Try to get the symbol name from symtab */
625 symbol
= dwfl_module_addrsym(mod
, paddr
, &sym
, NULL
);
627 pr_warning("Failed to find symbol at 0x%lx\n",
628 (unsigned long)paddr
);
631 eaddr
= sym
.st_value
;
633 tp
->offset
= (unsigned long)(paddr
- eaddr
);
634 tp
->address
= (unsigned long)paddr
;
635 tp
->symbol
= strdup(symbol
);
639 /* Return probe must be on the head of a subprogram */
641 if (eaddr
!= paddr
) {
642 pr_warning("Failed to find \"%s%%return\",\n"
643 " because %s is an inlined function and"
644 " has no return point.\n", function
,
654 /* Call probe_finder callback with scope DIE */
655 static int call_probe_finder(Dwarf_Die
*sc_die
, struct probe_finder
*pf
)
657 Dwarf_Attribute fb_attr
;
658 Dwarf_Frame
*frame
= NULL
;
663 pr_err("Caller must pass a scope DIE. Program error.\n");
667 /* If not a real subprogram, find a real one */
668 if (!die_is_func_def(sc_die
)) {
669 if (!die_find_realfunc(&pf
->cu_die
, pf
->addr
, &pf
->sp_die
)) {
670 if (die_find_tailfunc(&pf
->cu_die
, pf
->addr
, &pf
->sp_die
)) {
671 pr_warning("Ignoring tail call from %s\n",
672 dwarf_diename(&pf
->sp_die
));
675 pr_warning("Failed to find probe point in any "
681 memcpy(&pf
->sp_die
, sc_die
, sizeof(Dwarf_Die
));
683 /* Get the frame base attribute/ops from subprogram */
684 dwarf_attr(&pf
->sp_die
, DW_AT_frame_base
, &fb_attr
);
685 ret
= dwarf_getlocation_addr(&fb_attr
, pf
->addr
, &pf
->fb_ops
, &nops
, 1);
686 if (ret
<= 0 || nops
== 0) {
688 #if _ELFUTILS_PREREQ(0, 142)
689 } else if (nops
== 1 && pf
->fb_ops
[0].atom
== DW_OP_call_frame_cfa
&&
690 (pf
->cfi_eh
!= NULL
|| pf
->cfi_dbg
!= NULL
)) {
691 if ((dwarf_cfi_addrframe(pf
->cfi_eh
, pf
->addr
, &frame
) != 0 &&
692 (dwarf_cfi_addrframe(pf
->cfi_dbg
, pf
->addr
, &frame
) != 0)) ||
693 dwarf_frame_cfa(frame
, &pf
->fb_ops
, &nops
) != 0) {
694 pr_warning("Failed to get call frame on 0x%jx\n",
695 (uintmax_t)pf
->addr
);
702 /* Call finder's callback handler */
703 ret
= pf
->callback(sc_die
, pf
);
705 /* Since *pf->fb_ops can be a part of frame. we should free it here. */
712 struct find_scope_param
{
713 const char *function
;
721 static int find_best_scope_cb(Dwarf_Die
*fn_die
, void *data
)
723 struct find_scope_param
*fsp
= data
;
727 /* Skip if declared file name does not match */
729 file
= dwarf_decl_file(fn_die
);
730 if (!file
|| strcmp(fsp
->file
, file
) != 0)
733 /* If the function name is given, that's what user expects */
735 if (die_match_name(fn_die
, fsp
->function
)) {
736 memcpy(fsp
->die_mem
, fn_die
, sizeof(Dwarf_Die
));
741 /* With the line number, find the nearest declared DIE */
742 dwarf_decl_line(fn_die
, &lno
);
743 if (lno
< fsp
->line
&& fsp
->diff
> fsp
->line
- lno
) {
744 /* Keep a candidate and continue */
745 fsp
->diff
= fsp
->line
- lno
;
746 memcpy(fsp
->die_mem
, fn_die
, sizeof(Dwarf_Die
));
753 /* Find an appropriate scope fits to given conditions */
754 static Dwarf_Die
*find_best_scope(struct probe_finder
*pf
, Dwarf_Die
*die_mem
)
756 struct find_scope_param fsp
= {
757 .function
= pf
->pev
->point
.function
,
765 cu_walk_functions_at(&pf
->cu_die
, pf
->addr
, find_best_scope_cb
, &fsp
);
767 return fsp
.found
? die_mem
: NULL
;
770 static int probe_point_line_walker(const char *fname
, int lineno
,
771 Dwarf_Addr addr
, void *data
)
773 struct probe_finder
*pf
= data
;
774 Dwarf_Die
*sc_die
, die_mem
;
777 if (lineno
!= pf
->lno
|| strtailcmp(fname
, pf
->fname
) != 0)
781 sc_die
= find_best_scope(pf
, &die_mem
);
783 pr_warning("Failed to find scope of probe point.\n");
787 ret
= call_probe_finder(sc_die
, pf
);
789 /* Continue if no error, because the line will be in inline function */
790 return ret
< 0 ? ret
: 0;
793 /* Find probe point from its line number */
794 static int find_probe_point_by_line(struct probe_finder
*pf
)
796 return die_walk_lines(&pf
->cu_die
, probe_point_line_walker
, pf
);
799 /* Find lines which match lazy pattern */
800 static int find_lazy_match_lines(struct intlist
*list
,
801 const char *fname
, const char *pat
)
807 int count
= 0, linenum
= 1;
808 char sbuf
[STRERR_BUFSIZE
];
810 fp
= fopen(fname
, "r");
812 pr_warning("Failed to open %s: %s\n", fname
,
813 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
817 while ((len
= getline(&line
, &line_len
, fp
)) > 0) {
819 if (line
[len
- 1] == '\n')
820 line
[len
- 1] = '\0';
822 if (strlazymatch(line
, pat
)) {
823 intlist__add(list
, linenum
);
835 pr_debug("No matched lines found in %s.\n", fname
);
839 static int probe_point_lazy_walker(const char *fname
, int lineno
,
840 Dwarf_Addr addr
, void *data
)
842 struct probe_finder
*pf
= data
;
843 Dwarf_Die
*sc_die
, die_mem
;
846 if (!intlist__has_entry(pf
->lcache
, lineno
) ||
847 strtailcmp(fname
, pf
->fname
) != 0)
850 pr_debug("Probe line found: line:%d addr:0x%llx\n",
851 lineno
, (unsigned long long)addr
);
854 sc_die
= find_best_scope(pf
, &die_mem
);
856 pr_warning("Failed to find scope of probe point.\n");
860 ret
= call_probe_finder(sc_die
, pf
);
863 * Continue if no error, because the lazy pattern will match
866 return ret
< 0 ? ret
: 0;
869 /* Find probe points from lazy pattern */
870 static int find_probe_point_lazy(Dwarf_Die
*sp_die
, struct probe_finder
*pf
)
875 if (intlist__empty(pf
->lcache
)) {
876 const char *comp_dir
;
878 comp_dir
= cu_get_comp_dir(&pf
->cu_die
);
879 ret
= get_real_path(pf
->fname
, comp_dir
, &fpath
);
881 pr_warning("Failed to find source file path.\n");
885 /* Matching lazy line pattern */
886 ret
= find_lazy_match_lines(pf
->lcache
, fpath
,
887 pf
->pev
->point
.lazy_line
);
893 return die_walk_lines(sp_die
, probe_point_lazy_walker
, pf
);
896 static void skip_prologue(Dwarf_Die
*sp_die
, struct probe_finder
*pf
)
898 struct perf_probe_point
*pp
= &pf
->pev
->point
;
901 if (!pf
->pev
->uprobes
)
904 /* Compiled with optimization? */
905 if (die_is_optimized_target(&pf
->cu_die
))
908 /* Don't know entrypc? */
912 /* Only FUNC and FUNC@SRC are eligible. */
913 if (!pp
->function
|| pp
->line
|| pp
->retprobe
|| pp
->lazy_line
||
914 pp
->offset
|| pp
->abs_address
)
917 /* Not interested in func parameter? */
918 if (!perf_probe_with_var(pf
->pev
))
921 pr_info("Target program is compiled without optimization. Skipping prologue.\n"
922 "Probe on address 0x%" PRIx64
" to force probing at the function entry.\n\n",
925 die_skip_prologue(sp_die
, &pf
->cu_die
, &pf
->addr
);
928 static int probe_point_inline_cb(Dwarf_Die
*in_die
, void *data
)
930 struct probe_finder
*pf
= data
;
931 struct perf_probe_point
*pp
= &pf
->pev
->point
;
936 ret
= find_probe_point_lazy(in_die
, pf
);
938 /* Get probe address */
939 if (dwarf_entrypc(in_die
, &addr
) != 0) {
940 pr_warning("Failed to get entry address of %s.\n",
941 dwarf_diename(in_die
));
945 pr_debug("%s has no valid entry address. skipped.\n",
946 dwarf_diename(in_die
));
950 pf
->addr
+= pp
->offset
;
951 pr_debug("found inline addr: 0x%jx\n",
952 (uintmax_t)pf
->addr
);
954 ret
= call_probe_finder(in_die
, pf
);
960 /* Callback parameter with return value for libdw */
961 struct dwarf_callback_param
{
966 /* Search function from function name */
967 static int probe_point_search_cb(Dwarf_Die
*sp_die
, void *data
)
969 struct dwarf_callback_param
*param
= data
;
970 struct probe_finder
*pf
= param
->data
;
971 struct perf_probe_point
*pp
= &pf
->pev
->point
;
973 /* Check tag and diename */
974 if (!die_is_func_def(sp_die
) ||
975 !die_match_name(sp_die
, pp
->function
))
978 /* Check declared file */
979 if (pp
->file
&& strtailcmp(pp
->file
, dwarf_decl_file(sp_die
)))
982 pr_debug("Matched function: %s [%lx]\n", dwarf_diename(sp_die
),
983 (unsigned long)dwarf_dieoffset(sp_die
));
984 pf
->fname
= dwarf_decl_file(sp_die
);
985 if (pp
->line
) { /* Function relative line */
986 dwarf_decl_line(sp_die
, &pf
->lno
);
988 param
->retval
= find_probe_point_by_line(pf
);
989 } else if (die_is_func_instance(sp_die
)) {
990 /* Instances always have the entry address */
991 dwarf_entrypc(sp_die
, &pf
->addr
);
992 /* But in some case the entry address is 0 */
994 pr_debug("%s has no entry PC. Skipped\n",
995 dwarf_diename(sp_die
));
998 } else if (pp
->lazy_line
)
999 param
->retval
= find_probe_point_lazy(sp_die
, pf
);
1001 skip_prologue(sp_die
, pf
);
1002 pf
->addr
+= pp
->offset
;
1003 /* TODO: Check the address in this function */
1004 param
->retval
= call_probe_finder(sp_die
, pf
);
1006 } else if (!probe_conf
.no_inlines
) {
1007 /* Inlined function: search instances */
1008 param
->retval
= die_walk_instances(sp_die
,
1009 probe_point_inline_cb
, (void *)pf
);
1010 /* This could be a non-existed inline definition */
1011 if (param
->retval
== -ENOENT
)
1015 /* We need to find other candidates */
1016 if (strisglob(pp
->function
) && param
->retval
>= 0) {
1017 param
->retval
= 0; /* We have to clear the result */
1021 return DWARF_CB_ABORT
; /* Exit; no same symbol in this CU. */
1024 static int find_probe_point_by_func(struct probe_finder
*pf
)
1026 struct dwarf_callback_param _param
= {.data
= (void *)pf
,
1028 dwarf_getfuncs(&pf
->cu_die
, probe_point_search_cb
, &_param
, 0);
1029 return _param
.retval
;
1032 struct pubname_callback_param
{
1040 static int pubname_search_cb(Dwarf
*dbg
, Dwarf_Global
*gl
, void *data
)
1042 struct pubname_callback_param
*param
= data
;
1044 if (dwarf_offdie(dbg
, gl
->die_offset
, param
->sp_die
)) {
1045 if (dwarf_tag(param
->sp_die
) != DW_TAG_subprogram
)
1048 if (die_match_name(param
->sp_die
, param
->function
)) {
1049 if (!dwarf_offdie(dbg
, gl
->cu_offset
, param
->cu_die
))
1053 strtailcmp(param
->file
, dwarf_decl_file(param
->sp_die
)))
1057 return DWARF_CB_ABORT
;
1064 static int debuginfo__find_probe_location(struct debuginfo
*dbg
,
1065 struct probe_finder
*pf
)
1067 struct perf_probe_point
*pp
= &pf
->pev
->point
;
1068 Dwarf_Off off
, noff
;
1074 pf
->lcache
= intlist__new(NULL
);
1078 /* Fastpath: lookup by function name from .debug_pubnames section */
1079 if (pp
->function
&& !strisglob(pp
->function
)) {
1080 struct pubname_callback_param pubname_param
= {
1081 .function
= pp
->function
,
1083 .cu_die
= &pf
->cu_die
,
1084 .sp_die
= &pf
->sp_die
,
1087 struct dwarf_callback_param probe_param
= {
1091 dwarf_getpubnames(dbg
->dbg
, pubname_search_cb
,
1093 if (pubname_param
.found
) {
1094 ret
= probe_point_search_cb(&pf
->sp_die
, &probe_param
);
1100 /* Loop on CUs (Compilation Unit) */
1101 while (!dwarf_nextcu(dbg
->dbg
, off
, &noff
, &cuhl
, NULL
, NULL
, NULL
)) {
1102 /* Get the DIE(Debugging Information Entry) of this CU */
1103 diep
= dwarf_offdie(dbg
->dbg
, off
+ cuhl
, &pf
->cu_die
);
1107 /* Check if target file is included. */
1109 pf
->fname
= cu_find_realpath(&pf
->cu_die
, pp
->file
);
1113 if (!pp
->file
|| pf
->fname
) {
1115 ret
= find_probe_point_by_func(pf
);
1116 else if (pp
->lazy_line
)
1117 ret
= find_probe_point_lazy(&pf
->cu_die
, pf
);
1120 ret
= find_probe_point_by_line(pf
);
1129 intlist__delete(pf
->lcache
);
1135 /* Find probe points from debuginfo */
1136 static int debuginfo__find_probes(struct debuginfo
*dbg
,
1137 struct probe_finder
*pf
)
1143 if (pf
->cfi_eh
|| pf
->cfi_dbg
)
1144 return debuginfo__find_probe_location(dbg
, pf
);
1146 /* Get the call frame information from this dwarf */
1147 elf
= dwarf_getelf(dbg
->dbg
);
1151 if (gelf_getehdr(elf
, &ehdr
) == NULL
)
1154 pf
->machine
= ehdr
.e_machine
;
1156 #if _ELFUTILS_PREREQ(0, 142)
1160 if (elf_section_by_name(elf
, &ehdr
, &shdr
, ".eh_frame", NULL
) &&
1161 shdr
.sh_type
== SHT_PROGBITS
)
1162 pf
->cfi_eh
= dwarf_getcfi_elf(elf
);
1164 pf
->cfi_dbg
= dwarf_getcfi(dbg
->dbg
);
1168 ret
= debuginfo__find_probe_location(dbg
, pf
);
1172 struct local_vars_finder
{
1173 struct probe_finder
*pf
;
1174 struct perf_probe_arg
*args
;
1181 /* Collect available variables in this scope */
1182 static int copy_variables_cb(Dwarf_Die
*die_mem
, void *data
)
1184 struct local_vars_finder
*vf
= data
;
1185 struct probe_finder
*pf
= vf
->pf
;
1188 tag
= dwarf_tag(die_mem
);
1189 if (tag
== DW_TAG_formal_parameter
||
1190 (tag
== DW_TAG_variable
&& vf
->vars
)) {
1191 if (convert_variable_location(die_mem
, vf
->pf
->addr
,
1192 vf
->pf
->fb_ops
, &pf
->sp_die
,
1193 pf
->machine
, NULL
) == 0) {
1194 vf
->args
[vf
->nargs
].var
= (char *)dwarf_diename(die_mem
);
1195 if (vf
->args
[vf
->nargs
].var
== NULL
) {
1197 return DIE_FIND_CB_END
;
1199 pr_debug(" %s", vf
->args
[vf
->nargs
].var
);
1204 if (dwarf_haspc(die_mem
, vf
->pf
->addr
))
1205 return DIE_FIND_CB_CONTINUE
;
1207 return DIE_FIND_CB_SIBLING
;
1210 static int expand_probe_args(Dwarf_Die
*sc_die
, struct probe_finder
*pf
,
1211 struct perf_probe_arg
*args
)
1216 struct local_vars_finder vf
= {.pf
= pf
, .args
= args
, .vars
= false,
1217 .max_args
= MAX_PROBE_ARGS
, .ret
= 0};
1219 for (i
= 0; i
< pf
->pev
->nargs
; i
++) {
1220 /* var never be NULL */
1221 if (strcmp(pf
->pev
->args
[i
].var
, PROBE_ARG_VARS
) == 0)
1223 else if (strcmp(pf
->pev
->args
[i
].var
, PROBE_ARG_PARAMS
) != 0) {
1224 /* Copy normal argument */
1225 args
[n
] = pf
->pev
->args
[i
];
1229 pr_debug("Expanding %s into:", pf
->pev
->args
[i
].var
);
1231 /* Special local variables */
1232 die_find_child(sc_die
, copy_variables_cb
, (void *)&vf
,
1234 pr_debug(" (%d)\n", vf
.nargs
- n
);
1242 /* Add a found probe point into trace event list */
1243 static int add_probe_trace_event(Dwarf_Die
*sc_die
, struct probe_finder
*pf
)
1245 struct trace_event_finder
*tf
=
1246 container_of(pf
, struct trace_event_finder
, pf
);
1247 struct perf_probe_point
*pp
= &pf
->pev
->point
;
1248 struct probe_trace_event
*tev
;
1249 struct perf_probe_arg
*args
= NULL
;
1252 /* Check number of tevs */
1253 if (tf
->ntevs
== tf
->max_tevs
) {
1254 pr_warning("Too many( > %d) probe point found.\n",
1258 tev
= &tf
->tevs
[tf
->ntevs
++];
1260 /* Trace point should be converted from subprogram DIE */
1261 ret
= convert_to_trace_point(&pf
->sp_die
, tf
->mod
, pf
->addr
,
1262 pp
->retprobe
, pp
->function
, &tev
->point
);
1266 tev
->point
.realname
= strdup(dwarf_diename(sc_die
));
1267 if (!tev
->point
.realname
) {
1272 pr_debug("Probe point found: %s+%lu\n", tev
->point
.symbol
,
1275 /* Expand special probe argument if exist */
1276 args
= zalloc(sizeof(struct perf_probe_arg
) * MAX_PROBE_ARGS
);
1282 ret
= expand_probe_args(sc_die
, pf
, args
);
1287 tev
->args
= zalloc(sizeof(struct probe_trace_arg
) * tev
->nargs
);
1288 if (tev
->args
== NULL
) {
1293 /* Find each argument */
1294 for (i
= 0; i
< tev
->nargs
; i
++) {
1295 pf
->pvar
= &args
[i
];
1296 pf
->tvar
= &tev
->args
[i
];
1297 /* Variable should be found from scope DIE */
1298 ret
= find_variable(sc_die
, pf
);
1305 clear_probe_trace_event(tev
);
1312 /* Find probe_trace_events specified by perf_probe_event from debuginfo */
1313 int debuginfo__find_trace_events(struct debuginfo
*dbg
,
1314 struct perf_probe_event
*pev
,
1315 struct probe_trace_event
**tevs
)
1317 struct trace_event_finder tf
= {
1318 .pf
= {.pev
= pev
, .callback
= add_probe_trace_event
},
1319 .max_tevs
= probe_conf
.max_probes
, .mod
= dbg
->mod
};
1322 /* Allocate result tevs array */
1323 *tevs
= zalloc(sizeof(struct probe_trace_event
) * tf
.max_tevs
);
1330 ret
= debuginfo__find_probes(dbg
, &tf
.pf
);
1332 for (i
= 0; i
< tf
.ntevs
; i
++)
1333 clear_probe_trace_event(&tf
.tevs
[i
]);
1338 return (ret
< 0) ? ret
: tf
.ntevs
;
1341 /* Collect available variables in this scope */
1342 static int collect_variables_cb(Dwarf_Die
*die_mem
, void *data
)
1344 struct available_var_finder
*af
= data
;
1345 struct variable_list
*vl
;
1346 struct strbuf buf
= STRBUF_INIT
;
1349 vl
= &af
->vls
[af
->nvls
- 1];
1351 tag
= dwarf_tag(die_mem
);
1352 if (tag
== DW_TAG_formal_parameter
||
1353 tag
== DW_TAG_variable
) {
1354 ret
= convert_variable_location(die_mem
, af
->pf
.addr
,
1355 af
->pf
.fb_ops
, &af
->pf
.sp_die
,
1356 af
->pf
.machine
, NULL
);
1357 if (ret
== 0 || ret
== -ERANGE
) {
1359 bool externs
= !af
->child
;
1361 if (strbuf_init(&buf
, 64) < 0)
1364 if (probe_conf
.show_location_range
) {
1366 ret2
= strbuf_add(&buf
,
1367 ret
? "[INV]\t" : "[VAL]\t", 6);
1369 ret2
= strbuf_add(&buf
, "[EXT]\t", 6);
1374 ret2
= die_get_varname(die_mem
, &buf
);
1376 if (!ret2
&& probe_conf
.show_location_range
&&
1378 if (strbuf_addch(&buf
, '\t') < 0)
1380 ret2
= die_get_var_range(&af
->pf
.sp_die
,
1384 pr_debug("Add new var: %s\n", buf
.buf
);
1386 strlist__add(vl
->vars
,
1387 strbuf_detach(&buf
, NULL
));
1389 strbuf_release(&buf
);
1393 if (af
->child
&& dwarf_haspc(die_mem
, af
->pf
.addr
))
1394 return DIE_FIND_CB_CONTINUE
;
1396 return DIE_FIND_CB_SIBLING
;
1398 strbuf_release(&buf
);
1399 pr_debug("Error in strbuf\n");
1400 return DIE_FIND_CB_END
;
1403 /* Add a found vars into available variables list */
1404 static int add_available_vars(Dwarf_Die
*sc_die
, struct probe_finder
*pf
)
1406 struct available_var_finder
*af
=
1407 container_of(pf
, struct available_var_finder
, pf
);
1408 struct perf_probe_point
*pp
= &pf
->pev
->point
;
1409 struct variable_list
*vl
;
1413 /* Check number of tevs */
1414 if (af
->nvls
== af
->max_vls
) {
1415 pr_warning("Too many( > %d) probe point found.\n", af
->max_vls
);
1418 vl
= &af
->vls
[af
->nvls
++];
1420 /* Trace point should be converted from subprogram DIE */
1421 ret
= convert_to_trace_point(&pf
->sp_die
, af
->mod
, pf
->addr
,
1422 pp
->retprobe
, pp
->function
, &vl
->point
);
1426 pr_debug("Probe point found: %s+%lu\n", vl
->point
.symbol
,
1429 /* Find local variables */
1430 vl
->vars
= strlist__new(NULL
, NULL
);
1431 if (vl
->vars
== NULL
)
1434 die_find_child(sc_die
, collect_variables_cb
, (void *)af
, &die_mem
);
1436 /* Find external variables */
1437 if (!probe_conf
.show_ext_vars
)
1439 /* Don't need to search child DIE for external vars. */
1441 die_find_child(&pf
->cu_die
, collect_variables_cb
, (void *)af
, &die_mem
);
1444 if (strlist__empty(vl
->vars
)) {
1445 strlist__delete(vl
->vars
);
1453 * Find available variables at given probe point
1454 * Return the number of found probe points. Return 0 if there is no
1455 * matched probe point. Return <0 if an error occurs.
1457 int debuginfo__find_available_vars_at(struct debuginfo
*dbg
,
1458 struct perf_probe_event
*pev
,
1459 struct variable_list
**vls
)
1461 struct available_var_finder af
= {
1462 .pf
= {.pev
= pev
, .callback
= add_available_vars
},
1464 .max_vls
= probe_conf
.max_probes
};
1467 /* Allocate result vls array */
1468 *vls
= zalloc(sizeof(struct variable_list
) * af
.max_vls
);
1475 ret
= debuginfo__find_probes(dbg
, &af
.pf
);
1477 /* Free vlist for error */
1479 zfree(&af
.vls
[af
.nvls
].point
.symbol
);
1480 strlist__delete(af
.vls
[af
.nvls
].vars
);
1486 return (ret
< 0) ? ret
: af
.nvls
;
1489 /* For the kernel module, we need a special code to get a DIE */
1490 int debuginfo__get_text_offset(struct debuginfo
*dbg
, Dwarf_Addr
*offs
,
1497 GElf_Shdr mem
, *shdr
;
1500 elf
= dwfl_module_getelf(dbg
->mod
, &dbg
->bias
);
1504 /* Get the number of relocations */
1505 n
= dwfl_module_relocations(dbg
->mod
);
1508 /* Search the relocation related .text section */
1509 for (i
= 0; i
< n
; i
++) {
1510 p
= dwfl_module_relocation_info(dbg
->mod
, i
, &shndx
);
1511 if (strcmp(p
, ".text") == 0) {
1512 /* OK, get the section header */
1513 scn
= elf_getscn(elf
, shndx
);
1516 shdr
= gelf_getshdr(scn
, &mem
);
1519 *offs
= shdr
->sh_addr
;
1521 *offs
-= shdr
->sh_offset
;
1527 /* Reverse search */
1528 int debuginfo__find_probe_point(struct debuginfo
*dbg
, unsigned long addr
,
1529 struct perf_probe_point
*ppt
)
1531 Dwarf_Die cudie
, spdie
, indie
;
1532 Dwarf_Addr _addr
= 0, baseaddr
= 0;
1533 const char *fname
= NULL
, *func
= NULL
, *basefunc
= NULL
, *tmp
;
1534 int baseline
= 0, lineno
= 0, ret
= 0;
1536 /* We always need to relocate the address for aranges */
1537 if (debuginfo__get_text_offset(dbg
, &baseaddr
, false) == 0)
1540 if (!dwarf_addrdie(dbg
->dbg
, (Dwarf_Addr
)addr
, &cudie
)) {
1541 pr_warning("Failed to find debug information for address %lx\n",
1547 /* Find a corresponding line (filename and lineno) */
1548 cu_find_lineinfo(&cudie
, addr
, &fname
, &lineno
);
1549 /* Don't care whether it failed or not */
1551 /* Find a corresponding function (name, baseline and baseaddr) */
1552 if (die_find_realfunc(&cudie
, (Dwarf_Addr
)addr
, &spdie
)) {
1553 /* Get function entry information */
1554 func
= basefunc
= dwarf_diename(&spdie
);
1556 dwarf_entrypc(&spdie
, &baseaddr
) != 0 ||
1557 dwarf_decl_line(&spdie
, &baseline
) != 0) {
1562 fname
= dwarf_decl_file(&spdie
);
1563 if (addr
== (unsigned long)baseaddr
) {
1564 /* Function entry - Relative line number is 0 */
1569 /* Track down the inline functions step by step */
1570 while (die_find_top_inlinefunc(&spdie
, (Dwarf_Addr
)addr
,
1572 /* There is an inline function */
1573 if (dwarf_entrypc(&indie
, &_addr
) == 0 &&
1576 * addr is at an inline function entry.
1577 * In this case, lineno should be the call-site
1578 * line number. (overwrite lineinfo)
1580 lineno
= die_get_call_lineno(&indie
);
1581 fname
= die_get_call_file(&indie
);
1585 * addr is in an inline function body.
1586 * Since lineno points one of the lines
1587 * of the inline function, baseline should
1588 * be the entry line of the inline function.
1590 tmp
= dwarf_diename(&indie
);
1592 dwarf_decl_line(&indie
, &baseline
) != 0)
1598 /* Verify the lineno and baseline are in a same file */
1599 tmp
= dwarf_decl_file(&spdie
);
1600 if (!tmp
|| strcmp(tmp
, fname
) != 0)
1605 /* Make a relative line number or an offset */
1607 ppt
->line
= lineno
- baseline
;
1608 else if (basefunc
) {
1609 ppt
->offset
= addr
- (unsigned long)baseaddr
;
1613 /* Duplicate strings */
1615 ppt
->function
= strdup(func
);
1616 if (ppt
->function
== NULL
) {
1622 ppt
->file
= strdup(fname
);
1623 if (ppt
->file
== NULL
) {
1624 zfree(&ppt
->function
);
1630 if (ret
== 0 && (fname
|| func
))
1631 ret
= 1; /* Found a point */
1635 /* Add a line and store the src path */
1636 static int line_range_add_line(const char *src
, unsigned int lineno
,
1637 struct line_range
*lr
)
1639 /* Copy source path */
1641 lr
->path
= strdup(src
);
1642 if (lr
->path
== NULL
)
1645 return intlist__add(lr
->line_list
, lineno
);
1648 static int line_range_walk_cb(const char *fname
, int lineno
,
1649 Dwarf_Addr addr __maybe_unused
,
1652 struct line_finder
*lf
= data
;
1655 if ((strtailcmp(fname
, lf
->fname
) != 0) ||
1656 (lf
->lno_s
> lineno
|| lf
->lno_e
< lineno
))
1659 err
= line_range_add_line(fname
, lineno
, lf
->lr
);
1660 if (err
< 0 && err
!= -EEXIST
)
1666 /* Find line range from its line number */
1667 static int find_line_range_by_line(Dwarf_Die
*sp_die
, struct line_finder
*lf
)
1671 ret
= die_walk_lines(sp_die
?: &lf
->cu_die
, line_range_walk_cb
, lf
);
1675 if (!intlist__empty(lf
->lr
->line_list
))
1676 ret
= lf
->found
= 1;
1678 ret
= 0; /* Lines are not found */
1680 zfree(&lf
->lr
->path
);
1685 static int line_range_inline_cb(Dwarf_Die
*in_die
, void *data
)
1687 int ret
= find_line_range_by_line(in_die
, data
);
1690 * We have to check all instances of inlined function, because
1691 * some execution paths can be optimized out depends on the
1692 * function argument of instances. However, if an error occurs,
1693 * it should be handled by the caller.
1695 return ret
< 0 ? ret
: 0;
1698 /* Search function definition from function name */
1699 static int line_range_search_cb(Dwarf_Die
*sp_die
, void *data
)
1701 struct dwarf_callback_param
*param
= data
;
1702 struct line_finder
*lf
= param
->data
;
1703 struct line_range
*lr
= lf
->lr
;
1705 /* Check declared file */
1706 if (lr
->file
&& strtailcmp(lr
->file
, dwarf_decl_file(sp_die
)))
1709 if (die_is_func_def(sp_die
) &&
1710 die_match_name(sp_die
, lr
->function
)) {
1711 lf
->fname
= dwarf_decl_file(sp_die
);
1712 dwarf_decl_line(sp_die
, &lr
->offset
);
1713 pr_debug("fname: %s, lineno:%d\n", lf
->fname
, lr
->offset
);
1714 lf
->lno_s
= lr
->offset
+ lr
->start
;
1715 if (lf
->lno_s
< 0) /* Overflow */
1716 lf
->lno_s
= INT_MAX
;
1717 lf
->lno_e
= lr
->offset
+ lr
->end
;
1718 if (lf
->lno_e
< 0) /* Overflow */
1719 lf
->lno_e
= INT_MAX
;
1720 pr_debug("New line range: %d to %d\n", lf
->lno_s
, lf
->lno_e
);
1721 lr
->start
= lf
->lno_s
;
1722 lr
->end
= lf
->lno_e
;
1723 if (!die_is_func_instance(sp_die
))
1724 param
->retval
= die_walk_instances(sp_die
,
1725 line_range_inline_cb
, lf
);
1727 param
->retval
= find_line_range_by_line(sp_die
, lf
);
1728 return DWARF_CB_ABORT
;
1733 static int find_line_range_by_func(struct line_finder
*lf
)
1735 struct dwarf_callback_param param
= {.data
= (void *)lf
, .retval
= 0};
1736 dwarf_getfuncs(&lf
->cu_die
, line_range_search_cb
, ¶m
, 0);
1737 return param
.retval
;
1740 int debuginfo__find_line_range(struct debuginfo
*dbg
, struct line_range
*lr
)
1742 struct line_finder lf
= {.lr
= lr
, .found
= 0};
1744 Dwarf_Off off
= 0, noff
;
1747 const char *comp_dir
;
1749 /* Fastpath: lookup by function name from .debug_pubnames section */
1751 struct pubname_callback_param pubname_param
= {
1752 .function
= lr
->function
, .file
= lr
->file
,
1753 .cu_die
= &lf
.cu_die
, .sp_die
= &lf
.sp_die
, .found
= 0};
1754 struct dwarf_callback_param line_range_param
= {
1755 .data
= (void *)&lf
, .retval
= 0};
1757 dwarf_getpubnames(dbg
->dbg
, pubname_search_cb
,
1759 if (pubname_param
.found
) {
1760 line_range_search_cb(&lf
.sp_die
, &line_range_param
);
1766 /* Loop on CUs (Compilation Unit) */
1767 while (!lf
.found
&& ret
>= 0) {
1768 if (dwarf_nextcu(dbg
->dbg
, off
, &noff
, &cuhl
,
1769 NULL
, NULL
, NULL
) != 0)
1772 /* Get the DIE(Debugging Information Entry) of this CU */
1773 diep
= dwarf_offdie(dbg
->dbg
, off
+ cuhl
, &lf
.cu_die
);
1777 /* Check if target file is included. */
1779 lf
.fname
= cu_find_realpath(&lf
.cu_die
, lr
->file
);
1783 if (!lr
->file
|| lf
.fname
) {
1785 ret
= find_line_range_by_func(&lf
);
1787 lf
.lno_s
= lr
->start
;
1789 ret
= find_line_range_by_line(NULL
, &lf
);
1796 /* Store comp_dir */
1798 comp_dir
= cu_get_comp_dir(&lf
.cu_die
);
1800 lr
->comp_dir
= strdup(comp_dir
);
1806 pr_debug("path: %s\n", lr
->path
);
1807 return (ret
< 0) ? ret
: lf
.found
;
1811 * Find a src file from a DWARF tag path. Prepend optional source path prefix
1812 * and chop off leading directories that do not exist. Result is passed back as
1813 * a newly allocated path on success.
1814 * Return 0 if file was found and readable, -errno otherwise.
1816 int get_real_path(const char *raw_path
, const char *comp_dir
,
1819 const char *prefix
= symbol_conf
.source_prefix
;
1822 if (raw_path
[0] != '/' && comp_dir
)
1823 /* If not an absolute path, try to use comp_dir */
1826 if (access(raw_path
, R_OK
) == 0) {
1827 *new_path
= strdup(raw_path
);
1828 return *new_path
? 0 : -ENOMEM
;
1834 *new_path
= malloc((strlen(prefix
) + strlen(raw_path
) + 2));
1839 sprintf(*new_path
, "%s/%s", prefix
, raw_path
);
1841 if (access(*new_path
, R_OK
) == 0)
1844 if (!symbol_conf
.source_prefix
) {
1845 /* In case of searching comp_dir, don't retry */
1855 raw_path
= strchr(++raw_path
, '/');