blob: 839beebfcb6494c3dc3802f24d91a54c431df94f [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 Espindola37b012d2014-02-23 15:16:03 +000049static bool is_separator(const wchar_t value) {
50 switch (value) {
51 case L'\\':
52 case L'/':
53 return true;
54 default:
55 return false;
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +000056 }
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000057}
58
Paul Robinsonc38deee2014-11-24 18:05:29 +000059namespace llvm {
60namespace sys {
61namespace path {
62
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000063// Convert a UTF-8 path to UTF-16. Also, if the absolute equivalent of the
64// path is longer than CreateDirectory can tolerate, make it absolute and
65// prefixed by '\\?\'.
Paul Robinsonc38deee2014-11-24 18:05:29 +000066std::error_code widenPath(const Twine &Path8,
67 SmallVectorImpl<wchar_t> &Path16) {
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000068 const size_t MaxDirLen = MAX_PATH - 12; // Must leave room for 8.3 filename.
69
70 // Several operations would convert Path8 to SmallString; more efficient to
71 // do it once up front.
72 SmallString<128> Path8Str;
73 Path8.toVector(Path8Str);
74
75 // If we made this path absolute, how much longer would it get?
76 size_t CurPathLen;
77 if (llvm::sys::path::is_absolute(Twine(Path8Str)))
78 CurPathLen = 0; // No contribution from current_path needed.
79 else {
80 CurPathLen = ::GetCurrentDirectoryW(0, NULL);
81 if (CurPathLen == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +000082 return mapWindowsError(::GetLastError());
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000083 }
84
85 // Would the absolute path be longer than our limit?
86 if ((Path8Str.size() + CurPathLen) >= MaxDirLen &&
87 !Path8Str.startswith("\\\\?\\")) {
88 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
89 if (CurPathLen) {
90 SmallString<80> CurPath;
91 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
92 return EC;
93 FullPath.append(CurPath);
94 }
95 // Traverse the requested path, canonicalizing . and .. as we go (because
96 // the \\?\ prefix is documented to treat them as real components).
97 // The iterators don't report separators and append() always attaches
98 // preferred_separator so we don't need to call native() on the result.
99 for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(Path8Str),
100 E = llvm::sys::path::end(Path8Str);
101 I != E; ++I) {
102 if (I->size() == 1 && *I == ".")
103 continue;
104 if (I->size() == 2 && *I == "..")
105 llvm::sys::path::remove_filename(FullPath);
106 else
107 llvm::sys::path::append(FullPath, *I);
108 }
109 return UTF8ToUTF16(FullPath, Path16);
110 }
111
112 // Just use the caller's original path.
113 return UTF8ToUTF16(Path8Str, Path16);
114}
Paul Robinsonc38deee2014-11-24 18:05:29 +0000115} // end namespace path
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000116
Michael J. Spencer20daa282010-12-07 01:22:31 +0000117namespace fs {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000118
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000119std::string getMainExecutable(const char *argv0, void *MainExecAddr) {
David Majnemer17a44962013-10-07 09:52:36 +0000120 SmallVector<wchar_t, MAX_PATH> PathName;
121 DWORD Size = ::GetModuleFileNameW(NULL, PathName.data(), PathName.capacity());
122
123 // A zero return value indicates a failure other than insufficient space.
124 if (Size == 0)
125 return "";
126
127 // Insufficient space is determined by a return value equal to the size of
128 // the buffer passed in.
129 if (Size == PathName.capacity())
130 return "";
131
132 // On success, GetModuleFileNameW returns the number of characters written to
133 // the buffer not including the NULL terminator.
134 PathName.set_size(Size);
135
136 // Convert the result from UTF-16 to UTF-8.
137 SmallVector<char, MAX_PATH> PathNameUTF8;
138 if (UTF16ToUTF8(PathName.data(), PathName.size(), PathNameUTF8))
139 return "";
140
141 return std::string(PathNameUTF8.data());
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000142}
143
Rafael Espindolad1230992013-07-29 21:55:38 +0000144UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000145 // The file is uniquely identified by the volume serial number along
146 // with the 64-bit file identifier.
147 uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) |
148 static_cast<uint64_t>(FileIndexLow);
149
150 return UniqueID(VolumeSerialNumber, FileID);
151}
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000152
Rafael Espindolabe3ede72013-06-20 21:51:49 +0000153TimeValue file_status::getLastModificationTime() const {
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000154 ULARGE_INTEGER UI;
155 UI.LowPart = LastWriteTimeLow;
156 UI.HighPart = LastWriteTimeHigh;
157
158 TimeValue Ret;
159 Ret.fromWin32Time(UI.QuadPart);
160 return Ret;
161}
162
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000163std::error_code current_path(SmallVectorImpl<char> &result) {
David Majnemer61eae2e2013-10-07 01:00:07 +0000164 SmallVector<wchar_t, MAX_PATH> cur_path;
165 DWORD len = MAX_PATH;
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000166
David Majnemer61eae2e2013-10-07 01:00:07 +0000167 do {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000168 cur_path.reserve(len);
David Majnemer61eae2e2013-10-07 01:00:07 +0000169 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000170
David Majnemer61eae2e2013-10-07 01:00:07 +0000171 // A zero return value indicates a failure other than insufficient space.
172 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000173 return mapWindowsError(::GetLastError());
David Majnemer61eae2e2013-10-07 01:00:07 +0000174
175 // If there's insufficient space, the len returned is larger than the len
176 // given.
177 } while (len > cur_path.capacity());
178
179 // On success, GetCurrentDirectoryW returns the number of characters not
180 // including the null-terminator.
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000181 cur_path.set_size(len);
Aaron Ballmanb16cf532013-08-16 17:53:28 +0000182 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000183}
184
Frederic Riss6b9396c2015-08-06 21:04:55 +0000185std::error_code create_directory(const Twine &path, bool IgnoreExisting,
186 perms Perms) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000187 SmallVector<wchar_t, 128> path_utf16;
188
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000189 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000190 return ec;
191
192 if (!::CreateDirectoryW(path_utf16.begin(), NULL)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000193 DWORD LastError = ::GetLastError();
194 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000195 return mapWindowsError(LastError);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000196 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000197
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000198 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000199}
200
Rafael Espindola83f858e2014-03-11 18:40:24 +0000201// We can't use symbolic links for windows.
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000202std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000203 // Convert to utf-16.
204 SmallVector<wchar_t, 128> wide_from;
205 SmallVector<wchar_t, 128> wide_to;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000206 if (std::error_code ec = widenPath(from, wide_from))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000207 return ec;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000208 if (std::error_code ec = widenPath(to, wide_to))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000209 return ec;
Michael J. Spencere0c45602010-12-03 05:58:41 +0000210
211 if (!::CreateHardLinkW(wide_from.begin(), wide_to.begin(), NULL))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000212 return mapWindowsError(::GetLastError());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000213
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000214 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000215}
216
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000217std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000218 SmallVector<wchar_t, 128> path_utf16;
219
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000220 file_status ST;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000221 if (std::error_code EC = status(path, ST)) {
Rafael Espindola2a826e42014-06-13 17:20:48 +0000222 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000223 return EC;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000224 return std::error_code();
Rafael Espindola107b74c2013-07-31 00:10:25 +0000225 }
Michael J. Spencer153749b2011-01-05 16:39:22 +0000226
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000227 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000228 return ec;
229
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000230 if (ST.type() == file_type::directory_file) {
Michael J. Spencer153749b2011-01-05 16:39:22 +0000231 if (!::RemoveDirectoryW(c_str(path_utf16))) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000232 std::error_code EC = mapWindowsError(::GetLastError());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000233 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000234 return EC;
235 }
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000236 return std::error_code();
Michael J. Spencer153749b2011-01-05 16:39:22 +0000237 }
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000238 if (!::DeleteFileW(c_str(path_utf16))) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000239 std::error_code EC = mapWindowsError(::GetLastError());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000240 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000241 return EC;
242 }
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000243 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000244}
245
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000246std::error_code rename(const Twine &from, const Twine &to) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000247 // Convert to utf-16.
248 SmallVector<wchar_t, 128> wide_from;
249 SmallVector<wchar_t, 128> wide_to;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000250 if (std::error_code ec = widenPath(from, wide_from))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000251 return ec;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000252 if (std::error_code ec = widenPath(to, wide_to))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000253 return ec;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000254
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000255 std::error_code ec = std::error_code();
Greg Bedwell7f68a712015-10-12 15:11:47 +0000256
257 // Retry while we see ERROR_ACCESS_DENIED.
258 // System scanners (eg. indexer) might open the source file when it is written
259 // and closed.
260
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000261 for (int i = 0; i < 2000; i++) {
Greg Bedwell7f68a712015-10-12 15:11:47 +0000262 // Try ReplaceFile first, as it is able to associate a new data stream with
263 // the destination even if the destination file is currently open.
264 if (::ReplaceFileW(wide_to.begin(), wide_from.begin(), NULL, 0, NULL, NULL))
265 return std::error_code();
266
267 // We get ERROR_FILE_NOT_FOUND if the destination file is missing.
268 // MoveFileEx can handle this case.
269 DWORD ReplaceError = ::GetLastError();
270 ec = mapWindowsError(ReplaceError);
271 if (ReplaceError != ERROR_ACCESS_DENIED &&
272 ReplaceError != ERROR_FILE_NOT_FOUND &&
273 ReplaceError != ERROR_SHARING_VIOLATION)
274 break;
275
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000276 if (::MoveFileExW(wide_from.begin(), wide_to.begin(),
277 MOVEFILE_COPY_ALLOWED | MOVEFILE_REPLACE_EXISTING))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000278 return std::error_code();
Greg Bedwell7f68a712015-10-12 15:11:47 +0000279
280 DWORD MoveError = ::GetLastError();
281 ec = mapWindowsError(MoveError);
282 if (MoveError != ERROR_ACCESS_DENIED) break;
283
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000284 ::Sleep(1);
285 }
Michael J. Spencer409f5562010-12-03 17:53:55 +0000286
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000287 return ec;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000288}
289
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000290std::error_code resize_file(int FD, uint64_t Size) {
Michael J. Spencerca242f22010-12-03 18:48:56 +0000291#ifdef HAVE__CHSIZE_S
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000292 errno_t error = ::_chsize_s(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000293#else
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000294 errno_t error = ::_chsize(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000295#endif
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000296 return std::error_code(error, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000297}
298
Rafael Espindola281f23a2014-09-11 20:30:02 +0000299std::error_code access(const Twine &Path, AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000300 SmallVector<wchar_t, 128> PathUtf16;
Michael J. Spencer45710402010-12-03 01:21:28 +0000301
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000302 if (std::error_code EC = widenPath(Path, PathUtf16))
Rafael Espindola281f23a2014-09-11 20:30:02 +0000303 return EC;
Michael J. Spencer45710402010-12-03 01:21:28 +0000304
Rafael Espindola281f23a2014-09-11 20:30:02 +0000305 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
Michael J. Spencer45710402010-12-03 01:21:28 +0000306
Rafael Espindola281f23a2014-09-11 20:30:02 +0000307 if (Attributes == INVALID_FILE_ATTRIBUTES) {
Michael J. Spencer45710402010-12-03 01:21:28 +0000308 // See if the file didn't actually exist.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000309 DWORD LastError = ::GetLastError();
310 if (LastError != ERROR_FILE_NOT_FOUND &&
311 LastError != ERROR_PATH_NOT_FOUND)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000312 return mapWindowsError(LastError);
Rafael Espindola281f23a2014-09-11 20:30:02 +0000313 return errc::no_such_file_or_directory;
314 }
315
316 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
317 return errc::permission_denied;
318
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000319 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000320}
321
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000322bool can_execute(const Twine &Path) {
323 return !access(Path, AccessMode::Execute) ||
324 !access(Path + ".exe", AccessMode::Execute);
325}
326
Michael J. Spencer203d7802011-12-12 06:04:28 +0000327bool equivalent(file_status A, file_status B) {
328 assert(status_known(A) && status_known(B));
329 return A.FileIndexHigh == B.FileIndexHigh &&
330 A.FileIndexLow == B.FileIndexLow &&
331 A.FileSizeHigh == B.FileSizeHigh &&
332 A.FileSizeLow == B.FileSizeLow &&
333 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
334 A.LastWriteTimeLow == B.LastWriteTimeLow &&
335 A.VolumeSerialNumber == B.VolumeSerialNumber;
336}
337
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000338std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000339 file_status fsA, fsB;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000340 if (std::error_code ec = status(A, fsA))
341 return ec;
342 if (std::error_code ec = status(B, fsB))
343 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000344 result = equivalent(fsA, fsB);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000345 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000346}
347
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000348static bool isReservedName(StringRef path) {
349 // This list of reserved names comes from MSDN, at:
350 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
351 static const char *sReservedNames[] = { "nul", "con", "prn", "aux",
352 "com1", "com2", "com3", "com4", "com5", "com6",
353 "com7", "com8", "com9", "lpt1", "lpt2", "lpt3",
354 "lpt4", "lpt5", "lpt6", "lpt7", "lpt8", "lpt9" };
355
356 // First, check to see if this is a device namespace, which always
357 // starts with \\.\, since device namespaces are not legal file paths.
358 if (path.startswith("\\\\.\\"))
359 return true;
360
361 // Then compare against the list of ancient reserved names
Craig Topper58713212013-07-15 04:27:47 +0000362 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000363 if (path.equals_lower(sReservedNames[i]))
364 return true;
365 }
366
367 // The path isn't what we consider reserved.
368 return false;
369}
370
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000371static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000372 if (FileHandle == INVALID_HANDLE_VALUE)
373 goto handle_status_error;
374
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000375 switch (::GetFileType(FileHandle)) {
376 default:
Rafael Espindola81177c52013-07-18 18:42:52 +0000377 llvm_unreachable("Don't know anything about this file type");
378 case FILE_TYPE_UNKNOWN: {
379 DWORD Err = ::GetLastError();
380 if (Err != NO_ERROR)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000381 return mapWindowsError(Err);
Rafael Espindola81177c52013-07-18 18:42:52 +0000382 Result = file_status(file_type::type_unknown);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000383 return std::error_code();
Rafael Espindola81177c52013-07-18 18:42:52 +0000384 }
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000385 case FILE_TYPE_DISK:
386 break;
387 case FILE_TYPE_CHAR:
388 Result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000389 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000390 case FILE_TYPE_PIPE:
391 Result = file_status(file_type::fifo_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000392 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000393 }
394
Rafael Espindola77021c92013-07-16 03:20:13 +0000395 BY_HANDLE_FILE_INFORMATION Info;
396 if (!::GetFileInformationByHandle(FileHandle, &Info))
397 goto handle_status_error;
398
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000399 {
400 file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
401 ? file_type::directory_file
402 : file_type::regular_file;
403 Result =
404 file_status(Type, Info.ftLastWriteTime.dwHighDateTime,
405 Info.ftLastWriteTime.dwLowDateTime,
406 Info.dwVolumeSerialNumber, Info.nFileSizeHigh,
407 Info.nFileSizeLow, Info.nFileIndexHigh, Info.nFileIndexLow);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000408 return std::error_code();
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000409 }
Rafael Espindola77021c92013-07-16 03:20:13 +0000410
411handle_status_error:
Rafael Espindolaa813d602014-06-11 03:58:34 +0000412 DWORD LastError = ::GetLastError();
413 if (LastError == ERROR_FILE_NOT_FOUND ||
414 LastError == ERROR_PATH_NOT_FOUND)
Rafael Espindola77021c92013-07-16 03:20:13 +0000415 Result = file_status(file_type::file_not_found);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000416 else if (LastError == ERROR_SHARING_VIOLATION)
Rafael Espindola77021c92013-07-16 03:20:13 +0000417 Result = file_status(file_type::type_unknown);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000418 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000419 Result = file_status(file_type::status_error);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000420 return mapWindowsError(LastError);
Rafael Espindola77021c92013-07-16 03:20:13 +0000421}
422
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000423std::error_code status(const Twine &path, file_status &result) {
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000424 SmallString<128> path_storage;
425 SmallVector<wchar_t, 128> path_utf16;
426
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000427 StringRef path8 = path.toStringRef(path_storage);
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000428 if (isReservedName(path8)) {
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000429 result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000430 return std::error_code();
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000431 }
432
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000433 if (std::error_code ec = widenPath(path8, path_utf16))
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000434 return ec;
435
436 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
437 if (attr == INVALID_FILE_ATTRIBUTES)
Rafael Espindola77021c92013-07-16 03:20:13 +0000438 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000439
440 // Handle reparse points.
441 if (attr & FILE_ATTRIBUTE_REPARSE_POINT) {
Michael J. Spencer513f1b62011-12-12 06:03:33 +0000442 ScopedFileHandle h(
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000443 ::CreateFileW(path_utf16.begin(),
444 0, // Attributes only.
445 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
446 NULL,
447 OPEN_EXISTING,
448 FILE_FLAG_BACKUP_SEMANTICS,
449 0));
Michael J. Spencer513f1b62011-12-12 06:03:33 +0000450 if (!h)
Rafael Espindola77021c92013-07-16 03:20:13 +0000451 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000452 }
453
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000454 ScopedFileHandle h(
455 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
Michael J. Spencer203d7802011-12-12 06:04:28 +0000456 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000457 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0));
Michael J. Spencer203d7802011-12-12 06:04:28 +0000458 if (!h)
Rafael Espindola77021c92013-07-16 03:20:13 +0000459 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000460
Rafael Espindola77021c92013-07-16 03:20:13 +0000461 return getStatus(h, result);
Rafael Espindola77021c92013-07-16 03:20:13 +0000462}
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000463
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000464std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000465 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
466 return getStatus(FileHandle, Result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000467}
468
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000469std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time) {
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000470 ULARGE_INTEGER UI;
471 UI.QuadPart = Time.toWin32Time();
472 FILETIME FT;
473 FT.dwLowDateTime = UI.LowPart;
474 FT.dwHighDateTime = UI.HighPart;
475 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
476 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000477 return mapWindowsError(::GetLastError());
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000478 return std::error_code();
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000479}
Nick Kledzik18497e92012-06-20 00:28:54 +0000480
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000481std::error_code mapped_file_region::init(int FD, uint64_t Offset,
482 mapmode Mode) {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000483 // Make sure that the requested size fits within SIZE_T.
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000484 if (Size > std::numeric_limits<SIZE_T>::max())
Rafael Espindola2a826e42014-06-13 17:20:48 +0000485 return make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000486
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000487 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
488 if (FileHandle == INVALID_HANDLE_VALUE)
489 return make_error_code(errc::bad_file_descriptor);
490
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000491 DWORD flprotect;
492 switch (Mode) {
493 case readonly: flprotect = PAGE_READONLY; break;
494 case readwrite: flprotect = PAGE_READWRITE; break;
495 case priv: flprotect = PAGE_WRITECOPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000496 }
497
Rafael Espindola369d5142014-12-16 02:53:35 +0000498 HANDLE FileMappingHandle =
David Majnemer17a44962013-10-07 09:52:36 +0000499 ::CreateFileMappingW(FileHandle, 0, flprotect,
500 (Offset + Size) >> 32,
501 (Offset + Size) & 0xffffffff,
502 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000503 if (FileMappingHandle == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000504 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000505 return ec;
506 }
507
508 DWORD dwDesiredAccess;
509 switch (Mode) {
510 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
511 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
512 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000513 }
514 Mapping = ::MapViewOfFile(FileMappingHandle,
515 dwDesiredAccess,
516 Offset >> 32,
517 Offset & 0xffffffff,
518 Size);
519 if (Mapping == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000520 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000521 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000522 return ec;
523 }
524
525 if (Size == 0) {
526 MEMORY_BASIC_INFORMATION mbi;
527 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
528 if (Result == 0) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000529 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000530 ::UnmapViewOfFile(Mapping);
531 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000532 return ec;
533 }
534 Size = mbi.RegionSize;
535 }
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000536
537 // Close all the handles except for the view. It will keep the other handles
538 // alive.
539 ::CloseHandle(FileMappingHandle);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000540 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000541}
542
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000543mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
544 uint64_t offset, std::error_code &ec)
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000545 : Size(length), Mapping() {
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000546 ec = init(fd, offset, mode);
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000547 if (ec)
Rafael Espindola369d5142014-12-16 02:53:35 +0000548 Mapping = 0;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000549}
550
551mapped_file_region::~mapped_file_region() {
552 if (Mapping)
553 ::UnmapViewOfFile(Mapping);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000554}
555
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000556uint64_t mapped_file_region::size() const {
557 assert(Mapping && "Mapping failed but used anyway!");
558 return Size;
559}
560
561char *mapped_file_region::data() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000562 assert(Mapping && "Mapping failed but used anyway!");
563 return reinterpret_cast<char*>(Mapping);
564}
565
566const char *mapped_file_region::const_data() const {
567 assert(Mapping && "Mapping failed but used anyway!");
568 return reinterpret_cast<const char*>(Mapping);
569}
570
571int mapped_file_region::alignment() {
572 SYSTEM_INFO SysInfo;
573 ::GetSystemInfo(&SysInfo);
574 return SysInfo.dwAllocationGranularity;
575}
576
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000577std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000578 StringRef path){
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000579 SmallVector<wchar_t, 128> path_utf16;
580
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000581 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000582 return ec;
583
584 // Convert path to the format that Windows is happy with.
585 if (path_utf16.size() > 0 &&
586 !is_separator(path_utf16[path.size() - 1]) &&
587 path_utf16[path.size() - 1] != L':') {
588 path_utf16.push_back(L'\\');
589 path_utf16.push_back(L'*');
590 } else {
591 path_utf16.push_back(L'*');
592 }
593
594 // Get the first directory entry.
595 WIN32_FIND_DATAW FirstFind;
Michael J. Spencer751e9aa2010-12-09 17:37:18 +0000596 ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000597 if (!FindHandle)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000598 return mapWindowsError(::GetLastError());
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000599
Michael J. Spencer98879d72011-01-05 16:39:30 +0000600 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
601 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
602 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
603 FirstFind.cFileName[1] == L'.'))
604 if (!::FindNextFileW(FindHandle, &FirstFind)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000605 DWORD LastError = ::GetLastError();
Michael J. Spencer98879d72011-01-05 16:39:30 +0000606 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000607 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000608 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000609 return mapWindowsError(LastError);
Michael J. Spencer98879d72011-01-05 16:39:30 +0000610 } else
611 FilenameLen = ::wcslen(FirstFind.cFileName);
612
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000613 // Construct the current directory entry.
Michael J. Spencer98879d72011-01-05 16:39:30 +0000614 SmallString<128> directory_entry_name_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000615 if (std::error_code ec =
616 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
617 directory_entry_name_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000618 return ec;
619
620 it.IterationHandle = intptr_t(FindHandle.take());
Michael J. Spencer98879d72011-01-05 16:39:30 +0000621 SmallString<128> directory_entry_path(path);
Yaron Keren92e1b622015-03-18 10:17:07 +0000622 path::append(directory_entry_path, directory_entry_name_utf8);
623 it.CurrentEntry = directory_entry(directory_entry_path);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000624
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000625 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000626}
627
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000628std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000629 if (it.IterationHandle != 0)
630 // Closes the handle if it's valid.
631 ScopedFindHandle close(HANDLE(it.IterationHandle));
632 it.IterationHandle = 0;
633 it.CurrentEntry = directory_entry();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000634 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000635}
636
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000637std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000638 WIN32_FIND_DATAW FindData;
639 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000640 DWORD LastError = ::GetLastError();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000641 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000642 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000643 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000644 return mapWindowsError(LastError);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000645 }
646
Michael J. Spencer98879d72011-01-05 16:39:30 +0000647 size_t FilenameLen = ::wcslen(FindData.cFileName);
648 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
649 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
650 FindData.cFileName[1] == L'.'))
651 return directory_iterator_increment(it);
652
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000653 SmallString<128> directory_entry_path_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000654 if (std::error_code ec =
655 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
656 directory_entry_path_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000657 return ec;
658
659 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000660 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000661}
662
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000663std::error_code openFileForRead(const Twine &Name, int &ResultFD) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000664 SmallVector<wchar_t, 128> PathUTF16;
Nick Kledzik18497e92012-06-20 00:28:54 +0000665
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000666 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000667 return EC;
668
Greg Bedwell7f68a712015-10-12 15:11:47 +0000669 HANDLE H =
670 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
671 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
672 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000673 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000674 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +0000675 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola331aeba2013-07-17 19:58:28 +0000676 // Provide a better error message when trying to open directories.
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000677 // This only runs if we failed to open the file, so there is probably
678 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000679 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000680 return EC;
681 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000682 return make_error_code(errc::is_a_directory);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000683 return EC;
684 }
685
686 int FD = ::_open_osfhandle(intptr_t(H), 0);
687 if (FD == -1) {
688 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000689 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000690 }
691
692 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000693 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000694}
Nick Kledzik18497e92012-06-20 00:28:54 +0000695
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000696std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000697 sys::fs::OpenFlags Flags, unsigned Mode) {
698 // Verify that we don't have both "append" and "excl".
699 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
700 "Cannot specify both 'excl' and 'append' file creation flags!");
701
Rafael Espindola67080ce2013-07-19 15:02:03 +0000702 SmallVector<wchar_t, 128> PathUTF16;
703
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000704 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindola67080ce2013-07-19 15:02:03 +0000705 return EC;
706
707 DWORD CreationDisposition;
708 if (Flags & F_Excl)
709 CreationDisposition = CREATE_NEW;
NAKAMURA Takumiedf76152013-08-22 15:14:45 +0000710 else if (Flags & F_Append)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000711 CreationDisposition = OPEN_ALWAYS;
712 else
713 CreationDisposition = CREATE_ALWAYS;
714
Rafael Espindola7a0b6402014-02-24 03:07:41 +0000715 DWORD Access = GENERIC_WRITE;
716 if (Flags & F_RW)
717 Access |= GENERIC_READ;
718
719 HANDLE H = ::CreateFileW(PathUTF16.begin(), Access,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000720 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
721 CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
722
723 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000724 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +0000725 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000726 // Provide a better error message when trying to open directories.
727 // This only runs if we failed to open the file, so there is probably
728 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000729 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000730 return EC;
731 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000732 return make_error_code(errc::is_a_directory);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000733 return EC;
734 }
735
736 int OpenFlags = 0;
737 if (Flags & F_Append)
738 OpenFlags |= _O_APPEND;
739
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000740 if (Flags & F_Text)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000741 OpenFlags |= _O_TEXT;
742
743 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
744 if (FD == -1) {
745 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000746 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000747 }
748
749 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000750 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +0000751}
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000752} // end namespace fs
Rui Ueyama471d0c52013-09-10 19:45:51 +0000753
Peter Collingbournef7d41012014-01-31 23:46:06 +0000754namespace path {
755
Pawel Bylica7187e4b2015-10-16 09:08:59 +0000756namespace {
757bool getKnownFolderPath(KNOWNFOLDERID folderId, SmallVectorImpl<char> &result) {
758 wchar_t *path = nullptr;
759 if (::SHGetKnownFolderPath(folderId, KF_FLAG_CREATE, nullptr, &path) != S_OK)
760 return false;
761
762 bool ok = !UTF16ToUTF8(path, ::wcslen(path), result);
763 ::CoTaskMemFree(path);
764 return ok;
765}
766}
767
Peter Collingbournef7d41012014-01-31 23:46:06 +0000768bool home_directory(SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +0000769 return getKnownFolderPath(FOLDERID_Profile, result);
Peter Collingbournef7d41012014-01-31 23:46:06 +0000770}
771
Rafael Espindola016a6d52014-08-26 14:47:52 +0000772static bool getTempDirEnvVar(const char *Var, SmallVectorImpl<char> &Res) {
773 SmallVector<wchar_t, 128> NameUTF16;
774 if (windows::UTF8ToUTF16(Var, NameUTF16))
775 return false;
776
777 SmallVector<wchar_t, 1024> Buf;
778 size_t Size = 1024;
779 do {
780 Buf.reserve(Size);
781 Size =
782 GetEnvironmentVariableW(NameUTF16.data(), Buf.data(), Buf.capacity());
783 if (Size == 0)
784 return false;
785
786 // Try again with larger buffer.
787 } while (Size > Buf.capacity());
788 Buf.set_size(Size);
789
790 if (windows::UTF16ToUTF8(Buf.data(), Size, Res))
791 return false;
792 return true;
793}
794
795static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
796 const char *EnvironmentVariables[] = {"TMP", "TEMP", "USERPROFILE"};
797 for (const char *Env : EnvironmentVariables) {
798 if (getTempDirEnvVar(Env, Res))
799 return true;
800 }
801 return false;
802}
803
804void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
805 (void)ErasedOnReboot;
806 Result.clear();
807
808 // Check whether the temporary directory is specified by an environment
809 // variable.
810 if (getTempDirEnvVar(Result))
811 return;
812
813 // Fall back to a system default.
814 const char *DefaultResult = "C:\\TEMP";
815 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
816}
Peter Collingbournef7d41012014-01-31 23:46:06 +0000817} // end namespace path
818
Rui Ueyama471d0c52013-09-10 19:45:51 +0000819namespace windows {
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +0000820std::error_code UTF8ToUTF16(llvm::StringRef utf8,
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000821 llvm::SmallVectorImpl<wchar_t> &utf16) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000822 if (!utf8.empty()) {
823 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
824 utf8.size(), utf16.begin(), 0);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000825
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000826 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000827 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +0000828
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000829 utf16.reserve(len + 1);
830 utf16.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000831
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000832 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
833 utf8.size(), utf16.begin(), utf16.size());
Rui Ueyama471d0c52013-09-10 19:45:51 +0000834
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000835 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000836 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000837 }
Rui Ueyama471d0c52013-09-10 19:45:51 +0000838
839 // Make utf16 null terminated.
840 utf16.push_back(0);
841 utf16.pop_back();
842
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +0000843 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +0000844}
845
Rafael Espindola9c359662014-09-03 20:02:00 +0000846static
847std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
848 size_t utf16_len,
849 llvm::SmallVectorImpl<char> &utf8) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000850 if (utf16_len) {
851 // Get length.
Rafael Espindola9c359662014-09-03 20:02:00 +0000852 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000853 0, NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000854
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000855 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000856 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +0000857
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000858 utf8.reserve(len);
859 utf8.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000860
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000861 // Now do the actual conversion.
Rafael Espindola9c359662014-09-03 20:02:00 +0000862 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000863 utf8.size(), NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +0000864
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000865 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000866 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +0000867 }
Rui Ueyama471d0c52013-09-10 19:45:51 +0000868
869 // Make utf8 null terminated.
870 utf8.push_back(0);
871 utf8.pop_back();
872
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +0000873 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +0000874}
Rafael Espindola9c359662014-09-03 20:02:00 +0000875
876std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
877 llvm::SmallVectorImpl<char> &utf8) {
878 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
879}
880
881std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
882 llvm::SmallVectorImpl<char> &utf8) {
883 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
884}
Rui Ueyama471d0c52013-09-10 19:45:51 +0000885} // end namespace windows
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000886} // end namespace sys
887} // end namespace llvm