Expand description
An object file.
Most functionality is provided by the Object
trait implementation.
Implementations
sourceimpl<'data, R: ReadRef<'data>> File<'data, R>
impl<'data, R: ReadRef<'data>> File<'data, R>
sourcepub fn parse_dyld_cache_image<'cache, E: Endian>(
image: &DyldCacheImage<'data, 'cache, E, R>
) -> Result<Self>
pub fn parse_dyld_cache_image<'cache, E: Endian>(
image: &DyldCacheImage<'data, 'cache, E, R>
) -> Result<Self>
Parse a Mach-O image from the dyld shared cache.
sourcepub fn format(&self) -> BinaryFormat
pub fn format(&self) -> BinaryFormat
Return the file format.
Trait Implementations
sourceimpl<'data, 'file, R> Object<'data, 'file> for File<'data, R> where
'data: 'file,
R: 'file + ReadRef<'data>,
impl<'data, 'file, R> Object<'data, 'file> for File<'data, R> where
'data: 'file,
R: 'file + ReadRef<'data>,
type SegmentIterator = SegmentIterator<'data, 'file, R>
type SegmentIterator = SegmentIterator<'data, 'file, R>
An iterator over the segments in the object file.
type SectionIterator = SectionIterator<'data, 'file, R>
type SectionIterator = SectionIterator<'data, 'file, R>
An iterator over the sections in the object file.
type ComdatIterator = ComdatIterator<'data, 'file, R>
type ComdatIterator = ComdatIterator<'data, 'file, R>
An iterator over the COMDAT section groups in the object file.
type SymbolIterator = SymbolIterator<'data, 'file, R>
type SymbolIterator = SymbolIterator<'data, 'file, R>
An iterator over symbols in the object file.
type SymbolTable = SymbolTable<'data, 'file, R>
type SymbolTable = SymbolTable<'data, 'file, R>
A symbol table in the object file.
type DynamicRelocationIterator = DynamicRelocationIterator<'data, 'file, R>
type DynamicRelocationIterator = DynamicRelocationIterator<'data, 'file, R>
An iterator over dynamic relocations in the file. Read more
sourcefn architecture(&self) -> Architecture
fn architecture(&self) -> Architecture
Get the architecture type of the file.
sourcefn 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.
sourcefn kind(&self) -> ObjectKind
fn kind(&self) -> ObjectKind
Return the kind of this object.
sourcefn segments(&'file self) -> SegmentIterator<'data, 'file, R>ⓘNotable traits for SegmentIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SegmentIterator<'data, 'file, R> type Item = Segment<'data, 'file, R>;
fn segments(&'file self) -> SegmentIterator<'data, 'file, R>ⓘNotable traits for SegmentIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SegmentIterator<'data, 'file, R> type Item = Segment<'data, 'file, R>;
Get an iterator over the segments in the file.
sourcefn section_by_name_bytes(
&'file self,
section_name: &[u8]
) -> Option<Section<'data, 'file, R>>
fn section_by_name_bytes(
&'file self,
section_name: &[u8]
) -> Option<Section<'data, 'file, R>>
Like Self::section_by_name
, but allows names that are not UTF-8.
sourcefn section_by_index(
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file, R>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file, R>>
Get the section at the given index. Read more
sourcefn sections(&'file self) -> SectionIterator<'data, 'file, R>ⓘNotable traits for SectionIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SectionIterator<'data, 'file, R> type Item = Section<'data, 'file, R>;
fn sections(&'file self) -> SectionIterator<'data, 'file, R>ⓘNotable traits for SectionIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SectionIterator<'data, 'file, R> type Item = Section<'data, 'file, R>;
Get an iterator over the sections in the file.
sourcefn comdats(&'file self) -> ComdatIterator<'data, 'file, R>ⓘNotable traits for ComdatIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for ComdatIterator<'data, 'file, R> type Item = Comdat<'data, 'file, R>;
fn comdats(&'file self) -> ComdatIterator<'data, 'file, R>ⓘNotable traits for ComdatIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for ComdatIterator<'data, 'file, R> type Item = Comdat<'data, 'file, R>;
Get an iterator over the COMDAT section groups in the file.
sourcefn symbol_by_index(
&'file self,
index: SymbolIndex
) -> Result<Symbol<'data, 'file, R>>
fn symbol_by_index(
&'file self,
index: SymbolIndex
) -> Result<Symbol<'data, 'file, R>>
Get the debugging symbol at the given index. Read more
sourcefn symbols(&'file self) -> SymbolIterator<'data, 'file, R>ⓘNotable traits for SymbolIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SymbolIterator<'data, 'file, R> type Item = Symbol<'data, 'file, R>;
fn symbols(&'file self) -> SymbolIterator<'data, 'file, R>ⓘNotable traits for SymbolIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SymbolIterator<'data, 'file, R> type Item = Symbol<'data, 'file, R>;
Get an iterator over the debugging symbols in the file. Read more
sourcefn symbol_table(&'file self) -> Option<SymbolTable<'data, 'file, R>>
fn symbol_table(&'file self) -> Option<SymbolTable<'data, 'file, R>>
Get the symbol table, if any.
sourcefn dynamic_symbols(&'file self) -> SymbolIterator<'data, 'file, R>ⓘNotable traits for SymbolIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SymbolIterator<'data, 'file, R> type Item = Symbol<'data, 'file, R>;
fn dynamic_symbols(&'file self) -> SymbolIterator<'data, 'file, R>ⓘNotable traits for SymbolIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for SymbolIterator<'data, 'file, R> type Item = Symbol<'data, 'file, R>;
Get an iterator over the dynamic linking symbols in the file. Read more
sourcefn dynamic_symbol_table(&'file self) -> Option<SymbolTable<'data, 'file, R>>
fn dynamic_symbol_table(&'file self) -> Option<SymbolTable<'data, 'file, R>>
Get the dynamic linking symbol table, if any. Read more
sourcefn dynamic_relocations(
&'file self
) -> Option<DynamicRelocationIterator<'data, 'file, R>>
fn dynamic_relocations(
&'file self
) -> Option<DynamicRelocationIterator<'data, 'file, R>>
Get the dynamic relocations for this file. Read more
sourcefn symbol_map(&self) -> SymbolMap<SymbolMapName<'data>>
fn symbol_map(&self) -> SymbolMap<SymbolMapName<'data>>
Construct a map from addresses to symbol names. Read more
sourcefn object_map(&self) -> ObjectMap<'data>
fn object_map(&self) -> ObjectMap<'data>
Construct a map from addresses to symbol names and object file names. Read more
sourcefn exports(&self) -> Result<Vec<Export<'data>>>
fn exports(&self) -> Result<Vec<Export<'data>>>
Get the exported symbols that expose both a name and an address. Read more
sourcefn has_debug_symbols(&self) -> bool
fn has_debug_symbols(&self) -> bool
Return true if the file contains debug information sections, false if not.
sourcefn 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.
sourcefn 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.
sourcefn 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.
sourcefn pdb_info(&self) -> Result<Option<CodeView<'_>>>
fn pdb_info(&self) -> Result<Option<CodeView<'_>>>
The filename and GUID from the PE CodeView section
sourcefn relative_address_base(&self) -> u64
fn relative_address_base(&self) -> u64
Get the base address used for relative virtual addresses. Read more
sourcefn endianness(&self) -> Endianness
fn endianness(&self) -> Endianness
Get the endianness of the file.
Auto Trait Implementations
impl<'data, R> RefUnwindSafe for File<'data, R> where
R: RefUnwindSafe,
impl<'data, R> Send for File<'data, R> where
R: Send,
impl<'data, R> Sync for File<'data, R> where
R: Sync,
impl<'data, R> Unpin for File<'data, R> where
R: Unpin,
impl<'data, R> UnwindSafe for File<'data, R> where
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more