blob: 91de11349d22e663bdf6610272f1044d995162dd [file] [log] [blame]
Reid Spencerebf8d0e2004-12-24 06:03:31 +00001//===- Win32/DynamicLibrary.cpp - Win32 DL Implementation -------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Jeff Cohen1a466352004-12-24 07:57:09 +00005// This file was developed by Jeff Cohen and is distributed under the
Reid Spencerebf8d0e2004-12-24 06:03:31 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Jeff Cohenc2b91622004-12-25 04:50:17 +000010// This file provides the Win32 specific implementation of DynamicLibrary.
Reid Spencerebf8d0e2004-12-24 06:03:31 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "Win32.h"
Jeff Cohenc2b91622004-12-25 04:50:17 +000015
Jeff Cohen23a1cf32005-02-19 03:01:13 +000016#ifdef __MINGW32__
Reid Spencer48fdf912006-06-01 19:03:21 +000017 #include <imagehlp.h>
Jeff Cohenc2b91622004-12-25 04:50:17 +000018#else
Reid Spencer48fdf912006-06-01 19:03:21 +000019 #include <dbghelp.h>
Jeff Cohenc2b91622004-12-25 04:50:17 +000020#endif
Jeff Cohen1a466352004-12-24 07:57:09 +000021
Reid Spencer48fdf912006-06-01 19:03:21 +000022#ifdef __MINGW32__
23 #if (HAVE_LIBIMAGEHLP != 1)
24 #error "libimagehlp.a should be present"
25 #endif
26#else
27 #pragma comment(lib, "dbghelp.lib")
28#endif
Reid Spencerebf8d0e2004-12-24 06:03:31 +000029
30namespace llvm {
31using namespace sys;
32
33//===----------------------------------------------------------------------===//
34//=== WARNING: Implementation here must contain only Win32 specific code
Jeff Cohen1a466352004-12-24 07:57:09 +000035//=== and must not be UNIX code.
Reid Spencerebf8d0e2004-12-24 06:03:31 +000036//===----------------------------------------------------------------------===//
37
Jeff Cohen1a466352004-12-24 07:57:09 +000038static std::vector<HMODULE> OpenedHandles;
39
Jeff Cohenc2b91622004-12-25 04:50:17 +000040extern "C" {
41 static BOOL CALLBACK ELM_Callback(PSTR ModuleName,
42 ULONG ModuleBase,
43 ULONG ModuleSize,
44 PVOID UserContext)
45 {
46 // Ignore VC++ runtimes prior to 7.1. Somehow some of them get loaded
47 // into the process.
48 if (stricmp(ModuleName, "msvci70") != 0 &&
49 stricmp(ModuleName, "msvcirt") != 0 &&
50 stricmp(ModuleName, "msvcp50") != 0 &&
51 stricmp(ModuleName, "msvcp60") != 0 &&
52 stricmp(ModuleName, "msvcp70") != 0 &&
53 stricmp(ModuleName, "msvcr70") != 0 &&
Anton Korobeynikovcd79df02006-12-19 15:24:18 +000054#ifndef __MINGW32__
55 // Mingw32 uses msvcrt.dll by default. Don't ignore it.
56 // Otherwise, user should be aware, what he's doing :)
Jeff Cohenc2b91622004-12-25 04:50:17 +000057 stricmp(ModuleName, "msvcrt") != 0 &&
Anton Korobeynikovcd79df02006-12-19 15:24:18 +000058#endif
Jeff Cohenc2b91622004-12-25 04:50:17 +000059 stricmp(ModuleName, "msvcrt20") != 0 &&
60 stricmp(ModuleName, "msvcrt40") != 0) {
61 OpenedHandles.push_back((HMODULE)ModuleBase);
62 }
63 return TRUE;
64 }
Jeff Cohen1a466352004-12-24 07:57:09 +000065}
66
Reid Spencerebf8d0e2004-12-24 06:03:31 +000067DynamicLibrary::DynamicLibrary() : handle(0) {
Jeff Cohen1a466352004-12-24 07:57:09 +000068 handle = GetModuleHandle(NULL);
69 OpenedHandles.push_back((HMODULE)handle);
Reid Spencerebf8d0e2004-12-24 06:03:31 +000070}
71
Reid Spencerebf8d0e2004-12-24 06:03:31 +000072DynamicLibrary::~DynamicLibrary() {
Jeff Cohen1a466352004-12-24 07:57:09 +000073 if (handle == 0)
74 return;
75
76 // GetModuleHandle() does not increment the ref count, so we must not free
77 // the handle to the executable.
78 if (handle != GetModuleHandle(NULL))
79 FreeLibrary((HMODULE)handle);
80 handle = 0;
81
82 for (std::vector<HMODULE>::iterator I = OpenedHandles.begin(),
83 E = OpenedHandles.end(); I != E; ++I) {
84 if (*I == handle) {
85 // Note: don't use the swap/pop_back trick here. Order is important.
86 OpenedHandles.erase(I);
87 }
88 }
89}
90
Anton Korobeynikovcd79df02006-12-19 15:24:18 +000091#ifdef __MINGW32__
92 #define EXPLICIT_SYMBOL(SYM) \
93 if (!strcmp(symbolName, #SYM)) return (void*)&SYM
94 #define EXPLICIT_SYMBOL2(SYMFROM, SYMTO) \
95 if (!strcmp(symbolName, #SYMFROM)) return (void*)&SYMTO
96 #define EXPLICIT_SYMBOL_DEF(SYM) \
97 extern "C" { extern void *SYM; }
98
99 EXPLICIT_SYMBOL_DEF(_alloca);
100#endif
101
Chris Lattneradcbce02006-07-07 17:12:36 +0000102bool DynamicLibrary::LoadLibraryPermanently(const char *filename,
103 std::string *ErrMsg) {
Jeff Cohen1a466352004-12-24 07:57:09 +0000104 if (filename) {
105 HMODULE a_handle = LoadLibrary(filename);
106
Jeff Cohen715bd762006-01-29 22:02:52 +0000107 if (a_handle == 0)
Reid Spencer05545752006-08-25 21:37:17 +0000108 return MakeErrMsg(ErrMsg, std::string(filename) + ": Can't open : ");
Jeff Cohen1a466352004-12-24 07:57:09 +0000109
Jeff Cohen715bd762006-01-29 22:02:52 +0000110 OpenedHandles.push_back(a_handle);
Jeff Cohen1a466352004-12-24 07:57:09 +0000111 } else {
Jeff Cohen715bd762006-01-29 22:02:52 +0000112 // When no file is specified, enumerate all DLLs and EXEs in the
Jeff Cohen1a466352004-12-24 07:57:09 +0000113 // process.
114 EnumerateLoadedModules(GetCurrentProcess(), ELM_Callback, 0);
115 }
116
Jeff Cohenc2b91622004-12-25 04:50:17 +0000117 // Because we don't remember the handle, we will never free it; hence,
Jeff Cohen1a466352004-12-24 07:57:09 +0000118 // it is loaded permanently.
Chris Lattneradcbce02006-07-07 17:12:36 +0000119 return false;
Jeff Cohen1a466352004-12-24 07:57:09 +0000120}
121
122void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
Jeff Cohen85046902006-01-30 04:33:51 +0000123 // First check symbols added via AddSymbol().
124 std::map<std::string, void *>::iterator I = g_symbols.find(symbolName);
125 if (I != g_symbols.end())
126 return I->second;
127
128 // Now search the libraries.
Jeff Cohen1a466352004-12-24 07:57:09 +0000129 for (std::vector<HMODULE>::iterator I = OpenedHandles.begin(),
130 E = OpenedHandles.end(); I != E; ++I) {
131 FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
132 if (ptr)
Jeff Cohenc18671c2004-12-30 03:02:31 +0000133 return (void *) ptr;
Jeff Cohen1a466352004-12-24 07:57:09 +0000134 }
135
Anton Korobeynikovcd79df02006-12-19 15:24:18 +0000136#ifdef __MINGW32__
137 {
138 EXPLICIT_SYMBOL(_alloca);
139 EXPLICIT_SYMBOL2(alloca, _alloca);
140#undef EXPLICIT_SYMBOL
141#undef EXPLICIT_SYMBOL2
142#undef EXPLICIT_SYMBOL_DEF
143 }
144#endif
145
Jeff Cohen1a466352004-12-24 07:57:09 +0000146 return 0;
Reid Spencerebf8d0e2004-12-24 06:03:31 +0000147}
148
149void *DynamicLibrary::GetAddressOfSymbol(const char *symbolName) {
Jeff Cohen1a466352004-12-24 07:57:09 +0000150 assert(handle != 0 && "Invalid DynamicLibrary handle");
Jeff Cohenc18671c2004-12-30 03:02:31 +0000151 return (void *) GetProcAddress((HMODULE)handle, symbolName);
Reid Spencerebf8d0e2004-12-24 06:03:31 +0000152}
153
154}
155