In Windows NT's native API, one ultimately uses LdrGetProcedureAddressEx to resolve the address of a function or variable symbol as exported by a dynamically linked library. A little higher up in the hierarchy, GetProcAddress is the Win32 API variant an application programmer would usually call.
I have been reverse-engineering LdrGetProcedureAddressEx for fun, but seeing how inefficient it is to call it multiple times on a single DLL, I have started wondering if it would be feasible and, above all, 'safe' to implement my own variant.
My main concerns are as follows:
- I have seen points where a critical section is entered and exited, but I am not sure which functions are involved in this CS. I don't know whether a custom version could 'get in the way' of the Native API functions. Does anyone have an idea if it suffices to make my own my variant atomic w.r.t. itself and any calls to
LdrUnloadDll? - It looks like the global variable used by
LdrGetPRocedureAddressExto figure out whichBaseAddressargument to use onRtlImageNtHeaderExis exposed by a function (LdrEnumerateLoadedModules). I don't know whether this function exists in older iterations of Native API, though. Would depending on this function make my software less portable across Win NT variants?*
* I know that user-space programmers should steer away from the Native API and use Win32 instead. That's the theory. But how is it in practice? Is LdrEnumerateLoadedModules something I can depend on?
GetProcAddressfor the same module can take a 'long' time (perhaps a noticeable fraction of a second ;)). – Tinctorius Dec 14 '11 at 23:44