blob: 3719e0de35230ecf484669dfed9970d9eafdaa60 [file] [log] [blame]
Damien Martin-Guillerezf88f4d82015-09-25 13:56:55 +00001// Copyright 2014 The Bazel Authors. All rights reserved.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01002//
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
Googler11565c12015-07-23 12:03:53 +000018#include <sys/socket.h>
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010019#include <sys/statfs.h>
Dmitry Lomov78c0cc72015-08-11 16:44:21 +000020#include <sys/cygwin.h>
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010021#include <unistd.h>
22
Dmitry Lomov78c0cc72015-08-11 16:44:21 +000023#include <windows.h>
24
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010025#include <cstdlib>
26#include <cstdio>
27
Han-Wen Nienhuys36fbe632015-04-21 13:58:08 +000028#include "src/main/cpp/blaze_util.h"
Thiago Farina7f9357f2015-04-23 13:57:43 +000029#include "src/main/cpp/blaze_util_platform.h"
Han-Wen Nienhuys36fbe632015-04-21 13:58:08 +000030#include "src/main/cpp/util/errors.h"
Thiago Farina7f9357f2015-04-23 13:57:43 +000031#include "src/main/cpp/util/exit_code.h"
Han-Wen Nienhuys36fbe632015-04-21 13:58:08 +000032#include "src/main/cpp/util/file.h"
33#include "src/main/cpp/util/strings.h"
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010034
35namespace blaze {
36
Thiago Farina241f46c2015-04-13 14:33:30 +000037using blaze_util::die;
38using blaze_util::pdie;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010039using std::string;
Dmitry Lomovf7d3eb72015-08-13 20:45:09 +000040using std::vector;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010041
42void WarnFilesystemType(const string& output_base) {
43}
44
45string 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 Chodorow93963352015-03-20 19:11:19 +000060string GetOutputRoot() {
61 return "/var/tmp";
62}
63
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010064pid_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 Farina8a67da42015-05-05 18:04:50 +000074uint64_t MonotonicClock() {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010075 struct timespec ts = {};
76 clock_gettime(CLOCK_MONOTONIC, &ts);
77 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
78}
79
Thiago Farina8a67da42015-05-05 18:04:50 +000080uint64_t ProcessClock() {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010081 struct timespec ts = {};
82 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
83 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
84}
85
86void SetScheduling(bool batch_cpu_scheduling, int io_nice_level) {
87 // TODO(bazel-team): There should be a similar function on Windows.
88}
89
90string GetProcessCWD(int pid) {
91 char server_cwd[PATH_MAX] = {};
92 if (readlink(
Googler9588b812015-07-23 11:49:37 +000093 ("/proc/" + ToString(pid) + "/cwd").c_str(),
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010094 server_cwd, sizeof(server_cwd)) < 0) {
95 return "";
96 }
97
98 return string(server_cwd);
99}
100
Thiago Farina01f36002015-04-08 15:59:08 +0000101bool IsSharedLibrary(const string &filename) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100102 return blaze_util::ends_with(filename, ".dll");
103}
104
105string 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 Lomov78c0cc72015-08-11 16:44:21 +0000114// 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.
117void 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
195string ListSeparator() { return ";"; }
196
197string 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 Nienhuysd08b27f2015-02-25 16:45:20 +0100205} // namespace blaze