pub struct ElfFile<'data, Elf, R = &'data [u8]>where
Elf: FileHeader,
R: ReadRef<'data>,{ /* private fields */ }
Expand description
A partially parsed ELF file.
Most of the functionality of this type is provided by the Object
trait implementation.
Implementations§
source§impl<'data, Elf, R> ElfFile<'data, Elf, R>where
Elf: FileHeader,
R: ReadRef<'data>,
impl<'data, Elf, R> ElfFile<'data, Elf, R>where Elf: FileHeader, R: ReadRef<'data>,
sourcepub fn raw_header(&self) -> &'data Elf
pub fn raw_header(&self) -> &'data Elf
Returns the raw ELF file header.
sourcepub fn raw_segments(&self) -> &'data [Elf::ProgramHeader]
pub fn raw_segments(&self) -> &'data [Elf::ProgramHeader]
Returns the raw ELF segments.
Trait Implementations§
source§impl<'data, Elf, R> Debug for ElfFile<'data, Elf, R>where
Elf: FileHeader + Debug,
R: ReadRef<'data> + Debug,
Elf::Endian: Debug,
Elf::ProgramHeader: Debug,
impl<'data, Elf, R> Debug for ElfFile<'data, Elf, R>where Elf: FileHeader + Debug, R: ReadRef<'data> + Debug, Elf::Endian: Debug, Elf::ProgramHeader: Debug,
source§impl<'data, 'file, Elf, R> Object<'data, 'file> for ElfFile<'data, Elf, R>where
Elf: FileHeader,
R: 'file + ReadRef<'data>,
'data: 'file,
impl<'data, 'file, Elf, R> Object<'data, 'file> for ElfFile<'data, Elf, R>where Elf: FileHeader, R: 'file + ReadRef<'data>, 'data: 'file,
§type Segment = ElfSegment<'data, 'file, Elf, R>
type Segment = ElfSegment<'data, 'file, Elf, R>
A segment in the object file.
§type SegmentIterator = ElfSegmentIterator<'data, 'file, Elf, R>
type SegmentIterator = ElfSegmentIterator<'data, 'file, Elf, R>
An iterator over the segments in the object file.
§type Section = ElfSection<'data, 'file, Elf, R>
type Section = ElfSection<'data, 'file, Elf, R>
A section in the object file.
§type SectionIterator = ElfSectionIterator<'data, 'file, Elf, R>
type SectionIterator = ElfSectionIterator<'data, 'file, Elf, R>
An iterator over the sections in the object file.
§type ComdatIterator = ElfComdatIterator<'data, 'file, Elf, R>
type ComdatIterator = ElfComdatIterator<'data, 'file, Elf, R>
An iterator over the COMDAT section groups in the object file.
§type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf, R>
type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf, R>
An iterator over symbols in the object file.
§type SymbolTable = ElfSymbolTable<'data, 'file, Elf, R>
type SymbolTable = ElfSymbolTable<'data, 'file, Elf, R>
A symbol table in the object file.
§type DynamicRelocationIterator = ElfDynamicRelocationIterator<'data, 'file, Elf, R>
type DynamicRelocationIterator = ElfDynamicRelocationIterator<'data, 'file, Elf, R>
An iterator over dynamic relocations in the file. Read more
source§fn architecture(&self) -> Architecture
fn architecture(&self) -> Architecture
Get the architecture type of the file.
source§fn is_little_endian(&self) -> bool
fn is_little_endian(&self) -> bool
Return true if the file is little endian, false if it is big endian.
source§fn kind(&self) -> ObjectKind
fn kind(&self) -> ObjectKind
Return the kind of this object.
source§fn segments(&'file self) -> ElfSegmentIterator<'data, 'file, Elf, R> ⓘ
fn segments(&'file self) -> ElfSegmentIterator<'data, 'file, Elf, R> ⓘ
Get an iterator over the segments in the file.
source§fn section_by_name_bytes(
&'file self,
section_name: &[u8]
) -> Option<ElfSection<'data, 'file, Elf, R>>
fn section_by_name_bytes( &'file self, section_name: &[u8] ) -> Option<ElfSection<'data, 'file, Elf, R>>
Like
Self::section_by_name
, but allows names that are not UTF-8.source§fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<ElfSection<'data, 'file, Elf, R>>
fn section_by_index( &'file self, index: SectionIndex ) -> Result<ElfSection<'data, 'file, Elf, R>>
Get the section at the given index. Read more
source§fn sections(&'file self) -> ElfSectionIterator<'data, 'file, Elf, R> ⓘ
fn sections(&'file self) -> ElfSectionIterator<'data, 'file, Elf, R> ⓘ
Get an iterator over the sections in the file.
source§fn comdats(&'file self) -> ElfComdatIterator<'data, 'file, Elf, R> ⓘ
fn comdats(&'file self) -> ElfComdatIterator<'data, 'file, Elf, R> ⓘ
Get an iterator over the COMDAT section groups in the file.
source§fn symbol_by_index(
&'file self,
index: SymbolIndex
) -> Result<ElfSymbol<'data, 'file, Elf, R>>
fn symbol_by_index( &'file self, index: SymbolIndex ) -> Result<ElfSymbol<'data, 'file, Elf, R>>
Get the debugging symbol at the given index. Read more
source§fn symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf, R> ⓘ
fn symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf, R> ⓘ
Get an iterator over the debugging symbols in the file. Read more
source§fn symbol_table(&'file self) -> Option<ElfSymbolTable<'data, 'file, Elf, R>>
fn symbol_table(&'file self) -> Option<ElfSymbolTable<'data, 'file, Elf, R>>
Get the symbol table, if any.
source§fn dynamic_symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf, R> ⓘ
fn dynamic_symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf, R> ⓘ
Get an iterator over the dynamic linking symbols in the file. Read more
source§fn dynamic_symbol_table(
&'file self
) -> Option<ElfSymbolTable<'data, 'file, Elf, R>>
fn dynamic_symbol_table( &'file self ) -> Option<ElfSymbolTable<'data, 'file, Elf, R>>
Get the dynamic linking symbol table, if any. Read more
source§fn dynamic_relocations(
&'file self
) -> Option<ElfDynamicRelocationIterator<'data, 'file, Elf, R>>
fn dynamic_relocations( &'file self ) -> Option<ElfDynamicRelocationIterator<'data, 'file, Elf, R>>
Get the dynamic relocations for this file. Read more
source§fn has_debug_symbols(&self) -> bool
fn has_debug_symbols(&self) -> bool
Return true if the file contains debug information sections, false if not.
source§fn build_id(&self) -> Result<Option<&'data [u8]>>
fn build_id(&self) -> Result<Option<&'data [u8]>>
The build ID from an ELF
NT_GNU_BUILD_ID
note.source§fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
The filename and CRC from a
.gnu_debuglink
section.source§fn gnu_debugaltlink(&self) -> Result<Option<(&'data [u8], &'data [u8])>>
fn gnu_debugaltlink(&self) -> Result<Option<(&'data [u8], &'data [u8])>>
The filename and build ID from a
.gnu_debugaltlink
section.source§fn relative_address_base(&self) -> u64
fn relative_address_base(&self) -> u64
Get the base address used for relative virtual addresses. Read more
source§fn endianness(&self) -> Endianness
fn endianness(&self) -> Endianness
Get the endianness of the file.
source§fn section_by_name(&'file self, section_name: &str) -> Option<Self::Section>
fn section_by_name(&'file self, section_name: &str) -> Option<Self::Section>
Get the section named
section_name
, if such a section exists. Read moresource§fn symbol_map(&'file self) -> SymbolMap<SymbolMapName<'data>>
fn symbol_map(&'file self) -> SymbolMap<SymbolMapName<'data>>
Construct a map from addresses to symbol names. Read more
source§fn object_map(&'file self) -> ObjectMap<'data>
fn object_map(&'file self) -> ObjectMap<'data>
Construct a map from addresses to symbol names and object file names. Read more
Auto Trait Implementations§
impl<'data, Elf, R> RefUnwindSafe for ElfFile<'data, Elf, R>where Elf: RefUnwindSafe, R: RefUnwindSafe, <Elf as FileHeader>::Endian: RefUnwindSafe, <Elf as FileHeader>::ProgramHeader: RefUnwindSafe, <Elf as FileHeader>::SectionHeader: RefUnwindSafe, <Elf as FileHeader>::Sym: RefUnwindSafe,
impl<'data, Elf, R> Send for ElfFile<'data, Elf, R>where Elf: Sync, R: Send, <Elf as FileHeader>::Endian: Send + Sync, <Elf as FileHeader>::ProgramHeader: Sync, <Elf as FileHeader>::SectionHeader: Sync, <Elf as FileHeader>::Sym: Sync,
impl<'data, Elf, R> Sync for ElfFile<'data, Elf, R>where Elf: Sync, R: Sync, <Elf as FileHeader>::Endian: Sync, <Elf as FileHeader>::ProgramHeader: Sync, <Elf as FileHeader>::SectionHeader: Sync, <Elf as FileHeader>::Sym: Sync,
impl<'data, Elf, R> Unpin for ElfFile<'data, Elf, R>where R: Unpin, <Elf as FileHeader>::Endian: Unpin,
impl<'data, Elf, R> UnwindSafe for ElfFile<'data, Elf, R>where Elf: RefUnwindSafe, R: UnwindSafe, <Elf as FileHeader>::Endian: UnwindSafe + RefUnwindSafe, <Elf as FileHeader>::ProgramHeader: RefUnwindSafe, <Elf as FileHeader>::SectionHeader: RefUnwindSafe, <Elf as FileHeader>::Sym: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more