an elf read and manipulation library in pure rust (no bfd, no gnu code), intended to be used in binary manipulation utils such as strip, objcopy, link editors, etc.
Some binutils replacements are included as example code.
cargo run --example readelf ./tests/samples/amd64_exe
low level
Every type implements fromreader and towriter. You can use them invdividually, but you'll always need a Header to tell the de/serializers about things like endianness, bitwidth,..
structured elf
the most versatile api is propably Elf::fromreader/towriter.
You can use it as is, which will hold all sectionc content in Vec
section specific parsers
| type | read | write | |--------------|---------|---------| | symtab | ok | ok | | rela | ok | ok | | dynamic | ok | ok | | rel | - | - | | note | - | - | | gnu_hash | - | - | | versym | - | - | | verneed | - | - |
architectures
| abi | headers | relocations | |--------------|---------|-------------| | x86_64 | ok | wip | | mips32r2 o32 | ok | | | arm eabi | ok | |