17 releases

0.1.17 Jun 18, 2022
0.1.15 Mar 2, 2021
0.1.14 Nov 21, 2019
0.1.13 Sep 27, 2018
0.1.1 Nov 1, 2016

#312 in Parser implementations

Download history 1279/week @ 2024-01-29 1134/week @ 2024-02-05 1076/week @ 2024-02-12 1235/week @ 2024-02-19 938/week @ 2024-02-26 736/week @ 2024-03-04 843/week @ 2024-03-11 859/week @ 2024-03-18 953/week @ 2024-03-25 965/week @ 2024-04-01 951/week @ 2024-04-08 683/week @ 2024-04-15 862/week @ 2024-04-22 1355/week @ 2024-04-29 1203/week @ 2024-05-06 1280/week @ 2024-05-13

4,773 downloads per month
Used in 6 crates (5 directly)

Apache-2.0

235KB
4K SLoC

Contains (Mach-o exe, 320KB) tests/hellorust, (Mach-o exe, 10KB) tests/helloobjc, (Mach-o exe, 9KB) tests/helloworld, (static library, 3KB) tests/libfoo.a

rust-macho travis crate docs

Mach-O File Format Parser for Rust

Usage

To use, add the following line to Cargo.toml under [dependencies]:

mach_object = "0.1"

or alternatively,

mach_object = { git = "https://github.com/flier/rust-macho.git" }

Examples

Use OFile::parse to read the mach-o file from a &[u8] slice.

use std::io::{Read, Cursor};
use std::fs::File;
use mach_object::{OFile, CPU_TYPE_X86_64, MachCommand, LoadCommand};

let mut f = File::open("test/helloworld").unwrap();
let mut buf = Vec::new();
let size = f.read_to_end(&mut buf).unwrap();
let mut cur = Cursor::new(&buf[..size]);
if let OFile::MachFile { ref header, ref commands } = OFile::parse(&mut cur).unwrap() {
    assert_eq!(header.cputype, CPU_TYPE_X86_64);
    assert_eq!(header.ncmds as usize, commands.len());
    for &MachCommand(ref cmd, cmdsize) in commands {
        if let &LoadCommand::Segment64 { ref segname, ref sections, .. } = cmd {
            println!("segment: {}", segname);

            for ref sect in sections {
                println!("  section: {}", sect.sectname);
            }
        }
    }
}

For more detail, please check the unit tests and the otool example.

Dependencies

~0.7–1.5MB
~32K SLoC