CrashRecovery: Fix raise() override to actually send the right signal, *cough*.
[oota-llvm.git] / lib / System / DynamicLibrary.cpp
1 //===-- DynamicLibrary.cpp - Runtime link/load libraries --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This header file implements the operating system DynamicLibrary concept.
11 //
12 // FIXME: This file leaks the ExplicitSymbols and OpenedHandles vector, and is
13 // not thread safe!
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "llvm/System/DynamicLibrary.h"
18 #include "llvm/Config/config.h"
19 #include <cstdio>
20 #include <cstring>
21 #include <map>
22 #include <vector>
23
24 // Collection of symbol name/value pairs to be searched prior to any libraries.
25 static std::map<std::string, void*> *ExplicitSymbols = 0;
26
27 namespace {
28
29 struct ExplicitSymbolsDeleter {
30   ~ExplicitSymbolsDeleter() {
31     if (ExplicitSymbols)
32       delete ExplicitSymbols;
33   }
34 };
35
36 }
37
38 static ExplicitSymbolsDeleter Dummy;
39
40 void llvm::sys::DynamicLibrary::AddSymbol(const char* symbolName,
41                                           void *symbolValue) {
42   if (ExplicitSymbols == 0)
43     ExplicitSymbols = new std::map<std::string, void*>();
44   (*ExplicitSymbols)[symbolName] = symbolValue;
45 }
46
47 #ifdef LLVM_ON_WIN32
48
49 #include "Win32/DynamicLibrary.inc"
50
51 #else
52
53 #if HAVE_DLFCN_H
54 #include <dlfcn.h>
55 using namespace llvm;
56 using namespace llvm::sys;
57
58 //===----------------------------------------------------------------------===//
59 //=== WARNING: Implementation here must contain only TRULY operating system
60 //===          independent code.
61 //===----------------------------------------------------------------------===//
62
63 static std::vector<void *> *OpenedHandles = 0;
64
65
66 bool DynamicLibrary::LoadLibraryPermanently(const char *Filename,
67                                             std::string *ErrMsg) {
68   void *H = dlopen(Filename, RTLD_LAZY|RTLD_GLOBAL);
69   if (H == 0) {
70     if (ErrMsg) *ErrMsg = dlerror();
71     return true;
72   }
73 #ifdef __CYGWIN__
74   // Cygwin searches symbols only in the main
75   // with the handle of dlopen(NULL, RTLD_GLOBAL).
76   if (Filename == NULL)
77     H = RTLD_DEFAULT;
78 #endif
79   if (OpenedHandles == 0)
80     OpenedHandles = new std::vector<void *>();
81   OpenedHandles->push_back(H);
82   return false;
83 }
84 #else
85
86 using namespace llvm;
87 using namespace llvm::sys;
88
89 bool DynamicLibrary::LoadLibraryPermanently(const char *Filename,
90                                             std::string *ErrMsg) {
91   if (ErrMsg) *ErrMsg = "dlopen() not supported on this platform";
92   return true;
93 }
94 #endif
95
96 namespace llvm {
97 void *SearchForAddressOfSpecialSymbol(const char* symbolName);
98 }
99
100 void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
101   // First check symbols added via AddSymbol().
102   if (ExplicitSymbols) {
103     std::map<std::string, void *>::iterator I =
104       ExplicitSymbols->find(symbolName);
105     std::map<std::string, void *>::iterator E = ExplicitSymbols->end();
106   
107     if (I != E)
108       return I->second;
109   }
110
111 #if HAVE_DLFCN_H
112   // Now search the libraries.
113   if (OpenedHandles) {
114     for (std::vector<void *>::iterator I = OpenedHandles->begin(),
115          E = OpenedHandles->end(); I != E; ++I) {
116       //lt_ptr ptr = lt_dlsym(*I, symbolName);
117       void *ptr = dlsym(*I, symbolName);
118       if (ptr) {
119         return ptr;
120       }
121     }
122   }
123 #endif
124
125   if (void *Result = llvm::SearchForAddressOfSpecialSymbol(symbolName))
126     return Result;
127
128 // This macro returns the address of a well-known, explicit symbol
129 #define EXPLICIT_SYMBOL(SYM) \
130    if (!strcmp(symbolName, #SYM)) return &SYM
131
132 // On linux we have a weird situation. The stderr/out/in symbols are both
133 // macros and global variables because of standards requirements. So, we 
134 // boldly use the EXPLICIT_SYMBOL macro without checking for a #define first.
135 #if defined(__linux__)
136   {
137     EXPLICIT_SYMBOL(stderr);
138     EXPLICIT_SYMBOL(stdout);
139     EXPLICIT_SYMBOL(stdin);
140   }
141 #else
142   // For everything else, we want to check to make sure the symbol isn't defined
143   // as a macro before using EXPLICIT_SYMBOL.
144   {
145 #ifndef stdin
146     EXPLICIT_SYMBOL(stdin);
147 #endif
148 #ifndef stdout
149     EXPLICIT_SYMBOL(stdout);
150 #endif
151 #ifndef stderr
152     EXPLICIT_SYMBOL(stderr);
153 #endif
154   }
155 #endif
156 #undef EXPLICIT_SYMBOL
157
158   return 0;
159 }
160
161 #endif // LLVM_ON_WIN32