blob: 31462633ee83773a72e6f8c5764ca689bb91bfaf [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"
Zachary Turner260bda32017-03-08 22:49:32 +000029#include <shellapi.h>
NAKAMURA Takumi04d39d72014-02-12 11:50:22 +000030#include <shlobj.h>
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000031
Michael J. Spenceref2284f2012-08-15 19:05:47 +000032#undef max
33
Michael J. Spencer60252472010-12-03 18:03:28 +000034// MinGW doesn't define this.
Michael J. Spencer521c3212010-12-03 18:04:11 +000035#ifndef _ERRNO_T_DEFINED
36#define _ERRNO_T_DEFINED
37typedef int errno_t;
Michael J. Spencer60252472010-12-03 18:03:28 +000038#endif
39
Reid Kleckner11da0042013-08-07 20:19:31 +000040#ifdef _MSC_VER
41# pragma comment(lib, "advapi32.lib") // This provides CryptAcquireContextW.
Reid Kleckner304af562016-01-12 18:33:49 +000042# pragma comment(lib, "ole32.lib") // This provides CoTaskMemFree
Reid Kleckner11da0042013-08-07 20:19:31 +000043#endif
44
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000045using namespace llvm;
46
Rui Ueyama471d0c52013-09-10 19:45:51 +000047using llvm::sys::windows::UTF8ToUTF16;
48using llvm::sys::windows::UTF16ToUTF8;
Paul Robinsonc38deee2014-11-24 18:05:29 +000049using llvm::sys::path::widenPath;
Rui Ueyama471d0c52013-09-10 19:45:51 +000050
Rafael Espindola37b012d2014-02-23 15:16:03 +000051static bool is_separator(const wchar_t value) {
52 switch (value) {
53 case L'\\':
54 case L'/':
55 return true;
56 default:
57 return false;
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +000058 }
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +000059}
60
Paul Robinsonc38deee2014-11-24 18:05:29 +000061namespace llvm {
62namespace sys {
63namespace path {
64
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000065// Convert a UTF-8 path to UTF-16. Also, if the absolute equivalent of the
66// path is longer than CreateDirectory can tolerate, make it absolute and
67// prefixed by '\\?\'.
Paul Robinsonc38deee2014-11-24 18:05:29 +000068std::error_code widenPath(const Twine &Path8,
69 SmallVectorImpl<wchar_t> &Path16) {
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000070 const size_t MaxDirLen = MAX_PATH - 12; // Must leave room for 8.3 filename.
71
72 // Several operations would convert Path8 to SmallString; more efficient to
73 // do it once up front.
74 SmallString<128> Path8Str;
75 Path8.toVector(Path8Str);
76
77 // If we made this path absolute, how much longer would it get?
78 size_t CurPathLen;
79 if (llvm::sys::path::is_absolute(Twine(Path8Str)))
80 CurPathLen = 0; // No contribution from current_path needed.
81 else {
82 CurPathLen = ::GetCurrentDirectoryW(0, NULL);
83 if (CurPathLen == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +000084 return mapWindowsError(::GetLastError());
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000085 }
86
87 // Would the absolute path be longer than our limit?
88 if ((Path8Str.size() + CurPathLen) >= MaxDirLen &&
89 !Path8Str.startswith("\\\\?\\")) {
90 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
91 if (CurPathLen) {
92 SmallString<80> CurPath;
93 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
94 return EC;
95 FullPath.append(CurPath);
96 }
Pirama Arumuga Nainar3d48bb52017-08-21 20:49:44 +000097 // Traverse the requested path, canonicalizing . and .. (because the \\?\
98 // prefix is documented to treat them as real components). Ignore
99 // separators, which can be returned from the iterator if the path has a
100 // drive name. We don't need to call native() on the result since append()
101 // always attaches preferred_separator.
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000102 for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(Path8Str),
103 E = llvm::sys::path::end(Path8Str);
104 I != E; ++I) {
Pirama Arumuga Nainar3d48bb52017-08-21 20:49:44 +0000105 if (I->size() == 1 && is_separator((*I)[0]))
106 continue;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000107 if (I->size() == 1 && *I == ".")
108 continue;
109 if (I->size() == 2 && *I == "..")
110 llvm::sys::path::remove_filename(FullPath);
111 else
112 llvm::sys::path::append(FullPath, *I);
113 }
114 return UTF8ToUTF16(FullPath, Path16);
115 }
116
117 // Just use the caller's original path.
118 return UTF8ToUTF16(Path8Str, Path16);
119}
Paul Robinsonc38deee2014-11-24 18:05:29 +0000120} // end namespace path
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000121
Michael J. Spencer20daa282010-12-07 01:22:31 +0000122namespace fs {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000123
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000124std::string getMainExecutable(const char *argv0, void *MainExecAddr) {
David Majnemer17a44962013-10-07 09:52:36 +0000125 SmallVector<wchar_t, MAX_PATH> PathName;
126 DWORD Size = ::GetModuleFileNameW(NULL, PathName.data(), PathName.capacity());
127
128 // A zero return value indicates a failure other than insufficient space.
129 if (Size == 0)
130 return "";
131
132 // Insufficient space is determined by a return value equal to the size of
133 // the buffer passed in.
134 if (Size == PathName.capacity())
135 return "";
136
137 // On success, GetModuleFileNameW returns the number of characters written to
138 // the buffer not including the NULL terminator.
139 PathName.set_size(Size);
140
141 // Convert the result from UTF-16 to UTF-8.
142 SmallVector<char, MAX_PATH> PathNameUTF8;
143 if (UTF16ToUTF8(PathName.data(), PathName.size(), PathNameUTF8))
144 return "";
145
146 return std::string(PathNameUTF8.data());
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000147}
148
Rafael Espindolad1230992013-07-29 21:55:38 +0000149UniqueID file_status::getUniqueID() const {
Rafael Espindola7f822a92013-07-29 21:26:49 +0000150 // The file is uniquely identified by the volume serial number along
151 // with the 64-bit file identifier.
152 uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) |
153 static_cast<uint64_t>(FileIndexLow);
154
155 return UniqueID(VolumeSerialNumber, FileID);
156}
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000157
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000158ErrorOr<space_info> disk_space(const Twine &Path) {
159 ULARGE_INTEGER Avail, Total, Free;
160 if (!::GetDiskFreeSpaceExA(Path.str().c_str(), &Avail, &Total, &Free))
161 return mapWindowsError(::GetLastError());
162 space_info SpaceInfo;
163 SpaceInfo.capacity =
164 (static_cast<uint64_t>(Total.HighPart) << 32) + Total.LowPart;
Mehdi Amini64719152016-04-01 00:52:05 +0000165 SpaceInfo.free = (static_cast<uint64_t>(Free.HighPart) << 32) + Free.LowPart;
Mehdi Aminie2d8f1b2016-04-01 00:18:08 +0000166 SpaceInfo.available =
167 (static_cast<uint64_t>(Avail.HighPart) << 32) + Avail.LowPart;
168 return SpaceInfo;
169}
170
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000171TimePoint<> basic_file_status::getLastAccessedTime() const {
Pavel Labath757ca882016-10-24 10:59:17 +0000172 FILETIME Time;
173 Time.dwLowDateTime = LastAccessedTimeLow;
174 Time.dwHighDateTime = LastAccessedTimeHigh;
175 return toTimePoint(Time);
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000176}
177
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000178TimePoint<> basic_file_status::getLastModificationTime() const {
Pavel Labath757ca882016-10-24 10:59:17 +0000179 FILETIME Time;
180 Time.dwLowDateTime = LastWriteTimeLow;
181 Time.dwHighDateTime = LastWriteTimeHigh;
182 return toTimePoint(Time);
Rafael Espindoladb5d8fe2013-06-20 18:42:04 +0000183}
184
Zachary Turner5821a3b2017-03-20 23:55:20 +0000185uint32_t file_status::getLinkCount() const {
186 return NumLinks;
187}
188
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000189std::error_code current_path(SmallVectorImpl<char> &result) {
David Majnemer61eae2e2013-10-07 01:00:07 +0000190 SmallVector<wchar_t, MAX_PATH> cur_path;
191 DWORD len = MAX_PATH;
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000192
David Majnemer61eae2e2013-10-07 01:00:07 +0000193 do {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000194 cur_path.reserve(len);
David Majnemer61eae2e2013-10-07 01:00:07 +0000195 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000196
David Majnemer61eae2e2013-10-07 01:00:07 +0000197 // A zero return value indicates a failure other than insufficient space.
198 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000199 return mapWindowsError(::GetLastError());
David Majnemer61eae2e2013-10-07 01:00:07 +0000200
201 // If there's insufficient space, the len returned is larger than the len
202 // given.
203 } while (len > cur_path.capacity());
204
205 // On success, GetCurrentDirectoryW returns the number of characters not
206 // including the null-terminator.
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000207 cur_path.set_size(len);
Aaron Ballmanb16cf532013-08-16 17:53:28 +0000208 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000209}
210
Pavel Labath2f096092017-01-24 10:32:03 +0000211std::error_code set_current_path(const Twine &path) {
212 // Convert to utf-16.
213 SmallVector<wchar_t, 128> wide_path;
214 if (std::error_code ec = widenPath(path, wide_path))
215 return ec;
216
217 if (!::SetCurrentDirectoryW(wide_path.begin()))
218 return mapWindowsError(::GetLastError());
219
220 return std::error_code();
221}
222
Frederic Riss6b9396c2015-08-06 21:04:55 +0000223std::error_code create_directory(const Twine &path, bool IgnoreExisting,
224 perms Perms) {
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000225 SmallVector<wchar_t, 128> path_utf16;
226
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000227 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000228 return ec;
229
230 if (!::CreateDirectoryW(path_utf16.begin(), NULL)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000231 DWORD LastError = ::GetLastError();
232 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000233 return mapWindowsError(LastError);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000234 }
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000235
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000236 return std::error_code();
Michael J. Spencer31e310c2010-12-03 05:42:11 +0000237}
238
Rafael Espindola83f858e2014-03-11 18:40:24 +0000239// We can't use symbolic links for windows.
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000240std::error_code create_link(const Twine &to, const Twine &from) {
Michael J. Spencere0c45602010-12-03 05:58:41 +0000241 // Convert to utf-16.
242 SmallVector<wchar_t, 128> wide_from;
243 SmallVector<wchar_t, 128> wide_to;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000244 if (std::error_code ec = widenPath(from, wide_from))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000245 return ec;
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000246 if (std::error_code ec = widenPath(to, wide_to))
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000247 return ec;
Michael J. Spencere0c45602010-12-03 05:58:41 +0000248
249 if (!::CreateHardLinkW(wide_from.begin(), wide_to.begin(), NULL))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000250 return mapWindowsError(::GetLastError());
Michael J. Spencere0c45602010-12-03 05:58:41 +0000251
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000252 return std::error_code();
Michael J. Spencere0c45602010-12-03 05:58:41 +0000253}
254
Mehdi Amini8e13bc42016-12-14 04:56:42 +0000255std::error_code create_hard_link(const Twine &to, const Twine &from) {
NAKAMURA Takumia1e97a72017-08-28 06:47:47 +0000256 return create_link(to, from);
Mehdi Amini8e13bc42016-12-14 04:56:42 +0000257}
258
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000259std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000260 SmallVector<wchar_t, 128> path_utf16;
261
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000262 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000263 return ec;
264
Peter Collingbourne0f9e8892017-10-10 19:39:46 +0000265 // We don't know whether this is a file or a directory, and remove() can
266 // accept both. The usual way to delete a file or directory is to use one of
267 // the DeleteFile or RemoveDirectory functions, but that requires you to know
268 // which one it is. We could stat() the file to determine that, but that would
269 // cost us additional system calls, which can be slow in a directory
270 // containing a large number of files. So instead we call CreateFile directly.
271 // The important part is the FILE_FLAG_DELETE_ON_CLOSE flag, which causes the
272 // file to be deleted once it is closed. We also use the flags
273 // FILE_FLAG_BACKUP_SEMANTICS (which allows us to open directories), and
274 // FILE_FLAG_OPEN_REPARSE_POINT (don't follow symlinks).
275 ScopedFileHandle h(::CreateFileW(
276 c_str(path_utf16), DELETE,
277 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL,
278 OPEN_EXISTING,
279 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS |
280 FILE_FLAG_OPEN_REPARSE_POINT | FILE_FLAG_DELETE_ON_CLOSE,
281 NULL));
282 if (!h) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000283 std::error_code EC = mapWindowsError(::GetLastError());
Rafael Espindola2a826e42014-06-13 17:20:48 +0000284 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000285 return EC;
286 }
Peter Collingbourne0f9e8892017-10-10 19:39:46 +0000287
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000288 return std::error_code();
Michael J. Spencer6e74e112010-12-03 17:53:43 +0000289}
290
Zachary Turner392ed9d2017-02-21 20:55:47 +0000291static std::error_code is_local_internal(SmallVectorImpl<wchar_t> &Path,
292 bool &Result) {
293 SmallVector<wchar_t, 128> VolumePath;
294 size_t Len = 128;
295 while (true) {
296 VolumePath.resize(Len);
297 BOOL Success =
298 ::GetVolumePathNameW(Path.data(), VolumePath.data(), VolumePath.size());
299
300 if (Success)
301 break;
302
303 DWORD Err = ::GetLastError();
304 if (Err != ERROR_INSUFFICIENT_BUFFER)
305 return mapWindowsError(Err);
306
307 Len *= 2;
308 }
309 // If the output buffer has exactly enough space for the path name, but not
310 // the null terminator, it will leave the output unterminated. Push a null
311 // terminator onto the end to ensure that this never happens.
312 VolumePath.push_back(L'\0');
313 VolumePath.set_size(wcslen(VolumePath.data()));
314 const wchar_t *P = VolumePath.data();
315
316 UINT Type = ::GetDriveTypeW(P);
317 switch (Type) {
318 case DRIVE_FIXED:
319 Result = true;
320 return std::error_code();
321 case DRIVE_REMOTE:
322 case DRIVE_CDROM:
323 case DRIVE_RAMDISK:
324 case DRIVE_REMOVABLE:
325 Result = false;
326 return std::error_code();
327 default:
328 return make_error_code(errc::no_such_file_or_directory);
329 }
330 llvm_unreachable("Unreachable!");
331}
332
333std::error_code is_local(const Twine &path, bool &result) {
334 if (!llvm::sys::fs::exists(path) || !llvm::sys::path::has_root_path(path))
335 return make_error_code(errc::no_such_file_or_directory);
336
337 SmallString<128> Storage;
338 StringRef P = path.toStringRef(Storage);
339
340 // Convert to utf-16.
341 SmallVector<wchar_t, 128> WidePath;
342 if (std::error_code ec = widenPath(P, WidePath))
343 return ec;
344 return is_local_internal(WidePath, result);
345}
346
347std::error_code is_local(int FD, bool &Result) {
348 SmallVector<wchar_t, 128> FinalPath;
349 HANDLE Handle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
350
351 size_t Len = 128;
352 do {
353 FinalPath.reserve(Len);
354 Len = ::GetFinalPathNameByHandleW(Handle, FinalPath.data(),
355 FinalPath.capacity() - 1, VOLUME_NAME_NT);
356 if (Len == 0)
357 return mapWindowsError(::GetLastError());
358 } while (Len > FinalPath.capacity());
359
360 FinalPath.set_size(Len);
361
362 return is_local_internal(FinalPath, Result);
363}
364
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000365static std::error_code rename_internal(HANDLE FromHandle, const Twine &To,
366 bool ReplaceIfExists) {
367 SmallVector<wchar_t, 0> ToWide;
368 if (auto EC = widenPath(To, ToWide))
369 return EC;
370
371 std::vector<char> RenameInfoBuf(sizeof(FILE_RENAME_INFO) - sizeof(wchar_t) +
372 (ToWide.size() * sizeof(wchar_t)));
373 FILE_RENAME_INFO &RenameInfo =
374 *reinterpret_cast<FILE_RENAME_INFO *>(RenameInfoBuf.data());
375 RenameInfo.ReplaceIfExists = ReplaceIfExists;
376 RenameInfo.RootDirectory = 0;
377 RenameInfo.FileNameLength = ToWide.size();
Adrian McCarthye6275c62017-10-09 17:50:01 +0000378 std::copy(ToWide.begin(), ToWide.end(), &RenameInfo.FileName[0]);
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000379
Hans Wennborg477c9742017-10-12 17:38:22 +0000380 SetLastError(ERROR_SUCCESS);
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000381 if (!SetFileInformationByHandle(FromHandle, FileRenameInfo, &RenameInfo,
Hans Wennborg477c9742017-10-12 17:38:22 +0000382 RenameInfoBuf.size())) {
383 unsigned Error = GetLastError();
384 if (Error == ERROR_SUCCESS)
385 Error = ERROR_CALL_NOT_IMPLEMENTED; // Wine doesn't always set error code.
386 return mapWindowsError(Error);
387 }
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000388
389 return std::error_code();
390}
391
392std::error_code rename(const Twine &From, const Twine &To) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000393 // Convert to utf-16.
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000394 SmallVector<wchar_t, 128> WideFrom;
395 SmallVector<wchar_t, 128> WideTo;
396 if (std::error_code EC = widenPath(From, WideFrom))
397 return EC;
398 if (std::error_code EC = widenPath(To, WideTo))
399 return EC;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000400
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000401 ScopedFileHandle FromHandle;
402 // Retry this a few times to defeat badly behaved file system scanners.
403 for (unsigned Retry = 0; Retry != 200; ++Retry) {
404 if (Retry != 0)
405 ::Sleep(10);
406 FromHandle =
407 ::CreateFileW(WideFrom.begin(), GENERIC_READ | DELETE,
408 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
409 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
410 if (FromHandle)
411 break;
412 }
413 if (!FromHandle)
414 return mapWindowsError(GetLastError());
Greg Bedwell7f68a712015-10-12 15:11:47 +0000415
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000416 // We normally expect this loop to succeed after a few iterations. If it
417 // requires more than 200 tries, it's more likely that the failures are due to
418 // a true error, so stop trying.
419 for (unsigned Retry = 0; Retry != 200; ++Retry) {
420 auto EC = rename_internal(FromHandle, To, true);
Hans Wennborg17701ab2017-10-11 22:04:14 +0000421
422 if (EC ==
423 std::error_code(ERROR_CALL_NOT_IMPLEMENTED, std::system_category())) {
424 // Wine doesn't support SetFileInformationByHandle in rename_internal.
425 // Fall back to MoveFileEx.
426 if (::MoveFileExW(WideFrom.begin(), WideTo.begin(),
427 MOVEFILE_REPLACE_EXISTING))
428 return std::error_code();
429 return mapWindowsError(GetLastError());
430 }
431
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000432 if (!EC || EC != errc::permission_denied)
433 return EC;
Greg Bedwell7f68a712015-10-12 15:11:47 +0000434
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000435 // The destination file probably exists and is currently open in another
436 // process, either because the file was opened without FILE_SHARE_DELETE or
437 // it is mapped into memory (e.g. using MemoryBuffer). Rename it in order to
438 // move it out of the way of the source file. Use FILE_FLAG_DELETE_ON_CLOSE
439 // to arrange for the destination file to be deleted when the other process
440 // closes it.
441 ScopedFileHandle ToHandle(
442 ::CreateFileW(WideTo.begin(), GENERIC_READ | DELETE,
443 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
444 NULL, OPEN_EXISTING,
445 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, NULL));
446 if (!ToHandle) {
447 auto EC = mapWindowsError(GetLastError());
448 // Another process might have raced with us and moved the existing file
449 // out of the way before we had a chance to open it. If that happens, try
450 // to rename the source file again.
451 if (EC == errc::no_such_file_or_directory)
Sunil Srivastava34fce932016-03-25 23:41:28 +0000452 continue;
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000453 return EC;
Sunil Srivastava34fce932016-03-25 23:41:28 +0000454 }
Greg Bedwell7f68a712015-10-12 15:11:47 +0000455
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000456 BY_HANDLE_FILE_INFORMATION FI;
457 if (!GetFileInformationByHandle(ToHandle, &FI))
458 return mapWindowsError(GetLastError());
Greg Bedwell7f68a712015-10-12 15:11:47 +0000459
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000460 // Try to find a unique new name for the destination file.
461 for (unsigned UniqueId = 0; UniqueId != 200; ++UniqueId) {
462 std::string TmpFilename = (To + ".tmp" + utostr(UniqueId)).str();
463 if (auto EC = rename_internal(ToHandle, TmpFilename, false)) {
464 if (EC == errc::file_exists || EC == errc::permission_denied) {
465 // Again, another process might have raced with us and moved the file
466 // before we could move it. Check whether this is the case, as it
467 // might have caused the permission denied error. If that was the
468 // case, we don't need to move it ourselves.
469 ScopedFileHandle ToHandle2(::CreateFileW(
470 WideTo.begin(), 0,
471 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL,
472 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL));
473 if (!ToHandle2) {
474 auto EC = mapWindowsError(GetLastError());
475 if (EC == errc::no_such_file_or_directory)
476 break;
477 return EC;
478 }
479 BY_HANDLE_FILE_INFORMATION FI2;
480 if (!GetFileInformationByHandle(ToHandle2, &FI2))
481 return mapWindowsError(GetLastError());
482 if (FI.nFileIndexHigh != FI2.nFileIndexHigh ||
483 FI.nFileIndexLow != FI2.nFileIndexLow ||
484 FI.dwVolumeSerialNumber != FI2.dwVolumeSerialNumber)
485 break;
486 continue;
487 }
488 return EC;
489 }
490 break;
491 }
492
493 // Okay, the old destination file has probably been moved out of the way at
494 // this point, so try to rename the source file again. Still, another
495 // process might have raced with us to create and open the destination
496 // file, so we need to keep doing this until we succeed.
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000497 }
Michael J. Spencer409f5562010-12-03 17:53:55 +0000498
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000499 // The most likely root cause.
500 return errc::permission_denied;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000501}
502
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000503std::error_code resize_file(int FD, uint64_t Size) {
Michael J. Spencerca242f22010-12-03 18:48:56 +0000504#ifdef HAVE__CHSIZE_S
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000505 errno_t error = ::_chsize_s(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000506#else
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000507 errno_t error = ::_chsize(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000508#endif
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000509 return std::error_code(error, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000510}
511
Rafael Espindola281f23a2014-09-11 20:30:02 +0000512std::error_code access(const Twine &Path, AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000513 SmallVector<wchar_t, 128> PathUtf16;
Michael J. Spencer45710402010-12-03 01:21:28 +0000514
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000515 if (std::error_code EC = widenPath(Path, PathUtf16))
Rafael Espindola281f23a2014-09-11 20:30:02 +0000516 return EC;
Michael J. Spencer45710402010-12-03 01:21:28 +0000517
Rafael Espindola281f23a2014-09-11 20:30:02 +0000518 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
Michael J. Spencer45710402010-12-03 01:21:28 +0000519
Rafael Espindola281f23a2014-09-11 20:30:02 +0000520 if (Attributes == INVALID_FILE_ATTRIBUTES) {
Michael J. Spencer45710402010-12-03 01:21:28 +0000521 // See if the file didn't actually exist.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000522 DWORD LastError = ::GetLastError();
523 if (LastError != ERROR_FILE_NOT_FOUND &&
524 LastError != ERROR_PATH_NOT_FOUND)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000525 return mapWindowsError(LastError);
Rafael Espindola281f23a2014-09-11 20:30:02 +0000526 return errc::no_such_file_or_directory;
527 }
528
529 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
530 return errc::permission_denied;
531
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000532 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000533}
534
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000535bool can_execute(const Twine &Path) {
536 return !access(Path, AccessMode::Execute) ||
537 !access(Path + ".exe", AccessMode::Execute);
538}
539
Michael J. Spencer203d7802011-12-12 06:04:28 +0000540bool equivalent(file_status A, file_status B) {
541 assert(status_known(A) && status_known(B));
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000542 return A.FileIndexHigh == B.FileIndexHigh &&
543 A.FileIndexLow == B.FileIndexLow &&
544 A.FileSizeHigh == B.FileSizeHigh &&
545 A.FileSizeLow == B.FileSizeLow &&
546 A.LastAccessedTimeHigh == B.LastAccessedTimeHigh &&
547 A.LastAccessedTimeLow == B.LastAccessedTimeLow &&
548 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
549 A.LastWriteTimeLow == B.LastWriteTimeLow &&
550 A.VolumeSerialNumber == B.VolumeSerialNumber;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000551}
552
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000553std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000554 file_status fsA, fsB;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000555 if (std::error_code ec = status(A, fsA))
556 return ec;
557 if (std::error_code ec = status(B, fsB))
558 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000559 result = equivalent(fsA, fsB);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000560 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000561}
562
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000563static bool isReservedName(StringRef path) {
564 // This list of reserved names comes from MSDN, at:
565 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
Craig Topper26260942015-10-18 05:15:34 +0000566 static const char *const sReservedNames[] = { "nul", "con", "prn", "aux",
567 "com1", "com2", "com3", "com4",
568 "com5", "com6", "com7", "com8",
569 "com9", "lpt1", "lpt2", "lpt3",
570 "lpt4", "lpt5", "lpt6", "lpt7",
571 "lpt8", "lpt9" };
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000572
573 // First, check to see if this is a device namespace, which always
574 // starts with \\.\, since device namespaces are not legal file paths.
575 if (path.startswith("\\\\.\\"))
576 return true;
577
Douglas Yung091d8fd2016-05-03 00:12:59 +0000578 // Then compare against the list of ancient reserved names.
Craig Topper58713212013-07-15 04:27:47 +0000579 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000580 if (path.equals_lower(sReservedNames[i]))
581 return true;
582 }
583
584 // The path isn't what we consider reserved.
585 return false;
586}
587
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000588static file_type file_type_from_attrs(DWORD Attrs) {
589 return (Attrs & FILE_ATTRIBUTE_DIRECTORY) ? file_type::directory_file
590 : file_type::regular_file;
591}
592
593static perms perms_from_attrs(DWORD Attrs) {
594 return (Attrs & FILE_ATTRIBUTE_READONLY) ? (all_read | all_exe) : all_all;
595}
596
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000597static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000598 if (FileHandle == INVALID_HANDLE_VALUE)
599 goto handle_status_error;
600
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000601 switch (::GetFileType(FileHandle)) {
602 default:
Rafael Espindola81177c52013-07-18 18:42:52 +0000603 llvm_unreachable("Don't know anything about this file type");
604 case FILE_TYPE_UNKNOWN: {
605 DWORD Err = ::GetLastError();
606 if (Err != NO_ERROR)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000607 return mapWindowsError(Err);
Rafael Espindola81177c52013-07-18 18:42:52 +0000608 Result = file_status(file_type::type_unknown);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000609 return std::error_code();
Rafael Espindola81177c52013-07-18 18:42:52 +0000610 }
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000611 case FILE_TYPE_DISK:
612 break;
613 case FILE_TYPE_CHAR:
614 Result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000615 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000616 case FILE_TYPE_PIPE:
617 Result = file_status(file_type::fifo_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000618 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000619 }
620
Rafael Espindola77021c92013-07-16 03:20:13 +0000621 BY_HANDLE_FILE_INFORMATION Info;
622 if (!::GetFileInformationByHandle(FileHandle, &Info))
623 goto handle_status_error;
624
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000625 Result = file_status(
626 file_type_from_attrs(Info.dwFileAttributes),
627 perms_from_attrs(Info.dwFileAttributes), Info.nNumberOfLinks,
628 Info.ftLastAccessTime.dwHighDateTime, Info.ftLastAccessTime.dwLowDateTime,
629 Info.ftLastWriteTime.dwHighDateTime, Info.ftLastWriteTime.dwLowDateTime,
630 Info.dwVolumeSerialNumber, Info.nFileSizeHigh, Info.nFileSizeLow,
631 Info.nFileIndexHigh, Info.nFileIndexLow);
632 return std::error_code();
Aaron Ballman345012d2017-03-13 12:24:51 +0000633
Rafael Espindola77021c92013-07-16 03:20:13 +0000634handle_status_error:
Rafael Espindolaa813d602014-06-11 03:58:34 +0000635 DWORD LastError = ::GetLastError();
636 if (LastError == ERROR_FILE_NOT_FOUND ||
637 LastError == ERROR_PATH_NOT_FOUND)
Rafael Espindola77021c92013-07-16 03:20:13 +0000638 Result = file_status(file_type::file_not_found);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000639 else if (LastError == ERROR_SHARING_VIOLATION)
Rafael Espindola77021c92013-07-16 03:20:13 +0000640 Result = file_status(file_type::type_unknown);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000641 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000642 Result = file_status(file_type::status_error);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000643 return mapWindowsError(LastError);
Rafael Espindola77021c92013-07-16 03:20:13 +0000644}
645
Zachary Turner82dd5422017-03-07 16:10:10 +0000646std::error_code status(const Twine &path, file_status &result, bool Follow) {
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000647 SmallString<128> path_storage;
648 SmallVector<wchar_t, 128> path_utf16;
649
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000650 StringRef path8 = path.toStringRef(path_storage);
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000651 if (isReservedName(path8)) {
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000652 result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000653 return std::error_code();
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000654 }
655
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000656 if (std::error_code ec = widenPath(path8, path_utf16))
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000657 return ec;
658
659 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
660 if (attr == INVALID_FILE_ATTRIBUTES)
Rafael Espindola77021c92013-07-16 03:20:13 +0000661 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000662
Zachary Turner82dd5422017-03-07 16:10:10 +0000663 DWORD Flags = FILE_FLAG_BACKUP_SEMANTICS;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000664 // Handle reparse points.
Zachary Turner82dd5422017-03-07 16:10:10 +0000665 if (!Follow && (attr & FILE_ATTRIBUTE_REPARSE_POINT))
666 Flags |= FILE_FLAG_OPEN_REPARSE_POINT;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000667
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000668 ScopedFileHandle h(
669 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
Michael J. Spencer203d7802011-12-12 06:04:28 +0000670 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
Zachary Turner82dd5422017-03-07 16:10:10 +0000671 NULL, OPEN_EXISTING, Flags, 0));
672 if (!h)
673 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000674
Zachary Turner82dd5422017-03-07 16:10:10 +0000675 return getStatus(h, result);
Rafael Espindola77021c92013-07-16 03:20:13 +0000676}
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000677
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000678std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000679 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
Aaron Ballman345012d2017-03-13 12:24:51 +0000680 return getStatus(FileHandle, Result);
681}
682
James Henderson566fdf42017-03-16 11:22:09 +0000683std::error_code setPermissions(const Twine &Path, perms Permissions) {
684 SmallVector<wchar_t, 128> PathUTF16;
685 if (std::error_code EC = widenPath(Path, PathUTF16))
686 return EC;
687
688 DWORD Attributes = ::GetFileAttributesW(PathUTF16.begin());
689 if (Attributes == INVALID_FILE_ATTRIBUTES)
690 return mapWindowsError(GetLastError());
691
692 // There are many Windows file attributes that are not to do with the file
693 // permissions (e.g. FILE_ATTRIBUTE_HIDDEN). We need to be careful to preserve
694 // them.
695 if (Permissions & all_write) {
696 Attributes &= ~FILE_ATTRIBUTE_READONLY;
697 if (Attributes == 0)
698 // FILE_ATTRIBUTE_NORMAL indicates no other attributes are set.
699 Attributes |= FILE_ATTRIBUTE_NORMAL;
700 }
701 else {
702 Attributes |= FILE_ATTRIBUTE_READONLY;
703 // FILE_ATTRIBUTE_NORMAL is not compatible with any other attributes, so
704 // remove it, if it is present.
705 Attributes &= ~FILE_ATTRIBUTE_NORMAL;
706 }
707
708 if (!::SetFileAttributesW(PathUTF16.begin(), Attributes))
709 return mapWindowsError(GetLastError());
710
711 return std::error_code();
712}
713
Aaron Ballman345012d2017-03-13 12:24:51 +0000714std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
715 FILETIME FT = toFILETIME(Time);
716 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000717 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000718 return mapWindowsError(::GetLastError());
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000719 return std::error_code();
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000720}
Nick Kledzik18497e92012-06-20 00:28:54 +0000721
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000722std::error_code mapped_file_region::init(int FD, uint64_t Offset,
723 mapmode Mode) {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000724 // Make sure that the requested size fits within SIZE_T.
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000725 if (Size > std::numeric_limits<SIZE_T>::max())
Rafael Espindola2a826e42014-06-13 17:20:48 +0000726 return make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000727
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000728 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
729 if (FileHandle == INVALID_HANDLE_VALUE)
730 return make_error_code(errc::bad_file_descriptor);
731
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000732 DWORD flprotect;
733 switch (Mode) {
734 case readonly: flprotect = PAGE_READONLY; break;
735 case readwrite: flprotect = PAGE_READWRITE; break;
736 case priv: flprotect = PAGE_WRITECOPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000737 }
738
Rafael Espindola369d5142014-12-16 02:53:35 +0000739 HANDLE FileMappingHandle =
David Majnemer17a44962013-10-07 09:52:36 +0000740 ::CreateFileMappingW(FileHandle, 0, flprotect,
741 (Offset + Size) >> 32,
742 (Offset + Size) & 0xffffffff,
743 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000744 if (FileMappingHandle == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000745 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000746 return ec;
747 }
748
749 DWORD dwDesiredAccess;
750 switch (Mode) {
751 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
752 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
753 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000754 }
755 Mapping = ::MapViewOfFile(FileMappingHandle,
756 dwDesiredAccess,
757 Offset >> 32,
758 Offset & 0xffffffff,
759 Size);
760 if (Mapping == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000761 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000762 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000763 return ec;
764 }
765
766 if (Size == 0) {
767 MEMORY_BASIC_INFORMATION mbi;
768 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
769 if (Result == 0) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000770 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000771 ::UnmapViewOfFile(Mapping);
772 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000773 return ec;
774 }
775 Size = mbi.RegionSize;
776 }
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000777
778 // Close all the handles except for the view. It will keep the other handles
779 // alive.
780 ::CloseHandle(FileMappingHandle);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000781 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000782}
783
Roman Lebedev1e053ab2017-09-27 17:24:34 +0000784mapped_file_region::mapped_file_region(int fd, mapmode mode, size_t length,
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000785 uint64_t offset, std::error_code &ec)
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000786 : Size(length), Mapping() {
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000787 ec = init(fd, offset, mode);
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000788 if (ec)
Rafael Espindola369d5142014-12-16 02:53:35 +0000789 Mapping = 0;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000790}
791
792mapped_file_region::~mapped_file_region() {
793 if (Mapping)
794 ::UnmapViewOfFile(Mapping);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000795}
796
Roman Lebedev1e053ab2017-09-27 17:24:34 +0000797size_t mapped_file_region::size() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000798 assert(Mapping && "Mapping failed but used anyway!");
799 return Size;
800}
801
802char *mapped_file_region::data() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000803 assert(Mapping && "Mapping failed but used anyway!");
804 return reinterpret_cast<char*>(Mapping);
805}
806
807const char *mapped_file_region::const_data() const {
808 assert(Mapping && "Mapping failed but used anyway!");
809 return reinterpret_cast<const char*>(Mapping);
810}
811
812int mapped_file_region::alignment() {
813 SYSTEM_INFO SysInfo;
814 ::GetSystemInfo(&SysInfo);
815 return SysInfo.dwAllocationGranularity;
816}
817
Peter Collingbourneb4f1b882017-10-11 02:09:06 +0000818static basic_file_status status_from_find_data(WIN32_FIND_DATAW *FindData) {
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000819 return basic_file_status(file_type_from_attrs(FindData->dwFileAttributes),
820 perms_from_attrs(FindData->dwFileAttributes),
821 FindData->ftLastAccessTime.dwHighDateTime,
822 FindData->ftLastAccessTime.dwLowDateTime,
823 FindData->ftLastWriteTime.dwHighDateTime,
824 FindData->ftLastWriteTime.dwLowDateTime,
825 FindData->nFileSizeHigh, FindData->nFileSizeLow);
826}
827
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000828std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Zachary Turner260bda32017-03-08 22:49:32 +0000829 StringRef path,
830 bool follow_symlinks) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000831 SmallVector<wchar_t, 128> path_utf16;
832
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000833 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000834 return ec;
835
836 // Convert path to the format that Windows is happy with.
837 if (path_utf16.size() > 0 &&
838 !is_separator(path_utf16[path.size() - 1]) &&
839 path_utf16[path.size() - 1] != L':') {
840 path_utf16.push_back(L'\\');
841 path_utf16.push_back(L'*');
842 } else {
843 path_utf16.push_back(L'*');
844 }
845
846 // Get the first directory entry.
847 WIN32_FIND_DATAW FirstFind;
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000848 ScopedFindHandle FindHandle(::FindFirstFileExW(
849 c_str(path_utf16), FindExInfoBasic, &FirstFind, FindExSearchNameMatch,
850 NULL, FIND_FIRST_EX_LARGE_FETCH));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000851 if (!FindHandle)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000852 return mapWindowsError(::GetLastError());
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000853
Michael J. Spencer98879d72011-01-05 16:39:30 +0000854 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
855 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
856 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
857 FirstFind.cFileName[1] == L'.'))
858 if (!::FindNextFileW(FindHandle, &FirstFind)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000859 DWORD LastError = ::GetLastError();
Michael J. Spencer98879d72011-01-05 16:39:30 +0000860 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000861 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000862 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000863 return mapWindowsError(LastError);
Michael J. Spencer98879d72011-01-05 16:39:30 +0000864 } else
865 FilenameLen = ::wcslen(FirstFind.cFileName);
866
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000867 // Construct the current directory entry.
Michael J. Spencer98879d72011-01-05 16:39:30 +0000868 SmallString<128> directory_entry_name_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000869 if (std::error_code ec =
870 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
871 directory_entry_name_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000872 return ec;
873
874 it.IterationHandle = intptr_t(FindHandle.take());
Michael J. Spencer98879d72011-01-05 16:39:30 +0000875 SmallString<128> directory_entry_path(path);
Yaron Keren92e1b622015-03-18 10:17:07 +0000876 path::append(directory_entry_path, directory_entry_name_utf8);
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000877 it.CurrentEntry = directory_entry(directory_entry_path, follow_symlinks,
878 status_from_find_data(&FirstFind));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000879
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000880 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000881}
882
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000883std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000884 if (it.IterationHandle != 0)
885 // Closes the handle if it's valid.
886 ScopedFindHandle close(HANDLE(it.IterationHandle));
887 it.IterationHandle = 0;
888 it.CurrentEntry = directory_entry();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000889 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000890}
891
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000892std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000893 WIN32_FIND_DATAW FindData;
894 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000895 DWORD LastError = ::GetLastError();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000896 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000897 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000898 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000899 return mapWindowsError(LastError);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000900 }
901
Michael J. Spencer98879d72011-01-05 16:39:30 +0000902 size_t FilenameLen = ::wcslen(FindData.cFileName);
903 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
904 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
905 FindData.cFileName[1] == L'.'))
906 return directory_iterator_increment(it);
907
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000908 SmallString<128> directory_entry_path_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000909 if (std::error_code ec =
910 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
911 directory_entry_path_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000912 return ec;
913
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000914 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8),
915 status_from_find_data(&FindData));
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000916 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000917}
918
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000919ErrorOr<basic_file_status> directory_entry::status() const {
920 return Status;
921}
922
Zachary Turnere48ace62017-03-10 17:39:21 +0000923static std::error_code realPathFromHandle(HANDLE H,
924 SmallVectorImpl<char> &RealPath) {
925 RealPath.clear();
926 llvm::SmallVector<wchar_t, MAX_PATH> Buffer;
927 DWORD CountChars = ::GetFinalPathNameByHandleW(
928 H, Buffer.begin(), Buffer.capacity() - 1, FILE_NAME_NORMALIZED);
929 if (CountChars > Buffer.capacity()) {
930 // The buffer wasn't big enough, try again. In this case the return value
931 // *does* indicate the size of the null terminator.
932 Buffer.reserve(CountChars);
933 CountChars = ::GetFinalPathNameByHandleW(
934 H, Buffer.data(), Buffer.capacity() - 1, FILE_NAME_NORMALIZED);
935 }
936 if (CountChars == 0)
937 return mapWindowsError(GetLastError());
938
939 const wchar_t *Data = Buffer.data();
940 if (CountChars >= 4) {
941 if (0 == ::memcmp(Data, L"\\\\?\\", 8)) {
942 CountChars -= 4;
943 Data += 4;
944 }
945 }
946
947 // Convert the result from UTF-16 to UTF-8.
948 return UTF16ToUTF8(Data, CountChars, RealPath);
949}
950
951static std::error_code directoryRealPath(const Twine &Name,
952 SmallVectorImpl<char> &RealPath) {
953 SmallVector<wchar_t, 128> PathUTF16;
954
955 if (std::error_code EC = widenPath(Name, PathUTF16))
956 return EC;
957
958 HANDLE H =
959 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
960 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
961 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
962 if (H == INVALID_HANDLE_VALUE)
963 return mapWindowsError(GetLastError());
964 std::error_code EC = realPathFromHandle(H, RealPath);
965 ::CloseHandle(H);
966 return EC;
967}
968
Taewook Ohd9153272016-06-13 15:54:56 +0000969std::error_code openFileForRead(const Twine &Name, int &ResultFD,
970 SmallVectorImpl<char> *RealPath) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000971 SmallVector<wchar_t, 128> PathUTF16;
Nick Kledzik18497e92012-06-20 00:28:54 +0000972
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000973 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000974 return EC;
975
Greg Bedwell7f68a712015-10-12 15:11:47 +0000976 HANDLE H =
977 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
978 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
979 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000980 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000981 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +0000982 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola331aeba2013-07-17 19:58:28 +0000983 // Provide a better error message when trying to open directories.
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000984 // This only runs if we failed to open the file, so there is probably
985 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000986 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000987 return EC;
988 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000989 return make_error_code(errc::is_a_directory);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000990 return EC;
991 }
992
993 int FD = ::_open_osfhandle(intptr_t(H), 0);
994 if (FD == -1) {
995 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000996 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000997 }
998
Taewook Ohd9153272016-06-13 15:54:56 +0000999 // Fetch the real name of the file, if the user asked
Zachary Turnere48ace62017-03-10 17:39:21 +00001000 if (RealPath)
Zachary Turner3c0dc332017-03-10 18:33:41 +00001001 realPathFromHandle(H, *RealPath);
Taewook Ohd9153272016-06-13 15:54:56 +00001002
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +00001003 ResultFD = FD;
Zachary Turner3c0dc332017-03-10 18:33:41 +00001004 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +00001005}
Nick Kledzik18497e92012-06-20 00:28:54 +00001006
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001007std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +00001008 sys::fs::OpenFlags Flags, unsigned Mode) {
1009 // Verify that we don't have both "append" and "excl".
1010 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
1011 "Cannot specify both 'excl' and 'append' file creation flags!");
1012
Rafael Espindola67080ce2013-07-19 15:02:03 +00001013 SmallVector<wchar_t, 128> PathUTF16;
1014
Paul Robinsond9c4a9a2014-11-13 00:12:14 +00001015 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindola67080ce2013-07-19 15:02:03 +00001016 return EC;
1017
1018 DWORD CreationDisposition;
1019 if (Flags & F_Excl)
1020 CreationDisposition = CREATE_NEW;
NAKAMURA Takumiedf76152013-08-22 15:14:45 +00001021 else if (Flags & F_Append)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001022 CreationDisposition = OPEN_ALWAYS;
1023 else
1024 CreationDisposition = CREATE_ALWAYS;
1025
Rafael Espindola7a0b6402014-02-24 03:07:41 +00001026 DWORD Access = GENERIC_WRITE;
1027 if (Flags & F_RW)
1028 Access |= GENERIC_READ;
1029
Reid Klecknercefb3332017-08-04 21:52:00 +00001030 HANDLE H =
1031 ::CreateFileW(PathUTF16.begin(), Access,
1032 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
1033 NULL, CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001034
1035 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +00001036 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +00001037 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001038 // Provide a better error message when trying to open directories.
1039 // This only runs if we failed to open the file, so there is probably
1040 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +00001041 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001042 return EC;
1043 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +00001044 return make_error_code(errc::is_a_directory);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001045 return EC;
1046 }
1047
1048 int OpenFlags = 0;
1049 if (Flags & F_Append)
1050 OpenFlags |= _O_APPEND;
1051
Rafael Espindola90c7f1c2014-02-24 18:20:12 +00001052 if (Flags & F_Text)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001053 OpenFlags |= _O_TEXT;
1054
1055 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
1056 if (FD == -1) {
1057 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +00001058 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001059 }
1060
1061 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001062 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +00001063}
Taewook Ohd9153272016-06-13 15:54:56 +00001064
Zachary Turner260bda32017-03-08 22:49:32 +00001065std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
1066 // Convert to utf-16.
1067 SmallVector<wchar_t, 128> Path16;
1068 std::error_code EC = widenPath(path, Path16);
1069 if (EC && !IgnoreErrors)
1070 return EC;
1071
1072 // SHFileOperation() accepts a list of paths, and so must be double null-
1073 // terminated to indicate the end of the list. The buffer is already null
1074 // terminated, but since that null character is not considered part of the
1075 // vector's size, pushing another one will just consume that byte. So we
1076 // need to push 2 null terminators.
1077 Path16.push_back(0);
1078 Path16.push_back(0);
1079
1080 SHFILEOPSTRUCTW shfos = {};
1081 shfos.wFunc = FO_DELETE;
1082 shfos.pFrom = Path16.data();
1083 shfos.fFlags = FOF_NO_UI;
1084
1085 int result = ::SHFileOperationW(&shfos);
1086 if (result != 0 && !IgnoreErrors)
1087 return mapWindowsError(result);
1088 return std::error_code();
1089}
1090
Zachary Turnere48ace62017-03-10 17:39:21 +00001091static void expandTildeExpr(SmallVectorImpl<char> &Path) {
1092 // Path does not begin with a tilde expression.
1093 if (Path.empty() || Path[0] != '~')
1094 return;
1095
1096 StringRef PathStr(Path.begin(), Path.size());
1097 PathStr = PathStr.drop_front();
Zachary Turner5c5091f2017-03-16 22:28:04 +00001098 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
Zachary Turnere48ace62017-03-10 17:39:21 +00001099
1100 if (!Expr.empty()) {
1101 // This is probably a ~username/ expression. Don't support this on Windows.
1102 return;
1103 }
1104
1105 SmallString<128> HomeDir;
1106 if (!path::home_directory(HomeDir)) {
1107 // For some reason we couldn't get the home directory. Just exit.
1108 return;
1109 }
1110
1111 // Overwrite the first character and insert the rest.
1112 Path[0] = HomeDir[0];
1113 Path.insert(Path.begin() + 1, HomeDir.begin() + 1, HomeDir.end());
1114}
1115
1116std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
1117 bool expand_tilde) {
1118 dest.clear();
1119 if (path.isTriviallyEmpty())
1120 return std::error_code();
1121
1122 if (expand_tilde) {
1123 SmallString<128> Storage;
1124 path.toVector(Storage);
1125 expandTildeExpr(Storage);
1126 return real_path(Storage, dest, false);
1127 }
1128
1129 if (is_directory(path))
1130 return directoryRealPath(path, dest);
1131
1132 int fd;
1133 if (std::error_code EC = llvm::sys::fs::openFileForRead(path, fd, &dest))
1134 return EC;
1135 ::close(fd);
1136 return std::error_code();
1137}
1138
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +00001139} // end namespace fs
Rui Ueyama471d0c52013-09-10 19:45:51 +00001140
Peter Collingbournef7d41012014-01-31 23:46:06 +00001141namespace path {
Pawel Bylica7c1f36a2015-11-02 14:57:24 +00001142static bool getKnownFolderPath(KNOWNFOLDERID folderId,
1143 SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001144 wchar_t *path = nullptr;
1145 if (::SHGetKnownFolderPath(folderId, KF_FLAG_CREATE, nullptr, &path) != S_OK)
1146 return false;
1147
1148 bool ok = !UTF16ToUTF8(path, ::wcslen(path), result);
1149 ::CoTaskMemFree(path);
1150 return ok;
1151}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +00001152
1153bool getUserCacheDir(SmallVectorImpl<char> &Result) {
1154 return getKnownFolderPath(FOLDERID_LocalAppData, Result);
1155}
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001156
Peter Collingbournef7d41012014-01-31 23:46:06 +00001157bool home_directory(SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001158 return getKnownFolderPath(FOLDERID_Profile, result);
Peter Collingbournef7d41012014-01-31 23:46:06 +00001159}
1160
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001161static bool getTempDirEnvVar(const wchar_t *Var, SmallVectorImpl<char> &Res) {
Pawel Bylica6e680b22015-11-06 23:44:23 +00001162 SmallVector<wchar_t, 1024> Buf;
1163 size_t Size = 1024;
1164 do {
1165 Buf.reserve(Size);
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001166 Size = GetEnvironmentVariableW(Var, Buf.data(), Buf.capacity());
Pawel Bylica6e680b22015-11-06 23:44:23 +00001167 if (Size == 0)
1168 return false;
1169
1170 // Try again with larger buffer.
1171 } while (Size > Buf.capacity());
1172 Buf.set_size(Size);
1173
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001174 return !windows::UTF16ToUTF8(Buf.data(), Size, Res);
Pawel Bylica6e680b22015-11-06 23:44:23 +00001175}
1176
1177static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001178 const wchar_t *EnvironmentVariables[] = {L"TMP", L"TEMP", L"USERPROFILE"};
1179 for (auto *Env : EnvironmentVariables) {
Pawel Bylica6e680b22015-11-06 23:44:23 +00001180 if (getTempDirEnvVar(Env, Res))
1181 return true;
1182 }
1183 return false;
1184}
1185
Rafael Espindola016a6d52014-08-26 14:47:52 +00001186void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
1187 (void)ErasedOnReboot;
Pawel Bylica6e680b22015-11-06 23:44:23 +00001188 Result.clear();
Rafael Espindola016a6d52014-08-26 14:47:52 +00001189
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001190 // Check whether the temporary directory is specified by an environment var.
1191 // This matches GetTempPath logic to some degree. GetTempPath is not used
1192 // directly as it cannot handle evn var longer than 130 chars on Windows 7
1193 // (fixed on Windows 8).
1194 if (getTempDirEnvVar(Result)) {
1195 assert(!Result.empty() && "Unexpected empty path");
1196 native(Result); // Some Unix-like shells use Unix path separator in $TMP.
1197 fs::make_absolute(Result); // Make it absolute if not already.
Pawel Bylica6e680b22015-11-06 23:44:23 +00001198 return;
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001199 }
Rafael Espindola016a6d52014-08-26 14:47:52 +00001200
1201 // Fall back to a system default.
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001202 const char *DefaultResult = "C:\\Temp";
Rafael Espindola016a6d52014-08-26 14:47:52 +00001203 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
1204}
Peter Collingbournef7d41012014-01-31 23:46:06 +00001205} // end namespace path
1206
Rui Ueyama471d0c52013-09-10 19:45:51 +00001207namespace windows {
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001208std::error_code UTF8ToUTF16(llvm::StringRef utf8,
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001209 llvm::SmallVectorImpl<wchar_t> &utf16) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001210 if (!utf8.empty()) {
1211 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1212 utf8.size(), utf16.begin(), 0);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001213
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001214 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001215 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001216
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001217 utf16.reserve(len + 1);
1218 utf16.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001219
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001220 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1221 utf8.size(), utf16.begin(), utf16.size());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001222
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001223 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001224 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001225 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001226
1227 // Make utf16 null terminated.
1228 utf16.push_back(0);
1229 utf16.pop_back();
1230
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001231 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001232}
1233
Rafael Espindola9c359662014-09-03 20:02:00 +00001234static
1235std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
1236 size_t utf16_len,
1237 llvm::SmallVectorImpl<char> &utf8) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001238 if (utf16_len) {
1239 // Get length.
Rafael Espindola9c359662014-09-03 20:02:00 +00001240 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001241 0, NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001242
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001243 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001244 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001245
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001246 utf8.reserve(len);
1247 utf8.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001248
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001249 // Now do the actual conversion.
Rafael Espindola9c359662014-09-03 20:02:00 +00001250 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001251 utf8.size(), NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001252
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001253 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001254 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001255 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001256
1257 // Make utf8 null terminated.
1258 utf8.push_back(0);
1259 utf8.pop_back();
1260
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001261 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001262}
Rafael Espindola9c359662014-09-03 20:02:00 +00001263
1264std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
1265 llvm::SmallVectorImpl<char> &utf8) {
1266 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
1267}
1268
1269std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
1270 llvm::SmallVectorImpl<char> &utf8) {
1271 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
1272}
Taewook Ohd9153272016-06-13 15:54:56 +00001273
Rui Ueyama471d0c52013-09-10 19:45:51 +00001274} // end namespace windows
Michael J. Spencerebad2f92010-11-29 22:28:51 +00001275} // end namespace sys
1276} // end namespace llvm