pub struct MachOFile<'data, Mach, R = &'data [u8]>where
Mach: MachHeader,
R: ReadRef<'data>,{ /* private fields */ }
Expand description
A partially parsed Mach-O file.
Most of the functionality of this type is provided by the Object
trait implementation.
Implementations§
source§impl<'data, Mach, R> MachOFile<'data, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, Mach, R> MachOFile<'data, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
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 the Mach-O file for the given image from the dyld shared cache. This will read different sections from different subcaches, if necessary.
sourcepub fn raw_header(&self) -> &'data Mach
👎Deprecated: Use macho_header
instead
pub fn raw_header(&self) -> &'data Mach
macho_header
insteadReturns the raw Mach-O file header.
sourcepub fn macho_header(&self) -> &'data Mach
pub fn macho_header(&self) -> &'data Mach
Get the raw Mach-O file header.
sourcepub fn macho_load_commands(
&self,
) -> Result<LoadCommandIterator<'data, Mach::Endian>>
pub fn macho_load_commands( &self, ) -> Result<LoadCommandIterator<'data, Mach::Endian>>
Get the Mach-O load commands.
sourcepub fn macho_symbol_table(&self) -> &SymbolTable<'data, Mach, R>
pub fn macho_symbol_table(&self) -> &SymbolTable<'data, Mach, R>
Get the Mach-O symbol table.
Returns an empty symbol table if the file has no symbol table.
sourcepub fn build_version(
&self,
) -> Result<Option<&'data BuildVersionCommand<Mach::Endian>>>
pub fn build_version( &self, ) -> Result<Option<&'data BuildVersionCommand<Mach::Endian>>>
Return the LC_BUILD_VERSION
load command if present.
Trait Implementations§
source§impl<'data, Mach, R> Object<'data> for MachOFile<'data, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, Mach, R> Object<'data> for MachOFile<'data, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
source§type Segment<'file> = MachOSegment<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type Segment<'file> = MachOSegment<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
A loadable segment in the object file.
source§type SegmentIterator<'file> = MachOSegmentIterator<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type SegmentIterator<'file> = MachOSegmentIterator<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
An iterator for the loadable segments in the object file.
source§type Section<'file> = MachOSection<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type Section<'file> = MachOSection<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
A section in the object file.
source§type SectionIterator<'file> = MachOSectionIterator<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type SectionIterator<'file> = MachOSectionIterator<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
An iterator for the sections in the object file.
source§type Comdat<'file> = MachOComdat<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type Comdat<'file> = MachOComdat<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
A COMDAT section group in the object file.
source§type ComdatIterator<'file> = MachOComdatIterator<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type ComdatIterator<'file> = MachOComdatIterator<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
An iterator for the COMDAT section groups in the object file.
source§type Symbol<'file> = MachOSymbol<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type Symbol<'file> = MachOSymbol<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
A symbol in the object file.
source§type SymbolIterator<'file> = MachOSymbolIterator<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type SymbolIterator<'file> = MachOSymbolIterator<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
An iterator for symbols in the object file.
source§type SymbolTable<'file> = MachOSymbolTable<'data, 'file, Mach, R>
where
Self: 'file,
'data: 'file
type SymbolTable<'file> = MachOSymbolTable<'data, 'file, Mach, R> where Self: 'file, 'data: 'file
A symbol table in the object file.
source§type DynamicRelocationIterator<'file> = NoDynamicRelocationIterator
where
Self: 'file,
'data: 'file
type DynamicRelocationIterator<'file> = NoDynamicRelocationIterator where Self: 'file, 'data: 'file
An iterator for the 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 sub_architecture(&self) -> Option<SubArchitecture>
fn sub_architecture(&self) -> Option<SubArchitecture>
Get the sub-architecture type of the file if known. Read more
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(&self) -> MachOSegmentIterator<'data, '_, Mach, R> ⓘ
fn segments(&self) -> MachOSegmentIterator<'data, '_, Mach, R> ⓘ
Get an iterator for the loadable segments in the file. Read more
source§fn section_by_name_bytes<'file>(
&'file self,
section_name: &[u8],
) -> Option<MachOSection<'data, 'file, Mach, R>>
fn section_by_name_bytes<'file>( &'file self, section_name: &[u8], ) -> Option<MachOSection<'data, 'file, Mach, R>>
Like
Self::section_by_name
, but allows names that are not UTF-8.source§fn section_by_index(
&self,
index: SectionIndex,
) -> Result<MachOSection<'data, '_, Mach, R>>
fn section_by_index( &self, index: SectionIndex, ) -> Result<MachOSection<'data, '_, Mach, R>>
Get the section at the given index. Read more
source§fn sections(&self) -> MachOSectionIterator<'data, '_, Mach, R> ⓘ
fn sections(&self) -> MachOSectionIterator<'data, '_, Mach, R> ⓘ
Get an iterator for the sections in the file.
source§fn comdats(&self) -> MachOComdatIterator<'data, '_, Mach, R> ⓘ
fn comdats(&self) -> MachOComdatIterator<'data, '_, Mach, R> ⓘ
Get an iterator for the COMDAT section groups in the file.
source§fn symbol_by_index(
&self,
index: SymbolIndex,
) -> Result<MachOSymbol<'data, '_, Mach, R>>
fn symbol_by_index( &self, index: SymbolIndex, ) -> Result<MachOSymbol<'data, '_, Mach, R>>
Get the debugging symbol at the given index. Read more
source§fn symbols(&self) -> MachOSymbolIterator<'data, '_, Mach, R> ⓘ
fn symbols(&self) -> MachOSymbolIterator<'data, '_, Mach, R> ⓘ
Get an iterator for the debugging symbols in the file. Read more
source§fn symbol_table(&self) -> Option<MachOSymbolTable<'data, '_, Mach, R>>
fn symbol_table(&self) -> Option<MachOSymbolTable<'data, '_, Mach, R>>
Get the debugging symbol table, if any.
source§fn dynamic_symbols(&self) -> MachOSymbolIterator<'data, '_, Mach, R> ⓘ
fn dynamic_symbols(&self) -> MachOSymbolIterator<'data, '_, Mach, R> ⓘ
Get an iterator for the dynamic linking symbols in the file. Read more
source§fn dynamic_symbol_table(&self) -> Option<MachOSymbolTable<'data, '_, Mach, R>>
fn dynamic_symbol_table(&self) -> Option<MachOSymbolTable<'data, '_, Mach, R>>
Get the dynamic linking symbol table, if any. Read more
source§fn 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
source§fn 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
source§fn dynamic_relocations(&self) -> Option<NoDynamicRelocationIterator>
fn dynamic_relocations(&self) -> Option<NoDynamicRelocationIterator>
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 DWARF debug information sections, false if not.
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(&self, section_name: &str) -> Option<Self::Section<'_>>
fn section_by_name(&self, section_name: &str) -> Option<Self::Section<'_>>
Get the section named
section_name
, if such a section exists. Read moresource§fn symbol_by_name<'file>(
&'file self,
symbol_name: &str,
) -> Option<Self::Symbol<'file>>
fn symbol_by_name<'file>( &'file self, symbol_name: &str, ) -> Option<Self::Symbol<'file>>
Get the symbol named
symbol_name
, if the symbol exists.source§fn symbol_by_name_bytes<'file>(
&'file self,
symbol_name: &[u8],
) -> Option<Self::Symbol<'file>>
fn symbol_by_name_bytes<'file>( &'file self, symbol_name: &[u8], ) -> Option<Self::Symbol<'file>>
Like
Self::symbol_by_name
, but allows names that are not UTF-8.source§fn symbol_map(&self) -> SymbolMap<SymbolMapName<'data>>
fn symbol_map(&self) -> SymbolMap<SymbolMapName<'data>>
Construct a map from addresses to symbol names. Read more
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.Auto Trait Implementations§
impl<'data, Mach, R> Freeze for MachOFile<'data, Mach, R>
impl<'data, Mach, R> RefUnwindSafe for MachOFile<'data, Mach, R>where
<Mach as MachHeader>::Endian: RefUnwindSafe,
R: RefUnwindSafe,
Mach: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Segment: RefUnwindSafe,
<Mach as MachHeader>::Section: RefUnwindSafe,
impl<'data, Mach, R> Send for MachOFile<'data, Mach, R>where
<Mach as MachHeader>::Endian: Send,
R: Send,
Mach: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Segment: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, Mach, R> Sync for MachOFile<'data, Mach, R>where
<Mach as MachHeader>::Endian: Sync,
R: Sync,
Mach: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Segment: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, Mach, R> Unpin for MachOFile<'data, Mach, R>
impl<'data, Mach, R> UnwindSafe for MachOFile<'data, Mach, R>where
<Mach as MachHeader>::Endian: UnwindSafe,
R: UnwindSafe,
Mach: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Segment: RefUnwindSafe,
<Mach as MachHeader>::Section: 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