I'm not really experienced with x86 assembler and try to debug a problem related to a bug in mach_inject.
The original code looks like this (function mach_inject in mach_inject.c):
#if defined(__x86_64__)
imageOffset = 0; // RIP-relative addressing
#else
ASSERT_CAST( void*, remoteCode );
imageOffset = ((void*) remoteCode) - image;
#endif
and then somewhat later (function INJECT_ENTRY of mach_inject_bundle_stub.c):
pthread_create( &thread,
&attr,
(void* (*)(void*))((long)some_local_function + imageOffset),
(void*) param );
It seems, for me, when I compile this for x86, it fails. If I change the code so that I have imageOffset = 0; on just every architecture (i.e. also for x86), it all works fine.
So, some questions:
- RIP-relative addressing is also available for 32bit/x86 mode?
- What was (probably) the initial intention for this code if we anyway have also RIP-relative addressing for 32bit mode?
- Is RIP-relative addressing a compiler setting? Or in what way can I control if my code uses RIP-relative addressing or not? (Or more related to this bug: Is
imageOffset = 0;always correct? Or when is it not?)
imageOffsetis passed as the first parameter to the injected code, so I'm not sure how it relates to RIP-relative addressing (which doesn't exist in 32-bit mode). – user786653 Sep 7 '11 at 14:36threadEntryOffsetrather thanimageOffsetthat's used to determine the entry point? To me it still looks like imageOffset is only used as the first parameter tothread_create_running. – user786653 Sep 7 '11 at 15:42thread_create_runninggets called correctly. In my case, it is thatINJECT_ENTRYof mach_inject_bundle_stub.c. In that file, you see several places where the adress of local functions is modified by theimageOffset(like the posted code). – Albert Sep 7 '11 at 16:15imageOffsetshould be needed (not 100% sure though and I don't know how to check how the different stuff is getting compiled/linked). – user786653 Sep 7 '11 at 16:35