blob: 0e4c75dd4f1727367db4c03faa380b36e9abce57 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- Intercept.cpp - System function interception routines -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// If a function call occurs to an external function, the JIT is designed to use
11// the dynamic loader interface to find a function to call. This is useful for
12// calling system calls and library functions that are not available in LLVM.
13// Some system calls, however, need to be handled specially. For this reason,
14// we intercept some of them here and use our own stubs to handle them.
15//
16//===----------------------------------------------------------------------===//
17
18#include "JIT.h"
19#include "llvm/System/DynamicLibrary.h"
20#include "llvm/Config/config.h"
21using namespace llvm;
22
23// AtExitHandlers - List of functions to call when the program exits,
24// registered with the atexit() library function.
25static std::vector<void (*)()> AtExitHandlers;
26
27/// runAtExitHandlers - Run any functions registered by the program's
28/// calls to atexit(3), which we intercept and store in
29/// AtExitHandlers.
30///
31static void runAtExitHandlers() {
32 while (!AtExitHandlers.empty()) {
33 void (*Fn)() = AtExitHandlers.back();
34 AtExitHandlers.pop_back();
35 Fn();
36 }
37}
38
39//===----------------------------------------------------------------------===//
40// Function stubs that are invoked instead of certain library calls
41//===----------------------------------------------------------------------===//
42
43// Force the following functions to be linked in to anything that uses the
44// JIT. This is a hack designed to work around the all-too-clever Glibc
45// strategy of making these functions work differently when inlined vs. when
46// not inlined, and hiding their real definitions in a separate archive file
47// that the dynamic linker can't see. For more info, search for
48// 'libc_nonshared.a' on Google, or read http://llvm.org/PR274.
49#if defined(__linux__)
50#if defined(HAVE_SYS_STAT_H)
51#include <sys/stat.h>
52#endif
Chris Lattner77010bb2008-01-03 07:10:51 +000053
Chris Lattner96e66cb2008-01-03 22:15:32 +000054/* stat functions are redirecting to __xstat with a version number. On x86-64
55 * linking with libc_nonshared.a and -Wl,--export-dynamic doesn't make 'stat'
56 * available as an exported symbol, so we have to add it explicitly.
57 */
Chris Lattner77010bb2008-01-03 07:10:51 +000058class StatSymbols {
Chris Lattner96e66cb2008-01-03 22:15:32 +000059public:
60 StatSymbols() {
61 sys::DynamicLibrary::AddSymbol("stat", (void*)(intptr_t)stat);
62 sys::DynamicLibrary::AddSymbol("fstat", (void*)(intptr_t)fstat);
63 sys::DynamicLibrary::AddSymbol("lstat", (void*)(intptr_t)lstat);
64 sys::DynamicLibrary::AddSymbol("stat64", (void*)(intptr_t)stat64);
65 sys::DynamicLibrary::AddSymbol("fstat64", (void*)(intptr_t)fstat64);
66 sys::DynamicLibrary::AddSymbol("lstat64", (void*)(intptr_t)lstat64);
67 sys::DynamicLibrary::AddSymbol("atexit", (void*)(intptr_t)atexit);
68 sys::DynamicLibrary::AddSymbol("mknod", (void*)(intptr_t)mknod);
69 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070};
Chris Lattner77010bb2008-01-03 07:10:51 +000071static StatSymbols initStatSymbols;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072#endif // __linux__
73
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074// jit_exit - Used to intercept the "exit" library call.
75static void jit_exit(int Status) {
76 runAtExitHandlers(); // Run atexit handlers...
77 exit(Status);
78}
79
80// jit_atexit - Used to intercept the "atexit" library call.
81static int jit_atexit(void (*Fn)(void)) {
82 AtExitHandlers.push_back(Fn); // Take note of atexit handler...
83 return 0; // Always successful
84}
85
86//===----------------------------------------------------------------------===//
87//
88/// getPointerToNamedFunction - This method returns the address of the specified
89/// function by using the dynamic loader interface. As such it is only useful
90/// for resolving library symbols, not code generated symbols.
91///
92void *JIT::getPointerToNamedFunction(const std::string &Name) {
93 // Check to see if this is one of the functions we want to intercept. Note,
94 // we cast to intptr_t here to silence a -pedantic warning that complains
95 // about casting a function pointer to a normal pointer.
96 if (Name == "exit") return (void*)(intptr_t)&jit_exit;
97 if (Name == "atexit") return (void*)(intptr_t)&jit_atexit;
98
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 const char *NameStr = Name.c_str();
100 // If this is an asm specifier, skip the sentinal.
101 if (NameStr[0] == 1) ++NameStr;
102
103 // If it's an external function, look it up in the process image...
104 void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr);
105 if (Ptr) return Ptr;
106
107 // If it wasn't found and if it starts with an underscore ('_') character, and
108 // has an asm specifier, try again without the underscore.
109 if (Name[0] == 1 && NameStr[0] == '_') {
110 Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr+1);
111 if (Ptr) return Ptr;
112 }
Chris Lattner5c507602007-10-22 02:50:12 +0000113
Chris Lattner5370e622007-11-27 20:41:32 +0000114 // darwin/ppc adds $LDBLStub suffixes to various symbols like printf. These
115 // are references to hidden visibility symbols that dlsym cannot resolve. If
116 // we have one of these, strip off $LDBLStub and try again.
117#if defined(__APPLE__) && defined(__ppc__)
118 if (Name.size() > 9 && Name[Name.size()-9] == '$' &&
Chris Lattnerbe0616f2007-11-27 20:45:25 +0000119 memcmp(&Name[Name.size()-8], "LDBLStub", 8) == 0) {
120 // First try turning $LDBLStub into $LDBL128. If that fails, strip it off.
121 // This mirrors logic in libSystemStubs.a.
122 std::string Prefix = std::string(Name.begin(), Name.end()-9);
123 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128"))
124 return Ptr;
Chris Lattner97449e92007-11-28 18:30:18 +0000125 if (void *Ptr = getPointerToNamedFunction(Prefix))
126 return Ptr;
Chris Lattnerbe0616f2007-11-27 20:45:25 +0000127 }
Chris Lattner5370e622007-11-27 20:41:32 +0000128#endif
129
Chris Lattner5c507602007-10-22 02:50:12 +0000130 /// If a LazyFunctionCreator is installed, use it to get/create the function.
131 if (LazyFunctionCreator)
132 if (void *RP = LazyFunctionCreator(Name))
133 return RP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134
135 cerr << "ERROR: Program used external function '" << Name
136 << "' which could not be resolved!\n";
137 abort();
138 return 0;
139}