且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将文件打包到ELF可执行文件中

更新时间:2023-02-16 14:54:29

您可以使用 objcopy(1)将文件作为特殊部分添加到elf文件中:

objcopy --addsection sname=file oldelf newelf

会将文件添加到oldelf并将结果写入newelf(不会修改oldelf) 然后,您可以使用 libbfd 来读取elf文件并按名称提取节,或者只是滚动您自己的代码即可读取节表并找到您的节.确保使用的部分名称不会与系统期望的任何名称发生冲突-只要您的名称不是以.开头,就可以了.

I'm currently looking for a way to add data to an already compiled ELF executable, i.e. embedding a file into the executable without recompiling it.

I could easily do that by using cat myexe mydata > myexe_with_mydata, but I couldn't access the data from the executable because I don't know the size of the original executable.

Does anyone have an idea of how I could implement this ? I thought of adding a section to the executable or using a special marker (0xBADBEEFC0FFEE for example) to detect the beginning of the data in the executable, but I do not know if there is a more beautiful way to do it.

Thanks in advance.

You could add the file to the elf file as a special section with objcopy(1):

objcopy --addsection sname=file oldelf newelf

will add the file to oldelf and write the results to newelf (oldelf won't be modified) You can then use libbfd to read the elf file and extract the section by name, or just roll your own code that reads the section table and finds you section. Make sure to use a section name that doesn't collide with anything the system is expecting -- as long as your name doesn't start with a ., you should be fine.