blob: b5523aaf4387756359e6449919e4fc591665921f [file] [log] [blame]
Rafael Espindolaf1fc3822013-06-26 19:33:03 +00001//===- llvm/Support/Windows/Path.inc - Windows Path Impl --------*- C++ -*-===//
Michael J. Spencerebad2f92010-11-29 22:28:51 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Rafael Espindolaf1fc3822013-06-26 19:33:03 +000010// This file implements the Windows specific implementation of the Path API.
Michael J. Spencerebad2f92010-11-29 22:28:51 +000011//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15//=== WARNING: Implementation here must contain only generic Windows code that
16//=== is guaranteed to work on *all* Windows variants.
17//===----------------------------------------------------------------------===//
18
Craig Topperf18edae2013-07-15 07:15:05 +000019#include "llvm/ADT/STLExtras.h"
Rafael Espindola5c4f8292014-06-11 19:05:50 +000020#include "llvm/Support/WindowsError.h"
Michael J. Spencerc20a0322010-12-03 17:54:07 +000021#include <fcntl.h>
Michael J. Spencer45710402010-12-03 01:21:28 +000022#include <io.h>
Michael J. Spencerc20a0322010-12-03 17:54:07 +000023#include <sys/stat.h>
24#include <sys/types.h>
Michael J. Spencerebad2f92010-11-29 22:28:51 +000025
NAKAMURA Takumi04d39d72014-02-12 11:50:22 +000026// These two headers must be included last, and make sure shlobj is required
27// after Windows.h to make sure it picks up our definition of _WIN32_WINNT
Reid Klecknerd59e2fa2014-02-12 21:26:20 +000028#include "WindowsSupport.h"
NAKAMURA Takumi04d39d72014-02-12 11:50:22 +000029#include <shlobj.h>
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000030
Michael J. Spenceref2284f2012-08-15 19:05:47 +000031#undef max
32
Michael J. Spencer60252472010-12-03 18:03:28 +000033// MinGW doesn't define this.
Michael J. Spencer521c3212010-12-03 18:04:11 +000034#ifndef _ERRNO_T_DEFINED
35#define _ERRNO_T_DEFINED
36typedef int errno_t;
Michael J. Spencer60252472010-12-03 18:03:28 +000037#endif
38
Reid Kleckner11da0042013-08-07 20:19:31 +000039#ifdef _MSC_VER
40# pragma comment(lib, "advapi32.lib") // This provides CryptAcquireContextW.
41#endif
42
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000043using namespace llvm;
44
Rui Ueyama471d0c52013-09-10 19:45:51 +000045using llvm::sys::windows::UTF8ToUTF16;
46using llvm::sys::windows::UTF16ToUTF8;
Paul Robinsonc38deee2014-11-24 18:05:29 +000047using llvm::sys::path::widenPath;
Rui Ueyama471d0c52013-09-10 19:45:51 +000048
Rafael Espindolab4ad29b2014-06-13 02:36:09 +000049static std::error_code windows_error(DWORD E) {
Rafael Espindola5c4f8292014-06-11 19:05:50 +000050 return mapWindowsError(E);
Rafael Espindolaa813d602014-06-11 03:58:34 +000051}
52
Rafael Espindola37b012d2014-02-23 15:16:03 +000053static bool is_separator(const wchar_t value) {
54 switch (value) {
55 case L'\\':
56 case L'/':
57 return true;
58 default:
59 return false;
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +000060 }
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000061}
62
Paul Robinsonc38deee2014-11-24 18:05:29 +000063namespace llvm {
64namespace sys {
65namespace path {
66
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000067// Convert a UTF-8 path to UTF-16. Also, if the absolute equivalent of the
68// path is longer than CreateDirectory can tolerate, make it absolute and
69// prefixed by '\\?\'.
Paul Robinsonc38deee2014-11-24 18:05:29 +000070std::error_code widenPath(const Twine &Path8,
71 SmallVectorImpl<wchar_t> &Path16) {
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000072 const size_t MaxDirLen = MAX_PATH - 12; // Must leave room for 8.3 filename.
73
74 // Several operations would convert Path8 to SmallString; more efficient to
75 // do it once up front.
76 SmallString<128> Path8Str;
77 Path8.toVector(Path8Str);
78
79 // If we made this path absolute, how much longer would it get?
80 size_t CurPathLen;
81 if (llvm::sys::path::is_absolute(Twine(Path8Str)))
82 CurPathLen = 0; // No contribution from current_path needed.
83 else {
84 CurPathLen = ::GetCurrentDirectoryW(0, NULL);
85 if (CurPathLen == 0)
86 return windows_error(::GetLastError());
87 }
88
89 // Would the absolute path be longer than our limit?
90 if ((Path8Str.size() + CurPathLen) >= MaxDirLen &&
91 !Path8Str.startswith("\\\\?\\")) {
92 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
93 if (CurPathLen) {
94 SmallString<80> CurPath;
95 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
96 return EC;
97 FullPath.append(CurPath);
98 }
99 // Traverse the requested path, canonicalizing . and .. as we go (because
100 // the \\?\ prefix is documented to treat them as real components).
101 // The iterators don't report separators and append() always attaches
102 // preferred_separator so we don't need to call native() on the result.
103 for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(Path8Str),
104 E = llvm::sys::path::end(Path8Str);
105 I != E; ++I) {
106 if (I->size() == 1 && *I == ".")
107 continue;
108 if (I->size() == 2 && *I == "..")
109 llvm::sys::path::remove_filename(FullPath);
110 else
111 llvm::sys::path::append(FullPath, *I);
112 }
113 return UTF8ToUTF16(FullPath, Path16);
114 }
115
116 // Just use the caller's original path.
117 return UTF8ToUTF16(Path8Str, Path16);
118}
Paul Robinsonc38deee2014-11-24 18:05:29 +0000119} // end namespace path
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000120
Michael J. Spencer20daa282010-12-07 01:22:31 +0000121namespace fs {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000122
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000123std::string getMainExecutable(const char *argv0, void *MainExecAddr) {
David Majnemer17a44962013-10-07 09:52:36 +0000124 SmallVector<wchar_t, MAX_PATH> PathName;
125 DWORD Size = ::GetModuleFileNameW(NULL, PathName.data(), PathName.capacity());
126
127 // A zero return value indicates a failure other than insufficient space.
128 if (Size == 0)
129 return "";
130
131 // Insufficient space is determined by a return value equal to the size of
132 // the buffer passed in.
133 if (Size == PathName.capacity())
134 return "";
135
136 // On success, GetModuleFileNameW returns the number of characters written to
137 // the buffer not including the NULL terminator.
138 PathName.set_size(Size);
139
140 // Convert the result from UTF-16 to UTF-8.
141 SmallVector<char, MAX_PATH> PathNameUTF8;
142 if (UTF16ToUTF8(PathName.data(), PathName.size(), PathNameUTF8))
143 return "";
144
145 return std::string(PathNameUTF8.data());
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000146}
147
Rafael Espindolad1230992013-07-29 21:55:38 +0000148UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000149 // The file is uniquely identified by the volume serial number along
150 // with the 64-bit file identifier.
151 uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) |
152 static_cast<uint64_t>(FileIndexLow);
153
154 return UniqueID(VolumeSerialNumber, FileID);
155}
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000156
Rafael Espindolabe3ede72013-06-20 21:51:49 +0000157TimeValue file_status::getLastModificationTime() const {
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000158 ULARGE_INTEGER UI;
159 UI.LowPart = LastWriteTimeLow;
160 UI.HighPart = LastWriteTimeHigh;
161
162 TimeValue Ret;
163 Ret.fromWin32Time(UI.QuadPart);
164 return Ret;
165}
166
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000167std::error_code current_path(SmallVectorImpl<char> &result) {
David Majnemer61eae2e2013-10-07 01:00:07 +0000168 SmallVector<wchar_t, MAX_PATH> cur_path;
169 DWORD len = MAX_PATH;
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000170
David Majnemer61eae2e2013-10-07 01:00:07 +0000171 do {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000172 cur_path.reserve(len);
David Majnemer61eae2e2013-10-07 01:00:07 +0000173 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000174
David Majnemer61eae2e2013-10-07 01:00:07 +0000175 // A zero return value indicates a failure other than insufficient space.
176 if (len == 0)
177 return windows_error(::GetLastError());
178
179 // If there's insufficient space, the len returned is larger than the len
180 // given.
181 } while (len > cur_path.capacity());
182
183 // On success, GetCurrentDirectoryW returns the number of characters not
184 // including the null-terminator.
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000185 cur_path.set_size(len);
Aaron Ballmanb16cf532013-08-16 17:53:28 +0000186 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000187}
188
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000189std::error_code create_directory(const Twine &path, bool IgnoreExisting) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000190 SmallVector<wchar_t, 128> path_utf16;
191
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000192 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000193 return ec;
194
195 if (!::CreateDirectoryW(path_utf16.begin(), NULL)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000196 DWORD LastError = ::GetLastError();
197 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
198 return windows_error(LastError);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000199 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000200
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000201 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000202}
203
Rafael Espindola83f858e2014-03-11 18:40:24 +0000204// We can't use symbolic links for windows.
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000205std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000206 // Convert to utf-16.
207 SmallVector<wchar_t, 128> wide_from;
208 SmallVector<wchar_t, 128> wide_to;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000209 if (std::error_code ec = widenPath(from, wide_from))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000210 return ec;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000211 if (std::error_code ec = widenPath(to, wide_to))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000212 return ec;
Michael J. Spencere0c45602010-12-03 05:58:41 +0000213
214 if (!::CreateHardLinkW(wide_from.begin(), wide_to.begin(), NULL))
Michael J. Spencer66a1f862010-12-04 18:45:32 +0000215 return windows_error(::GetLastError());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000216
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000217 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000218}
219
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000220std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000221 SmallVector<wchar_t, 128> path_utf16;
222
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000223 file_status ST;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000224 if (std::error_code EC = status(path, ST)) {
Rafael Espindola2a826e42014-06-13 17:20:48 +0000225 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000226 return EC;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000227 return std::error_code();
Rafael Espindola107b74c2013-07-31 00:10:25 +0000228 }
Michael J. Spencer153749b2011-01-05 16:39:22 +0000229
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000230 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000231 return ec;
232
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000233 if (ST.type() == file_type::directory_file) {
Michael J. Spencer153749b2011-01-05 16:39:22 +0000234 if (!::RemoveDirectoryW(c_str(path_utf16))) {
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000235 std::error_code EC = windows_error(::GetLastError());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000236 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000237 return EC;
238 }
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000239 return std::error_code();
Michael J. Spencer153749b2011-01-05 16:39:22 +0000240 }
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000241 if (!::DeleteFileW(c_str(path_utf16))) {
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000242 std::error_code EC = windows_error(::GetLastError());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000243 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000244 return EC;
245 }
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000246 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000247}
248
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000249std::error_code rename(const Twine &from, const Twine &to) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000250 // Convert to utf-16.
251 SmallVector<wchar_t, 128> wide_from;
252 SmallVector<wchar_t, 128> wide_to;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000253 if (std::error_code ec = widenPath(from, wide_from))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000254 return ec;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000255 if (std::error_code ec = widenPath(to, wide_to))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000256 return ec;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000257
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000258 std::error_code ec = std::error_code();
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000259 for (int i = 0; i < 2000; i++) {
260 if (::MoveFileExW(wide_from.begin(), wide_to.begin(),
261 MOVEFILE_COPY_ALLOWED | MOVEFILE_REPLACE_EXISTING))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000262 return std::error_code();
Rafael Espindolaa813d602014-06-11 03:58:34 +0000263 DWORD LastError = ::GetLastError();
Reid Klecknerd03f9f42015-04-10 17:20:45 +0000264 ec = windows_error(LastError);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000265 if (LastError != ERROR_ACCESS_DENIED)
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000266 break;
267 // Retry MoveFile() at ACCESS_DENIED.
268 // System scanners (eg. indexer) might open the source file when
269 // It is written and closed.
270 ::Sleep(1);
271 }
Michael J. Spencer409f5562010-12-03 17:53:55 +0000272
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000273 return ec;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000274}
275
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000276std::error_code resize_file(int FD, uint64_t Size) {
Michael J. Spencerca242f22010-12-03 18:48:56 +0000277#ifdef HAVE__CHSIZE_S
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000278 errno_t error = ::_chsize_s(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000279#else
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000280 errno_t error = ::_chsize(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000281#endif
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000282 return std::error_code(error, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000283}
284
Rafael Espindola281f23a2014-09-11 20:30:02 +0000285std::error_code access(const Twine &Path, AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000286 SmallVector<wchar_t, 128> PathUtf16;
Michael J. Spencer45710402010-12-03 01:21:28 +0000287
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000288 if (std::error_code EC = widenPath(Path, PathUtf16))
Rafael Espindola281f23a2014-09-11 20:30:02 +0000289 return EC;
Michael J. Spencer45710402010-12-03 01:21:28 +0000290
Rafael Espindola281f23a2014-09-11 20:30:02 +0000291 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
Michael J. Spencer45710402010-12-03 01:21:28 +0000292
Rafael Espindola281f23a2014-09-11 20:30:02 +0000293 if (Attributes == INVALID_FILE_ATTRIBUTES) {
Michael J. Spencer45710402010-12-03 01:21:28 +0000294 // See if the file didn't actually exist.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000295 DWORD LastError = ::GetLastError();
296 if (LastError != ERROR_FILE_NOT_FOUND &&
297 LastError != ERROR_PATH_NOT_FOUND)
298 return windows_error(LastError);
Rafael Espindola281f23a2014-09-11 20:30:02 +0000299 return errc::no_such_file_or_directory;
300 }
301
302 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
303 return errc::permission_denied;
304
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000305 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000306}
307
Michael J. Spencer203d7802011-12-12 06:04:28 +0000308bool equivalent(file_status A, file_status B) {
309 assert(status_known(A) && status_known(B));
310 return A.FileIndexHigh == B.FileIndexHigh &&
311 A.FileIndexLow == B.FileIndexLow &&
312 A.FileSizeHigh == B.FileSizeHigh &&
313 A.FileSizeLow == B.FileSizeLow &&
314 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
315 A.LastWriteTimeLow == B.LastWriteTimeLow &&
316 A.VolumeSerialNumber == B.VolumeSerialNumber;
317}
318
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000319std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000320 file_status fsA, fsB;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000321 if (std::error_code ec = status(A, fsA))
322 return ec;
323 if (std::error_code ec = status(B, fsB))
324 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000325 result = equivalent(fsA, fsB);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000326 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000327}
328
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000329static bool isReservedName(StringRef path) {
330 // This list of reserved names comes from MSDN, at:
331 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
332 static const char *sReservedNames[] = { "nul", "con", "prn", "aux",
333 "com1", "com2", "com3", "com4", "com5", "com6",
334 "com7", "com8", "com9", "lpt1", "lpt2", "lpt3",
335 "lpt4", "lpt5", "lpt6", "lpt7", "lpt8", "lpt9" };
336
337 // First, check to see if this is a device namespace, which always
338 // starts with \\.\, since device namespaces are not legal file paths.
339 if (path.startswith("\\\\.\\"))
340 return true;
341
342 // Then compare against the list of ancient reserved names
Craig Topper58713212013-07-15 04:27:47 +0000343 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000344 if (path.equals_lower(sReservedNames[i]))
345 return true;
346 }
347
348 // The path isn't what we consider reserved.
349 return false;
350}
351
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000352static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000353 if (FileHandle == INVALID_HANDLE_VALUE)
354 goto handle_status_error;
355
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000356 switch (::GetFileType(FileHandle)) {
357 default:
Rafael Espindola81177c52013-07-18 18:42:52 +0000358 llvm_unreachable("Don't know anything about this file type");
359 case FILE_TYPE_UNKNOWN: {
360 DWORD Err = ::GetLastError();
361 if (Err != NO_ERROR)
362 return windows_error(Err);
363 Result = file_status(file_type::type_unknown);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000364 return std::error_code();
Rafael Espindola81177c52013-07-18 18:42:52 +0000365 }
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000366 case FILE_TYPE_DISK:
367 break;
368 case FILE_TYPE_CHAR:
369 Result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000370 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000371 case FILE_TYPE_PIPE:
372 Result = file_status(file_type::fifo_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000373 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000374 }
375
Rafael Espindola77021c92013-07-16 03:20:13 +0000376 BY_HANDLE_FILE_INFORMATION Info;
377 if (!::GetFileInformationByHandle(FileHandle, &Info))
378 goto handle_status_error;
379
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000380 {
381 file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
382 ? file_type::directory_file
383 : file_type::regular_file;
384 Result =
385 file_status(Type, Info.ftLastWriteTime.dwHighDateTime,
386 Info.ftLastWriteTime.dwLowDateTime,
387 Info.dwVolumeSerialNumber, Info.nFileSizeHigh,
388 Info.nFileSizeLow, Info.nFileIndexHigh, Info.nFileIndexLow);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000389 return std::error_code();
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000390 }
Rafael Espindola77021c92013-07-16 03:20:13 +0000391
392handle_status_error:
Rafael Espindolaa813d602014-06-11 03:58:34 +0000393 DWORD LastError = ::GetLastError();
394 if (LastError == ERROR_FILE_NOT_FOUND ||
395 LastError == ERROR_PATH_NOT_FOUND)
Rafael Espindola77021c92013-07-16 03:20:13 +0000396 Result = file_status(file_type::file_not_found);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000397 else if (LastError == ERROR_SHARING_VIOLATION)
Rafael Espindola77021c92013-07-16 03:20:13 +0000398 Result = file_status(file_type::type_unknown);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000399 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000400 Result = file_status(file_type::status_error);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000401 return windows_error(LastError);
Rafael Espindola77021c92013-07-16 03:20:13 +0000402}
403
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000404std::error_code status(const Twine &path, file_status &result) {
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000405 SmallString<128> path_storage;
406 SmallVector<wchar_t, 128> path_utf16;
407
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000408 StringRef path8 = path.toStringRef(path_storage);
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000409 if (isReservedName(path8)) {
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000410 result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000411 return std::error_code();
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000412 }
413
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000414 if (std::error_code ec = widenPath(path8, path_utf16))
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000415 return ec;
416
417 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
418 if (attr == INVALID_FILE_ATTRIBUTES)
Rafael Espindola77021c92013-07-16 03:20:13 +0000419 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000420
421 // Handle reparse points.
422 if (attr & FILE_ATTRIBUTE_REPARSE_POINT) {
Michael J. Spencer513f1b62011-12-12 06:03:33 +0000423 ScopedFileHandle h(
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000424 ::CreateFileW(path_utf16.begin(),
425 0, // Attributes only.
426 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
427 NULL,
428 OPEN_EXISTING,
429 FILE_FLAG_BACKUP_SEMANTICS,
430 0));
Michael J. Spencer513f1b62011-12-12 06:03:33 +0000431 if (!h)
Rafael Espindola77021c92013-07-16 03:20:13 +0000432 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000433 }
434
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000435 ScopedFileHandle h(
436 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
Michael J. Spencer203d7802011-12-12 06:04:28 +0000437 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000438 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0));
Michael J. Spencer203d7802011-12-12 06:04:28 +0000439 if (!h)
Rafael Espindola77021c92013-07-16 03:20:13 +0000440 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000441
Rafael Espindola77021c92013-07-16 03:20:13 +0000442 return getStatus(h, result);
Rafael Espindola77021c92013-07-16 03:20:13 +0000443}
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000444
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000445std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000446 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
447 return getStatus(FileHandle, Result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000448}
449
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000450std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time) {
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000451 ULARGE_INTEGER UI;
452 UI.QuadPart = Time.toWin32Time();
453 FILETIME FT;
454 FT.dwLowDateTime = UI.LowPart;
455 FT.dwHighDateTime = UI.HighPart;
456 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
457 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
458 return windows_error(::GetLastError());
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000459 return std::error_code();
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000460}
Nick Kledzik18497e92012-06-20 00:28:54 +0000461
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000462std::error_code mapped_file_region::init(int FD, uint64_t Offset,
463 mapmode Mode) {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000464 // Make sure that the requested size fits within SIZE_T.
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000465 if (Size > std::numeric_limits<SIZE_T>::max())
Rafael Espindola2a826e42014-06-13 17:20:48 +0000466 return make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000467
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000468 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
469 if (FileHandle == INVALID_HANDLE_VALUE)
470 return make_error_code(errc::bad_file_descriptor);
471
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000472 DWORD flprotect;
473 switch (Mode) {
474 case readonly: flprotect = PAGE_READONLY; break;
475 case readwrite: flprotect = PAGE_READWRITE; break;
476 case priv: flprotect = PAGE_WRITECOPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000477 }
478
Rafael Espindola369d5142014-12-16 02:53:35 +0000479 HANDLE FileMappingHandle =
David Majnemer17a44962013-10-07 09:52:36 +0000480 ::CreateFileMappingW(FileHandle, 0, flprotect,
481 (Offset + Size) >> 32,
482 (Offset + Size) & 0xffffffff,
483 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000484 if (FileMappingHandle == NULL) {
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000485 std::error_code ec = windows_error(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000486 return ec;
487 }
488
489 DWORD dwDesiredAccess;
490 switch (Mode) {
491 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
492 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
493 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000494 }
495 Mapping = ::MapViewOfFile(FileMappingHandle,
496 dwDesiredAccess,
497 Offset >> 32,
498 Offset & 0xffffffff,
499 Size);
500 if (Mapping == NULL) {
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000501 std::error_code ec = windows_error(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000502 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000503 return ec;
504 }
505
506 if (Size == 0) {
507 MEMORY_BASIC_INFORMATION mbi;
508 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
509 if (Result == 0) {
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000510 std::error_code ec = windows_error(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000511 ::UnmapViewOfFile(Mapping);
512 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000513 return ec;
514 }
515 Size = mbi.RegionSize;
516 }
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000517
518 // Close all the handles except for the view. It will keep the other handles
519 // alive.
520 ::CloseHandle(FileMappingHandle);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000521 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000522}
523
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000524mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
525 uint64_t offset, std::error_code &ec)
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000526 : Size(length), Mapping() {
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000527 ec = init(fd, offset, mode);
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000528 if (ec)
Rafael Espindola369d5142014-12-16 02:53:35 +0000529 Mapping = 0;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000530}
531
532mapped_file_region::~mapped_file_region() {
533 if (Mapping)
534 ::UnmapViewOfFile(Mapping);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000535}
536
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000537uint64_t mapped_file_region::size() const {
538 assert(Mapping && "Mapping failed but used anyway!");
539 return Size;
540}
541
542char *mapped_file_region::data() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000543 assert(Mapping && "Mapping failed but used anyway!");
544 return reinterpret_cast<char*>(Mapping);
545}
546
547const char *mapped_file_region::const_data() const {
548 assert(Mapping && "Mapping failed but used anyway!");
549 return reinterpret_cast<const char*>(Mapping);
550}
551
552int mapped_file_region::alignment() {
553 SYSTEM_INFO SysInfo;
554 ::GetSystemInfo(&SysInfo);
555 return SysInfo.dwAllocationGranularity;
556}
557
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000558std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000559 StringRef path){
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000560 SmallVector<wchar_t, 128> path_utf16;
561
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000562 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000563 return ec;
564
565 // Convert path to the format that Windows is happy with.
566 if (path_utf16.size() > 0 &&
567 !is_separator(path_utf16[path.size() - 1]) &&
568 path_utf16[path.size() - 1] != L':') {
569 path_utf16.push_back(L'\\');
570 path_utf16.push_back(L'*');
571 } else {
572 path_utf16.push_back(L'*');
573 }
574
575 // Get the first directory entry.
576 WIN32_FIND_DATAW FirstFind;
Michael J. Spencer751e9aa2010-12-09 17:37:18 +0000577 ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000578 if (!FindHandle)
579 return windows_error(::GetLastError());
580
Michael J. Spencer98879d72011-01-05 16:39:30 +0000581 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
582 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
583 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
584 FirstFind.cFileName[1] == L'.'))
585 if (!::FindNextFileW(FindHandle, &FirstFind)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000586 DWORD LastError = ::GetLastError();
Michael J. Spencer98879d72011-01-05 16:39:30 +0000587 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000588 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000589 return detail::directory_iterator_destruct(it);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000590 return windows_error(LastError);
Michael J. Spencer98879d72011-01-05 16:39:30 +0000591 } else
592 FilenameLen = ::wcslen(FirstFind.cFileName);
593
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000594 // Construct the current directory entry.
Michael J. Spencer98879d72011-01-05 16:39:30 +0000595 SmallString<128> directory_entry_name_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000596 if (std::error_code ec =
597 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
598 directory_entry_name_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000599 return ec;
600
601 it.IterationHandle = intptr_t(FindHandle.take());
Michael J. Spencer98879d72011-01-05 16:39:30 +0000602 SmallString<128> directory_entry_path(path);
Yaron Keren92e1b622015-03-18 10:17:07 +0000603 path::append(directory_entry_path, directory_entry_name_utf8);
604 it.CurrentEntry = directory_entry(directory_entry_path);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000605
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000606 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000607}
608
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000609std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000610 if (it.IterationHandle != 0)
611 // Closes the handle if it's valid.
612 ScopedFindHandle close(HANDLE(it.IterationHandle));
613 it.IterationHandle = 0;
614 it.CurrentEntry = directory_entry();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000615 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000616}
617
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000618std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000619 WIN32_FIND_DATAW FindData;
620 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000621 DWORD LastError = ::GetLastError();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000622 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000623 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000624 return detail::directory_iterator_destruct(it);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000625 return windows_error(LastError);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000626 }
627
Michael J. Spencer98879d72011-01-05 16:39:30 +0000628 size_t FilenameLen = ::wcslen(FindData.cFileName);
629 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
630 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
631 FindData.cFileName[1] == L'.'))
632 return directory_iterator_increment(it);
633
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000634 SmallString<128> directory_entry_path_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000635 if (std::error_code ec =
636 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
637 directory_entry_path_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000638 return ec;
639
640 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000641 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000642}
643
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000644std::error_code openFileForRead(const Twine &Name, int &ResultFD) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000645 SmallVector<wchar_t, 128> PathUTF16;
Nick Kledzik18497e92012-06-20 00:28:54 +0000646
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000647 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000648 return EC;
649
650 HANDLE H = ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
Rafael Espindola16431fe2013-07-17 19:44:07 +0000651 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000652 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
653 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000654 DWORD LastError = ::GetLastError();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000655 std::error_code EC = windows_error(LastError);
Rafael Espindola331aeba2013-07-17 19:58:28 +0000656 // Provide a better error message when trying to open directories.
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000657 // This only runs if we failed to open the file, so there is probably
658 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000659 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000660 return EC;
661 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000662 return make_error_code(errc::is_a_directory);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000663 return EC;
664 }
665
666 int FD = ::_open_osfhandle(intptr_t(H), 0);
667 if (FD == -1) {
668 ::CloseHandle(H);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000669 return windows_error(ERROR_INVALID_HANDLE);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000670 }
671
672 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000673 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000674}
Nick Kledzik18497e92012-06-20 00:28:54 +0000675
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000676std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000677 sys::fs::OpenFlags Flags, unsigned Mode) {
678 // Verify that we don't have both "append" and "excl".
679 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
680 "Cannot specify both 'excl' and 'append' file creation flags!");
681
Rafael Espindola67080ce2013-07-19 15:02:03 +0000682 SmallVector<wchar_t, 128> PathUTF16;
683
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000684 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindola67080ce2013-07-19 15:02:03 +0000685 return EC;
686
687 DWORD CreationDisposition;
688 if (Flags & F_Excl)
689 CreationDisposition = CREATE_NEW;
NAKAMURA Takumiedf76152013-08-22 15:14:45 +0000690 else if (Flags & F_Append)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000691 CreationDisposition = OPEN_ALWAYS;
692 else
693 CreationDisposition = CREATE_ALWAYS;
694
Rafael Espindola7a0b6402014-02-24 03:07:41 +0000695 DWORD Access = GENERIC_WRITE;
696 if (Flags & F_RW)
697 Access |= GENERIC_READ;
698
699 HANDLE H = ::CreateFileW(PathUTF16.begin(), Access,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000700 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
701 CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
702
703 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000704 DWORD LastError = ::GetLastError();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000705 std::error_code EC = windows_error(LastError);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000706 // Provide a better error message when trying to open directories.
707 // This only runs if we failed to open the file, so there is probably
708 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000709 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000710 return EC;
711 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000712 return make_error_code(errc::is_a_directory);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000713 return EC;
714 }
715
716 int OpenFlags = 0;
717 if (Flags & F_Append)
718 OpenFlags |= _O_APPEND;
719
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000720 if (Flags & F_Text)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000721 OpenFlags |= _O_TEXT;
722
723 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
724 if (FD == -1) {
725 ::CloseHandle(H);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000726 return windows_error(ERROR_INVALID_HANDLE);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000727 }
728
729 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000730 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +0000731}
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000732} // end namespace fs
Rui Ueyama471d0c52013-09-10 19:45:51 +0000733
Peter Collingbournef7d41012014-01-31 23:46:06 +0000734namespace path {
735
736bool home_directory(SmallVectorImpl<char> &result) {
737 wchar_t Path[MAX_PATH];
738 if (::SHGetFolderPathW(0, CSIDL_APPDATA | CSIDL_FLAG_CREATE, 0,
Peter Collingbournead141ab2014-02-01 02:42:20 +0000739 /*SHGFP_TYPE_CURRENT*/0, Path) != S_OK)
Peter Collingbournef7d41012014-01-31 23:46:06 +0000740 return false;
741
742 if (UTF16ToUTF8(Path, ::wcslen(Path), result))
743 return false;
744
745 return true;
746}
747
Rafael Espindola016a6d52014-08-26 14:47:52 +0000748static bool getTempDirEnvVar(const char *Var, SmallVectorImpl<char> &Res) {
749 SmallVector<wchar_t, 128> NameUTF16;
750 if (windows::UTF8ToUTF16(Var, NameUTF16))
751 return false;
752
753 SmallVector<wchar_t, 1024> Buf;
754 size_t Size = 1024;
755 do {
756 Buf.reserve(Size);
757 Size =
758 GetEnvironmentVariableW(NameUTF16.data(), Buf.data(), Buf.capacity());
759 if (Size == 0)
760 return false;
761
762 // Try again with larger buffer.
763 } while (Size > Buf.capacity());
764 Buf.set_size(Size);
765
766 if (windows::UTF16ToUTF8(Buf.data(), Size, Res))
767 return false;
768 return true;
769}
770
771static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
772 const char *EnvironmentVariables[] = {"TMP", "TEMP", "USERPROFILE"};
773 for (const char *Env : EnvironmentVariables) {
774 if (getTempDirEnvVar(Env, Res))
775 return true;
776 }
777 return false;
778}
779
780void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
781 (void)ErasedOnReboot;
782 Result.clear();
783
784 // Check whether the temporary directory is specified by an environment
785 // variable.
786 if (getTempDirEnvVar(Result))
787 return;
788
789 // Fall back to a system default.
790 const char *DefaultResult = "C:\\TEMP";
791 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
792}
Peter Collingbournef7d41012014-01-31 23:46:06 +0000793} // end namespace path
794
Rui Ueyama471d0c52013-09-10 19:45:51 +0000795namespace windows {
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +0000796std::error_code UTF8ToUTF16(llvm::StringRef utf8,
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000797 llvm::SmallVectorImpl<wchar_t> &utf16) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000798 if (!utf8.empty()) {
799 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
800 utf8.size(), utf16.begin(), 0);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000801
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000802 if (len == 0)
Rafael Espindolaa813d602014-06-11 03:58:34 +0000803 return windows_error(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +0000804
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000805 utf16.reserve(len + 1);
806 utf16.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000807
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000808 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
809 utf8.size(), utf16.begin(), utf16.size());
Rui Ueyama471d0c52013-09-10 19:45:51 +0000810
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000811 if (len == 0)
Rafael Espindolaa813d602014-06-11 03:58:34 +0000812 return windows_error(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000813 }
Rui Ueyama471d0c52013-09-10 19:45:51 +0000814
815 // Make utf16 null terminated.
816 utf16.push_back(0);
817 utf16.pop_back();
818
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +0000819 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +0000820}
821
Rafael Espindola9c359662014-09-03 20:02:00 +0000822static
823std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
824 size_t utf16_len,
825 llvm::SmallVectorImpl<char> &utf8) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000826 if (utf16_len) {
827 // Get length.
Rafael Espindola9c359662014-09-03 20:02:00 +0000828 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000829 0, NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000830
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000831 if (len == 0)
Rafael Espindolaa813d602014-06-11 03:58:34 +0000832 return windows_error(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +0000833
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000834 utf8.reserve(len);
835 utf8.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000836
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000837 // Now do the actual conversion.
Rafael Espindola9c359662014-09-03 20:02:00 +0000838 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000839 utf8.size(), NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000840
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000841 if (len == 0)
Rafael Espindolaa813d602014-06-11 03:58:34 +0000842 return windows_error(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000843 }
Rui Ueyama471d0c52013-09-10 19:45:51 +0000844
845 // Make utf8 null terminated.
846 utf8.push_back(0);
847 utf8.pop_back();
848
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +0000849 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +0000850}
Rafael Espindola9c359662014-09-03 20:02:00 +0000851
852std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
853 llvm::SmallVectorImpl<char> &utf8) {
854 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
855}
856
857std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
858 llvm::SmallVectorImpl<char> &utf8) {
859 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
860}
Rui Ueyama471d0c52013-09-10 19:45:51 +0000861} // end namespace windows
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000862} // end namespace sys
863} // end namespace llvm