vote up 0 vote down star

I need to be able to add an arbitrary section to an ELF file. I cannot use GPL code in this program, so BFD is out of the question. I can use libelf/gelf to read sections, but the documentation is fairly sparse for these, and I cannot figure out how to add a section. Does anybody know how to do this? I would rather not write my own ELF code.

flag

3 Answers

vote up 2 vote down check

There's a few (possibly) related answers in this question about ELF file headers. The accepted answer mentioned using objcopy to add sections to an ELF file, and the BSD bintools claims to have a BSD-licensed implementation of objcopy that might suit your needs.

link|flag
This looks promising. Thank you – c4757p Jul 6 at 18:51
vote up 0 vote down

have a look at ELFsh, which is now part of the ERESI project http://www.eresi-project.org/ They have a lot of documentation and cool uses of their tools.

link|flag
vote up 0 vote down

Libelf is LGPL, so you could link to that as a .dll or .so file without violating the license.

http://directory.fsf.org/project/libelf/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.