I want to do the inverse of this question.

I am embedding a file into an executable as an array, and I would later like to extract the embedded file from the executable.

It seems like objcopy might be useful here but I haven't figured out the proper incantation yet.

(Edit: clarify question, I somehow removed the crux of it in editing originally...)

link|improve this question

What do you mean inverse? - that question is how to embed a file into an executable as an array. – Stephen Apr 27 '10 at 14:48
I'm not sure I quite understand the question, but wouldn't printing the array by bytes to a file do that? – tiftik Apr 27 '10 at 14:52
tiftik: I want to extract the embedded file without running the executable. – bstpierre Apr 27 '10 at 14:59
feedback

2 Answers

up vote 2 down vote accepted

If you place the embedded file within its own section you can use objcopy to extract that section into a raw output file, I think. Look into gcc's __attribute__((section("embedded_file") )) Or if you are getting the file into the exe some other way using the linker you should be able to get it into another section another way, but I'm not familiar with doing that.

link|improve this answer
Thanks. I looked at this a bit too, I'll give it a try. – bstpierre Apr 28 '10 at 22:12
feedback

Put a recognizable pattern at the beginning of the array to help you find the data in the file.

If you're creating a Windows executable, put the data into a binary resource in the executable instead of just encoding it into an array -- you can then use normal Windows resource functions (FindResource, LoadResource, etc.) to get the data (though this is a bit trickier to get working correctly than it initially seems like it should be).

link|improve this answer
1  
This is a linux (elf32-powerpc) executable. I'm looking for something more robust than pattern hunting. – bstpierre Apr 27 '10 at 16:42
@bstpierre:A few people have done projects to add resource-like capabilities with Unix executable formats. You might want to look at: taniwha.com/~paul/res for one example. – Jerry Coffin Apr 27 '10 at 16:59
Thanks for the pointer, I'll check it out. – bstpierre Apr 28 '10 at 22:12
feedback

Your Answer

 
or
required, but never shown

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