llvm-6502/tools/llee/ExecveHandler.c
Misha Brukman 593ece0050 A lot of changes were suggested by Chris.
ExecveHandler.c:
* Use "" instead of <> for LLVM include files
* Use raw I/O, we don't need buffering
* Set errno = 0 before using open()
* strlen() doesn't count NULL terminator in its size
* Use memcmp() instead of strcmp()
* Return result of the real execve(), not 0
* Search for path to bytecode file if not absolute/relative path

SysUtils.c:
* Convert all comments to C-style
* Stop using `bool', use `unsigned' instead

SysUtils.h:
* Stop using `bool', use `unsigned' instead
* Updated comment to FindExecutable()

README.txt:
* Describe the goal of LLEE and an application


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7911 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-15 23:31:16 +00:00

103 lines
3.2 KiB
C

//===-- ExecveHandler.c - Replaces execve() to run LLVM files -------------===//
//
// This file implements a replacement execve() to spawn off LLVM programs to run
// transparently, without needing to be (JIT-)compiled manually by the user.
//
//===----------------------------------------------------------------------===//
#include "SysUtils.h"
#include "Config/dlfcn.h"
#include "Config/errno.h"
#include "Config/stdlib.h"
#include "Config/unistd.h"
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
/*
* This is the expected header for all valid LLVM bytecode files.
* The first four characters must be exactly this.
*/
static const char llvmHeader[] = "llvm";
/*
* The type of the execve() function is long and boring, but required.
*/
typedef int(*execveTy)(const char*, char *const[], char *const[]);
/*
* This method finds the real `execve' call in the C library and executes the
* given program.
*/
int executeProgram(const char *filename, char *const argv[], char *const envp[])
{
/*
* Find a pointer to the *real* execve() function starting the search in the
* next library and forward, to avoid finding the one defined in this file.
*/
char *error;
execveTy execvePtr = (execveTy) dlsym(RTLD_NEXT, "execve");
if ((error = dlerror()) != NULL) {
fprintf(stderr, "%s\n", error);
return -1;
}
/* Really execute the program */
return execvePtr(filename, argv, envp);
}
/*
* This replacement execve() function first checks the file to be executed
* to see if it is a valid LLVM bytecode file, and then either invokes our
* execution environment or passes it on to the system execve() call.
*/
int execve(const char *filename, char *const argv[], char *const envp[])
{
/* Open the file, test to see if first four characters are "llvm" */
size_t headerSize = strlen(llvmHeader);
char header[headerSize];
errno = 0;
int file = open(filename, O_RDONLY);
/* Check validity of `file' */
if (errno) return EIO;
/* Read the header from the file */
ssize_t bytesRead = read(file, header, headerSize);
close(file);
if (bytesRead != headerSize) return EIO;
if (!memcmp(llvmHeader, header, headerSize)) {
/*
* This is a bytecode file, so execute the JIT with the program and
* parameters.
*/
unsigned argvSize, idx;
for (argvSize = 0, idx = 0; argv[idx] && argv[idx][0]; ++idx)
++argvSize;
char **LLIargs = (char**) malloc(sizeof(char*) * (argvSize+2));
char *BCpath;
/*
* If the program is specified with a relative or absolute path,
* then just use the path and filename as is, otherwise search for it.
*/
if (filename[0] != '.' && filename[0] != '/')
BCpath = FindExecutable(filename);
else
BCpath = (char*) filename;
if (!BCpath) {
fprintf(stderr, "Cannot find path to `%s', exiting.\n", filename);
return -1;
}
char *LLIpath = FindExecutable("lli");
if (!LLIpath) {
fprintf(stderr, "Cannot find path to `lli', exiting.\n");
return -1;
}
LLIargs[0] = LLIpath;
LLIargs[1] = BCpath;
for (idx = 1; idx != argvSize; ++idx)
LLIargs[idx+1] = argv[idx];
LLIargs[argvSize + 1] = '\0';
return executeProgram(LLIpath, LLIargs, envp);
}
return executeProgram(filename, argv, envp);
}