Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 1 | //===- Win32/Program.cpp - Win32 Program Implementation ------- -*- C++ -*-===// |
Reid Spencer | 52a7efa | 2004-08-29 19:20:41 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 5 | // This file was developed by Jeff Cohen and is distributed under the |
Reid Spencer | 52a7efa | 2004-08-29 19:20:41 +0000 | [diff] [blame] | 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file provides the Win32 specific implementation of the Program class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 14 | #include "Win32.h" |
Reid Spencer | 32f5553 | 2006-06-07 23:18:34 +0000 | [diff] [blame] | 15 | #include <cstdio> |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 16 | #include <malloc.h> |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 17 | #include <io.h> |
Reid Spencer | 32f5553 | 2006-06-07 23:18:34 +0000 | [diff] [blame] | 18 | #include <fcntl.h> |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 19 | |
Reid Spencer | 52a7efa | 2004-08-29 19:20:41 +0000 | [diff] [blame] | 20 | //===----------------------------------------------------------------------===// |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 21 | //=== WARNING: Implementation here must contain only Win32 specific code |
| 22 | //=== and must not be UNIX code |
Reid Spencer | 52a7efa | 2004-08-29 19:20:41 +0000 | [diff] [blame] | 23 | //===----------------------------------------------------------------------===// |
| 24 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 25 | namespace llvm { |
| 26 | using namespace sys; |
| 27 | |
| 28 | // This function just uses the PATH environment variable to find the program. |
| 29 | Path |
| 30 | Program::FindProgramByName(const std::string& progName) { |
| 31 | |
| 32 | // Check some degenerate cases |
| 33 | if (progName.length() == 0) // no program |
| 34 | return Path(); |
| 35 | Path temp; |
Jeff Cohen | edb9d6b | 2005-07-08 02:48:42 +0000 | [diff] [blame] | 36 | if (!temp.set(progName)) // invalid name |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 37 | return Path(); |
Jeff Cohen | edb9d6b | 2005-07-08 02:48:42 +0000 | [diff] [blame] | 38 | if (temp.canExecute()) // already executable as is |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 39 | return temp; |
| 40 | |
| 41 | // At this point, the file name is valid and its not executable. |
| 42 | // Let Windows search for it. |
| 43 | char buffer[MAX_PATH]; |
| 44 | char *dummy = NULL; |
| 45 | DWORD len = SearchPath(NULL, progName.c_str(), ".exe", MAX_PATH, |
| 46 | buffer, &dummy); |
| 47 | |
| 48 | // See if it wasn't found. |
| 49 | if (len == 0) |
| 50 | return Path(); |
| 51 | |
| 52 | // See if we got the entire path. |
| 53 | if (len < MAX_PATH) |
| 54 | return Path(buffer); |
| 55 | |
| 56 | // Buffer was too small; grow and retry. |
| 57 | while (true) { |
| 58 | char *b = reinterpret_cast<char *>(_alloca(len+1)); |
| 59 | DWORD len2 = SearchPath(NULL, progName.c_str(), ".exe", len+1, b, &dummy); |
| 60 | |
| 61 | // It is unlikely the search failed, but it's always possible some file |
| 62 | // was added or removed since the last search, so be paranoid... |
| 63 | if (len2 == 0) |
| 64 | return Path(); |
| 65 | else if (len2 <= len) |
| 66 | return Path(b); |
| 67 | |
| 68 | len = len2; |
| 69 | } |
| 70 | } |
| 71 | |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 72 | static HANDLE RedirectIO(const Path *path, int fd, std::string* ErrMsg) { |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 73 | HANDLE h; |
| 74 | if (path == 0) { |
| 75 | DuplicateHandle(GetCurrentProcess(), (HANDLE)_get_osfhandle(fd), |
| 76 | GetCurrentProcess(), &h, |
| 77 | 0, TRUE, DUPLICATE_SAME_ACCESS); |
| 78 | return h; |
| 79 | } |
| 80 | |
| 81 | const char *fname = path->toString().c_str(); |
| 82 | if (*fname == 0) |
| 83 | fname = "NUL"; |
| 84 | |
| 85 | SECURITY_ATTRIBUTES sa; |
| 86 | sa.nLength = sizeof(sa); |
| 87 | sa.lpSecurityDescriptor = 0; |
| 88 | sa.bInheritHandle = TRUE; |
| 89 | |
| 90 | h = CreateFile(fname, fd ? GENERIC_WRITE : GENERIC_READ, FILE_SHARE_READ, |
Jeff Cohen | 45a1b26 | 2005-02-20 02:48:51 +0000 | [diff] [blame] | 91 | &sa, fd == 0 ? OPEN_EXISTING : CREATE_ALWAYS, |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 92 | FILE_ATTRIBUTE_NORMAL, NULL); |
| 93 | if (h == INVALID_HANDLE_VALUE) { |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 94 | MakeErrMsg(ErrMsg, std::string(fname) + ": Can't open file for " + |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 95 | (fd ? "input: " : "output: ")); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 96 | return h; |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 97 | } |
| 98 | return h; |
| 99 | } |
| 100 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 101 | int |
| 102 | Program::ExecuteAndWait(const Path& path, |
Jeff Cohen | a1b3d3d | 2004-12-20 03:24:56 +0000 | [diff] [blame] | 103 | const char** args, |
| 104 | const char** envp, |
| 105 | const Path** redirects, |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 106 | unsigned secondsToWait, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame^] | 107 | unsigned memoryLimit, |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 108 | std::string* ErrMsg) { |
| 109 | if (!path.canExecute()) { |
| 110 | if (ErrMsg) |
| 111 | *ErrMsg = "program not executable"; |
| 112 | return -1; |
| 113 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 114 | |
| 115 | // Windows wants a command line, not an array of args, to pass to the new |
| 116 | // process. We have to concatenate them all, while quoting the args that |
| 117 | // have embedded spaces. |
| 118 | |
| 119 | // First, determine the length of the command line. |
Jeff Cohen | e5f7e65 | 2005-02-16 04:43:45 +0000 | [diff] [blame] | 120 | unsigned len = 0; |
Jeff Cohen | a1b3d3d | 2004-12-20 03:24:56 +0000 | [diff] [blame] | 121 | for (unsigned i = 0; args[i]; i++) { |
| 122 | len += strlen(args[i]) + 1; |
| 123 | if (strchr(args[i], ' ')) |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 124 | len += 2; |
| 125 | } |
| 126 | |
| 127 | // Now build the command line. |
| 128 | char *command = reinterpret_cast<char *>(_alloca(len)); |
| 129 | char *p = command; |
| 130 | |
Jeff Cohen | a1b3d3d | 2004-12-20 03:24:56 +0000 | [diff] [blame] | 131 | for (unsigned i = 0; args[i]; i++) { |
| 132 | const char *arg = args[i]; |
Jeff Cohen | 01c5513 | 2005-04-11 03:44:22 +0000 | [diff] [blame] | 133 | size_t len = strlen(arg); |
Jeff Cohen | e5f7e65 | 2005-02-16 04:43:45 +0000 | [diff] [blame] | 134 | bool needsQuoting = strchr(arg, ' ') != 0; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 135 | if (needsQuoting) |
| 136 | *p++ = '"'; |
Jeff Cohen | a1b3d3d | 2004-12-20 03:24:56 +0000 | [diff] [blame] | 137 | memcpy(p, arg, len); |
| 138 | p += len; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 139 | if (needsQuoting) |
| 140 | *p++ = '"'; |
| 141 | *p++ = ' '; |
| 142 | } |
| 143 | |
| 144 | *p = 0; |
| 145 | |
| 146 | // Create a child process. |
| 147 | STARTUPINFO si; |
| 148 | memset(&si, 0, sizeof(si)); |
| 149 | si.cb = sizeof(si); |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 150 | si.hStdInput = INVALID_HANDLE_VALUE; |
| 151 | si.hStdOutput = INVALID_HANDLE_VALUE; |
| 152 | si.hStdError = INVALID_HANDLE_VALUE; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 153 | |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 154 | if (redirects) { |
| 155 | si.dwFlags = STARTF_USESTDHANDLES; |
| 156 | |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 157 | si.hStdInput = RedirectIO(redirects[0], 0, ErrMsg); |
| 158 | if (si.hStdInput == INVALID_HANDLE_VALUE) { |
| 159 | MakeErrMsg(ErrMsg, "can't redirect stdin"); |
| 160 | return -1; |
| 161 | } |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 162 | si.hStdOutput = RedirectIO(redirects[1], 1, ErrMsg); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 163 | if (si.hStdOutput == INVALID_HANDLE_VALUE) { |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 164 | CloseHandle(si.hStdInput); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 165 | MakeErrMsg(ErrMsg, "can't redirect stdout"); |
| 166 | return -1; |
| 167 | } |
| 168 | if (redirects[1] && redirects[2] && *(redirects[1]) != *(redirects[2])) { |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 169 | si.hStdError = RedirectIO(redirects[2], 2, ErrMsg); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 170 | if (si.hStdError == INVALID_HANDLE_VALUE) { |
| 171 | CloseHandle(si.hStdInput); |
| 172 | CloseHandle(si.hStdOutput); |
| 173 | MakeErrMsg(ErrMsg, "can't redirect stderr"); |
| 174 | return -1; |
| 175 | } |
| 176 | } else { |
| 177 | DuplicateHandle(GetCurrentProcess(), si.hStdOutput, |
| 178 | GetCurrentProcess(), &si.hStdError, |
| 179 | 0, TRUE, DUPLICATE_SAME_ACCESS); |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 180 | } |
| 181 | } |
Jeff Cohen | a1b3d3d | 2004-12-20 03:24:56 +0000 | [diff] [blame] | 182 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 183 | PROCESS_INFORMATION pi; |
| 184 | memset(&pi, 0, sizeof(pi)); |
| 185 | |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 186 | fflush(stdout); |
| 187 | fflush(stderr); |
| 188 | BOOL rc = CreateProcess(path.c_str(), command, NULL, NULL, FALSE, 0, |
| 189 | envp, NULL, &si, &pi); |
| 190 | DWORD err = GetLastError(); |
| 191 | |
| 192 | // Regardless of whether the process got created or not, we are done with |
| 193 | // the handles we created for it to inherit. |
| 194 | CloseHandle(si.hStdInput); |
| 195 | CloseHandle(si.hStdOutput); |
| 196 | CloseHandle(si.hStdError); |
| 197 | |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 198 | // Now return an error if the process didn't get created. |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 199 | if (!rc) |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 200 | { |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 201 | SetLastError(err); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 202 | MakeErrMsg(ErrMsg, std::string("Couldn't execute program '") + |
Reid Spencer | 707a27c | 2004-12-11 17:37:01 +0000 | [diff] [blame] | 203 | path.toString() + "'"); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 204 | return -1; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | // Wait for it to terminate. |
Jeff Cohen | a1b3d3d | 2004-12-20 03:24:56 +0000 | [diff] [blame] | 208 | DWORD millisecondsToWait = INFINITE; |
| 209 | if (secondsToWait > 0) |
| 210 | millisecondsToWait = secondsToWait * 1000; |
| 211 | |
| 212 | if (WaitForSingleObject(pi.hProcess, millisecondsToWait) == WAIT_TIMEOUT) { |
| 213 | if (!TerminateProcess(pi.hProcess, 1)) { |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 214 | MakeErrMsg(ErrMsg, std::string("Failed to terminate timed-out program '") |
| 215 | + path.toString() + "'"); |
| 216 | return -1; |
Jeff Cohen | a1b3d3d | 2004-12-20 03:24:56 +0000 | [diff] [blame] | 217 | } |
| 218 | WaitForSingleObject(pi.hProcess, INFINITE); |
| 219 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 220 | |
| 221 | // Get its exit status. |
| 222 | DWORD status; |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 223 | rc = GetExitCodeProcess(pi.hProcess, &status); |
| 224 | err = GetLastError(); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 225 | |
| 226 | // Done with the handles; go close them. |
| 227 | CloseHandle(pi.hProcess); |
| 228 | CloseHandle(pi.hThread); |
| 229 | |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 230 | if (!rc) { |
| 231 | SetLastError(err); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 232 | MakeErrMsg(ErrMsg, std::string("Failed getting status for program '") + |
Reid Spencer | 707a27c | 2004-12-11 17:37:01 +0000 | [diff] [blame] | 233 | path.toString() + "'"); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 234 | return -1; |
Jeff Cohen | 875d08e | 2005-02-20 02:43:04 +0000 | [diff] [blame] | 235 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 236 | |
| 237 | return status; |
| 238 | } |
| 239 | |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 240 | bool Program::ChangeStdinToBinary(){ |
Reid Spencer | 32f5553 | 2006-06-07 23:18:34 +0000 | [diff] [blame] | 241 | int result = _setmode( _fileno(stdin), _O_BINARY ); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 242 | return result == -1; |
Reid Spencer | 32f5553 | 2006-06-07 23:18:34 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 245 | bool Program::ChangeStdoutToBinary(){ |
Reid Spencer | 32f5553 | 2006-06-07 23:18:34 +0000 | [diff] [blame] | 246 | int result = _setmode( _fileno(stdout), _O_BINARY ); |
Reid Spencer | 4ce5dc6 | 2006-08-21 06:02:44 +0000 | [diff] [blame] | 247 | return result == -1; |
Reid Spencer | 32f5553 | 2006-06-07 23:18:34 +0000 | [diff] [blame] | 248 | } |
| 249 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 250 | } |