All notable changes to this project will be documented in this file.
Before 1.0, this project does not adhere to Semantic Versioning.
I'm sorry, I will try my best to ease breaking changes. We're almost to 1.0, don't worry!
- elf: add symbol visibility. thanks @pchickey: m4b#119
- elf: parse section header relocs even when not an object file. thanks @Techno-Coder: m4b#118
- pe: make utils public, add better examples for data directory usage. thanks @Pzixel: m4b#116
- elf: fix regression when parsing dynamic symbols from some binaries, thanks @philipc: m4b#111
- BREAKING: updated required compiler to 1.20 (due to scroll 1.20 requirement)
- BREAKING: elf: removed bias field, as it was misleading/useless/incorrect
- BREAKING: elf: add lazy relocation iterators: Thanks @ibabushkin m4b#102
- BREAKING: mach: remove repr(packed) from dylib and fvmlib (this should not affect anyone): m4b#105
- elf: use gnu/sysv hash table to compute sizeof dynsyms more accurately: again huge thanks to @philipc m4b#109
- elf: handle multiple load biases: huge thanks @philipc: m4b#107
- mach: add arm64e constants: Thanks @mitsuhiko m4b#103
- PE: calculate read bytes using alignment: Thanks @tathanhdinh m4b#101
- PE: get proper names for PE sections: Thanks @roblabla m4b#100
- BREAKING: updated required compiler to 1.19 (technically only required for tests, but assume this is required for building as well)
- fixed nightly alloc api issues: m4b#94
- BREAKING: pe.export: name is now optional to reflect realities of PE parsing, and add more robustness to parser. many thanks to @tathanhdinh! m4b#88
- elf.note: treat alignment similar to other tools, e.g., readelf. Thanks @xcoldhandsx: m4b#91
- elf: more inline annotations on various methods, thanks@amanieu: m4b#87
- BREAKING: elf.reloc: u64/i64 used for r_offset/r_addend, and addend is now proper optional, thanks @amanieu! m4b#86
- update to scroll 0.9
- pe32+: parse better, thanks @kjempelodott, m4b#82
- mach: add constants for
n_types
whenN_STAB
field is being used, thanks @jrmuizel! m4b#85 - elf: implement support for compressed headers, thanks @rocallahan! m4b#83
- new nightly "alloc" feature: allows compiling the goblin parser on nightly with extern crate + no_std, thanks @philipc! m4b#77
- mach.segments: do not panic on bad internal data bounds: m4b#74
- mach: correctly add weak dylibs to import libs: m4b#73
- BREAKING: elf:
iter_notes
renamed toiter_note_headers
- BREAKING: mach: remove
is_little_endian()
,ctx()
, andcontainer()
methods from header, as they were completely invalid for big-endian architectures since the header was parsed according to the endianness of the binary correctly into memory, and hence would always reportMH_MAGIC
orMH_MAGIC64
as the magic value. - elf: courtesy of @jan-auer, note iterator now properly iterates over multiple PH_NOTEs
- mach: added hotly requested feature - goblin now has new functionality to parse big-endian, powerpc 32-bit mach-o binaries correctly
- mach: new function to correctly extract the parsing context for a mach-o binary,
parse_magic_and_ctx
- elf: note iterator has new
iter_note_sections
method
- BREAKING: remove deprecated goblin::parse method
- BREAKING: ELF
to_range
removed on program and section headers; usevm_range
andfile_range
for respective ranges - Technically BREAKING: @philipc added Symtab and symbol iterator to ELF, but is basically the same, unless you were explicitly relying on the backing vector
- use scroll 0.8.0 and us scroll_derive via scroll
- fix notes including \0 terminator (causes breakage because tools like grep treat resulting output as a binary output...)
- pe: add PE characteristics constants courtesy @philipc
- mach: SizeWith for RelocationInfo
- mach: IOWrite and Pwrite impls for Nlist
- fix proper std feature flag to log; this was an oversight in last version
- proper cputype and cpusubtype constants to mach, along with mappings, courtesy of @mitsuhiko
- new osx and ios version constants
- all mach load commands now implement IOread and IOwrite from scroll
- add new elf::note module and associated structs + constants, and
iter_notes
method to Elf object - remove all unused muts; this will make nightly and future stables no longer warn
- fix macho nstab treatment, thanks @philipc !
- mach header cpusubtype bug fixed, thanks @mitsuhiko !
- goblin::Object::parse; add deprecation to goblin::parse
- MAJOR archive now parses bsd style archives AND is zero-copy by @willglynn
- MAJOR macho import parser bug fixed by @willglynn
- added writer impls for Section and Segment
- add get_unsafe to strtab for Option<&str> returns
- relocations method on mach
- more elf relocations
- mach relocations
- convenience functions for many elf structures that elf writer will appreciate
- mach relocation iteration
- update to scroll 0.7
- add cread/ioread impls for various structs
- BREAKING: sections() and section iterator now return (Section, &[u8])
- Segment, Section, RelocationIterator are now in segment module
- removed lifetime from section, removed data and raw data, and embedded ctx
- all scroll::Error have been removed from public API ref #33
- better mach symbol iteration
- better mach section iteration
- remove wow_so_meta_doge due to linker issues
- Strtab.get now returns a Option, when index is bad
- elf.soname is &str
- elf.libraries is now Vec<&str>
- New goblin::Object for enum containing the parsed binary container, or convenience goblin::parse(&[u8) for parsing bytes into respective container format
- All binaries formats now have lifetimes
- Elf has a lifetime
- Strtab.new now requires a &'a[u8]
- Strtab.get now returns a scroll::Result<&'a str> (use strtab[index] if you want old behavior and don't care about panics); returning scroll::Error is a bug, fixed in next release
- Archive has a lifetime
- Mach has a lifetime