blob: 8ed9447159655e45ebb774956bef22a87f6e2558 [file] [log] [blame]
Chris Lattner6701a862003-05-14 13:26:47 +00001//===-- Intercept.cpp - System function interception routines -------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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"
Brian Gaeke322cdb22003-10-10 17:02:42 +000019#include "Support/DynamicLinker.h"
Chris Lattner1b722162003-05-14 13:27:36 +000020#include <iostream>
Brian Gaeke00f0a292004-03-09 05:22:10 +000021#include <sys/stat.h>
Chris Lattnerc19aade2003-12-08 08:06:28 +000022using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000023
Brian Gaeke70975ee2003-09-05 18:42:01 +000024// AtExitHandlers - List of functions to call when the program exits,
25// registered with the atexit() library function.
26static std::vector<void (*)()> AtExitHandlers;
Chris Lattner22080f92003-05-14 13:53:40 +000027
Brian Gaeke70975ee2003-09-05 18:42:01 +000028/// runAtExitHandlers - Run any functions registered by the program's
29/// calls to atexit(3), which we intercept and store in
30/// AtExitHandlers.
31///
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000032static void runAtExitHandlers() {
Brian Gaeke70975ee2003-09-05 18:42:01 +000033 while (!AtExitHandlers.empty()) {
34 void (*Fn)() = AtExitHandlers.back();
35 AtExitHandlers.pop_back();
Chris Lattner22080f92003-05-14 13:53:40 +000036 Fn();
37 }
38}
39
Chris Lattner6701a862003-05-14 13:26:47 +000040//===----------------------------------------------------------------------===//
Brian Gaeke70975ee2003-09-05 18:42:01 +000041// Function stubs that are invoked instead of certain library calls
Chris Lattner6701a862003-05-14 13:26:47 +000042//===----------------------------------------------------------------------===//
43
Brian Gaeke00f0a292004-03-09 05:22:10 +000044// Force the following functions to be linked in to anything that uses the
45// JIT. This is a hack designed to work around the all-too-clever Glibc
46// strategy of making these functions work differently when inlined vs. when
47// not inlined, and hiding their real definitions in a separate archive file
48// that the dynamic linker can't see. For more info, search for
49// 'libc_nonshared.a' on Google, or read http://llvm.cs.uiuc.edu/PR274.
Brian Gaeked0f3c5e2004-03-10 17:38:28 +000050#if defined(__linux__)
Brian Gaeke00f0a292004-03-09 05:22:10 +000051void *FunctionPointers[] = {
52 (void *) stat,
Brian Gaeke00f0a292004-03-09 05:22:10 +000053 (void *) fstat,
Brian Gaeke00f0a292004-03-09 05:22:10 +000054 (void *) lstat,
Brian Gaeked0f3c5e2004-03-10 17:38:28 +000055 (void *) stat64,
56 (void *) fstat64,
Brian Gaeke00f0a292004-03-09 05:22:10 +000057 (void *) lstat64,
58 (void *) atexit,
59 (void *) mknod
60};
Brian Gaeked0f3c5e2004-03-10 17:38:28 +000061#endif // __linux__
Brian Gaeke00f0a292004-03-09 05:22:10 +000062
Chris Lattnerabf1cd32004-06-01 21:49:00 +000063// __mainFunc - If the program does not have a linked in __main function, allow
64// it to run, but print a warning.
65static void __mainFunc() {
66 fprintf(stderr, "WARNING: Program called __main but was not linked to "
67 "libcrtend.a.\nThis probably won't hurt anything unless the "
68 "program is written in C++.\n");
69}
Chris Lattner6701a862003-05-14 13:26:47 +000070
Brian Gaeke70975ee2003-09-05 18:42:01 +000071// jit_exit - Used to intercept the "exit" library call.
Chris Lattner6701a862003-05-14 13:26:47 +000072static void jit_exit(int Status) {
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000073 runAtExitHandlers(); // Run atexit handlers...
Chris Lattner22080f92003-05-14 13:53:40 +000074 exit(Status);
Chris Lattner6701a862003-05-14 13:26:47 +000075}
76
Brian Gaeke70975ee2003-09-05 18:42:01 +000077// jit_atexit - Used to intercept the "atexit" library call.
Chris Lattner6701a862003-05-14 13:26:47 +000078static int jit_atexit(void (*Fn)(void)) {
Brian Gaeke70975ee2003-09-05 18:42:01 +000079 AtExitHandlers.push_back(Fn); // Take note of atexit handler...
Chris Lattner22080f92003-05-14 13:53:40 +000080 return 0; // Always successful
Chris Lattner6701a862003-05-14 13:26:47 +000081}
82
83//===----------------------------------------------------------------------===//
84//
85/// getPointerToNamedFunction - This method returns the address of the specified
Brian Gaeke322cdb22003-10-10 17:02:42 +000086/// function by using the dynamic loader interface. As such it is only useful
87/// for resolving library symbols, not code generated symbols.
Chris Lattner6701a862003-05-14 13:26:47 +000088///
Chris Lattner4d326fa2003-12-20 01:46:27 +000089void *JIT::getPointerToNamedFunction(const std::string &Name) {
Chris Lattner6701a862003-05-14 13:26:47 +000090 // Check to see if this is one of the functions we want to intercept...
Chris Lattner1b722162003-05-14 13:27:36 +000091 if (Name == "exit") return (void*)&jit_exit;
Chris Lattner22080f92003-05-14 13:53:40 +000092 if (Name == "atexit") return (void*)&jit_atexit;
Chris Lattner6701a862003-05-14 13:26:47 +000093
Chris Lattnerabf1cd32004-06-01 21:49:00 +000094 // If the program does not have a linked in __main function, allow it to run,
95 // but print a warning.
96 if (Name == "__main") return (void*)&__mainFunc;
97
Chris Lattner6701a862003-05-14 13:26:47 +000098 // If it's an external function, look it up in the process image...
Brian Gaeke322cdb22003-10-10 17:02:42 +000099 void *Ptr = GetAddressOfSymbol(Name);
Chris Lattnerabf1cd32004-06-01 21:49:00 +0000100 if (Ptr) return Ptr;
101
102 std::cerr << "ERROR: Program used external function '" << Name
103 << "' which could not be resolved!\n";
104 abort();
105 return 0;
Chris Lattner6701a862003-05-14 13:26:47 +0000106}