Damien Martin-Guillerez | f88f4d8 | 2015-09-25 13:56:55 +0000 | [diff] [blame^] | 1 | // Copyright 2014 The Bazel Authors. All rights reserved. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | #include <errno.h> |
| 16 | #include <limits.h> |
| 17 | #include <string.h> // strerror |
Googler | 11565c1 | 2015-07-23 12:03:53 +0000 | [diff] [blame] | 18 | #include <sys/socket.h> |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 19 | #include <sys/statfs.h> |
Dmitry Lomov | 78c0cc7 | 2015-08-11 16:44:21 +0000 | [diff] [blame] | 20 | #include <sys/cygwin.h> |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 21 | #include <unistd.h> |
| 22 | |
Dmitry Lomov | 78c0cc7 | 2015-08-11 16:44:21 +0000 | [diff] [blame] | 23 | #include <windows.h> |
| 24 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 25 | #include <cstdlib> |
| 26 | #include <cstdio> |
| 27 | |
Han-Wen Nienhuys | 36fbe63 | 2015-04-21 13:58:08 +0000 | [diff] [blame] | 28 | #include "src/main/cpp/blaze_util.h" |
Thiago Farina | 7f9357f | 2015-04-23 13:57:43 +0000 | [diff] [blame] | 29 | #include "src/main/cpp/blaze_util_platform.h" |
Han-Wen Nienhuys | 36fbe63 | 2015-04-21 13:58:08 +0000 | [diff] [blame] | 30 | #include "src/main/cpp/util/errors.h" |
Thiago Farina | 7f9357f | 2015-04-23 13:57:43 +0000 | [diff] [blame] | 31 | #include "src/main/cpp/util/exit_code.h" |
Han-Wen Nienhuys | 36fbe63 | 2015-04-21 13:58:08 +0000 | [diff] [blame] | 32 | #include "src/main/cpp/util/file.h" |
| 33 | #include "src/main/cpp/util/strings.h" |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 34 | |
| 35 | namespace blaze { |
| 36 | |
Thiago Farina | 241f46c | 2015-04-13 14:33:30 +0000 | [diff] [blame] | 37 | using blaze_util::die; |
| 38 | using blaze_util::pdie; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 39 | using std::string; |
Dmitry Lomov | f7d3eb7 | 2015-08-13 20:45:09 +0000 | [diff] [blame] | 40 | using std::vector; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 41 | |
| 42 | void WarnFilesystemType(const string& output_base) { |
| 43 | } |
| 44 | |
| 45 | string GetSelfPath() { |
| 46 | char buffer[PATH_MAX] = {}; |
| 47 | ssize_t bytes = readlink("/proc/self/exe", buffer, sizeof(buffer)); |
| 48 | if (bytes == sizeof(buffer)) { |
| 49 | // symlink contents truncated |
| 50 | bytes = -1; |
| 51 | errno = ENAMETOOLONG; |
| 52 | } |
| 53 | if (bytes == -1) { |
| 54 | pdie(blaze_exit_code::INTERNAL_ERROR, "error reading /proc/self/exe"); |
| 55 | } |
| 56 | buffer[bytes] = '\0'; // readlink does not NUL-terminate |
| 57 | return string(buffer); |
| 58 | } |
| 59 | |
Kristina Chodorow | 9396335 | 2015-03-20 19:11:19 +0000 | [diff] [blame] | 60 | string GetOutputRoot() { |
| 61 | return "/var/tmp"; |
| 62 | } |
| 63 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 64 | pid_t GetPeerProcessId(int socket) { |
| 65 | struct ucred creds = {}; |
| 66 | socklen_t len = sizeof creds; |
| 67 | if (getsockopt(socket, SOL_SOCKET, SO_PEERCRED, &creds, &len) == -1) { |
| 68 | pdie(blaze_exit_code::LOCAL_ENVIRONMENTAL_ERROR, |
| 69 | "can't get server pid from connection"); |
| 70 | } |
| 71 | return creds.pid; |
| 72 | } |
| 73 | |
Thiago Farina | 8a67da4 | 2015-05-05 18:04:50 +0000 | [diff] [blame] | 74 | uint64_t MonotonicClock() { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 75 | struct timespec ts = {}; |
| 76 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 77 | return ts.tv_sec * 1000000000LL + ts.tv_nsec; |
| 78 | } |
| 79 | |
Thiago Farina | 8a67da4 | 2015-05-05 18:04:50 +0000 | [diff] [blame] | 80 | uint64_t ProcessClock() { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 81 | struct timespec ts = {}; |
| 82 | clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts); |
| 83 | return ts.tv_sec * 1000000000LL + ts.tv_nsec; |
| 84 | } |
| 85 | |
| 86 | void SetScheduling(bool batch_cpu_scheduling, int io_nice_level) { |
| 87 | // TODO(bazel-team): There should be a similar function on Windows. |
| 88 | } |
| 89 | |
| 90 | string GetProcessCWD(int pid) { |
| 91 | char server_cwd[PATH_MAX] = {}; |
| 92 | if (readlink( |
Googler | 9588b81 | 2015-07-23 11:49:37 +0000 | [diff] [blame] | 93 | ("/proc/" + ToString(pid) + "/cwd").c_str(), |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 94 | server_cwd, sizeof(server_cwd)) < 0) { |
| 95 | return ""; |
| 96 | } |
| 97 | |
| 98 | return string(server_cwd); |
| 99 | } |
| 100 | |
Thiago Farina | 01f3600 | 2015-04-08 15:59:08 +0000 | [diff] [blame] | 101 | bool IsSharedLibrary(const string &filename) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 102 | return blaze_util::ends_with(filename, ".dll"); |
| 103 | } |
| 104 | |
| 105 | string GetDefaultHostJavabase() { |
| 106 | const char *javahome = getenv("JAVA_HOME"); |
| 107 | if (javahome == NULL) { |
| 108 | die(blaze_exit_code::LOCAL_ENVIRONMENTAL_ERROR, |
| 109 | "Error: JAVA_HOME not set."); |
| 110 | } |
| 111 | return javahome; |
| 112 | } |
| 113 | |
Dmitry Lomov | 78c0cc7 | 2015-08-11 16:44:21 +0000 | [diff] [blame] | 114 | // Replace the current process with the given program in the given working |
| 115 | // directory, using the given argument vector. |
| 116 | // This function does not return on success. |
| 117 | void ExecuteProgram(const string& exe, const vector<string>& args_vector) { |
| 118 | if (VerboseLogging()) { |
| 119 | string dbg; |
| 120 | for (const auto& s : args_vector) { |
| 121 | dbg.append(s); |
| 122 | dbg.append(" "); |
| 123 | } |
| 124 | |
| 125 | char cwd[PATH_MAX] = {}; |
| 126 | if (getcwd(cwd, sizeof(cwd)) == NULL) { |
| 127 | pdie(blaze_exit_code::LOCAL_ENVIRONMENTAL_ERROR, "getcwd() failed"); |
| 128 | } |
| 129 | |
| 130 | fprintf(stderr, "Invoking binary %s in %s:\n %s\n", exe.c_str(), cwd, |
| 131 | dbg.c_str()); |
| 132 | } |
| 133 | |
| 134 | // Build full command line. |
| 135 | string cmdline; |
| 136 | bool first = true; |
| 137 | for (const auto& s : args_vector) { |
| 138 | if (first) { |
| 139 | first = false; |
| 140 | // Skip first argument, instead use quoted executable name with ".exe" |
| 141 | // suffix. |
| 142 | cmdline.append("\""); |
| 143 | cmdline.append(exe); |
| 144 | cmdline.append(".exe"); |
| 145 | cmdline.append("\""); |
| 146 | continue; |
| 147 | } else { |
| 148 | cmdline.append(" "); |
| 149 | } |
| 150 | cmdline.append(s); |
| 151 | } |
| 152 | |
| 153 | // Copy command line into a mutable buffer. |
| 154 | // CreateProcess is allowed to mutate its command line argument. |
| 155 | // Max command line length is per CreateProcess documentation |
| 156 | // (https://msdn.microsoft.com/en-us/library/ms682425(VS.85).aspx) |
| 157 | static const int kMaxCmdLineLength = 32768; |
| 158 | char actual_line[kMaxCmdLineLength]; |
| 159 | if (cmdline.length() >= kMaxCmdLineLength) { |
| 160 | pdie(255, "Command line too long: %s", cmdline.c_str()); |
| 161 | } |
| 162 | strncpy(actual_line, cmdline.c_str(), kMaxCmdLineLength); |
| 163 | // Add trailing '\0' to be sure. |
| 164 | actual_line[kMaxCmdLineLength - 1] = '\0'; |
| 165 | |
| 166 | // Execute program. |
| 167 | STARTUPINFO startupinfo = {0}; |
| 168 | PROCESS_INFORMATION pi = {0}; |
| 169 | |
| 170 | bool success = CreateProcess( |
| 171 | nullptr, // _In_opt_ LPCTSTR lpApplicationName, |
| 172 | actual_line, // _Inout_opt_ LPTSTR lpCommandLine, |
| 173 | nullptr, // _In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes, |
| 174 | nullptr, // _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, |
| 175 | true, // _In_ BOOL bInheritHandles, |
| 176 | 0, // _In_ DWORD dwCreationFlags, |
| 177 | nullptr, // _In_opt_ LPVOID lpEnvironment, |
| 178 | nullptr, // _In_opt_ LPCTSTR lpCurrentDirectory, |
| 179 | &startupinfo, // _In_ LPSTARTUPINFO lpStartupInfo, |
| 180 | &pi); // _Out_ LPPROCESS_INFORMATION lpProcessInformation |
| 181 | |
| 182 | if (!success) { |
| 183 | pdie(255, "Error %u executing: %s\n", GetLastError(), actual_line); |
| 184 | } |
| 185 | WaitForSingleObject(pi.hProcess, INFINITE); |
| 186 | DWORD exit_code; |
| 187 | GetExitCodeProcess(pi.hProcess, &exit_code); |
| 188 | CloseHandle(pi.hProcess); |
| 189 | CloseHandle(pi.hThread); |
| 190 | |
| 191 | // Emulate execv. |
| 192 | exit(exit_code); |
| 193 | } |
| 194 | |
| 195 | string ListSeparator() { return ";"; } |
| 196 | |
| 197 | string ConvertPath(const string& path) { |
| 198 | char* wpath = static_cast<char*>(cygwin_create_path( |
| 199 | CCP_POSIX_TO_WIN_A, static_cast<const void*>(path.c_str()))); |
| 200 | string result(wpath); |
| 201 | free(wpath); |
| 202 | return result; |
| 203 | } |
| 204 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 205 | } // namespace blaze |