public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [Bug libdw/23981] New: dwarf_siblingof() fails with attribute form DW_FORM_ref_addr
@ 2018-12-13 17:06 Andreas.Kromke at dreamchip dot de
  2018-12-25 14:10 ` [Bug libdw/23981] " mark at klomp dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andreas.Kromke at dreamchip dot de @ 2018-12-13 17:06 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23981

            Bug ID: 23981
           Summary: dwarf_siblingof() fails with attribute form
                    DW_FORM_ref_addr
           Product: elfutils
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libdw
          Assignee: unassigned at sourceware dot org
          Reporter: Andreas.Kromke at dreamchip dot de
                CC: elfutils-devel at sourceware dot org
  Target Milestone: ---

The API function dwarf_siblingof() internally calls __libdw_formref() which is
deprecated and especially does not support DW_FORM_ref_addr, resulting in a
return code of -1 (format error).

Instead dwarf_siblingof() should call dwarf_formref_die() or an internal
variant of that.

A temporary workaround might be:

int my_dwarf_siblingof(Dwarf_Die *die, Dwarf_Die *result) {
    int ret = dwarf_siblingof(die, result);
    if (ret >= 0) return ret;
    Dwarf_Attribute attr_result;
    Dwarf_Attribute *attr = dwarf_attr(die, DW_AT_sibling, &attr_result);
    if (attr == NULL) return -1;
    Dwarf_Die *formref_die = dwarf_formref_die(attr, result);
    if (formref_die == NULL) return -1;
    return 0;
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-01-13 16:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-13 17:06 [Bug libdw/23981] New: dwarf_siblingof() fails with attribute form DW_FORM_ref_addr Andreas.Kromke at dreamchip dot de
2018-12-25 14:10 ` [Bug libdw/23981] " mark at klomp dot org
2019-01-02 17:06 ` Andreas.Kromke at dreamchip dot de
2019-01-03 17:25 ` Andreas.Kromke at dreamchip dot de
2019-01-13 16:37 ` mark at klomp dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).