1 //===- llvm/System/Unix/Program.cpp -----------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the Unix specific portion of the Program class.
12 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
15 //=== WARNING: Implementation here must contain only generic UNIX code that
16 //=== is guaranteed to work on *all* UNIX variants.
17 //===----------------------------------------------------------------------===//
19 #include <llvm/Config/config.h>
24 #if HAVE_SYS_RESOURCE_H
25 #include <sys/resource.h>
37 Program::Program() : Data_(0) {}
39 Program::~Program() {}
41 unsigned Program::GetPid() const {
42 uint64_t pid = reinterpret_cast<uint64_t>(Data_);
43 return static_cast<unsigned>(pid);
46 // This function just uses the PATH environment variable to find the program.
48 Program::FindProgramByName(const std::string& progName) {
50 // Check some degenerate cases
51 if (progName.length() == 0) // no program
54 if (!temp.set(progName)) // invalid name
56 // Use the given path verbatim if it contains any slashes; this matches
57 // the behavior of sh(1) and friends.
58 if (progName.find('/') != std::string::npos)
61 // At this point, the file name does not contain slashes. Search for it
62 // through the directories specified in the PATH environment variable.
64 // Get the path. If its empty, we can't do anything to find it.
65 const char *PathStr = getenv("PATH");
69 // Now we have a colon separated list of directories to search; try them.
70 size_t PathLen = strlen(PathStr);
72 // Find the first colon...
73 const char *Colon = std::find(PathStr, PathStr+PathLen, ':');
75 // Check to see if this first directory contains the executable...
77 if (FilePath.set(std::string(PathStr,Colon))) {
78 FilePath.appendComponent(progName);
79 if (FilePath.canExecute())
80 return FilePath; // Found the executable!
83 // Nope it wasn't in this directory, check the next path in the list!
84 PathLen -= Colon-PathStr;
87 // Advance past duplicate colons
88 while (*PathStr == ':') {
96 static bool RedirectIO(const Path *Path, int FD, std::string* ErrMsg) {
102 // Redirect empty paths to /dev/null
108 int InFD = open(File.c_str(), FD == 0 ? O_RDONLY : O_WRONLY|O_CREAT, 0666);
110 MakeErrMsg(ErrMsg, "Cannot open file '" + File + "' for "
111 + (FD == 0 ? "input" : "output"));
115 // Install it as the requested FD
116 if (-1 == dup2(InFD, FD)) {
117 MakeErrMsg(ErrMsg, "Cannot dup2");
120 close(InFD); // Close the original FD
124 static void SetMemoryLimits (unsigned size)
126 #if HAVE_SYS_RESOURCE_H
128 __typeof__ (r.rlim_cur) limit = (__typeof__ (r.rlim_cur)) (size) * 1048576;
131 getrlimit (RLIMIT_DATA, &r);
133 setrlimit (RLIMIT_DATA, &r);
135 // Resident set size.
136 getrlimit (RLIMIT_RSS, &r);
138 setrlimit (RLIMIT_RSS, &r);
140 #ifdef RLIMIT_AS // e.g. NetBSD doesn't have it.
142 getrlimit (RLIMIT_AS, &r);
144 setrlimit (RLIMIT_AS, &r);
150 Program::Execute(const Path& path,
153 const Path** redirects,
154 unsigned memoryLimit,
157 if (!path.canExecute()) {
159 *ErrMsg = path.str() + " is not executable";
163 // Create a child process.
166 // An error occured: Return to the caller.
168 MakeErrMsg(ErrMsg, "Couldn't fork");
171 // Child process: Execute the program.
173 // Redirect file descriptors...
176 if (RedirectIO(redirects[0], 0, ErrMsg)) { return false; }
178 if (RedirectIO(redirects[1], 1, ErrMsg)) { return false; }
179 if (redirects[1] && redirects[2] &&
180 *(redirects[1]) == *(redirects[2])) {
181 // If stdout and stderr should go to the same place, redirect stderr
182 // to the FD already open for stdout.
183 if (-1 == dup2(1,2)) {
184 MakeErrMsg(ErrMsg, "Can't redirect stderr to stdout");
188 // Just redirect stderr
189 if (RedirectIO(redirects[2], 2, ErrMsg)) { return false; }
194 if (memoryLimit!=0) {
195 SetMemoryLimits(memoryLimit);
200 execve(path.c_str(), (char**)args, (char**)envp);
202 execv(path.c_str(), (char**)args);
203 // If the execve() failed, we should exit. Follow Unix protocol and
204 // return 127 if the executable was not found, and 126 otherwise.
205 // Use _exit rather than exit so that atexit functions and static
206 // object destructors cloned from the parent process aren't
207 // redundantly run, and so that any data buffered in stdio buffers
208 // cloned from the parent aren't redundantly written out.
209 _exit(errno == ENOENT ? 127 : 126);
212 // Parent process: Break out of the switch to do our processing.
217 Data_ = reinterpret_cast<void*>(child);
223 Program::Wait(unsigned secondsToWait,
226 #ifdef HAVE_SYS_WAIT_H
227 struct sigaction Act, Old;
230 MakeErrMsg(ErrMsg, "Process not started!");
234 // Install a timeout handler.
236 memset(&Act, 0, sizeof(Act));
237 Act.sa_handler = SIG_IGN;
238 sigemptyset(&Act.sa_mask);
239 sigaction(SIGALRM, &Act, &Old);
240 alarm(secondsToWait);
243 // Parent process: Wait for the child process to terminate.
245 uint64_t pid = reinterpret_cast<uint64_t>(Data_);
246 pid_t child = static_cast<pid_t>(pid);
247 while (wait(&status) != child)
248 if (secondsToWait && errno == EINTR) {
250 kill(child, SIGKILL);
252 // Turn off the alarm and restore the signal handler
254 sigaction(SIGALRM, &Old, 0);
256 // Wait for child to die
257 if (wait(&status) != child)
258 MakeErrMsg(ErrMsg, "Child timed out but wouldn't die");
260 MakeErrMsg(ErrMsg, "Child timed out", 0);
262 return -1; // Timeout detected
263 } else if (errno != EINTR) {
264 MakeErrMsg(ErrMsg, "Error waiting for child process");
268 // We exited normally without timeout, so turn off the timer.
271 sigaction(SIGALRM, &Old, 0);
274 // Return the proper exit status. 0=success, >0 is programs' exit status,
275 // <0 means a signal was returned, -9999999 means the program dumped core.
277 if (WIFEXITED(status))
278 result = WEXITSTATUS(status);
279 else if (WIFSIGNALED(status))
280 result = 0 - WTERMSIG(status);
282 else if (WCOREDUMP(status))
283 result |= 0x01000000;
293 Program::Kill(std::string* ErrMsg) {
295 MakeErrMsg(ErrMsg, "Process not started!");
299 uint64_t pid64 = reinterpret_cast<uint64_t>(Data_);
300 pid_t pid = static_cast<pid_t>(pid64);
302 if (kill(pid, SIGKILL) != 0) {
303 MakeErrMsg(ErrMsg, "The process couldn't be killed!");
310 bool Program::ChangeStdinToBinary(){
311 // Do nothing, as Unix doesn't differentiate between text and binary.
315 bool Program::ChangeStdoutToBinary(){
316 // Do nothing, as Unix doesn't differentiate between text and binary.