2004-12-24 07:03:31 +01:00
|
|
|
//===- Win32/DynamicLibrary.cpp - Win32 DL Implementation -------*- C++ -*-===//
|
2010-11-29 19:16:10 +01:00
|
|
|
//
|
2004-12-24 07:03:31 +01:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-11-29 19:16:10 +01:00
|
|
|
//
|
2004-12-24 07:03:31 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2004-12-25 05:50:17 +01:00
|
|
|
// This file provides the Win32 specific implementation of DynamicLibrary.
|
2004-12-24 07:03:31 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "Windows.h"
|
2004-12-25 05:50:17 +01:00
|
|
|
|
2005-02-19 04:01:13 +01:00
|
|
|
#ifdef __MINGW32__
|
2006-06-01 21:03:21 +02:00
|
|
|
#include <imagehlp.h>
|
2004-12-25 05:50:17 +01:00
|
|
|
#else
|
2006-06-01 21:03:21 +02:00
|
|
|
#include <dbghelp.h>
|
2004-12-25 05:50:17 +01:00
|
|
|
#endif
|
2004-12-24 08:57:09 +01:00
|
|
|
|
2009-04-28 18:37:58 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <ntverp.h>
|
|
|
|
#endif
|
|
|
|
|
2006-06-01 21:03:21 +02:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#if (HAVE_LIBIMAGEHLP != 1)
|
|
|
|
#error "libimagehlp.a should be present"
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#pragma comment(lib, "dbghelp.lib")
|
|
|
|
#endif
|
2004-12-24 07:03:31 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2010-11-29 19:16:10 +01:00
|
|
|
//=== WARNING: Implementation here must contain only Win32 specific code
|
2004-12-24 08:57:09 +01:00
|
|
|
//=== and must not be UNIX code.
|
2004-12-24 07:03:31 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-08-17 02:29:32 +02:00
|
|
|
static DenseSet<HMODULE> *OpenedHandles;
|
2004-12-24 08:57:09 +01:00
|
|
|
|
2004-12-25 05:50:17 +01:00
|
|
|
extern "C" {
|
2011-02-09 05:18:12 +01:00
|
|
|
|
2011-05-01 15:29:49 +02:00
|
|
|
static BOOL CALLBACK ELM_Callback(WIN32_ELMCB_PCSTR ModuleName,
|
|
|
|
ULONG_PTR ModuleBase,
|
2004-12-25 05:50:17 +01:00
|
|
|
ULONG ModuleSize,
|
|
|
|
PVOID UserContext)
|
|
|
|
{
|
|
|
|
// Ignore VC++ runtimes prior to 7.1. Somehow some of them get loaded
|
|
|
|
// into the process.
|
|
|
|
if (stricmp(ModuleName, "msvci70") != 0 &&
|
|
|
|
stricmp(ModuleName, "msvcirt") != 0 &&
|
|
|
|
stricmp(ModuleName, "msvcp50") != 0 &&
|
|
|
|
stricmp(ModuleName, "msvcp60") != 0 &&
|
|
|
|
stricmp(ModuleName, "msvcp70") != 0 &&
|
|
|
|
stricmp(ModuleName, "msvcr70") != 0 &&
|
2006-12-19 16:24:18 +01:00
|
|
|
#ifndef __MINGW32__
|
|
|
|
// Mingw32 uses msvcrt.dll by default. Don't ignore it.
|
|
|
|
// Otherwise, user should be aware, what he's doing :)
|
2004-12-25 05:50:17 +01:00
|
|
|
stricmp(ModuleName, "msvcrt") != 0 &&
|
2010-01-14 21:19:51 +01:00
|
|
|
#endif
|
2004-12-25 05:50:17 +01:00
|
|
|
stricmp(ModuleName, "msvcrt20") != 0 &&
|
|
|
|
stricmp(ModuleName, "msvcrt40") != 0) {
|
2011-08-17 02:59:50 +02:00
|
|
|
OpenedHandles->insert((HMODULE)ModuleBase);
|
2004-12-25 05:50:17 +01:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2004-12-24 08:57:09 +01:00
|
|
|
}
|
|
|
|
|
2011-08-17 02:29:32 +02:00
|
|
|
DynamicLibrary DynamicLibrary::getPermanentLibrary(const char *filename,
|
|
|
|
std::string *errMsg) {
|
2011-08-22 21:01:52 +02:00
|
|
|
SmartScopedLock<true> lock(getMutex());
|
|
|
|
|
2011-08-17 02:29:32 +02:00
|
|
|
if (!filename) {
|
|
|
|
// When no file is specified, enumerate all DLLs and EXEs in the process.
|
|
|
|
if (OpenedHandles == 0)
|
|
|
|
OpenedHandles = new DenseSet<HMODULE>();
|
2004-12-24 08:57:09 +01:00
|
|
|
|
|
|
|
EnumerateLoadedModules(GetCurrentProcess(), ELM_Callback, 0);
|
2011-08-17 02:29:32 +02:00
|
|
|
// Dummy library that represents "search all handles".
|
|
|
|
// This is mostly to ensure that the return value still shows up as "valid".
|
|
|
|
return DynamicLibrary(&OpenedHandles);
|
|
|
|
}
|
|
|
|
|
|
|
|
HMODULE a_handle = LoadLibrary(filename);
|
|
|
|
|
|
|
|
if (a_handle == 0) {
|
2011-08-17 02:59:50 +02:00
|
|
|
MakeErrMsg(errMsg, std::string(filename) + ": Can't open : ");
|
2011-08-17 02:29:32 +02:00
|
|
|
return DynamicLibrary();
|
2004-12-24 08:57:09 +01:00
|
|
|
}
|
|
|
|
|
2011-08-17 02:29:32 +02:00
|
|
|
if (OpenedHandles == 0)
|
|
|
|
OpenedHandles = new DenseSet<HMODULE>();
|
|
|
|
|
|
|
|
// If we've already loaded this library, FreeLibrary() the handle in order to
|
|
|
|
// keep the internal refcount at +1.
|
|
|
|
if (!OpenedHandles->insert(a_handle).second)
|
|
|
|
FreeLibrary(a_handle);
|
|
|
|
|
|
|
|
return DynamicLibrary(a_handle);
|
2004-12-24 08:57:09 +01:00
|
|
|
}
|
|
|
|
|
2008-02-22 11:08:31 +01:00
|
|
|
// Stack probing routines are in the support library (e.g. libgcc), but we don't
|
|
|
|
// have dynamic linking on windows. Provide a hook.
|
2011-02-05 16:11:53 +01:00
|
|
|
#define EXPLICIT_SYMBOL(SYM) \
|
|
|
|
extern "C" { extern void *SYM; }
|
|
|
|
#define EXPLICIT_SYMBOL2(SYMFROM, SYMTO) EXPLICIT_SYMBOL(SYMTO)
|
|
|
|
|
|
|
|
#include "explicit_symbols.inc"
|
|
|
|
|
|
|
|
#undef EXPLICIT_SYMBOL
|
|
|
|
#undef EXPLICIT_SYMBOL2
|
2008-02-22 11:08:31 +01:00
|
|
|
|
2004-12-24 08:57:09 +01:00
|
|
|
void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
|
2011-08-17 02:29:32 +02:00
|
|
|
SmartScopedLock<true> Lock(getMutex());
|
|
|
|
|
2006-01-30 05:33:51 +01:00
|
|
|
// First check symbols added via AddSymbol().
|
2009-07-08 02:52:12 +02:00
|
|
|
if (ExplicitSymbols) {
|
2011-08-17 02:29:32 +02:00
|
|
|
StringMap<void *>::iterator i = ExplicitSymbols->find(symbolName);
|
|
|
|
|
|
|
|
if (i != ExplicitSymbols->end())
|
|
|
|
return i->second;
|
2009-07-08 02:52:12 +02:00
|
|
|
}
|
2006-01-30 05:33:51 +01:00
|
|
|
|
|
|
|
// Now search the libraries.
|
2011-08-17 02:29:32 +02:00
|
|
|
if (OpenedHandles) {
|
|
|
|
for (DenseSet<HMODULE>::iterator I = OpenedHandles->begin(),
|
|
|
|
E = OpenedHandles->end(); I != E; ++I) {
|
|
|
|
FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
|
|
|
|
if (ptr) {
|
|
|
|
return (void *)(intptr_t)ptr;
|
|
|
|
}
|
2009-06-25 20:12:44 +02:00
|
|
|
}
|
2004-12-24 08:57:09 +01:00
|
|
|
}
|
|
|
|
|
2011-02-05 16:11:53 +01:00
|
|
|
#define EXPLICIT_SYMBOL(SYM) \
|
|
|
|
if (!strcmp(symbolName, #SYM)) return (void*)&SYM;
|
|
|
|
#define EXPLICIT_SYMBOL2(SYMFROM, SYMTO) \
|
|
|
|
if (!strcmp(symbolName, #SYMFROM)) return (void*)&SYMTO;
|
|
|
|
|
2007-06-25 09:12:14 +02:00
|
|
|
{
|
2011-02-05 16:11:53 +01:00
|
|
|
#include "explicit_symbols.inc"
|
2010-01-14 21:19:51 +01:00
|
|
|
}
|
2011-02-05 16:11:53 +01:00
|
|
|
|
|
|
|
#undef EXPLICIT_SYMBOL
|
|
|
|
#undef EXPLICIT_SYMBOL2
|
2006-12-19 16:24:18 +01:00
|
|
|
|
2004-12-24 08:57:09 +01:00
|
|
|
return 0;
|
2004-12-24 07:03:31 +01:00
|
|
|
}
|
|
|
|
|
2011-08-17 02:29:32 +02:00
|
|
|
|
|
|
|
void *DynamicLibrary::getAddressOfSymbol(const char *symbolName) {
|
|
|
|
if (!isValid())
|
|
|
|
return NULL;
|
|
|
|
if (Data == &OpenedHandles)
|
|
|
|
return SearchForAddressOfSymbol(symbolName);
|
|
|
|
return (void *)(intptr_t)GetProcAddress((HMODULE)Data, symbolName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-24 07:03:31 +01:00
|
|
|
}
|