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 gnu binutils replacements are included as example code.
cargo run --example readelf ./tests/samples/amd64_exe
strip can be implemented like:
```rust extern crate elfkit;
use std::env; use std::fs::OpenOptions; use elfkit::{Elf,types};
fn main() { let infilename = env::args().nth(1).unwrap(); let outfilename = env::args().nth(2).unwrap(); let mut infile = OpenOptions::new().read(true).open(infilename).unwrap(); let mut outfile = OpenOptions::new().write(true).truncate(true).create(true).open(outfilename).unwrap();
let mut in_elf = Elf::from_reader(&mut in_file).unwrap();
// de/serialize all known section types to detailed representation
// this isn't nessesary for strip, because it never touches the section content
// we just do this for demonstration purposes
in_elf.load_all().unwrap();
let mut out_elf = Elf::default();
out_elf.header.ident_class = in_elf.header.ident_class;
out_elf.header.ident_abi = in_elf.header.ident_abi;
out_elf.header.etype = in_elf.header.etype;
out_elf.header.machine = in_elf.header.machine;
out_elf.header.entry = in_elf.header.entry;
out_elf.segments = in_elf.segments.clone();
// sections which do not have an ALLOC flag aren't needed by the dynamic linker
// but also keep the first NULL section for padding
out_elf.sections = in_elf.sections.drain(..).filter(|sec|{
sec.header.flags.contains(types::SectionFlags::ALLOC) ||
sec.header.shtype == types::SectionType::NULL
}).collect();
out_elf.to_writer(&mut out_file).unwrap();
}
```
lower level
everything is based on std::io::{Read,Write}. This is most convenient for userspace editors. For writing a kernel check alternatives below.
Every type implements fromreader and towriter. You can use them individually, 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 | |