blob: d9e1ff4ffe42993a41e3930c647e217ef5c30777 [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.
Reid Kleckner304af562016-01-12 18:33:49 +000041# pragma comment(lib, "ole32.lib") // This provides CoTaskMemFree
Reid Kleckner11da0042013-08-07 20:19:31 +000042#endif
43
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000044using namespace llvm;
45
Rui Ueyama471d0c52013-09-10 19:45:51 +000046using llvm::sys::windows::UTF8ToUTF16;
47using llvm::sys::windows::UTF16ToUTF8;
Paul Robinsonc38deee2014-11-24 18:05:29 +000048using llvm::sys::path::widenPath;
Rui Ueyama471d0c52013-09-10 19:45:51 +000049
Rafael Espindola37b012d2014-02-23 15:16:03 +000050static bool is_separator(const wchar_t value) {
51 switch (value) {
52 case L'\\':
53 case L'/':
54 return true;
55 default:
56 return false;
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +000057 }
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000058}
59
Paul Robinsonc38deee2014-11-24 18:05:29 +000060namespace llvm {
61namespace sys {
62namespace path {
63
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000064// Convert a UTF-8 path to UTF-16. Also, if the absolute equivalent of the
65// path is longer than CreateDirectory can tolerate, make it absolute and
66// prefixed by '\\?\'.
Paul Robinsonc38deee2014-11-24 18:05:29 +000067std::error_code widenPath(const Twine &Path8,
68 SmallVectorImpl<wchar_t> &Path16) {
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000069 const size_t MaxDirLen = MAX_PATH - 12; // Must leave room for 8.3 filename.
70
71 // Several operations would convert Path8 to SmallString; more efficient to
72 // do it once up front.
73 SmallString<128> Path8Str;
74 Path8.toVector(Path8Str);
75
76 // If we made this path absolute, how much longer would it get?
77 size_t CurPathLen;
78 if (llvm::sys::path::is_absolute(Twine(Path8Str)))
79 CurPathLen = 0; // No contribution from current_path needed.
80 else {
81 CurPathLen = ::GetCurrentDirectoryW(0, NULL);
82 if (CurPathLen == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +000083 return mapWindowsError(::GetLastError());
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000084 }
85
86 // Would the absolute path be longer than our limit?
87 if ((Path8Str.size() + CurPathLen) >= MaxDirLen &&
88 !Path8Str.startswith("\\\\?\\")) {
89 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
90 if (CurPathLen) {
91 SmallString<80> CurPath;
92 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
93 return EC;
94 FullPath.append(CurPath);
95 }
96 // Traverse the requested path, canonicalizing . and .. as we go (because
97 // the \\?\ prefix is documented to treat them as real components).
98 // The iterators don't report separators and append() always attaches
99 // preferred_separator so we don't need to call native() on the result.
100 for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(Path8Str),
101 E = llvm::sys::path::end(Path8Str);
102 I != E; ++I) {
103 if (I->size() == 1 && *I == ".")
104 continue;
105 if (I->size() == 2 && *I == "..")
106 llvm::sys::path::remove_filename(FullPath);
107 else
108 llvm::sys::path::append(FullPath, *I);
109 }
110 return UTF8ToUTF16(FullPath, Path16);
111 }
112
113 // Just use the caller's original path.
114 return UTF8ToUTF16(Path8Str, Path16);
115}
Paul Robinsonc38deee2014-11-24 18:05:29 +0000116} // end namespace path
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000117
Michael J. Spencer20daa282010-12-07 01:22:31 +0000118namespace fs {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000119
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000120std::string getMainExecutable(const char *argv0, void *MainExecAddr) {
David Majnemer17a44962013-10-07 09:52:36 +0000121 SmallVector<wchar_t, MAX_PATH> PathName;
122 DWORD Size = ::GetModuleFileNameW(NULL, PathName.data(), PathName.capacity());
123
124 // A zero return value indicates a failure other than insufficient space.
125 if (Size == 0)
126 return "";
127
128 // Insufficient space is determined by a return value equal to the size of
129 // the buffer passed in.
130 if (Size == PathName.capacity())
131 return "";
132
133 // On success, GetModuleFileNameW returns the number of characters written to
134 // the buffer not including the NULL terminator.
135 PathName.set_size(Size);
136
137 // Convert the result from UTF-16 to UTF-8.
138 SmallVector<char, MAX_PATH> PathNameUTF8;
139 if (UTF16ToUTF8(PathName.data(), PathName.size(), PathNameUTF8))
140 return "";
141
142 return std::string(PathNameUTF8.data());
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000143}
144
Rafael Espindolad1230992013-07-29 21:55:38 +0000145UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000146 // The file is uniquely identified by the volume serial number along
147 // with the 64-bit file identifier.
148 uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) |
149 static_cast<uint64_t>(FileIndexLow);
150
151 return UniqueID(VolumeSerialNumber, FileID);
152}
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000153
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000154ErrorOr<space_info> disk_space(const Twine &Path) {
155 ULARGE_INTEGER Avail, Total, Free;
156 if (!::GetDiskFreeSpaceExA(Path.str().c_str(), &Avail, &Total, &Free))
157 return mapWindowsError(::GetLastError());
158 space_info SpaceInfo;
159 SpaceInfo.capacity =
160 (static_cast<uint64_t>(Total.HighPart) << 32) + Total.LowPart;
Mehdi Amini64719152016-04-01 00:52:05 +0000161 SpaceInfo.free = (static_cast<uint64_t>(Free.HighPart) << 32) + Free.LowPart;
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000162 SpaceInfo.available =
163 (static_cast<uint64_t>(Avail.HighPart) << 32) + Avail.LowPart;
164 return SpaceInfo;
165}
166
Pavel Labath757ca882016-10-24 10:59:17 +0000167TimePoint<> file_status::getLastAccessedTime() const {
168 FILETIME Time;
169 Time.dwLowDateTime = LastAccessedTimeLow;
170 Time.dwHighDateTime = LastAccessedTimeHigh;
171 return toTimePoint(Time);
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000172}
173
Pavel Labath757ca882016-10-24 10:59:17 +0000174TimePoint<> file_status::getLastModificationTime() const {
175 FILETIME Time;
176 Time.dwLowDateTime = LastWriteTimeLow;
177 Time.dwHighDateTime = LastWriteTimeHigh;
178 return toTimePoint(Time);
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000179}
180
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000181std::error_code current_path(SmallVectorImpl<char> &result) {
David Majnemer61eae2e2013-10-07 01:00:07 +0000182 SmallVector<wchar_t, MAX_PATH> cur_path;
183 DWORD len = MAX_PATH;
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000184
David Majnemer61eae2e2013-10-07 01:00:07 +0000185 do {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000186 cur_path.reserve(len);
David Majnemer61eae2e2013-10-07 01:00:07 +0000187 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000188
David Majnemer61eae2e2013-10-07 01:00:07 +0000189 // A zero return value indicates a failure other than insufficient space.
190 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000191 return mapWindowsError(::GetLastError());
David Majnemer61eae2e2013-10-07 01:00:07 +0000192
193 // If there's insufficient space, the len returned is larger than the len
194 // given.
195 } while (len > cur_path.capacity());
196
197 // On success, GetCurrentDirectoryW returns the number of characters not
198 // including the null-terminator.
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000199 cur_path.set_size(len);
Aaron Ballmanb16cf532013-08-16 17:53:28 +0000200 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000201}
202
Pavel Labath2f096092017-01-24 10:32:03 +0000203std::error_code set_current_path(const Twine &path) {
204 // Convert to utf-16.
205 SmallVector<wchar_t, 128> wide_path;
206 if (std::error_code ec = widenPath(path, wide_path))
207 return ec;
208
209 if (!::SetCurrentDirectoryW(wide_path.begin()))
210 return mapWindowsError(::GetLastError());
211
212 return std::error_code();
213}
214
Frederic Riss6b9396c2015-08-06 21:04:55 +0000215std::error_code create_directory(const Twine &path, bool IgnoreExisting,
216 perms Perms) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000217 SmallVector<wchar_t, 128> path_utf16;
218
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000219 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000220 return ec;
221
222 if (!::CreateDirectoryW(path_utf16.begin(), NULL)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000223 DWORD LastError = ::GetLastError();
224 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000225 return mapWindowsError(LastError);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000226 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000227
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000228 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000229}
230
Rafael Espindola83f858e2014-03-11 18:40:24 +0000231// We can't use symbolic links for windows.
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000232std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000233 // Convert to utf-16.
234 SmallVector<wchar_t, 128> wide_from;
235 SmallVector<wchar_t, 128> wide_to;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000236 if (std::error_code ec = widenPath(from, wide_from))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000237 return ec;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000238 if (std::error_code ec = widenPath(to, wide_to))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000239 return ec;
Michael J. Spencere0c45602010-12-03 05:58:41 +0000240
241 if (!::CreateHardLinkW(wide_from.begin(), wide_to.begin(), NULL))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000242 return mapWindowsError(::GetLastError());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000243
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000244 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000245}
246
Mehdi Amini8e13bc42016-12-14 04:56:42 +0000247std::error_code create_hard_link(const Twine &to, const Twine &from) {
248 return create_link(to, from);
249}
250
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000251std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000252 SmallVector<wchar_t, 128> path_utf16;
253
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000254 file_status ST;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000255 if (std::error_code EC = status(path, ST)) {
Rafael Espindola2a826e42014-06-13 17:20:48 +0000256 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000257 return EC;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000258 return std::error_code();
Rafael Espindola107b74c2013-07-31 00:10:25 +0000259 }
Michael J. Spencer153749b2011-01-05 16:39:22 +0000260
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000261 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000262 return ec;
263
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000264 if (ST.type() == file_type::directory_file) {
Michael J. Spencer153749b2011-01-05 16:39:22 +0000265 if (!::RemoveDirectoryW(c_str(path_utf16))) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000266 std::error_code EC = mapWindowsError(::GetLastError());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000267 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000268 return EC;
269 }
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000270 return std::error_code();
Michael J. Spencer153749b2011-01-05 16:39:22 +0000271 }
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000272 if (!::DeleteFileW(c_str(path_utf16))) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000273 std::error_code EC = mapWindowsError(::GetLastError());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000274 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000275 return EC;
276 }
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000277 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000278}
279
Zachary Turner392ed9d2017-02-21 20:55:47 +0000280static std::error_code is_local_internal(SmallVectorImpl<wchar_t> &Path,
281 bool &Result) {
282 SmallVector<wchar_t, 128> VolumePath;
283 size_t Len = 128;
284 while (true) {
285 VolumePath.resize(Len);
286 BOOL Success =
287 ::GetVolumePathNameW(Path.data(), VolumePath.data(), VolumePath.size());
288
289 if (Success)
290 break;
291
292 DWORD Err = ::GetLastError();
293 if (Err != ERROR_INSUFFICIENT_BUFFER)
294 return mapWindowsError(Err);
295
296 Len *= 2;
297 }
298 // If the output buffer has exactly enough space for the path name, but not
299 // the null terminator, it will leave the output unterminated. Push a null
300 // terminator onto the end to ensure that this never happens.
301 VolumePath.push_back(L'\0');
302 VolumePath.set_size(wcslen(VolumePath.data()));
303 const wchar_t *P = VolumePath.data();
304
305 UINT Type = ::GetDriveTypeW(P);
306 switch (Type) {
307 case DRIVE_FIXED:
308 Result = true;
309 return std::error_code();
310 case DRIVE_REMOTE:
311 case DRIVE_CDROM:
312 case DRIVE_RAMDISK:
313 case DRIVE_REMOVABLE:
314 Result = false;
315 return std::error_code();
316 default:
317 return make_error_code(errc::no_such_file_or_directory);
318 }
319 llvm_unreachable("Unreachable!");
320}
321
322std::error_code is_local(const Twine &path, bool &result) {
323 if (!llvm::sys::fs::exists(path) || !llvm::sys::path::has_root_path(path))
324 return make_error_code(errc::no_such_file_or_directory);
325
326 SmallString<128> Storage;
327 StringRef P = path.toStringRef(Storage);
328
329 // Convert to utf-16.
330 SmallVector<wchar_t, 128> WidePath;
331 if (std::error_code ec = widenPath(P, WidePath))
332 return ec;
333 return is_local_internal(WidePath, result);
334}
335
336std::error_code is_local(int FD, bool &Result) {
337 SmallVector<wchar_t, 128> FinalPath;
338 HANDLE Handle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
339
340 size_t Len = 128;
341 do {
342 FinalPath.reserve(Len);
343 Len = ::GetFinalPathNameByHandleW(Handle, FinalPath.data(),
344 FinalPath.capacity() - 1, VOLUME_NAME_NT);
345 if (Len == 0)
346 return mapWindowsError(::GetLastError());
347 } while (Len > FinalPath.capacity());
348
349 FinalPath.set_size(Len);
350
351 return is_local_internal(FinalPath, Result);
352}
353
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000354std::error_code rename(const Twine &from, const Twine &to) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000355 // Convert to utf-16.
356 SmallVector<wchar_t, 128> wide_from;
357 SmallVector<wchar_t, 128> wide_to;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000358 if (std::error_code ec = widenPath(from, wide_from))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000359 return ec;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000360 if (std::error_code ec = widenPath(to, wide_to))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000361 return ec;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000362
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000363 std::error_code ec = std::error_code();
Greg Bedwell7f68a712015-10-12 15:11:47 +0000364
Sunil Srivastava34fce932016-03-25 23:41:28 +0000365 // Retry while we see recoverable errors.
Greg Bedwell7f68a712015-10-12 15:11:47 +0000366 // System scanners (eg. indexer) might open the source file when it is written
367 // and closed.
368
Sunil Srivastava34fce932016-03-25 23:41:28 +0000369 bool TryReplace = true;
Greg Bedwell7f68a712015-10-12 15:11:47 +0000370
Sunil Srivastava34fce932016-03-25 23:41:28 +0000371 for (int i = 0; i < 2000; i++) {
372 if (i > 0)
373 ::Sleep(1);
374
375 if (TryReplace) {
376 // Try ReplaceFile first, as it is able to associate a new data stream
377 // with the destination even if the destination file is currently open.
378 if (::ReplaceFileW(wide_to.data(), wide_from.data(), NULL, 0, NULL, NULL))
379 return std::error_code();
380
381 DWORD ReplaceError = ::GetLastError();
382 ec = mapWindowsError(ReplaceError);
383
384 // If ReplaceFileW returned ERROR_UNABLE_TO_MOVE_REPLACEMENT or
385 // ERROR_UNABLE_TO_MOVE_REPLACEMENT_2, retry but only use MoveFileExW().
386 if (ReplaceError == ERROR_UNABLE_TO_MOVE_REPLACEMENT ||
387 ReplaceError == ERROR_UNABLE_TO_MOVE_REPLACEMENT_2) {
388 TryReplace = false;
389 continue;
390 }
391 // If ReplaceFileW returned ERROR_UNABLE_TO_REMOVE_REPLACED, retry
392 // using ReplaceFileW().
393 if (ReplaceError == ERROR_UNABLE_TO_REMOVE_REPLACED)
394 continue;
395 // We get ERROR_FILE_NOT_FOUND if the destination file is missing.
396 // MoveFileEx can handle this case.
397 if (ReplaceError != ERROR_ACCESS_DENIED &&
398 ReplaceError != ERROR_FILE_NOT_FOUND &&
399 ReplaceError != ERROR_SHARING_VIOLATION)
400 break;
401 }
Greg Bedwell7f68a712015-10-12 15:11:47 +0000402
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000403 if (::MoveFileExW(wide_from.begin(), wide_to.begin(),
404 MOVEFILE_COPY_ALLOWED | MOVEFILE_REPLACE_EXISTING))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000405 return std::error_code();
Greg Bedwell7f68a712015-10-12 15:11:47 +0000406
407 DWORD MoveError = ::GetLastError();
408 ec = mapWindowsError(MoveError);
409 if (MoveError != ERROR_ACCESS_DENIED) break;
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000410 }
Michael J. Spencer409f5562010-12-03 17:53:55 +0000411
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000412 return ec;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000413}
414
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000415std::error_code resize_file(int FD, uint64_t Size) {
Michael J. Spencerca242f22010-12-03 18:48:56 +0000416#ifdef HAVE__CHSIZE_S
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000417 errno_t error = ::_chsize_s(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000418#else
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000419 errno_t error = ::_chsize(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000420#endif
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000421 return std::error_code(error, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000422}
423
Rafael Espindola281f23a2014-09-11 20:30:02 +0000424std::error_code access(const Twine &Path, AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000425 SmallVector<wchar_t, 128> PathUtf16;
Michael J. Spencer45710402010-12-03 01:21:28 +0000426
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000427 if (std::error_code EC = widenPath(Path, PathUtf16))
Rafael Espindola281f23a2014-09-11 20:30:02 +0000428 return EC;
Michael J. Spencer45710402010-12-03 01:21:28 +0000429
Rafael Espindola281f23a2014-09-11 20:30:02 +0000430 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
Michael J. Spencer45710402010-12-03 01:21:28 +0000431
Rafael Espindola281f23a2014-09-11 20:30:02 +0000432 if (Attributes == INVALID_FILE_ATTRIBUTES) {
Michael J. Spencer45710402010-12-03 01:21:28 +0000433 // See if the file didn't actually exist.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000434 DWORD LastError = ::GetLastError();
435 if (LastError != ERROR_FILE_NOT_FOUND &&
436 LastError != ERROR_PATH_NOT_FOUND)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000437 return mapWindowsError(LastError);
Rafael Espindola281f23a2014-09-11 20:30:02 +0000438 return errc::no_such_file_or_directory;
439 }
440
441 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
442 return errc::permission_denied;
443
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000444 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000445}
446
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000447bool can_execute(const Twine &Path) {
448 return !access(Path, AccessMode::Execute) ||
449 !access(Path + ".exe", AccessMode::Execute);
450}
451
Michael J. Spencer203d7802011-12-12 06:04:28 +0000452bool equivalent(file_status A, file_status B) {
453 assert(status_known(A) && status_known(B));
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000454 return A.FileIndexHigh == B.FileIndexHigh &&
455 A.FileIndexLow == B.FileIndexLow &&
456 A.FileSizeHigh == B.FileSizeHigh &&
457 A.FileSizeLow == B.FileSizeLow &&
458 A.LastAccessedTimeHigh == B.LastAccessedTimeHigh &&
459 A.LastAccessedTimeLow == B.LastAccessedTimeLow &&
460 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
461 A.LastWriteTimeLow == B.LastWriteTimeLow &&
462 A.VolumeSerialNumber == B.VolumeSerialNumber;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000463}
464
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000465std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000466 file_status fsA, fsB;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000467 if (std::error_code ec = status(A, fsA))
468 return ec;
469 if (std::error_code ec = status(B, fsB))
470 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000471 result = equivalent(fsA, fsB);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000472 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000473}
474
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000475static bool isReservedName(StringRef path) {
476 // This list of reserved names comes from MSDN, at:
477 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
Craig Topper26260942015-10-18 05:15:34 +0000478 static const char *const sReservedNames[] = { "nul", "con", "prn", "aux",
479 "com1", "com2", "com3", "com4",
480 "com5", "com6", "com7", "com8",
481 "com9", "lpt1", "lpt2", "lpt3",
482 "lpt4", "lpt5", "lpt6", "lpt7",
483 "lpt8", "lpt9" };
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000484
485 // First, check to see if this is a device namespace, which always
486 // starts with \\.\, since device namespaces are not legal file paths.
487 if (path.startswith("\\\\.\\"))
488 return true;
489
Douglas Yung091d8fd2016-05-03 00:12:59 +0000490 // Then compare against the list of ancient reserved names.
Craig Topper58713212013-07-15 04:27:47 +0000491 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000492 if (path.equals_lower(sReservedNames[i]))
493 return true;
494 }
495
496 // The path isn't what we consider reserved.
497 return false;
498}
499
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000500static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000501 if (FileHandle == INVALID_HANDLE_VALUE)
502 goto handle_status_error;
503
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000504 switch (::GetFileType(FileHandle)) {
505 default:
Rafael Espindola81177c52013-07-18 18:42:52 +0000506 llvm_unreachable("Don't know anything about this file type");
507 case FILE_TYPE_UNKNOWN: {
508 DWORD Err = ::GetLastError();
509 if (Err != NO_ERROR)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000510 return mapWindowsError(Err);
Rafael Espindola81177c52013-07-18 18:42:52 +0000511 Result = file_status(file_type::type_unknown);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000512 return std::error_code();
Rafael Espindola81177c52013-07-18 18:42:52 +0000513 }
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000514 case FILE_TYPE_DISK:
515 break;
516 case FILE_TYPE_CHAR:
517 Result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000518 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000519 case FILE_TYPE_PIPE:
520 Result = file_status(file_type::fifo_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000521 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000522 }
523
Rafael Espindola77021c92013-07-16 03:20:13 +0000524 BY_HANDLE_FILE_INFORMATION Info;
525 if (!::GetFileInformationByHandle(FileHandle, &Info))
526 goto handle_status_error;
527
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000528 {
529 file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
530 ? file_type::directory_file
531 : file_type::regular_file;
532 Result =
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000533 file_status(Type, Info.ftLastAccessTime.dwHighDateTime,
534 Info.ftLastAccessTime.dwLowDateTime,
535 Info.ftLastWriteTime.dwHighDateTime,
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000536 Info.ftLastWriteTime.dwLowDateTime,
537 Info.dwVolumeSerialNumber, Info.nFileSizeHigh,
538 Info.nFileSizeLow, Info.nFileIndexHigh, Info.nFileIndexLow);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000539 return std::error_code();
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000540 }
Rafael Espindola77021c92013-07-16 03:20:13 +0000541
542handle_status_error:
Rafael Espindolaa813d602014-06-11 03:58:34 +0000543 DWORD LastError = ::GetLastError();
544 if (LastError == ERROR_FILE_NOT_FOUND ||
545 LastError == ERROR_PATH_NOT_FOUND)
Rafael Espindola77021c92013-07-16 03:20:13 +0000546 Result = file_status(file_type::file_not_found);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000547 else if (LastError == ERROR_SHARING_VIOLATION)
Rafael Espindola77021c92013-07-16 03:20:13 +0000548 Result = file_status(file_type::type_unknown);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000549 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000550 Result = file_status(file_type::status_error);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000551 return mapWindowsError(LastError);
Rafael Espindola77021c92013-07-16 03:20:13 +0000552}
553
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000554std::error_code status(const Twine &path, file_status &result) {
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000555 SmallString<128> path_storage;
556 SmallVector<wchar_t, 128> path_utf16;
557
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000558 StringRef path8 = path.toStringRef(path_storage);
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000559 if (isReservedName(path8)) {
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000560 result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000561 return std::error_code();
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000562 }
563
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000564 if (std::error_code ec = widenPath(path8, path_utf16))
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000565 return ec;
566
567 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
568 if (attr == INVALID_FILE_ATTRIBUTES)
Rafael Espindola77021c92013-07-16 03:20:13 +0000569 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000570
571 // Handle reparse points.
572 if (attr & FILE_ATTRIBUTE_REPARSE_POINT) {
Michael J. Spencer513f1b62011-12-12 06:03:33 +0000573 ScopedFileHandle h(
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000574 ::CreateFileW(path_utf16.begin(),
575 0, // Attributes only.
576 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
577 NULL,
578 OPEN_EXISTING,
579 FILE_FLAG_BACKUP_SEMANTICS,
580 0));
Michael J. Spencer513f1b62011-12-12 06:03:33 +0000581 if (!h)
Rafael Espindola77021c92013-07-16 03:20:13 +0000582 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000583 }
584
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000585 ScopedFileHandle h(
586 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
Michael J. Spencer203d7802011-12-12 06:04:28 +0000587 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000588 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0));
Michael J. Spencer203d7802011-12-12 06:04:28 +0000589 if (!h)
Rafael Espindola77021c92013-07-16 03:20:13 +0000590 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000591
Rafael Espindola77021c92013-07-16 03:20:13 +0000592 return getStatus(h, result);
Rafael Espindola77021c92013-07-16 03:20:13 +0000593}
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000594
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000595std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000596 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
597 return getStatus(FileHandle, Result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000598}
599
Pavel Labath757ca882016-10-24 10:59:17 +0000600std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
601 FILETIME FT = toFILETIME(Time);
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000602 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
603 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000604 return mapWindowsError(::GetLastError());
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000605 return std::error_code();
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000606}
Nick Kledzik18497e92012-06-20 00:28:54 +0000607
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000608std::error_code mapped_file_region::init(int FD, uint64_t Offset,
609 mapmode Mode) {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000610 // Make sure that the requested size fits within SIZE_T.
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000611 if (Size > std::numeric_limits<SIZE_T>::max())
Rafael Espindola2a826e42014-06-13 17:20:48 +0000612 return make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000613
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000614 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
615 if (FileHandle == INVALID_HANDLE_VALUE)
616 return make_error_code(errc::bad_file_descriptor);
617
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000618 DWORD flprotect;
619 switch (Mode) {
620 case readonly: flprotect = PAGE_READONLY; break;
621 case readwrite: flprotect = PAGE_READWRITE; break;
622 case priv: flprotect = PAGE_WRITECOPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000623 }
624
Rafael Espindola369d5142014-12-16 02:53:35 +0000625 HANDLE FileMappingHandle =
David Majnemer17a44962013-10-07 09:52:36 +0000626 ::CreateFileMappingW(FileHandle, 0, flprotect,
627 (Offset + Size) >> 32,
628 (Offset + Size) & 0xffffffff,
629 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000630 if (FileMappingHandle == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000631 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000632 return ec;
633 }
634
635 DWORD dwDesiredAccess;
636 switch (Mode) {
637 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
638 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
639 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000640 }
641 Mapping = ::MapViewOfFile(FileMappingHandle,
642 dwDesiredAccess,
643 Offset >> 32,
644 Offset & 0xffffffff,
645 Size);
646 if (Mapping == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000647 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000648 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000649 return ec;
650 }
651
652 if (Size == 0) {
653 MEMORY_BASIC_INFORMATION mbi;
654 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
655 if (Result == 0) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000656 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000657 ::UnmapViewOfFile(Mapping);
658 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000659 return ec;
660 }
661 Size = mbi.RegionSize;
662 }
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000663
664 // Close all the handles except for the view. It will keep the other handles
665 // alive.
666 ::CloseHandle(FileMappingHandle);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000667 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000668}
669
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000670mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
671 uint64_t offset, std::error_code &ec)
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000672 : Size(length), Mapping() {
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000673 ec = init(fd, offset, mode);
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000674 if (ec)
Rafael Espindola369d5142014-12-16 02:53:35 +0000675 Mapping = 0;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000676}
677
678mapped_file_region::~mapped_file_region() {
679 if (Mapping)
680 ::UnmapViewOfFile(Mapping);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000681}
682
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000683uint64_t mapped_file_region::size() const {
684 assert(Mapping && "Mapping failed but used anyway!");
685 return Size;
686}
687
688char *mapped_file_region::data() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000689 assert(Mapping && "Mapping failed but used anyway!");
690 return reinterpret_cast<char*>(Mapping);
691}
692
693const char *mapped_file_region::const_data() const {
694 assert(Mapping && "Mapping failed but used anyway!");
695 return reinterpret_cast<const char*>(Mapping);
696}
697
698int mapped_file_region::alignment() {
699 SYSTEM_INFO SysInfo;
700 ::GetSystemInfo(&SysInfo);
701 return SysInfo.dwAllocationGranularity;
702}
703
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000704std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000705 StringRef path){
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000706 SmallVector<wchar_t, 128> path_utf16;
707
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000708 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000709 return ec;
710
711 // Convert path to the format that Windows is happy with.
712 if (path_utf16.size() > 0 &&
713 !is_separator(path_utf16[path.size() - 1]) &&
714 path_utf16[path.size() - 1] != L':') {
715 path_utf16.push_back(L'\\');
716 path_utf16.push_back(L'*');
717 } else {
718 path_utf16.push_back(L'*');
719 }
720
721 // Get the first directory entry.
722 WIN32_FIND_DATAW FirstFind;
Michael J. Spencer751e9aa2010-12-09 17:37:18 +0000723 ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000724 if (!FindHandle)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000725 return mapWindowsError(::GetLastError());
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000726
Michael J. Spencer98879d72011-01-05 16:39:30 +0000727 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
728 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
729 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
730 FirstFind.cFileName[1] == L'.'))
731 if (!::FindNextFileW(FindHandle, &FirstFind)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000732 DWORD LastError = ::GetLastError();
Michael J. Spencer98879d72011-01-05 16:39:30 +0000733 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000734 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000735 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000736 return mapWindowsError(LastError);
Michael J. Spencer98879d72011-01-05 16:39:30 +0000737 } else
738 FilenameLen = ::wcslen(FirstFind.cFileName);
739
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000740 // Construct the current directory entry.
Michael J. Spencer98879d72011-01-05 16:39:30 +0000741 SmallString<128> directory_entry_name_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000742 if (std::error_code ec =
743 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
744 directory_entry_name_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000745 return ec;
746
747 it.IterationHandle = intptr_t(FindHandle.take());
Michael J. Spencer98879d72011-01-05 16:39:30 +0000748 SmallString<128> directory_entry_path(path);
Yaron Keren92e1b622015-03-18 10:17:07 +0000749 path::append(directory_entry_path, directory_entry_name_utf8);
750 it.CurrentEntry = directory_entry(directory_entry_path);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000751
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000752 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000753}
754
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000755std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000756 if (it.IterationHandle != 0)
757 // Closes the handle if it's valid.
758 ScopedFindHandle close(HANDLE(it.IterationHandle));
759 it.IterationHandle = 0;
760 it.CurrentEntry = directory_entry();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000761 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000762}
763
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000764std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000765 WIN32_FIND_DATAW FindData;
766 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000767 DWORD LastError = ::GetLastError();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000768 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000769 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000770 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000771 return mapWindowsError(LastError);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000772 }
773
Michael J. Spencer98879d72011-01-05 16:39:30 +0000774 size_t FilenameLen = ::wcslen(FindData.cFileName);
775 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
776 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
777 FindData.cFileName[1] == L'.'))
778 return directory_iterator_increment(it);
779
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000780 SmallString<128> directory_entry_path_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000781 if (std::error_code ec =
782 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
783 directory_entry_path_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000784 return ec;
785
786 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000787 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000788}
789
Taewook Ohd9153272016-06-13 15:54:56 +0000790std::error_code openFileForRead(const Twine &Name, int &ResultFD,
791 SmallVectorImpl<char> *RealPath) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000792 SmallVector<wchar_t, 128> PathUTF16;
Nick Kledzik18497e92012-06-20 00:28:54 +0000793
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000794 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000795 return EC;
796
Greg Bedwell7f68a712015-10-12 15:11:47 +0000797 HANDLE H =
798 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
799 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
800 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000801 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000802 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +0000803 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola331aeba2013-07-17 19:58:28 +0000804 // Provide a better error message when trying to open directories.
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000805 // This only runs if we failed to open the file, so there is probably
806 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000807 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000808 return EC;
809 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000810 return make_error_code(errc::is_a_directory);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000811 return EC;
812 }
813
814 int FD = ::_open_osfhandle(intptr_t(H), 0);
815 if (FD == -1) {
816 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000817 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000818 }
819
Taewook Ohd9153272016-06-13 15:54:56 +0000820 // Fetch the real name of the file, if the user asked
821 if (RealPath) {
822 RealPath->clear();
823 wchar_t RealPathUTF16[MAX_PATH];
824 DWORD CountChars =
825 ::GetFinalPathNameByHandleW(H, RealPathUTF16, MAX_PATH,
826 FILE_NAME_NORMALIZED);
827 if (CountChars > 0 && CountChars < MAX_PATH) {
828 // Convert the result from UTF-16 to UTF-8.
829 SmallString<MAX_PATH> RealPathUTF8;
830 if (!UTF16ToUTF8(RealPathUTF16, CountChars, RealPathUTF8))
831 RealPath->append(RealPathUTF8.data(),
832 RealPathUTF8.data() + strlen(RealPathUTF8.data()));
833 }
834 }
835
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000836 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000837 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000838}
Nick Kledzik18497e92012-06-20 00:28:54 +0000839
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000840std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000841 sys::fs::OpenFlags Flags, unsigned Mode) {
842 // Verify that we don't have both "append" and "excl".
843 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
844 "Cannot specify both 'excl' and 'append' file creation flags!");
845
Rafael Espindola67080ce2013-07-19 15:02:03 +0000846 SmallVector<wchar_t, 128> PathUTF16;
847
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000848 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindola67080ce2013-07-19 15:02:03 +0000849 return EC;
850
851 DWORD CreationDisposition;
852 if (Flags & F_Excl)
853 CreationDisposition = CREATE_NEW;
NAKAMURA Takumiedf76152013-08-22 15:14:45 +0000854 else if (Flags & F_Append)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000855 CreationDisposition = OPEN_ALWAYS;
856 else
857 CreationDisposition = CREATE_ALWAYS;
858
Rafael Espindola7a0b6402014-02-24 03:07:41 +0000859 DWORD Access = GENERIC_WRITE;
860 if (Flags & F_RW)
861 Access |= GENERIC_READ;
862
863 HANDLE H = ::CreateFileW(PathUTF16.begin(), Access,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000864 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
865 CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
866
867 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000868 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +0000869 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000870 // Provide a better error message when trying to open directories.
871 // This only runs if we failed to open the file, so there is probably
872 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000873 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000874 return EC;
875 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000876 return make_error_code(errc::is_a_directory);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000877 return EC;
878 }
879
880 int OpenFlags = 0;
881 if (Flags & F_Append)
882 OpenFlags |= _O_APPEND;
883
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000884 if (Flags & F_Text)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000885 OpenFlags |= _O_TEXT;
886
887 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
888 if (FD == -1) {
889 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000890 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000891 }
892
893 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000894 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +0000895}
Taewook Ohd9153272016-06-13 15:54:56 +0000896
897std::error_code getPathFromOpenFD(int FD, SmallVectorImpl<char> &ResultPath) {
898 HANDLE FileHandle = reinterpret_cast<HANDLE>(::_get_osfhandle(FD));
899 if (FileHandle == INVALID_HANDLE_VALUE)
900 return make_error_code(errc::bad_file_descriptor);
901
902 DWORD CharCount;
Aaron Ballman0ad00462016-06-21 14:24:48 +0000903 SmallVector<wchar_t, 1024> TempPath;
Taewook Ohd9153272016-06-13 15:54:56 +0000904 do {
Aaron Ballman0ad00462016-06-21 14:24:48 +0000905 CharCount = ::GetFinalPathNameByHandleW(FileHandle, TempPath.begin(),
906 TempPath.capacity(),
Aaron Ballman3dd74b82016-06-20 20:28:49 +0000907 FILE_NAME_NORMALIZED);
Aaron Ballman0ad00462016-06-21 14:24:48 +0000908 if (CharCount < TempPath.capacity())
Taewook Ohd9153272016-06-13 15:54:56 +0000909 break;
Aaron Ballman3dd74b82016-06-20 20:28:49 +0000910
911 // Reserve sufficient space for the path as well as the null character. Even
912 // though the API does not document that it is required, if we reserve just
913 // CharCount space, the function call will not store the resulting path and
914 // still report success.
Aaron Ballman0ad00462016-06-21 14:24:48 +0000915 TempPath.reserve(CharCount + 1);
Taewook Ohd9153272016-06-13 15:54:56 +0000916 } while (true);
917
918 if (CharCount == 0)
919 return mapWindowsError(::GetLastError());
920
Aaron Ballman0ad00462016-06-21 14:24:48 +0000921 TempPath.set_size(CharCount);
Taewook Ohd9153272016-06-13 15:54:56 +0000922
Aaron Ballman3dd74b82016-06-20 20:28:49 +0000923 // On earlier Windows releases, the character count includes the terminating
924 // null.
Aaron Ballman0ad00462016-06-21 14:24:48 +0000925 if (TempPath.back() == L'\0') {
926 --CharCount;
927 TempPath.pop_back();
928 }
Taewook Ohd9153272016-06-13 15:54:56 +0000929
Aaron Ballman0ad00462016-06-21 14:24:48 +0000930 return windows::UTF16ToUTF8(TempPath.data(), CharCount, ResultPath);
Taewook Ohd9153272016-06-13 15:54:56 +0000931}
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +0000932} // end namespace fs
Rui Ueyama471d0c52013-09-10 19:45:51 +0000933
Peter Collingbournef7d41012014-01-31 23:46:06 +0000934namespace path {
Pawel Bylica7c1f36a2015-11-02 14:57:24 +0000935static bool getKnownFolderPath(KNOWNFOLDERID folderId,
936 SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +0000937 wchar_t *path = nullptr;
938 if (::SHGetKnownFolderPath(folderId, KF_FLAG_CREATE, nullptr, &path) != S_OK)
939 return false;
940
941 bool ok = !UTF16ToUTF8(path, ::wcslen(path), result);
942 ::CoTaskMemFree(path);
943 return ok;
944}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +0000945
946bool getUserCacheDir(SmallVectorImpl<char> &Result) {
947 return getKnownFolderPath(FOLDERID_LocalAppData, Result);
948}
Pawel Bylica7187e4b2015-10-16 09:08:59 +0000949
Peter Collingbournef7d41012014-01-31 23:46:06 +0000950bool home_directory(SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +0000951 return getKnownFolderPath(FOLDERID_Profile, result);
Peter Collingbournef7d41012014-01-31 23:46:06 +0000952}
953
Pawel Bylicaa90e7452015-11-17 16:54:32 +0000954static bool getTempDirEnvVar(const wchar_t *Var, SmallVectorImpl<char> &Res) {
Pawel Bylica6e680b22015-11-06 23:44:23 +0000955 SmallVector<wchar_t, 1024> Buf;
956 size_t Size = 1024;
957 do {
958 Buf.reserve(Size);
Pawel Bylicaa90e7452015-11-17 16:54:32 +0000959 Size = GetEnvironmentVariableW(Var, Buf.data(), Buf.capacity());
Pawel Bylica6e680b22015-11-06 23:44:23 +0000960 if (Size == 0)
961 return false;
962
963 // Try again with larger buffer.
964 } while (Size > Buf.capacity());
965 Buf.set_size(Size);
966
Pawel Bylicaa90e7452015-11-17 16:54:32 +0000967 return !windows::UTF16ToUTF8(Buf.data(), Size, Res);
Pawel Bylica6e680b22015-11-06 23:44:23 +0000968}
969
970static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
Pawel Bylicaa90e7452015-11-17 16:54:32 +0000971 const wchar_t *EnvironmentVariables[] = {L"TMP", L"TEMP", L"USERPROFILE"};
972 for (auto *Env : EnvironmentVariables) {
Pawel Bylica6e680b22015-11-06 23:44:23 +0000973 if (getTempDirEnvVar(Env, Res))
974 return true;
975 }
976 return false;
977}
978
Rafael Espindola016a6d52014-08-26 14:47:52 +0000979void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
980 (void)ErasedOnReboot;
Pawel Bylica6e680b22015-11-06 23:44:23 +0000981 Result.clear();
Rafael Espindola016a6d52014-08-26 14:47:52 +0000982
Pawel Bylicaa90e7452015-11-17 16:54:32 +0000983 // Check whether the temporary directory is specified by an environment var.
984 // This matches GetTempPath logic to some degree. GetTempPath is not used
985 // directly as it cannot handle evn var longer than 130 chars on Windows 7
986 // (fixed on Windows 8).
987 if (getTempDirEnvVar(Result)) {
988 assert(!Result.empty() && "Unexpected empty path");
989 native(Result); // Some Unix-like shells use Unix path separator in $TMP.
990 fs::make_absolute(Result); // Make it absolute if not already.
Pawel Bylica6e680b22015-11-06 23:44:23 +0000991 return;
Pawel Bylicaa90e7452015-11-17 16:54:32 +0000992 }
Rafael Espindola016a6d52014-08-26 14:47:52 +0000993
994 // Fall back to a system default.
Pawel Bylicaa90e7452015-11-17 16:54:32 +0000995 const char *DefaultResult = "C:\\Temp";
Rafael Espindola016a6d52014-08-26 14:47:52 +0000996 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
997}
Peter Collingbournef7d41012014-01-31 23:46:06 +0000998} // end namespace path
999
Rui Ueyama471d0c52013-09-10 19:45:51 +00001000namespace windows {
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001001std::error_code UTF8ToUTF16(llvm::StringRef utf8,
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001002 llvm::SmallVectorImpl<wchar_t> &utf16) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001003 if (!utf8.empty()) {
1004 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1005 utf8.size(), utf16.begin(), 0);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001006
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001007 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001008 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001009
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001010 utf16.reserve(len + 1);
1011 utf16.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001012
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001013 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1014 utf8.size(), utf16.begin(), utf16.size());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001015
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001016 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001017 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001018 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001019
1020 // Make utf16 null terminated.
1021 utf16.push_back(0);
1022 utf16.pop_back();
1023
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001024 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001025}
1026
Rafael Espindola9c359662014-09-03 20:02:00 +00001027static
1028std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
1029 size_t utf16_len,
1030 llvm::SmallVectorImpl<char> &utf8) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001031 if (utf16_len) {
1032 // Get length.
Rafael Espindola9c359662014-09-03 20:02:00 +00001033 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001034 0, NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001035
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001036 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001037 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001038
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001039 utf8.reserve(len);
1040 utf8.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001041
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001042 // Now do the actual conversion.
Rafael Espindola9c359662014-09-03 20:02:00 +00001043 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001044 utf8.size(), NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001045
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001046 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001047 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001048 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001049
1050 // Make utf8 null terminated.
1051 utf8.push_back(0);
1052 utf8.pop_back();
1053
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001054 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001055}
Rafael Espindola9c359662014-09-03 20:02:00 +00001056
1057std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
1058 llvm::SmallVectorImpl<char> &utf8) {
1059 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
1060}
1061
1062std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
1063 llvm::SmallVectorImpl<char> &utf8) {
1064 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
1065}
Taewook Ohd9153272016-06-13 15:54:56 +00001066
Rui Ueyama471d0c52013-09-10 19:45:51 +00001067} // end namespace windows
Michael J. Spencerebad2f92010-11-29 22:28:51 +00001068} // end namespace sys
1069} // end namespace llvm