blob: f370e5bb0a83a84f3d0e4484c75cdb289007cae7 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000019#include "llvm/System/DynamicLibrary.h"
Reid Spencer099557b2004-12-20 06:34:02 +000020#include "llvm/Config/config.h"
Chris Lattnerc19aade2003-12-08 08:06:28 +000021using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000022
Brian Gaeke70975ee2003-09-05 18:42:01 +000023// AtExitHandlers - List of functions to call when the program exits,
24// registered with the atexit() library function.
25static std::vector<void (*)()> AtExitHandlers;
Chris Lattner22080f92003-05-14 13:53:40 +000026
Brian Gaeke70975ee2003-09-05 18:42:01 +000027/// runAtExitHandlers - Run any functions registered by the program's
28/// calls to atexit(3), which we intercept and store in
29/// AtExitHandlers.
30///
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000031static void runAtExitHandlers() {
Brian Gaeke70975ee2003-09-05 18:42:01 +000032 while (!AtExitHandlers.empty()) {
33 void (*Fn)() = AtExitHandlers.back();
34 AtExitHandlers.pop_back();
Chris Lattner22080f92003-05-14 13:53:40 +000035 Fn();
36 }
37}
38
Chris Lattner6701a862003-05-14 13:26:47 +000039//===----------------------------------------------------------------------===//
Brian Gaeke70975ee2003-09-05 18:42:01 +000040// Function stubs that are invoked instead of certain library calls
Chris Lattner6701a862003-05-14 13:26:47 +000041//===----------------------------------------------------------------------===//
42
Brian Gaeke00f0a292004-03-09 05:22:10 +000043// 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
Reid Spencer9dce2b32006-03-14 05:54:52 +000048// 'libc_nonshared.a' on Google, or read http://llvm.org/PR274.
Brian Gaeked0f3c5e2004-03-10 17:38:28 +000049#if defined(__linux__)
Reid Spencer099557b2004-12-20 06:34:02 +000050#if defined(HAVE_SYS_STAT_H)
Reid Spencer6b4bd6b2004-12-17 19:09:16 +000051#include <sys/stat.h>
Misha Brukmanf976c852005-04-21 22:55:34 +000052#endif
Brian Gaeke00f0a292004-03-09 05:22:10 +000053void *FunctionPointers[] = {
Chris Lattner35a14462006-07-27 00:04:14 +000054 (void *)(intptr_t) stat,
55 (void *)(intptr_t) fstat,
56 (void *)(intptr_t) lstat,
57 (void *)(intptr_t) stat64,
58 (void *)(intptr_t) fstat64,
59 (void *)(intptr_t) lstat64,
60 (void *)(intptr_t) atexit,
61 (void *)(intptr_t) mknod
Brian Gaeke00f0a292004-03-09 05:22:10 +000062};
Brian Gaeked0f3c5e2004-03-10 17:38:28 +000063#endif // __linux__
Brian Gaeke00f0a292004-03-09 05:22:10 +000064
Chris Lattnerabf1cd32004-06-01 21:49:00 +000065// __mainFunc - If the program does not have a linked in __main function, allow
66// it to run, but print a warning.
67static void __mainFunc() {
68 fprintf(stderr, "WARNING: Program called __main but was not linked to "
69 "libcrtend.a.\nThis probably won't hurt anything unless the "
70 "program is written in C++.\n");
71}
Chris Lattner6701a862003-05-14 13:26:47 +000072
Brian Gaeke70975ee2003-09-05 18:42:01 +000073// jit_exit - Used to intercept the "exit" library call.
Chris Lattner6701a862003-05-14 13:26:47 +000074static void jit_exit(int Status) {
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000075 runAtExitHandlers(); // Run atexit handlers...
Chris Lattner22080f92003-05-14 13:53:40 +000076 exit(Status);
Chris Lattner6701a862003-05-14 13:26:47 +000077}
78
Brian Gaeke70975ee2003-09-05 18:42:01 +000079// jit_atexit - Used to intercept the "atexit" library call.
Chris Lattner6701a862003-05-14 13:26:47 +000080static int jit_atexit(void (*Fn)(void)) {
Brian Gaeke70975ee2003-09-05 18:42:01 +000081 AtExitHandlers.push_back(Fn); // Take note of atexit handler...
Chris Lattner22080f92003-05-14 13:53:40 +000082 return 0; // Always successful
Chris Lattner6701a862003-05-14 13:26:47 +000083}
84
85//===----------------------------------------------------------------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +000086//
Chris Lattner6701a862003-05-14 13:26:47 +000087/// getPointerToNamedFunction - This method returns the address of the specified
Misha Brukmanf976c852005-04-21 22:55:34 +000088/// function by using the dynamic loader interface. As such it is only useful
Brian Gaeke322cdb22003-10-10 17:02:42 +000089/// for resolving library symbols, not code generated symbols.
Chris Lattner6701a862003-05-14 13:26:47 +000090///
Chris Lattner4d326fa2003-12-20 01:46:27 +000091void *JIT::getPointerToNamedFunction(const std::string &Name) {
Chris Lattnerfea34a12006-06-01 17:12:14 +000092 // Check to see if this is one of the functions we want to intercept. Note,
93 // we cast to intptr_t here to silence a -pedantic warning that complains
94 // about casting a function pointer to a normal pointer.
95 if (Name == "exit") return (void*)(intptr_t)&jit_exit;
96 if (Name == "atexit") return (void*)(intptr_t)&jit_atexit;
Chris Lattner6701a862003-05-14 13:26:47 +000097
Chris Lattnerabf1cd32004-06-01 21:49:00 +000098 // If the program does not have a linked in __main function, allow it to run,
99 // but print a warning.
Chris Lattnerfea34a12006-06-01 17:12:14 +0000100 if (Name == "__main") return (void*)(intptr_t)&__mainFunc;
Chris Lattnerabf1cd32004-06-01 21:49:00 +0000101
Chris Lattner513748d2006-07-28 21:11:31 +0000102 const char *NameStr = Name.c_str();
103 // If this is an asm specifier, skip the sentinal.
104 if (NameStr[0] == 1) ++NameStr;
105
Chris Lattner6701a862003-05-14 13:26:47 +0000106 // If it's an external function, look it up in the process image...
Chris Lattner513748d2006-07-28 21:11:31 +0000107 void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr);
Chris Lattnerabf1cd32004-06-01 21:49:00 +0000108 if (Ptr) return Ptr;
Chris Lattner513748d2006-07-28 21:11:31 +0000109
110 // If it wasn't found and if it starts with an underscore ('_') character, and
111 // has an asm specifier, try again without the underscore.
112 if (Name[0] == 1 && NameStr[0] == '_') {
113 Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr+1);
114 if (Ptr) return Ptr;
115 }
Chris Lattnerabf1cd32004-06-01 21:49:00 +0000116
Bill Wendling832171c2006-12-07 20:04:42 +0000117 cerr << "ERROR: Program used external function '" << Name
118 << "' which could not be resolved!\n";
Chris Lattnerabf1cd32004-06-01 21:49:00 +0000119 abort();
120 return 0;
Chris Lattner6701a862003-05-14 13:26:47 +0000121}