//! Support for reading Mach-O files. //! //! Traits are used to abstract over the difference between 32-bit and 64-bit Mach-O //! files. The primary trait for this is [`MachHeader`]. //! //! ## High level API //! //! [`MachOFile`] implements the [`Object`](crate::read::Object) trait for Mach-O files. //! [`MachOFile`] is parameterised by [`MachHeader`] to allow reading both 32-bit and //! 64-bit Mach-O files. There are type aliases for these parameters ([`MachOFile32`] and //! [`MachOFile64`]). //! //! ## Low level API //! //! The [`MachHeader`] trait can be directly used to parse both [`macho::MachHeader32`] //! and [`macho::MachHeader64`]. Additionally, [`FatHeader`] and the [`FatArch`] trait //! can be used to iterate images in multi-architecture binaries, and [`DyldCache`] can //! be used to locate images in a dyld shared cache. //! //! ### Example for low level API //! ```no_run //! use object::macho; //! use object::read::macho::{MachHeader, Nlist}; //! use std::error::Error; //! use std::fs; //! //! /// Reads a file and displays the name of each symbol. //! fn main() -> Result<(), Box<dyn Error>> { //! # #[cfg(feature = "std")] { //! let data = fs::read("path/to/binary")?; //! let header = macho::MachHeader64::<object::Endianness>::parse(&*data, 0)?; //! let endian = header.endian()?; //! let mut commands = header.load_commands(endian, &*data, 0)?; //! while let Some(command) = commands.next()? { //! if let Some(symtab_command) = command.symtab()? { //! let symbols = symtab_command.symbols::<macho::MachHeader64<_>, _>(endian, &*data)?; //! for symbol in symbols.iter() { //! let name = symbol.name(endian, symbols.strings())?; //! println!("{}", String::from_utf8_lossy(name)); //! } //! } //! } //! # } //! Ok(()) //! } //! ``` #[cfg(doc)] usecrate::macho;
mod dyld_cache; pubuse dyld_cache::*;
mod fat; pubuse fat::*;
mod file; pubuse file::*;
mod load_command; pubuse load_command::*;
mod segment; pubuse segment::*;
mod section; pubuse section::*;
mod symbol; pubuse symbol::*;
mod relocation; pubuse relocation::*;
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.10 Sekunden
(vorverarbeitet am 2026-06-18)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.