blob: feb13c6ce1555db5b3a6b95b7c47856a14f66ec2 [file] [log] [blame]
Chris Lattner6701a862003-05-14 13:26:47 +00001//===-- Intercept.cpp - System function interception routines -------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner6701a862003-05-14 13:26:47 +00009//
10// If a function call occurs to an external function, the JIT is designed to use
Brian Gaeke322cdb22003-10-10 17:02:42 +000011// the dynamic loader interface to find a function to call. This is useful for
Chris Lattner6701a862003-05-14 13:26:47 +000012// 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
Chris Lattner4d326fa2003-12-20 01:46:27 +000018#include "JIT.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000019#include "llvm/Support/ErrorHandling.h"
Dan Gohmanee335e32008-05-23 20:40:06 +000020#include "llvm/Support/Streams.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000021#include "llvm/System/DynamicLibrary.h"
Reid Spencer099557b2004-12-20 06:34:02 +000022#include "llvm/Config/config.h"
Chris Lattnerc19aade2003-12-08 08:06:28 +000023using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000024
Brian Gaeke70975ee2003-09-05 18:42:01 +000025// AtExitHandlers - List of functions to call when the program exits,
26// registered with the atexit() library function.
27static std::vector<void (*)()> AtExitHandlers;
Chris Lattner22080f92003-05-14 13:53:40 +000028
Brian Gaeke70975ee2003-09-05 18:42:01 +000029/// runAtExitHandlers - Run any functions registered by the program's
30/// calls to atexit(3), which we intercept and store in
31/// AtExitHandlers.
32///
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000033static void runAtExitHandlers() {
Brian Gaeke70975ee2003-09-05 18:42:01 +000034 while (!AtExitHandlers.empty()) {
35 void (*Fn)() = AtExitHandlers.back();
36 AtExitHandlers.pop_back();
Chris Lattner22080f92003-05-14 13:53:40 +000037 Fn();
38 }
39}
40
Chris Lattner6701a862003-05-14 13:26:47 +000041//===----------------------------------------------------------------------===//
Brian Gaeke70975ee2003-09-05 18:42:01 +000042// Function stubs that are invoked instead of certain library calls
Chris Lattner6701a862003-05-14 13:26:47 +000043//===----------------------------------------------------------------------===//
44
Brian Gaeke00f0a292004-03-09 05:22:10 +000045// Force the following functions to be linked in to anything that uses the
46// JIT. This is a hack designed to work around the all-too-clever Glibc
47// strategy of making these functions work differently when inlined vs. when
48// not inlined, and hiding their real definitions in a separate archive file
49// that the dynamic linker can't see. For more info, search for
Reid Spencer9dce2b32006-03-14 05:54:52 +000050// 'libc_nonshared.a' on Google, or read http://llvm.org/PR274.
Brian Gaeked0f3c5e2004-03-10 17:38:28 +000051#if defined(__linux__)
Reid Spencer099557b2004-12-20 06:34:02 +000052#if defined(HAVE_SYS_STAT_H)
Reid Spencer6b4bd6b2004-12-17 19:09:16 +000053#include <sys/stat.h>
Misha Brukmanf976c852005-04-21 22:55:34 +000054#endif
Torok Edwin1f044622009-05-23 16:23:59 +000055#include <fcntl.h>
Chris Lattnerc45f5c72008-01-03 22:15:32 +000056/* stat functions are redirecting to __xstat with a version number. On x86-64
57 * linking with libc_nonshared.a and -Wl,--export-dynamic doesn't make 'stat'
58 * available as an exported symbol, so we have to add it explicitly.
59 */
Chris Lattner76327d92008-01-03 07:10:51 +000060class StatSymbols {
Chris Lattnerc45f5c72008-01-03 22:15:32 +000061public:
62 StatSymbols() {
63 sys::DynamicLibrary::AddSymbol("stat", (void*)(intptr_t)stat);
64 sys::DynamicLibrary::AddSymbol("fstat", (void*)(intptr_t)fstat);
65 sys::DynamicLibrary::AddSymbol("lstat", (void*)(intptr_t)lstat);
66 sys::DynamicLibrary::AddSymbol("stat64", (void*)(intptr_t)stat64);
Torok Edwin1f044622009-05-23 16:23:59 +000067 sys::DynamicLibrary::AddSymbol("\x1stat64", (void*)(intptr_t)stat64);
68 sys::DynamicLibrary::AddSymbol("\x1open64", (void*)(intptr_t)open64);
69 sys::DynamicLibrary::AddSymbol("\x1lseek64", (void*)(intptr_t)lseek64);
Chris Lattnerc45f5c72008-01-03 22:15:32 +000070 sys::DynamicLibrary::AddSymbol("fstat64", (void*)(intptr_t)fstat64);
71 sys::DynamicLibrary::AddSymbol("lstat64", (void*)(intptr_t)lstat64);
72 sys::DynamicLibrary::AddSymbol("atexit", (void*)(intptr_t)atexit);
73 sys::DynamicLibrary::AddSymbol("mknod", (void*)(intptr_t)mknod);
74 }
Brian Gaeke00f0a292004-03-09 05:22:10 +000075};
Chris Lattner76327d92008-01-03 07:10:51 +000076static StatSymbols initStatSymbols;
Brian Gaeked0f3c5e2004-03-10 17:38:28 +000077#endif // __linux__
Brian Gaeke00f0a292004-03-09 05:22:10 +000078
Brian Gaeke70975ee2003-09-05 18:42:01 +000079// jit_exit - Used to intercept the "exit" library call.
Chris Lattner6701a862003-05-14 13:26:47 +000080static void jit_exit(int Status) {
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000081 runAtExitHandlers(); // Run atexit handlers...
Chris Lattner22080f92003-05-14 13:53:40 +000082 exit(Status);
Chris Lattner6701a862003-05-14 13:26:47 +000083}
84
Brian Gaeke70975ee2003-09-05 18:42:01 +000085// jit_atexit - Used to intercept the "atexit" library call.
Chris Lattner6701a862003-05-14 13:26:47 +000086static int jit_atexit(void (*Fn)(void)) {
Brian Gaeke70975ee2003-09-05 18:42:01 +000087 AtExitHandlers.push_back(Fn); // Take note of atexit handler...
Chris Lattner22080f92003-05-14 13:53:40 +000088 return 0; // Always successful
Chris Lattner6701a862003-05-14 13:26:47 +000089}
90
91//===----------------------------------------------------------------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +000092//
Chris Lattner6701a862003-05-14 13:26:47 +000093/// getPointerToNamedFunction - This method returns the address of the specified
Misha Brukmanf976c852005-04-21 22:55:34 +000094/// function by using the dynamic loader interface. As such it is only useful
Brian Gaeke322cdb22003-10-10 17:02:42 +000095/// for resolving library symbols, not code generated symbols.
Chris Lattner6701a862003-05-14 13:26:47 +000096///
Dan Gohman69f93782009-01-05 05:32:42 +000097void *JIT::getPointerToNamedFunction(const std::string &Name,
98 bool AbortOnFailure) {
Chris Lattnere846db62008-06-16 17:44:14 +000099 if (!isSymbolSearchingDisabled()) {
100 // Check to see if this is one of the functions we want to intercept. Note,
101 // we cast to intptr_t here to silence a -pedantic warning that complains
102 // about casting a function pointer to a normal pointer.
103 if (Name == "exit") return (void*)(intptr_t)&jit_exit;
104 if (Name == "atexit") return (void*)(intptr_t)&jit_atexit;
Chris Lattner6701a862003-05-14 13:26:47 +0000105
Chris Lattnere846db62008-06-16 17:44:14 +0000106 const char *NameStr = Name.c_str();
107 // If this is an asm specifier, skip the sentinal.
108 if (NameStr[0] == 1) ++NameStr;
109
110 // If it's an external function, look it up in the process image...
111 void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr);
Chris Lattner513748d2006-07-28 21:11:31 +0000112 if (Ptr) return Ptr;
Chris Lattnere846db62008-06-16 17:44:14 +0000113
114 // If it wasn't found and if it starts with an underscore ('_') character,
115 // and has an asm specifier, try again without the underscore.
116 if (Name[0] == 1 && NameStr[0] == '_') {
117 Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr+1);
118 if (Ptr) return Ptr;
119 }
120
121 // Darwin/PPC adds $LDBLStub suffixes to various symbols like printf. These
122 // are references to hidden visibility symbols that dlsym cannot resolve.
123 // If we have one of these, strip off $LDBLStub and try again.
Chris Lattner1c8f3742007-11-27 20:41:32 +0000124#if defined(__APPLE__) && defined(__ppc__)
Chris Lattnere846db62008-06-16 17:44:14 +0000125 if (Name.size() > 9 && Name[Name.size()-9] == '$' &&
126 memcmp(&Name[Name.size()-8], "LDBLStub", 8) == 0) {
127 // First try turning $LDBLStub into $LDBL128. If that fails, strip it off.
128 // This mirrors logic in libSystemStubs.a.
129 std::string Prefix = std::string(Name.begin(), Name.end()-9);
Evan Cheng59513682009-01-05 17:17:04 +0000130 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
Chris Lattnere846db62008-06-16 17:44:14 +0000131 return Ptr;
Evan Cheng59513682009-01-05 17:17:04 +0000132 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
Chris Lattnere846db62008-06-16 17:44:14 +0000133 return Ptr;
134 }
Chris Lattner1c8f3742007-11-27 20:41:32 +0000135#endif
Chris Lattnere846db62008-06-16 17:44:14 +0000136 }
Chris Lattner1c8f3742007-11-27 20:41:32 +0000137
Chris Lattnere846db62008-06-16 17:44:14 +0000138 /// If a LazyFunctionCreator is installed, use it to get/create the function.
Chris Lattnerd958a5a2007-10-22 02:50:12 +0000139 if (LazyFunctionCreator)
140 if (void *RP = LazyFunctionCreator(Name))
141 return RP;
Chris Lattnerabf1cd32004-06-01 21:49:00 +0000142
Dan Gohman69f93782009-01-05 05:32:42 +0000143 if (AbortOnFailure) {
Torok Edwin7d696d82009-07-11 13:10:19 +0000144 llvm_report_error("ERROR: Program used external function '"+Name+
145 "' which could not be resolved!");
Dan Gohman69f93782009-01-05 05:32:42 +0000146 }
Chris Lattnerabf1cd32004-06-01 21:49:00 +0000147 return 0;
Chris Lattner6701a862003-05-14 13:26:47 +0000148}