2003-08-11 22:29:36 +00:00
|
|
|
//===-- 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"
|
2003-08-15 23:31:16 +00:00
|
|
|
#include "Config/unistd.h"
|
2004-01-10 19:12:09 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
2003-08-15 23:31:16 +00:00
|
|
|
#include <fcntl.h>
|
2003-08-11 22:29:36 +00:00
|
|
|
#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";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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" */
|
2003-08-15 23:31:16 +00:00
|
|
|
size_t headerSize = strlen(llvmHeader);
|
|
|
|
char header[headerSize];
|
2003-09-29 22:37:00 +00:00
|
|
|
char* realFilename = 0;
|
|
|
|
/*
|
|
|
|
* 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] != '/')
|
|
|
|
realFilename = FindExecutable(filename);
|
|
|
|
else
|
|
|
|
realFilename = (char*) filename;
|
|
|
|
if (!realFilename) {
|
|
|
|
fprintf(stderr, "Cannot find path to `%s', exiting.\n", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
2003-08-15 23:31:16 +00:00
|
|
|
errno = 0;
|
2003-09-29 22:37:00 +00:00
|
|
|
int file = open(realFilename, O_RDONLY);
|
2003-08-11 22:29:36 +00:00
|
|
|
/* Check validity of `file' */
|
2003-08-15 23:31:16 +00:00
|
|
|
if (errno) return EIO;
|
2003-08-11 22:29:36 +00:00
|
|
|
/* Read the header from the file */
|
2003-08-15 23:31:16 +00:00
|
|
|
ssize_t bytesRead = read(file, header, headerSize);
|
|
|
|
close(file);
|
2003-09-27 22:26:37 +00:00
|
|
|
if (bytesRead != (ssize_t)headerSize) return EIO;
|
2003-08-15 23:31:16 +00:00
|
|
|
if (!memcmp(llvmHeader, header, headerSize)) {
|
2003-08-11 22:29:36 +00:00
|
|
|
/*
|
|
|
|
* 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 *LLIpath = FindExecutable("lli");
|
|
|
|
if (!LLIpath) {
|
|
|
|
fprintf(stderr, "Cannot find path to `lli', exiting.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
LLIargs[0] = LLIpath;
|
2003-09-29 22:37:00 +00:00
|
|
|
LLIargs[1] = realFilename;
|
2003-08-15 23:31:16 +00:00
|
|
|
for (idx = 1; idx != argvSize; ++idx)
|
2003-08-11 22:29:36 +00:00
|
|
|
LLIargs[idx+1] = argv[idx];
|
|
|
|
LLIargs[argvSize + 1] = '\0';
|
|
|
|
return executeProgram(LLIpath, LLIargs, envp);
|
|
|
|
}
|
2003-08-15 23:31:16 +00:00
|
|
|
return executeProgram(filename, argv, envp);
|
2003-08-11 22:29:36 +00:00
|
|
|
}
|