[−][src]Trait object::read::Object
An object file.
Associated Types
type Segment: ObjectSegment<'data>
A segment in the object file.
type SegmentIterator: Iterator<Item = Self::Segment>
An iterator over the segments in the object file.
type Section: ObjectSection<'data>
A section in the object file.
type SectionIterator: Iterator<Item = Self::Section>
An iterator over the sections in the object file.
type SymbolIterator: Iterator<Item = (SymbolIndex, Symbol<'data>)>
An iterator over the symbols in the object file.
Required methods
fn architecture(&self) -> Architecture
Get the architecture type of the file.
fn is_little_endian(&self) -> bool
Return true if the file is little endian, false if it is big endian.
fn is_64(&self) -> bool
Return true if the file can contain 64-bit addresses.
fn segments(&'file self) -> Self::SegmentIterator
Get an iterator over the segments in the file.
fn entry(&'file self) -> u64
Get the entry point address of the binary
fn section_by_name(&'file self, section_name: &str) -> Option<Self::Section>
Get the section named section_name
, if such a section exists.
If section_name
starts with a '.' then it is treated as a system section name,
and is compared using the conventions specific to the object file format. This
includes:
- if ".text" is requested for a Mach-O object file, then the actual section name that is searched for is "__text".
- if ".debug_info" is requested for an ELF object file, then ".zdebug_info" may be returned (and similarly for other debug sections).
For some object files, multiple segments may contain sections with the same name. In this case, the first matching section will be used.
This method skips over sections with invalid names.
fn section_by_index(&'file self, index: SectionIndex) -> Result<Self::Section>
Get the section at the given index.
The meaning of the index depends on the object file.
For some object files, this requires iterating through all sections.
Returns an error if the index is invalid.
fn sections(&'file self) -> Self::SectionIterator
Get an iterator over the sections in the file.
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Symbol<'data>>
Get the debugging symbol at the given index.
The meaning of the index depends on the object file.
Returns an error if the index is invalid.
fn symbols(&'file self) -> Self::SymbolIterator
Get an iterator over the debugging symbols in the file.
This may skip over symbols that are malformed or unsupported.
fn dynamic_symbols(&'file self) -> Self::SymbolIterator
Get an iterator over the dynamic linking symbols in the file.
This may skip over symbols that are malformed or unsupported.
fn symbol_map(&self) -> SymbolMap<'data>
Construct a map from addresses to symbols.
fn has_debug_symbols(&self) -> bool
Return true if the file contains debug information sections, false if not.
fn flags(&self) -> FileFlags
File flags that are specific to each file format.
Provided methods
fn endianness(&self) -> Endianness
Get the endianness of the file.
fn symbol_data(
&'file self,
symbol: &Symbol<'data>
) -> Result<Option<&'data [u8]>>
&'file self,
symbol: &Symbol<'data>
) -> Result<Option<&'data [u8]>>
Get the data for the given symbol.
This may iterate over segments.
Returns Ok(None)
for undefined symbols or if the data could not be found.
fn mach_uuid(&self) -> Result<Option<[u8; 16]>>
The UUID from a Mach-O LC_UUID
load command.
fn build_id(&self) -> Result<Option<&'data [u8]>>
The build ID from an ELF NT_GNU_BUILD_ID
note.
fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
The filename and CRC from a .gnu_debuglink
section.
Implementors
impl<'data, 'file> Object<'data, 'file> for CoffFile<'data> where
'data: 'file,
[src]
'data: 'file,
type Segment = CoffSegment<'data, 'file>
type SegmentIterator = CoffSegmentIterator<'data, 'file>
type Section = CoffSection<'data, 'file>
type SectionIterator = CoffSectionIterator<'data, 'file>
type SymbolIterator = CoffSymbolIterator<'data, 'file>
fn architecture(&self) -> Architecture
[src]
fn is_little_endian(&self) -> bool
[src]
fn is_64(&self) -> bool
[src]
fn segments(&'file self) -> CoffSegmentIterator<'data, 'file>
[src]
fn section_by_name(
&'file self,
section_name: &str
) -> Option<CoffSection<'data, 'file>>
[src]
&'file self,
section_name: &str
) -> Option<CoffSection<'data, 'file>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<CoffSection<'data, 'file>>
[src]
&'file self,
index: SectionIndex
) -> Result<CoffSection<'data, 'file>>
fn sections(&'file self) -> CoffSectionIterator<'data, 'file>
[src]
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Symbol<'data>>
[src]
fn symbols(&'file self) -> CoffSymbolIterator<'data, 'file>
[src]
fn dynamic_symbols(&'file self) -> CoffSymbolIterator<'data, 'file>
[src]
fn symbol_map(&self) -> SymbolMap<'data>
[src]
fn has_debug_symbols(&self) -> bool
[src]
fn entry(&self) -> u64
[src]
fn flags(&self) -> FileFlags
[src]
impl<'data, 'file> Object<'data, 'file> for File<'data> where
'data: 'file,
[src]
'data: 'file,
type Segment = Segment<'data, 'file>
type SegmentIterator = SegmentIterator<'data, 'file>
type Section = Section<'data, 'file>
type SectionIterator = SectionIterator<'data, 'file>
type SymbolIterator = SymbolIterator<'data, 'file>
fn architecture(&self) -> Architecture
[src]
fn is_little_endian(&self) -> bool
[src]
fn is_64(&self) -> bool
[src]
fn segments(&'file self) -> SegmentIterator<'data, 'file>
[src]
fn section_by_name(
&'file self,
section_name: &str
) -> Option<Section<'data, 'file>>
[src]
&'file self,
section_name: &str
) -> Option<Section<'data, 'file>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file>>
[src]
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file>>
fn sections(&'file self) -> SectionIterator<'data, 'file>
[src]
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Symbol<'data>>
[src]
fn symbols(&'file self) -> SymbolIterator<'data, 'file>
[src]
fn dynamic_symbols(&'file self) -> SymbolIterator<'data, 'file>
[src]
fn symbol_map(&self) -> SymbolMap<'data>
[src]
fn has_debug_symbols(&self) -> bool
[src]
fn mach_uuid(&self) -> Result<Option<[u8; 16]>>
[src]
fn build_id(&self) -> Result<Option<&'data [u8]>>
[src]
fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
[src]
fn entry(&self) -> u64
[src]
fn flags(&self) -> FileFlags
[src]
impl<'data, 'file, Elf> Object<'data, 'file> for ElfFile<'data, Elf> where
'data: 'file,
Elf: FileHeader,
[src]
'data: 'file,
Elf: FileHeader,
type Segment = ElfSegment<'data, 'file, Elf>
type SegmentIterator = ElfSegmentIterator<'data, 'file, Elf>
type Section = ElfSection<'data, 'file, Elf>
type SectionIterator = ElfSectionIterator<'data, 'file, Elf>
type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf>
fn architecture(&self) -> Architecture
[src]
fn is_little_endian(&self) -> bool
[src]
fn is_64(&self) -> bool
[src]
fn segments(&'file self) -> ElfSegmentIterator<'data, 'file, Elf>
[src]
fn section_by_name(
&'file self,
section_name: &str
) -> Option<ElfSection<'data, 'file, Elf>>
[src]
&'file self,
section_name: &str
) -> Option<ElfSection<'data, 'file, Elf>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<ElfSection<'data, 'file, Elf>>
[src]
&'file self,
index: SectionIndex
) -> Result<ElfSection<'data, 'file, Elf>>
fn sections(&'file self) -> ElfSectionIterator<'data, 'file, Elf>
[src]
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Symbol<'data>>
[src]
fn symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf>
[src]
fn dynamic_symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf>
[src]
fn symbol_map(&self) -> SymbolMap<'data>
[src]
fn has_debug_symbols(&self) -> bool
[src]
fn build_id(&self) -> Result<Option<&'data [u8]>>
[src]
fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
[src]
fn entry(&self) -> u64
[src]
fn flags(&self) -> FileFlags
[src]
impl<'data, 'file, Mach> Object<'data, 'file> for MachOFile<'data, Mach> where
'data: 'file,
Mach: MachHeader,
[src]
'data: 'file,
Mach: MachHeader,
type Segment = MachOSegment<'data, 'file, Mach>
type SegmentIterator = MachOSegmentIterator<'data, 'file, Mach>
type Section = MachOSection<'data, 'file, Mach>
type SectionIterator = MachOSectionIterator<'data, 'file, Mach>
type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach>
fn architecture(&self) -> Architecture
[src]
fn is_little_endian(&self) -> bool
[src]
fn is_64(&self) -> bool
[src]
fn segments(&'file self) -> MachOSegmentIterator<'data, 'file, Mach>
[src]
fn section_by_name(
&'file self,
section_name: &str
) -> Option<MachOSection<'data, 'file, Mach>>
[src]
&'file self,
section_name: &str
) -> Option<MachOSection<'data, 'file, Mach>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<MachOSection<'data, 'file, Mach>>
[src]
&'file self,
index: SectionIndex
) -> Result<MachOSection<'data, 'file, Mach>>
fn sections(&'file self) -> MachOSectionIterator<'data, 'file, Mach>
[src]
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Symbol<'data>>
[src]
fn symbols(&'file self) -> MachOSymbolIterator<'data, 'file, Mach>
[src]
fn dynamic_symbols(&'file self) -> MachOSymbolIterator<'data, 'file, Mach>
[src]
fn symbol_map(&self) -> SymbolMap<'data>
[src]
fn has_debug_symbols(&self) -> bool
[src]
fn mach_uuid(&self) -> Result<Option<[u8; 16]>>
[src]
fn entry(&self) -> u64
[src]
fn flags(&self) -> FileFlags
[src]
impl<'data, 'file, Pe> Object<'data, 'file> for PeFile<'data, Pe> where
'data: 'file,
Pe: ImageNtHeaders,
[src]
'data: 'file,
Pe: ImageNtHeaders,
type Segment = PeSegment<'data, 'file, Pe>
type SegmentIterator = PeSegmentIterator<'data, 'file, Pe>
type Section = PeSection<'data, 'file, Pe>
type SectionIterator = PeSectionIterator<'data, 'file, Pe>
type SymbolIterator = CoffSymbolIterator<'data, 'file>
fn architecture(&self) -> Architecture
[src]
fn is_little_endian(&self) -> bool
[src]
fn is_64(&self) -> bool
[src]
fn segments(&'file self) -> PeSegmentIterator<'data, 'file, Pe>
[src]
fn section_by_name(
&'file self,
section_name: &str
) -> Option<PeSection<'data, 'file, Pe>>
[src]
&'file self,
section_name: &str
) -> Option<PeSection<'data, 'file, Pe>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<PeSection<'data, 'file, Pe>>
[src]
&'file self,
index: SectionIndex
) -> Result<PeSection<'data, 'file, Pe>>