vote up 3 vote down star

Hello all.

I'm looking for an efficient way to access(for both read and write operations) the memory space of my ptraced child process. The size of blocks being accessed may vary from several bytes up to several megabytes in size, so using the ptrace call with PTRACE_PEEKDATA and PTRACE_POKEDATA which read only one word at a time and switch context every time they're called seems like a pointless waste of resources. The only one alternative solution I could find, though, was the /proc/<pid>/mem file, but it has long since been made read only.

Is there any other (relatively simple) way to do that job? The ideal solution would be to somehow share the address space of my child process with its parent and then use the simple memcpy call to copy data I need in both directions, but I have no clues how to do it and where to begin.

Any ideas?

flag
you want to look at any memory information or at a particular piece of data that you want to share ? I mean, you want to acess the whole memory space ? – LB Jun 6 at 2:00
I want to access particular pieces of data whose location, length and number vary every time I launch the program. But for that I think that access to the whole memory space of the traced process is the most natural and easy way to read and modify them. – vovick Jun 6 at 7:00

3 Answers

vote up 0 vote down

If you're in control of the child process, maybe you could add a debug interface that allows you to write to the memory in question?

link|flag
vote up 1 vote down

If this is Linux (which the tags suggest it is), you can share the entirety of the child's address space with the parent by using clone() with the CLONE_VM flag. As the two processes share the same VM space, all modifications will be immediately visible between the two, with essentially zero overhead.

This does mean you can't then exec() in the child; as it will replace the VM space of both processes.

link|flag
vote up 1 vote down

Are you in control of the child process and its sourcecode? If so, you could consider using Shared memory.

link|flag

Your Answer

Get an OpenID
or

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