vote up 2 vote down star
1

I need to read data added to the end of an executable from within that executable .
On win32 I have a problem that I cannot open the .exe for reading. I have tried CreateFile and std::ifstream.
Is there a way of specifying non-exclusive read access to a file that wasn't initially opened with sharing.

EDIT- Great thing about stackoverflow, you ask the wrong question and get the right answer.

flag

How was the data added to the end of the executable? – Marcin Nov 13 '08 at 18:04
It simply cats the data onto the end of the stub exe and then tags a sort of FAT on the end. Like a filesystem inside a self unpacking exe. – Martin Beckett Nov 13 '08 at 18:14

3 Answers

vote up 3 vote down check

Why not just use resources which are designed for this functionality. It won't be at the end, but it will be in the executable.

If you are adding to the .exe after it is built -- you don't have to add to the end, you can update resources on an built .exe

http://msdn.microsoft.com/en-us/library/ms648049(VS.85).aspx

link|flag
It's not my design - somebody else generates the file by appending data to a stub exe. – Martin Beckett Nov 13 '08 at 18:12
Thanks for the link - I didn't know you could programmatically update resources without relinking. – Martin Beckett Nov 13 '08 at 18:20
vote up 1 vote down

I have no problem opening the executable image of a process using either of these statements:

FILE* f = fopen( fname, "rb");

hFile = CreateFile( fname, FILE_READ_DATA, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);

What's your code?

link|flag
vote up 1 vote down

We do this in one of our projects. What's the problem with it? If the EXE is running, then it's already held open for reading, and you can continue to open it read-only multiple times. I just checked our code, we just use:

HANDLE file=CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, 0, OPEN_EXISTING, 0, 0);

This works without problem on all versions of 32- and 64-bit Windows to date.

link|flag

Your Answer

Get an OpenID
or

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