Type Alias object::read::macho::file::MachOFile64

source ·
pub type MachOFile64<'data, Endian = Endianness, R = &'data [u8]> = MachOFile<'data, MachHeader64<Endian>, R>;
Expand description

A 64-bit Mach-O object file.

This is a file that starts with macho::MachHeader64, and corresponds to crate::FileKind::MachO64.

Aliased Type§

struct MachOFile64<'data, Endian = Endianness, R = &'data [u8]> {
    pub(super) endian: <MachHeader64<Endian> as MachHeader>::Endian,
    pub(super) data: R,
    pub(super) header_offset: u64,
    pub(super) header: &'data MachHeader64<Endian>,
    pub(super) segments: Vec<MachOSegmentInternal<'data, MachHeader64<Endian>, R>, Global>,
    pub(super) sections: Vec<MachOSectionInternal<'data, MachHeader64<Endian>>, Global>,
    pub(super) symbols: SymbolTable<'data, MachHeader64<Endian>, R>,
}

Fields§

§endian: <MachHeader64<Endian> as MachHeader>::Endian§data: R§header_offset: u64§header: &'data MachHeader64<Endian>§segments: Vec<MachOSegmentInternal<'data, MachHeader64<Endian>, R>, Global>§sections: Vec<MachOSectionInternal<'data, MachHeader64<Endian>>, Global>§symbols: SymbolTable<'data, MachHeader64<Endian>, R>

Implementations§

source§

impl<'data, Mach, R> MachOFile<'data, Mach, R>where Mach: MachHeader, R: ReadRef<'data>,

source

pub fn parse(data: R) -> Result<Self>

Parse the raw Mach-O file data.

source

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.

source

pub(super) fn section_internal( &self, index: SectionIndex ) -> Result<&MachOSectionInternal<'data, Mach>>

Return the section at the given index.

source

pub(super) fn segment_internal( &self, index: usize ) -> Result<&MachOSegmentInternal<'data, Mach, R>>

source

pub fn endian(&self) -> Mach::Endian

Returns the endianness.

source

pub fn data(&self) -> R

Returns the raw data.

source

pub fn raw_header(&self) -> &'data Mach

Returns the raw Mach-O file header.

source

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> Debug for MachOFile<'data, Mach, R>where Mach: MachHeader + Debug, R: ReadRef<'data> + Debug, Mach::Endian: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'data, 'file, Mach, R> Object<'data, 'file> for MachOFile<'data, Mach, R>where Mach: MachHeader, R: 'file + ReadRef<'data>, 'data: 'file,

§

type Segment = MachOSegment<'data, 'file, Mach, R>

A loadable segment in the object file.
§

type SegmentIterator = MachOSegmentIterator<'data, 'file, Mach, R>

An iterator for the loadable segments in the object file.
§

type Section = MachOSection<'data, 'file, Mach, R>

A section in the object file.
§

type SectionIterator = MachOSectionIterator<'data, 'file, Mach, R>

An iterator for the sections in the object file.
§

type Comdat = MachOComdat<'data, 'file, Mach, R>

A COMDAT section group in the object file.
§

type ComdatIterator = MachOComdatIterator<'data, 'file, Mach, R>

An iterator for the COMDAT section groups in the object file.
§

type Symbol = MachOSymbol<'data, 'file, Mach, R>

A symbol in the object file.
§

type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>

An iterator for symbols in the object file.
§

type SymbolTable = MachOSymbolTable<'data, 'file, Mach, R>

A symbol table in the object file.
§

type DynamicRelocationIterator = NoDynamicRelocationIterator

An iterator for the dynamic relocations in the file. Read more
source§

fn architecture(&self) -> Architecture

Get the architecture type of the file.
source§

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

Return true if the file is little endian, false if it is big endian.
source§

fn is_64(&self) -> bool

Return true if the file can contain 64-bit addresses.
source§

fn kind(&self) -> ObjectKind

Return the kind of this object.
source§

fn segments(&'file self) -> MachOSegmentIterator<'data, 'file, Mach, R>

Get an iterator for the loadable segments in the file. Read more
source§

fn section_by_name_bytes( &'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( &'file self, index: SectionIndex ) -> Result<MachOSection<'data, 'file, Mach, R>>

Get the section at the given index. Read more
source§

fn sections(&'file self) -> MachOSectionIterator<'data, 'file, Mach, R>

Get an iterator for the sections in the file.
source§

fn comdats(&'file self) -> MachOComdatIterator<'data, 'file, Mach, R>

Get an iterator for the COMDAT section groups in the file.
source§

fn symbol_by_index( &'file self, index: SymbolIndex ) -> Result<MachOSymbol<'data, 'file, Mach, R>>

Get the debugging symbol at the given index. Read more
source§

fn symbols(&'file self) -> MachOSymbolIterator<'data, 'file, Mach, R>

Get an iterator for the debugging symbols in the file. Read more
source§

fn symbol_table(&'file self) -> Option<MachOSymbolTable<'data, 'file, Mach, R>>

Get the debugging symbol table, if any.
source§

fn dynamic_symbols(&'file self) -> MachOSymbolIterator<'data, 'file, Mach, R>

Get an iterator for the dynamic linking symbols in the file. Read more
source§

fn dynamic_symbol_table( &'file self ) -> Option<MachOSymbolTable<'data, 'file, Mach, R>>

Get the dynamic linking symbol table, if any. Read more
source§

fn object_map(&'file self) -> ObjectMap<'data>

Construct a map from addresses to symbol names and object file names. Read more
source§

fn imports(&self) -> Result<Vec<Import<'data>>>

Get the imported symbols.
source§

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(&'file self) -> Option<NoDynamicRelocationIterator>

Get the dynamic relocations for this file. Read more
source§

fn has_debug_symbols(&self) -> bool

Return true if the file contains DWARF debug information sections, false if not.
source§

fn mach_uuid(&self) -> Result<Option<[u8; 16]>>

The UUID from a Mach-O LC_UUID load command.
source§

fn relative_address_base(&self) -> u64

Get the base address used for relative virtual addresses. Read more
source§

fn entry(&self) -> u64

Get the virtual address of the entry point of the binary.
source§

fn flags(&self) -> FileFlags

File flags that are specific to each file format.
source§

fn endianness(&self) -> Endianness

Get the endianness of the file.
source§

fn section_by_name(&'file self, section_name: &str) -> Option<Self::Section>

Get the section named section_name, if such a section exists. Read more
source§

fn symbol_by_name(&'file self, symbol_name: &str) -> Option<Self::Symbol>

Get the symbol named symbol_name, if the symbol exists.
source§

fn symbol_by_name_bytes(&'file self, symbol_name: &[u8]) -> Option<Self::Symbol>

Like Self::symbol_by_name, but allows names that are not UTF-8.
source§

fn symbol_map(&'file self) -> SymbolMap<SymbolMapName<'data>>

Construct a map from addresses to symbol names. Read more
source§

fn build_id(&self) -> Result<Option<&'data [u8]>>

The build ID from an ELF NT_GNU_BUILD_ID note.
The filename and CRC from a .gnu_debuglink section.
The filename and build ID from a .gnu_debugaltlink section.
source§

fn pdb_info(&self) -> Result<Option<CodeView<'_>>>

The filename and GUID from the PE CodeView section.
source§

impl<'data, Mach, R> Sealed for MachOFile<'data, Mach, R>where Mach: MachHeader, R: ReadRef<'data>,