Module gimli::read [−][src]
Read DWARF debugging information.
Example Usage
Print out all of the functions in the debuggee program:
// Read the DWARF sections with whatever object loader you're using. // These closures should return a `Reader` instance (e.g. `EndianSlice`). let loader = |section: gimli::SectionId| { get_file_section_reader(section.name()) }; let sup_loader = |section: gimli::SectionId| { get_sup_file_section_reader(section.name()) }; let dwarf = gimli::Dwarf::load(loader, sup_loader)?; // Iterate over all compilation units. let mut iter = dwarf.units(); while let Some(header) = iter.next()? { // Parse the abbreviations and other information for this compilation unit. let unit = dwarf.unit(header)?; // Iterate over all of this compilation unit's entries. let mut entries = unit.entries(); while let Some((_, entry)) = entries.next_dfs()? { // If we find an entry for a function, print it. if entry.tag() == gimli::DW_TAG_subprogram { println!("Found a function: {:?}", entry); } } }
Full example programs:
-
ddbug
, a utility giving insight into code generation by making debugging information readable -
dwprod
, a tiny utility to list the compilers used to create each compilation unit within a shared library or executable (viaDW_AT_producer
) -
dwarf-validate
, a program to validate the integrity of some DWARF and its references between sections and compilation units.
API Structure
-
Basic familiarity with DWARF is assumed.
-
The
Dwarf
type contains the commonly used DWARF sections. It has methods that simplify access to debugging data that spans multiple sections. Use of this type is optional, but recommended. -
Each section gets its own type. Consider these types the entry points to the library:
-
DebugAbbrev
: The.debug_abbrev
section. -
DebugAddr
: The.debug_addr
section. -
DebugAranges
: The.debug_aranges
section. -
DebugFrame
: The.debug_frame
section. -
DebugInfo
: The.debug_info
section. -
DebugLine
: The.debug_line
section. -
DebugLineStr
: The.debug_line_str
section. -
DebugLoc
: The.debug_loc
section. -
DebugLocLists
: The.debug_loclists
section. -
DebugPubNames
: The.debug_pubnames
section. -
DebugPubTypes
: The.debug_pubtypes
section. -
DebugRanges
: The.debug_ranges
section. -
DebugRngLists
: The.debug_rnglists
section. -
DebugStr
: The.debug_str
section. -
DebugStrOffsets
: The.debug_str_offsets
section. -
DebugTypes
: The.debug_types
section. -
EhFrame
: The.eh_frame
section. -
EhFrameHdr
: The.eh_frame_hdr
section.
-
-
Each section type exposes methods for accessing the debugging data encoded in that section. For example, the
DebugInfo
struct has theunits
method for iterating over the compilation units defined within it. -
Offsets into a section are strongly typed: an offset into
.debug_info
is theDebugInfoOffset
type. It cannot be used to index into theDebugLine
type becauseDebugLine
represents the.debug_line
section. There are similar types for offsets relative to a compilation unit rather than a section.
Using with FallibleIterator
The standard library’s Iterator
trait and related APIs do not play well
with iterators where the next
operation is fallible. One can make the
Iterator
’s associated Item
type be a Result<T, E>
, however the
provided methods cannot gracefully handle the case when an Err
is
returned.
This situation led to the
fallible-iterator
crate’s
existence. You can read more of the rationale for its existence in its
docs. The crate provides the helpers you have come to expect (eg map
,
filter
, etc) for iterators that can fail.
gimli
’s many lazy parsing iterators are a perfect match for the
fallible-iterator
crate’s FallibleIterator
trait because parsing is not
done eagerly. Parse errors later in the input might only be discovered after
having iterated through many items.
To use gimli
iterators with FallibleIterator
, import the crate and trait
into your code:
// Use the `FallibleIterator` trait so its methods are in scope! use fallible_iterator::FallibleIterator; use gimli::{DebugAranges, EndianSlice, LittleEndian}; fn find_sum_of_address_range_lengths(aranges: DebugAranges<EndianSlice<LittleEndian>>) -> gimli::Result<u64> { // `DebugAranges::items` returns a `FallibleIterator`! aranges.items() // `map` is provided by `FallibleIterator`! .map(|arange| Ok(arange.length())) // `fold` is provided by `FallibleIterator`! .fold(0, |sum, len| Ok(sum + len)) }
Structs
Abbreviation | An abbreviation describes the shape of a |
Abbreviations | A set of type abbreviations. |
ArangeEntry | A single parsed arange. |
ArangeEntryIter | An iterator over the aranges from a |
Attribute | An attribute in a |
AttributeSpecification | The description of an attribute in an abbreviated type. It is a pair of name and form. |
AttrsIter | An iterator over a particular entry’s attributes. |
Augmentation | We support the z-style augmentation defined by |
BaseAddresses | Optional base addresses for the relative |
CallFrameInstructionIter | A lazy iterator parsing call frame instructions. |
CfiEntriesIter | An iterator over CIE and FDE entries in a |
CommonInformationEntry |
|
CompleteLineProgram | A line number program that has previously been run to completion. |
DebugAbbrev | The |
DebugAddr | The raw contents of the |
DebugAranges | The |
DebugFrame |
|
DebugInfo | The |
DebugInfoUnitHeadersIter | An iterator over the units of a .debug_info section. |
DebugLine | The |
DebugLineStr | The |
DebugLoc | The raw contents of the |
DebugLocLists | The |
DebugPubNames | The |
DebugPubTypes | The |
DebugRanges | The raw contents of the |
DebugRngLists | The |
DebugStr | The |
DebugStrOffsets | The raw contents of the |
DebugTypes | The |
DebugTypesUnitHeadersIter | An iterator over the type-units of this |
DebuggingInformationEntry | A Debugging Information Entry (DIE). |
Dwarf | All of the commonly used DWARF sections, and other common information. |
EhFrame |
|
EhFrameHdr |
|
EhHdrTable | The CFI binary search table that is an optional part of the |
EndianSlice | A |
EntriesCursor | A cursor into the Debugging Information Entries tree for a compilation unit. |
EntriesRaw | A raw reader of the data that defines the Debugging Information Entries. |
EntriesTree | The state information for a tree view of the Debugging Information Entries. |
EntriesTreeIter | An iterator that allows traversal of the children of an
|
EntriesTreeNode | A node in the Debugging Information Entry tree. |
Evaluation | A DWARF expression evaluator. |
Expression | The bytecode for a DWARF expression or location description. |
FileEntry | An entry in the |
FileEntryFormat | The format of a component of an include directory or file name entry. |
FrameDescriptionEntry | A |
IncompleteLineProgram | A line number program that has not been run to completion. |
LineInstructions | An iterator yielding parsed instructions. |
LineProgramHeader | A header for a line number program in the |
LineRow | A row in the line number program’s resulting matrix. |
LineRows | Executes a |
LineSequence | A sequence within a line number program. A sequence, as defined in section 6.2.5 of the standard, is a linear subset of a line number program within which addresses are monotonically increasing. |
LocListIter | An iterator over a location list. |
LocationListEntry | A location list entry from the |
LocationLists | The DWARF data found in |
OperationIter | An iterator for the operations in an expression. |
ParsedEhFrameHdr |
|
PartialFrameDescriptionEntry | A partially parsed |
Piece | The description of a single piece of the result of a DWARF expression. |
PubNamesEntry | A single parsed pubname. |
PubNamesEntryIter | An iterator over the pubnames from a |
PubTypesEntry | A single parsed pubtype. |
PubTypesEntryIter | An iterator over the pubtypes from a |
Range | An address range from the |
RangeIter | An iterator for the address ranges of a |
RangeLists | The DWARF data found in |
RawLocListIter | A raw iterator over a location list. |
RawRngListIter | A raw iterator over an address range list. |
ReaderOffsetId | An identifier for an offset within a section reader. |
RegisterRuleIter | An unordered iterator for register rules. |
RngListIter | An iterator over an address range list. |
SectionBaseAddresses | Optional base addresses for the relative |
UninitializedUnwindContext | Common context needed when evaluating the call frame unwinding information. |
Unit | All of the commonly used information for a unit in the |
UnitHeader | The common fields for the headers of compilation units and type units. |
UnitOffset | An offset into the current compilation or type unit. |
UnwindContext | An unwinding context. |
UnwindTable | The |
UnwindTableRow | A row in the virtual unwind table that describes how to find the values of the registers in the previous frame for a range of PC addresses. |
Enums
AttributeValue | The value of an attribute in a |
CallFrameInstruction | A parsed call frame instruction. |
CfaRule | The canonical frame address (CFA) recovery rules. |
CieOrFde | Either a |
ColumnType | The type of column that a row is referring to. |
DieReference | A reference to a DIE, either relative to the current CU or relative to the section. |
Error | An error that occurred when parsing. |
EvaluationResult | The state of an |
LineInstruction | A parsed line number program instruction. |
Location | A single location of a piece of the result of a DWARF expression. |
Operation | A single decoded DWARF expression operation. |
Pointer | A decoded pointer. |
RawLocListEntry | A raw entry in .debug_loclists. |
RawRngListEntry | A raw entry in .debug_rnglists |
RegisterRule | An entry in the abstract CFI table that describes how to find the value of a register. |
UnitType | This enum specifies the type of the unit and any type specific data carried in the header (e.g. the type signature/type offset of a type unit). |
Value | The value of an entry on the DWARF stack. |
ValueType | The type of an entry on the DWARF stack. |
Traits
LineProgram | A |
Reader | A trait for reading the data from a DWARF section. |
ReaderOffset | A trait for offsets with a DWARF section. |
Section | A convenience trait for loading DWARF sections from object files. To be used like: |
UnwindOffset | An offset into an |
UnwindSection | A section holding unwind information: either |
Type Definitions
CompleteLineNumberProgram | Deprecated Deprecated. |
EndianBuf | Deprecated
|
IncompleteLineNumberProgram | Deprecated Deprecated. |
LineNumberProgram | Deprecated Deprecated. |
LineNumberProgramHeader | Deprecated Deprecated. |
LineNumberRow | Deprecated Deprecated. |
LineNumberSequence | Deprecated Deprecated. |
Opcode | Deprecated Deprecated. |
OpcodesIter | Deprecated Deprecated. |
Result | The result of a parse. |
StateMachine | Deprecated Deprecated. |