A Ruby library for examining and modifying Mach-O files.
The Mach-O file format is used by macOS and iOS (among others) as a general purpose binary format for object files, executables, dynamic libraries, and so forth.
ruby-macho can be installed via RubyGems:
$ gem install ruby-macho
Full documentation is available on RubyDoc.
A quick example of what ruby-macho can do:
require 'macho'
file = MachO::MachOFile.new("/path/to/my/binary")
# get the file's type (object, dynamic lib, executable, etc)
file.filetype # => :execute
# get all load commands in the file and print their offsets:
file.load_commands.each do |lc|
puts "#{lc.type}: offset #{lc.offset}, size: #{lc.cmdsize}"
end
# access a specific load command
lc_vers = file[:LC_VERSION_MIN_MACOSX].first
puts lc_vers.version_string # => "10.10.0"
- Reading data from x86/x86_64/PPC Mach-O files
- Changing the IDs of Mach-O and Fat dylibs
- Changing install names in Mach-O and Fat files
- Adding, deleting, and modifying rpaths.
- Unit and performance testing.
Attribution:
- Constants were taken from Apple, Inc's
loader.h
incctools/include/mach-o
. (Apple Public Source License 2.0).
ruby-macho
is licensed under the MIT License.
For the exact terms, see the license file.