I'm writing a DLL that needs to call a separated DLL dynamically multiple times. I would like to keep the callee loaded and then just unload it when my DLL is unloaded. But according to Microsoft, that's a bad idea.

The entry point function should only perform simple initialization tasks and should not call any other DLL loading or termination functions. For example, in the entry point function, you should not directly or indirectly call the LoadLibrary function or the LoadLibraryEx function. Additionally, you should not call the FreeLibrary function when the process is terminating.

Here's the offending code. Can somebody explain why I shouldn't call LoadLibrary and FreeLibrary from my DLL's entry point?

BOOL APIENTRY DllMain( HANDLE hModule, 
                       DWORD  ul_reason_for_call, 
                       LPVOID lpReserved
    				 )
{
switch (ul_reason_for_call) {
	case DLL_PROCESS_DETACH :
    		if (hLogLib != NULL) FreeLibrary(hLogLib);
    		break;
    }
    return TRUE;
}
link|improve this question

How do you know that the DLL hasn't been unloaded already? – Anon. Dec 14 '09 at 19:46
@Anon: I don't. In fact, I don't know that it was ever even loaded. But if it was loaded and hasn't already been unloaded, I want to unload it. – John M Gant Dec 14 '09 at 21:03
Sounds like you should be static-linking to the other DLL, rather than trying to dynamically load it. – Remy Lebeau Dec 15 '09 at 2:29
@Remy, I would if I could. The path to the DLL isn't available at compile time. – John M Gant Dec 15 '09 at 12:43
feedback

3 Answers

You can't call LoadLibrary from your entry point because the DllMain function runs inside an OS loader lock and any attempts to reacquire that loader lock (for instance, by calling LoadLibrary) will result in deadlock.

link|improve this answer
But what about FreeLibrary? What kind of problems could that cause? – John M Gant Dec 14 '09 at 20:56
feedback
up vote 1 down vote accepted

I think I've found the answer.

The entry-point function should perform only simple initialization or termination tasks. It must not call the LoadLibrary or LoadLibraryEx function (or a function that calls these functions), because this may create dependency loops in the DLL load order. This can result in a DLL being used before the system has executed its initialization code. Similarly, the entry-point function must not call the FreeLibrary function (or a function that calls FreeLibrary) during process termination, because this can result in a DLL being used after the system has executed its termination code.

link|improve this answer
feedback

Don't do anything of consequence inside of DLLMain. Seriously. Calling FreeLibrary is even worse because it'll only sometimes deadlock, if it happens that your free decrements the refcount to zero and the library is actually freed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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