I want to write a utility to remove a program header from an ELF binary. For example, when I run readelf -l /my/elf I get a listing of all the program headers: PHDR INTERP ... GNU_STACK GNU_RELRO. When I run my utility, I would like to get all the same program headers back in the same order, minus the one I deleted. Is there any easier way to do this than recreated the entire ELF from scratch, skipping the unwanted header?
Sure: program headers form a fixed-record table at an offset given by To delete one entry, simply copy the rest of entries over it, and decrement Beware: deleting some entries will likely cause the dynamic loader to crash. Update: Yes, setting Finally, adding a new |
|||||
|