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
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-12-24 08:57:09 +01:00
|
|
|
static std::vector<HMODULE> OpenedHandles;
|
|
|
|
|
2007-11-21 01:37:56 +01:00
|
|
|
#ifdef _WIN64
|
|
|
|
typedef DWORD64 ModuleBaseType;
|
|
|
|
#else
|
|
|
|
typedef ULONG ModuleBaseType;
|
|
|
|
#endif
|
|
|
|
|
2004-12-25 05:50:17 +01:00
|
|
|
extern "C" {
|
2009-04-28 18:37:58 +02:00
|
|
|
// Use old callback if:
|
|
|
|
// - Not using Visual Studio
|
2010-11-29 19:16:10 +01:00
|
|
|
// - Visual Studio 2005 or earlier but only if we are not using the Windows SDK
|
2009-04-28 18:37:58 +02:00
|
|
|
// or Windows SDK version is older than 6.0
|
|
|
|
// Use new callback if:
|
|
|
|
// - Newer Visual Studio (comes with newer SDK).
|
|
|
|
// - Visual Studio 2005 with Windows SDK 6.0+
|
2011-02-09 05:18:12 +01:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#if _MSC_VER < 1500 && (!defined(VER_PRODUCTBUILD) || VER_PRODUCTBUILD < 6000)
|
|
|
|
#define OLD_ELM_CALLBACK_DECL 1
|
|
|
|
#endif
|
|
|
|
#elif defined(__MINGW64__)
|
|
|
|
// Use new callback.
|
|
|
|
#elif defined(__MINGW32__)
|
|
|
|
#define OLD_ELM_CALLBACK_DECL 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef OLD_ELM_CALLBACK_DECL
|
2004-12-25 05:50:17 +01:00
|
|
|
static BOOL CALLBACK ELM_Callback(PSTR ModuleName,
|
2007-11-21 01:37:56 +01:00
|
|
|
ModuleBaseType ModuleBase,
|
2004-12-25 05:50:17 +01:00
|
|
|
ULONG ModuleSize,
|
|
|
|
PVOID UserContext)
|
2008-02-22 11:08:31 +01:00
|
|
|
#else
|
|
|
|
static BOOL CALLBACK ELM_Callback(PCSTR ModuleName,
|
|
|
|
ModuleBaseType ModuleBase,
|
|
|
|
ULONG ModuleSize,
|
|
|
|
PVOID UserContext)
|
|
|
|
#endif
|
2004-12-25 05:50:17 +01:00
|
|
|
{
|
|
|
|
// 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) {
|
|
|
|
OpenedHandles.push_back((HMODULE)ModuleBase);
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2004-12-24 08:57:09 +01:00
|
|
|
}
|
|
|
|
|
2006-07-07 19:12:36 +02:00
|
|
|
bool DynamicLibrary::LoadLibraryPermanently(const char *filename,
|
2010-11-29 19:16:10 +01:00
|
|
|
std::string *ErrMsg) {
|
2004-12-24 08:57:09 +01:00
|
|
|
if (filename) {
|
|
|
|
HMODULE a_handle = LoadLibrary(filename);
|
|
|
|
|
2006-01-29 23:02:52 +01:00
|
|
|
if (a_handle == 0)
|
2006-08-25 23:37:17 +02:00
|
|
|
return MakeErrMsg(ErrMsg, std::string(filename) + ": Can't open : ");
|
2004-12-24 08:57:09 +01:00
|
|
|
|
2006-01-29 23:02:52 +01:00
|
|
|
OpenedHandles.push_back(a_handle);
|
2004-12-24 08:57:09 +01:00
|
|
|
} else {
|
2006-01-29 23:02:52 +01:00
|
|
|
// When no file is specified, enumerate all DLLs and EXEs in the
|
2004-12-24 08:57:09 +01:00
|
|
|
// process.
|
|
|
|
EnumerateLoadedModules(GetCurrentProcess(), ELM_Callback, 0);
|
|
|
|
}
|
|
|
|
|
2004-12-25 05:50:17 +01:00
|
|
|
// Because we don't remember the handle, we will never free it; hence,
|
2004-12-24 08:57:09 +01:00
|
|
|
// it is loaded permanently.
|
2006-07-07 19:12:36 +02:00
|
|
|
return false;
|
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) {
|
2006-01-30 05:33:51 +01:00
|
|
|
// First check symbols added via AddSymbol().
|
2009-07-08 02:52:12 +02:00
|
|
|
if (ExplicitSymbols) {
|
2010-11-29 19:16:10 +01:00
|
|
|
std::map<std::string, void *>::iterator I =
|
2009-07-08 02:52:12 +02:00
|
|
|
ExplicitSymbols->find(symbolName);
|
|
|
|
std::map<std::string, void *>::iterator E = ExplicitSymbols->end();
|
|
|
|
if (I != E)
|
|
|
|
return I->second;
|
|
|
|
}
|
2006-01-30 05:33:51 +01:00
|
|
|
|
|
|
|
// Now search the libraries.
|
2004-12-24 08:57:09 +01:00
|
|
|
for (std::vector<HMODULE>::iterator I = OpenedHandles.begin(),
|
|
|
|
E = OpenedHandles.end(); I != E; ++I) {
|
|
|
|
FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
|
2009-06-25 20:12:44 +02:00
|
|
|
if (ptr) {
|
2004-12-30 04:02:31 +01:00
|
|
|
return (void *) 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
|
|
|
}
|
|
|
|
|
|
|
|
}
|