blob: 35192ce7be2b91d6a063eec24081407dbe8f7d8a [file] [log] [blame]
Reid Spencer52a7efa2004-08-29 19:20:41 +00001//===- llvm/System/Unix/Program.cpp -----------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Unix specific portion of the Program class.
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15//=== WARNING: Implementation here must contain only generic UNIX code that
16//=== is guaranteed to work on *all* UNIX variants.
17//===----------------------------------------------------------------------===//
18
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include <llvm/Config/config.h>
Reid Spencer52a7efa2004-08-29 19:20:41 +000020#include "Unix.h"
21#include <sys/stat.h>
22#include <fcntl.h>
Reid Spencer52a7efa2004-08-29 19:20:41 +000023#ifdef HAVE_SYS_WAIT_H
24#include <sys/wait.h>
25#endif
26
Reid Spencerc0854bf2004-08-29 20:10:07 +000027extern char** environ;
28
Reid Spencer52a7efa2004-08-29 19:20:41 +000029namespace llvm {
30using namespace sys;
31
32// This function just uses the PATH environment variable to find the program.
Reid Spencer25659432004-09-13 21:48:44 +000033Path
Reid Spencer52a7efa2004-08-29 19:20:41 +000034Program::FindProgramByName(const std::string& progName) {
35
36 // Check some degenerate cases
37 if (progName.length() == 0) // no program
Reid Spencer25659432004-09-13 21:48:44 +000038 return Path();
39 Path temp;
Reid Spencer07adb282004-11-05 22:15:36 +000040 if (!temp.setFile(progName)) // invalid name
Reid Spencer25659432004-09-13 21:48:44 +000041 return Path();
Reid Spencer52a7efa2004-08-29 19:20:41 +000042 if (temp.executable()) // already executable as is
43 return temp;
44
45 // At this point, the file name is valid and its not executable
46
47 // Get the path. If its empty, we can't do anything to find it.
48 const char *PathStr = getenv("PATH");
49 if (PathStr == 0)
Reid Spencer25659432004-09-13 21:48:44 +000050 return Path();
Reid Spencer52a7efa2004-08-29 19:20:41 +000051
52 // Now we have a colon separated list of directories to search; try them.
53 unsigned PathLen = strlen(PathStr);
54 while (PathLen) {
55 // Find the first colon...
56 const char *Colon = std::find(PathStr, PathStr+PathLen, ':');
57
58 // Check to see if this first directory contains the executable...
Reid Spencer25659432004-09-13 21:48:44 +000059 Path FilePath;
Reid Spencer07adb282004-11-05 22:15:36 +000060 if (FilePath.setDirectory(std::string(PathStr,Colon))) {
61 FilePath.appendFile(progName);
Reid Spencer52a7efa2004-08-29 19:20:41 +000062 if (FilePath.executable())
63 return FilePath; // Found the executable!
64 }
65
66 // Nope it wasn't in this directory, check the next path in the list!
67 PathLen -= Colon-PathStr;
68 PathStr = Colon;
69
70 // Advance past duplicate colons
71 while (*PathStr == ':') {
72 PathStr++;
73 PathLen--;
74 }
75 }
Reid Spencer25659432004-09-13 21:48:44 +000076 return Path();
Reid Spencer52a7efa2004-08-29 19:20:41 +000077}
78
79//
80int
Reid Spencer25659432004-09-13 21:48:44 +000081Program::ExecuteAndWait(const Path& path,
Reid Spencere2e24112004-12-14 04:18:51 +000082 const std::vector<std::string>& args,
83 const char ** envp ) {
Reid Spencer25659432004-09-13 21:48:44 +000084 if (!path.executable())
Reid Spencer1fce0912004-12-11 00:14:15 +000085 throw path.toString() + " is not executable";
Reid Spencer52a7efa2004-08-29 19:20:41 +000086
87#ifdef HAVE_SYS_WAIT_H
88 // Create local versions of the parameters that can be passed into execve()
89 // without creating const problems.
90 const char* argv[ args.size() + 2 ];
91 unsigned index = 0;
Reid Spencer25659432004-09-13 21:48:44 +000092 std::string progname(path.getLast());
Reid Spencer52a7efa2004-08-29 19:20:41 +000093 argv[index++] = progname.c_str();
94 for (unsigned i = 0; i < args.size(); i++)
95 argv[index++] = args[i].c_str();
96 argv[index] = 0;
97
98 // Create a child process.
99 switch (fork()) {
100 // An error occured: Return to the caller.
101 case -1:
Reid Spencer1fce0912004-12-11 00:14:15 +0000102 ThrowErrno(std::string("Couldn't execute program '") + path.toString() +
103 "'");
Reid Spencer52a7efa2004-08-29 19:20:41 +0000104 break;
105
106 // Child process: Execute the program.
Reid Spencere2e24112004-12-14 04:18:51 +0000107 case 0: {
108 char** env = environ;
109 if (envp != 0)
110 env = (char**) envp;
111 execve (path.c_str(), (char** const)argv, env);
Reid Spencer52a7efa2004-08-29 19:20:41 +0000112 // If the execve() failed, we should exit and let the parent pick up
113 // our non-zero exit status.
114 exit (errno);
Reid Spencere2e24112004-12-14 04:18:51 +0000115 }
Reid Spencer52a7efa2004-08-29 19:20:41 +0000116
117 // Parent process: Break out of the switch to do our processing.
118 default:
119 break;
120 }
121
122 // Parent process: Wait for the child process to terminate.
123 int status;
124 if ((::wait (&status)) == -1)
Reid Spencer1fce0912004-12-11 00:14:15 +0000125 ThrowErrno(std::string("Failed waiting for program '") + path.toString()
126 + "'");
Reid Spencer52a7efa2004-08-29 19:20:41 +0000127
128 // If the program exited normally with a zero exit status, return success!
129 if (WIFEXITED (status))
130 return WEXITSTATUS(status);
131 else if (WIFSIGNALED(status))
Reid Spencer1fce0912004-12-11 00:14:15 +0000132 throw std::string("Program '") + path.toString() +
133 "' received terminating signal.";
Reid Spencer52a7efa2004-08-29 19:20:41 +0000134 else
135 return 0;
136
137#else
138 throw std::string("Program::ExecuteAndWait not implemented on this platform!\n");
139#endif
140
141}
142
143}
144// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab