blob: a81cd58cf4bbb694b81c0f24aaedbfc13b391773 [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
Pavel Labath757ca882016-10-24 10:59:17 +0000171TimePoint<> file_status::getLastAccessedTime() const {
172 FILETIME Time;
173 Time.dwLowDateTime = LastAccessedTimeLow;
174 Time.dwHighDateTime = LastAccessedTimeHigh;
175 return toTimePoint(Time);
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000176}
177
Pavel Labath757ca882016-10-24 10:59:17 +0000178TimePoint<> file_status::getLastModificationTime() const {
179 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
380 if (!SetFileInformationByHandle(FromHandle, FileRenameInfo, &RenameInfo,
381 RenameInfoBuf.size()))
382 return mapWindowsError(GetLastError());
383
384 return std::error_code();
385}
386
387std::error_code rename(const Twine &From, const Twine &To) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000388 // Convert to utf-16.
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000389 SmallVector<wchar_t, 128> WideFrom;
390 SmallVector<wchar_t, 128> WideTo;
391 if (std::error_code EC = widenPath(From, WideFrom))
392 return EC;
393 if (std::error_code EC = widenPath(To, WideTo))
394 return EC;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000395
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000396 ScopedFileHandle FromHandle;
397 // Retry this a few times to defeat badly behaved file system scanners.
398 for (unsigned Retry = 0; Retry != 200; ++Retry) {
399 if (Retry != 0)
400 ::Sleep(10);
401 FromHandle =
402 ::CreateFileW(WideFrom.begin(), GENERIC_READ | DELETE,
403 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
404 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
405 if (FromHandle)
406 break;
407 }
408 if (!FromHandle)
409 return mapWindowsError(GetLastError());
Greg Bedwell7f68a712015-10-12 15:11:47 +0000410
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000411 // We normally expect this loop to succeed after a few iterations. If it
412 // requires more than 200 tries, it's more likely that the failures are due to
413 // a true error, so stop trying.
414 for (unsigned Retry = 0; Retry != 200; ++Retry) {
415 auto EC = rename_internal(FromHandle, To, true);
416 if (!EC || EC != errc::permission_denied)
417 return EC;
Greg Bedwell7f68a712015-10-12 15:11:47 +0000418
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000419 // The destination file probably exists and is currently open in another
420 // process, either because the file was opened without FILE_SHARE_DELETE or
421 // it is mapped into memory (e.g. using MemoryBuffer). Rename it in order to
422 // move it out of the way of the source file. Use FILE_FLAG_DELETE_ON_CLOSE
423 // to arrange for the destination file to be deleted when the other process
424 // closes it.
425 ScopedFileHandle ToHandle(
426 ::CreateFileW(WideTo.begin(), GENERIC_READ | DELETE,
427 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
428 NULL, OPEN_EXISTING,
429 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, NULL));
430 if (!ToHandle) {
431 auto EC = mapWindowsError(GetLastError());
432 // Another process might have raced with us and moved the existing file
433 // out of the way before we had a chance to open it. If that happens, try
434 // to rename the source file again.
435 if (EC == errc::no_such_file_or_directory)
Sunil Srivastava34fce932016-03-25 23:41:28 +0000436 continue;
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000437 return EC;
Sunil Srivastava34fce932016-03-25 23:41:28 +0000438 }
Greg Bedwell7f68a712015-10-12 15:11:47 +0000439
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000440 BY_HANDLE_FILE_INFORMATION FI;
441 if (!GetFileInformationByHandle(ToHandle, &FI))
442 return mapWindowsError(GetLastError());
Greg Bedwell7f68a712015-10-12 15:11:47 +0000443
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000444 // Try to find a unique new name for the destination file.
445 for (unsigned UniqueId = 0; UniqueId != 200; ++UniqueId) {
446 std::string TmpFilename = (To + ".tmp" + utostr(UniqueId)).str();
447 if (auto EC = rename_internal(ToHandle, TmpFilename, false)) {
448 if (EC == errc::file_exists || EC == errc::permission_denied) {
449 // Again, another process might have raced with us and moved the file
450 // before we could move it. Check whether this is the case, as it
451 // might have caused the permission denied error. If that was the
452 // case, we don't need to move it ourselves.
453 ScopedFileHandle ToHandle2(::CreateFileW(
454 WideTo.begin(), 0,
455 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL,
456 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL));
457 if (!ToHandle2) {
458 auto EC = mapWindowsError(GetLastError());
459 if (EC == errc::no_such_file_or_directory)
460 break;
461 return EC;
462 }
463 BY_HANDLE_FILE_INFORMATION FI2;
464 if (!GetFileInformationByHandle(ToHandle2, &FI2))
465 return mapWindowsError(GetLastError());
466 if (FI.nFileIndexHigh != FI2.nFileIndexHigh ||
467 FI.nFileIndexLow != FI2.nFileIndexLow ||
468 FI.dwVolumeSerialNumber != FI2.dwVolumeSerialNumber)
469 break;
470 continue;
471 }
472 return EC;
473 }
474 break;
475 }
476
477 // Okay, the old destination file has probably been moved out of the way at
478 // this point, so try to rename the source file again. Still, another
479 // process might have raced with us to create and open the destination
480 // file, so we need to keep doing this until we succeed.
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000481 }
Michael J. Spencer409f5562010-12-03 17:53:55 +0000482
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000483 // The most likely root cause.
484 return errc::permission_denied;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000485}
486
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000487std::error_code resize_file(int FD, uint64_t Size) {
Michael J. Spencerca242f22010-12-03 18:48:56 +0000488#ifdef HAVE__CHSIZE_S
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000489 errno_t error = ::_chsize_s(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000490#else
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000491 errno_t error = ::_chsize(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000492#endif
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000493 return std::error_code(error, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000494}
495
Rafael Espindola281f23a2014-09-11 20:30:02 +0000496std::error_code access(const Twine &Path, AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000497 SmallVector<wchar_t, 128> PathUtf16;
Michael J. Spencer45710402010-12-03 01:21:28 +0000498
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000499 if (std::error_code EC = widenPath(Path, PathUtf16))
Rafael Espindola281f23a2014-09-11 20:30:02 +0000500 return EC;
Michael J. Spencer45710402010-12-03 01:21:28 +0000501
Rafael Espindola281f23a2014-09-11 20:30:02 +0000502 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
Michael J. Spencer45710402010-12-03 01:21:28 +0000503
Rafael Espindola281f23a2014-09-11 20:30:02 +0000504 if (Attributes == INVALID_FILE_ATTRIBUTES) {
Michael J. Spencer45710402010-12-03 01:21:28 +0000505 // See if the file didn't actually exist.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000506 DWORD LastError = ::GetLastError();
507 if (LastError != ERROR_FILE_NOT_FOUND &&
508 LastError != ERROR_PATH_NOT_FOUND)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000509 return mapWindowsError(LastError);
Rafael Espindola281f23a2014-09-11 20:30:02 +0000510 return errc::no_such_file_or_directory;
511 }
512
513 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
514 return errc::permission_denied;
515
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000516 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000517}
518
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000519bool can_execute(const Twine &Path) {
520 return !access(Path, AccessMode::Execute) ||
521 !access(Path + ".exe", AccessMode::Execute);
522}
523
Michael J. Spencer203d7802011-12-12 06:04:28 +0000524bool equivalent(file_status A, file_status B) {
525 assert(status_known(A) && status_known(B));
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000526 return A.FileIndexHigh == B.FileIndexHigh &&
527 A.FileIndexLow == B.FileIndexLow &&
528 A.FileSizeHigh == B.FileSizeHigh &&
529 A.FileSizeLow == B.FileSizeLow &&
530 A.LastAccessedTimeHigh == B.LastAccessedTimeHigh &&
531 A.LastAccessedTimeLow == B.LastAccessedTimeLow &&
532 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
533 A.LastWriteTimeLow == B.LastWriteTimeLow &&
534 A.VolumeSerialNumber == B.VolumeSerialNumber;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000535}
536
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000537std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000538 file_status fsA, fsB;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000539 if (std::error_code ec = status(A, fsA))
540 return ec;
541 if (std::error_code ec = status(B, fsB))
542 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000543 result = equivalent(fsA, fsB);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000544 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000545}
546
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000547static bool isReservedName(StringRef path) {
548 // This list of reserved names comes from MSDN, at:
549 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
Craig Topper26260942015-10-18 05:15:34 +0000550 static const char *const sReservedNames[] = { "nul", "con", "prn", "aux",
551 "com1", "com2", "com3", "com4",
552 "com5", "com6", "com7", "com8",
553 "com9", "lpt1", "lpt2", "lpt3",
554 "lpt4", "lpt5", "lpt6", "lpt7",
555 "lpt8", "lpt9" };
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000556
557 // First, check to see if this is a device namespace, which always
558 // starts with \\.\, since device namespaces are not legal file paths.
559 if (path.startswith("\\\\.\\"))
560 return true;
561
Douglas Yung091d8fd2016-05-03 00:12:59 +0000562 // Then compare against the list of ancient reserved names.
Craig Topper58713212013-07-15 04:27:47 +0000563 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000564 if (path.equals_lower(sReservedNames[i]))
565 return true;
566 }
567
568 // The path isn't what we consider reserved.
569 return false;
570}
571
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000572static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000573 if (FileHandle == INVALID_HANDLE_VALUE)
574 goto handle_status_error;
575
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000576 switch (::GetFileType(FileHandle)) {
577 default:
Rafael Espindola81177c52013-07-18 18:42:52 +0000578 llvm_unreachable("Don't know anything about this file type");
579 case FILE_TYPE_UNKNOWN: {
580 DWORD Err = ::GetLastError();
581 if (Err != NO_ERROR)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000582 return mapWindowsError(Err);
Rafael Espindola81177c52013-07-18 18:42:52 +0000583 Result = file_status(file_type::type_unknown);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000584 return std::error_code();
Rafael Espindola81177c52013-07-18 18:42:52 +0000585 }
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000586 case FILE_TYPE_DISK:
587 break;
588 case FILE_TYPE_CHAR:
589 Result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000590 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000591 case FILE_TYPE_PIPE:
592 Result = file_status(file_type::fifo_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000593 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000594 }
595
Rafael Espindola77021c92013-07-16 03:20:13 +0000596 BY_HANDLE_FILE_INFORMATION Info;
597 if (!::GetFileInformationByHandle(FileHandle, &Info))
598 goto handle_status_error;
599
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000600 {
Aaron Ballman345012d2017-03-13 12:24:51 +0000601 file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
602 ? file_type::directory_file
603 : file_type::regular_file;
James Henderson566fdf42017-03-16 11:22:09 +0000604 perms Permissions = (Info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
605 ? (all_read | all_exe)
606 : all_all;
607 Result = file_status(
Zachary Turner5821a3b2017-03-20 23:55:20 +0000608 Type, Permissions, Info.nNumberOfLinks,
609 Info.ftLastAccessTime.dwHighDateTime,
James Henderson566fdf42017-03-16 11:22:09 +0000610 Info.ftLastAccessTime.dwLowDateTime,
611 Info.ftLastWriteTime.dwHighDateTime, Info.ftLastWriteTime.dwLowDateTime,
612 Info.dwVolumeSerialNumber, Info.nFileSizeHigh, Info.nFileSizeLow,
613 Info.nFileIndexHigh, Info.nFileIndexLow);
Aaron Ballman345012d2017-03-13 12:24:51 +0000614 return std::error_code();
615 }
616
Rafael Espindola77021c92013-07-16 03:20:13 +0000617handle_status_error:
Rafael Espindolaa813d602014-06-11 03:58:34 +0000618 DWORD LastError = ::GetLastError();
619 if (LastError == ERROR_FILE_NOT_FOUND ||
620 LastError == ERROR_PATH_NOT_FOUND)
Rafael Espindola77021c92013-07-16 03:20:13 +0000621 Result = file_status(file_type::file_not_found);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000622 else if (LastError == ERROR_SHARING_VIOLATION)
Rafael Espindola77021c92013-07-16 03:20:13 +0000623 Result = file_status(file_type::type_unknown);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000624 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000625 Result = file_status(file_type::status_error);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000626 return mapWindowsError(LastError);
Rafael Espindola77021c92013-07-16 03:20:13 +0000627}
628
Zachary Turner82dd5422017-03-07 16:10:10 +0000629std::error_code status(const Twine &path, file_status &result, bool Follow) {
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000630 SmallString<128> path_storage;
631 SmallVector<wchar_t, 128> path_utf16;
632
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000633 StringRef path8 = path.toStringRef(path_storage);
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000634 if (isReservedName(path8)) {
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000635 result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000636 return std::error_code();
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000637 }
638
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000639 if (std::error_code ec = widenPath(path8, path_utf16))
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000640 return ec;
641
642 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
643 if (attr == INVALID_FILE_ATTRIBUTES)
Rafael Espindola77021c92013-07-16 03:20:13 +0000644 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000645
Zachary Turner82dd5422017-03-07 16:10:10 +0000646 DWORD Flags = FILE_FLAG_BACKUP_SEMANTICS;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000647 // Handle reparse points.
Zachary Turner82dd5422017-03-07 16:10:10 +0000648 if (!Follow && (attr & FILE_ATTRIBUTE_REPARSE_POINT))
649 Flags |= FILE_FLAG_OPEN_REPARSE_POINT;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000650
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000651 ScopedFileHandle h(
652 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
Michael J. Spencer203d7802011-12-12 06:04:28 +0000653 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
Zachary Turner82dd5422017-03-07 16:10:10 +0000654 NULL, OPEN_EXISTING, Flags, 0));
655 if (!h)
656 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000657
Zachary Turner82dd5422017-03-07 16:10:10 +0000658 return getStatus(h, result);
Rafael Espindola77021c92013-07-16 03:20:13 +0000659}
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000660
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000661std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000662 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
Aaron Ballman345012d2017-03-13 12:24:51 +0000663 return getStatus(FileHandle, Result);
664}
665
James Henderson566fdf42017-03-16 11:22:09 +0000666std::error_code setPermissions(const Twine &Path, perms Permissions) {
667 SmallVector<wchar_t, 128> PathUTF16;
668 if (std::error_code EC = widenPath(Path, PathUTF16))
669 return EC;
670
671 DWORD Attributes = ::GetFileAttributesW(PathUTF16.begin());
672 if (Attributes == INVALID_FILE_ATTRIBUTES)
673 return mapWindowsError(GetLastError());
674
675 // There are many Windows file attributes that are not to do with the file
676 // permissions (e.g. FILE_ATTRIBUTE_HIDDEN). We need to be careful to preserve
677 // them.
678 if (Permissions & all_write) {
679 Attributes &= ~FILE_ATTRIBUTE_READONLY;
680 if (Attributes == 0)
681 // FILE_ATTRIBUTE_NORMAL indicates no other attributes are set.
682 Attributes |= FILE_ATTRIBUTE_NORMAL;
683 }
684 else {
685 Attributes |= FILE_ATTRIBUTE_READONLY;
686 // FILE_ATTRIBUTE_NORMAL is not compatible with any other attributes, so
687 // remove it, if it is present.
688 Attributes &= ~FILE_ATTRIBUTE_NORMAL;
689 }
690
691 if (!::SetFileAttributesW(PathUTF16.begin(), Attributes))
692 return mapWindowsError(GetLastError());
693
694 return std::error_code();
695}
696
Aaron Ballman345012d2017-03-13 12:24:51 +0000697std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
698 FILETIME FT = toFILETIME(Time);
699 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000700 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000701 return mapWindowsError(::GetLastError());
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000702 return std::error_code();
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000703}
Nick Kledzik18497e92012-06-20 00:28:54 +0000704
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000705std::error_code mapped_file_region::init(int FD, uint64_t Offset,
706 mapmode Mode) {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000707 // Make sure that the requested size fits within SIZE_T.
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000708 if (Size > std::numeric_limits<SIZE_T>::max())
Rafael Espindola2a826e42014-06-13 17:20:48 +0000709 return make_error_code(errc::invalid_argument);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000710
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000711 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
712 if (FileHandle == INVALID_HANDLE_VALUE)
713 return make_error_code(errc::bad_file_descriptor);
714
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000715 DWORD flprotect;
716 switch (Mode) {
717 case readonly: flprotect = PAGE_READONLY; break;
718 case readwrite: flprotect = PAGE_READWRITE; break;
719 case priv: flprotect = PAGE_WRITECOPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000720 }
721
Rafael Espindola369d5142014-12-16 02:53:35 +0000722 HANDLE FileMappingHandle =
David Majnemer17a44962013-10-07 09:52:36 +0000723 ::CreateFileMappingW(FileHandle, 0, flprotect,
724 (Offset + Size) >> 32,
725 (Offset + Size) & 0xffffffff,
726 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000727 if (FileMappingHandle == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000728 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000729 return ec;
730 }
731
732 DWORD dwDesiredAccess;
733 switch (Mode) {
734 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
735 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
736 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000737 }
738 Mapping = ::MapViewOfFile(FileMappingHandle,
739 dwDesiredAccess,
740 Offset >> 32,
741 Offset & 0xffffffff,
742 Size);
743 if (Mapping == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000744 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000745 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000746 return ec;
747 }
748
749 if (Size == 0) {
750 MEMORY_BASIC_INFORMATION mbi;
751 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
752 if (Result == 0) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000753 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000754 ::UnmapViewOfFile(Mapping);
755 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000756 return ec;
757 }
758 Size = mbi.RegionSize;
759 }
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000760
761 // Close all the handles except for the view. It will keep the other handles
762 // alive.
763 ::CloseHandle(FileMappingHandle);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000764 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000765}
766
Roman Lebedev1e053ab2017-09-27 17:24:34 +0000767mapped_file_region::mapped_file_region(int fd, mapmode mode, size_t length,
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000768 uint64_t offset, std::error_code &ec)
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000769 : Size(length), Mapping() {
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000770 ec = init(fd, offset, mode);
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000771 if (ec)
Rafael Espindola369d5142014-12-16 02:53:35 +0000772 Mapping = 0;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000773}
774
775mapped_file_region::~mapped_file_region() {
776 if (Mapping)
777 ::UnmapViewOfFile(Mapping);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000778}
779
Roman Lebedev1e053ab2017-09-27 17:24:34 +0000780size_t mapped_file_region::size() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000781 assert(Mapping && "Mapping failed but used anyway!");
782 return Size;
783}
784
785char *mapped_file_region::data() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000786 assert(Mapping && "Mapping failed but used anyway!");
787 return reinterpret_cast<char*>(Mapping);
788}
789
790const char *mapped_file_region::const_data() const {
791 assert(Mapping && "Mapping failed but used anyway!");
792 return reinterpret_cast<const char*>(Mapping);
793}
794
795int mapped_file_region::alignment() {
796 SYSTEM_INFO SysInfo;
797 ::GetSystemInfo(&SysInfo);
798 return SysInfo.dwAllocationGranularity;
799}
800
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000801std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Zachary Turner260bda32017-03-08 22:49:32 +0000802 StringRef path,
803 bool follow_symlinks) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000804 SmallVector<wchar_t, 128> path_utf16;
805
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000806 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000807 return ec;
808
809 // Convert path to the format that Windows is happy with.
810 if (path_utf16.size() > 0 &&
811 !is_separator(path_utf16[path.size() - 1]) &&
812 path_utf16[path.size() - 1] != L':') {
813 path_utf16.push_back(L'\\');
814 path_utf16.push_back(L'*');
815 } else {
816 path_utf16.push_back(L'*');
817 }
818
819 // Get the first directory entry.
820 WIN32_FIND_DATAW FirstFind;
Michael J. Spencer751e9aa2010-12-09 17:37:18 +0000821 ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000822 if (!FindHandle)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000823 return mapWindowsError(::GetLastError());
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000824
Michael J. Spencer98879d72011-01-05 16:39:30 +0000825 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
826 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
827 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
828 FirstFind.cFileName[1] == L'.'))
829 if (!::FindNextFileW(FindHandle, &FirstFind)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000830 DWORD LastError = ::GetLastError();
Michael J. Spencer98879d72011-01-05 16:39:30 +0000831 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000832 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000833 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000834 return mapWindowsError(LastError);
Michael J. Spencer98879d72011-01-05 16:39:30 +0000835 } else
836 FilenameLen = ::wcslen(FirstFind.cFileName);
837
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000838 // Construct the current directory entry.
Michael J. Spencer98879d72011-01-05 16:39:30 +0000839 SmallString<128> directory_entry_name_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000840 if (std::error_code ec =
841 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
842 directory_entry_name_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000843 return ec;
844
845 it.IterationHandle = intptr_t(FindHandle.take());
Michael J. Spencer98879d72011-01-05 16:39:30 +0000846 SmallString<128> directory_entry_path(path);
Yaron Keren92e1b622015-03-18 10:17:07 +0000847 path::append(directory_entry_path, directory_entry_name_utf8);
Zachary Turner260bda32017-03-08 22:49:32 +0000848 it.CurrentEntry = directory_entry(directory_entry_path, follow_symlinks);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000849
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000850 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000851}
852
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000853std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000854 if (it.IterationHandle != 0)
855 // Closes the handle if it's valid.
856 ScopedFindHandle close(HANDLE(it.IterationHandle));
857 it.IterationHandle = 0;
858 it.CurrentEntry = directory_entry();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000859 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000860}
861
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000862std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000863 WIN32_FIND_DATAW FindData;
864 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000865 DWORD LastError = ::GetLastError();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000866 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000867 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000868 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000869 return mapWindowsError(LastError);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000870 }
871
Michael J. Spencer98879d72011-01-05 16:39:30 +0000872 size_t FilenameLen = ::wcslen(FindData.cFileName);
873 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
874 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
875 FindData.cFileName[1] == L'.'))
876 return directory_iterator_increment(it);
877
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000878 SmallString<128> directory_entry_path_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000879 if (std::error_code ec =
880 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
881 directory_entry_path_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000882 return ec;
883
884 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000885 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000886}
887
Zachary Turnere48ace62017-03-10 17:39:21 +0000888static std::error_code realPathFromHandle(HANDLE H,
889 SmallVectorImpl<char> &RealPath) {
890 RealPath.clear();
891 llvm::SmallVector<wchar_t, MAX_PATH> Buffer;
892 DWORD CountChars = ::GetFinalPathNameByHandleW(
893 H, Buffer.begin(), Buffer.capacity() - 1, FILE_NAME_NORMALIZED);
894 if (CountChars > Buffer.capacity()) {
895 // The buffer wasn't big enough, try again. In this case the return value
896 // *does* indicate the size of the null terminator.
897 Buffer.reserve(CountChars);
898 CountChars = ::GetFinalPathNameByHandleW(
899 H, Buffer.data(), Buffer.capacity() - 1, FILE_NAME_NORMALIZED);
900 }
901 if (CountChars == 0)
902 return mapWindowsError(GetLastError());
903
904 const wchar_t *Data = Buffer.data();
905 if (CountChars >= 4) {
906 if (0 == ::memcmp(Data, L"\\\\?\\", 8)) {
907 CountChars -= 4;
908 Data += 4;
909 }
910 }
911
912 // Convert the result from UTF-16 to UTF-8.
913 return UTF16ToUTF8(Data, CountChars, RealPath);
914}
915
916static std::error_code directoryRealPath(const Twine &Name,
917 SmallVectorImpl<char> &RealPath) {
918 SmallVector<wchar_t, 128> PathUTF16;
919
920 if (std::error_code EC = widenPath(Name, PathUTF16))
921 return EC;
922
923 HANDLE H =
924 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
925 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
926 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
927 if (H == INVALID_HANDLE_VALUE)
928 return mapWindowsError(GetLastError());
929 std::error_code EC = realPathFromHandle(H, RealPath);
930 ::CloseHandle(H);
931 return EC;
932}
933
Taewook Ohd9153272016-06-13 15:54:56 +0000934std::error_code openFileForRead(const Twine &Name, int &ResultFD,
935 SmallVectorImpl<char> *RealPath) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000936 SmallVector<wchar_t, 128> PathUTF16;
Nick Kledzik18497e92012-06-20 00:28:54 +0000937
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000938 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000939 return EC;
940
Greg Bedwell7f68a712015-10-12 15:11:47 +0000941 HANDLE H =
942 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
943 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
944 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000945 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000946 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +0000947 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola331aeba2013-07-17 19:58:28 +0000948 // Provide a better error message when trying to open directories.
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000949 // This only runs if we failed to open the file, so there is probably
950 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000951 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000952 return EC;
953 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000954 return make_error_code(errc::is_a_directory);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000955 return EC;
956 }
957
958 int FD = ::_open_osfhandle(intptr_t(H), 0);
959 if (FD == -1) {
960 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000961 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000962 }
963
Taewook Ohd9153272016-06-13 15:54:56 +0000964 // Fetch the real name of the file, if the user asked
Zachary Turnere48ace62017-03-10 17:39:21 +0000965 if (RealPath)
Zachary Turner3c0dc332017-03-10 18:33:41 +0000966 realPathFromHandle(H, *RealPath);
Taewook Ohd9153272016-06-13 15:54:56 +0000967
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000968 ResultFD = FD;
Zachary Turner3c0dc332017-03-10 18:33:41 +0000969 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000970}
Nick Kledzik18497e92012-06-20 00:28:54 +0000971
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000972std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +0000973 sys::fs::OpenFlags Flags, unsigned Mode) {
974 // Verify that we don't have both "append" and "excl".
975 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
976 "Cannot specify both 'excl' and 'append' file creation flags!");
977
Rafael Espindola67080ce2013-07-19 15:02:03 +0000978 SmallVector<wchar_t, 128> PathUTF16;
979
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000980 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindola67080ce2013-07-19 15:02:03 +0000981 return EC;
982
983 DWORD CreationDisposition;
984 if (Flags & F_Excl)
985 CreationDisposition = CREATE_NEW;
NAKAMURA Takumiedf76152013-08-22 15:14:45 +0000986 else if (Flags & F_Append)
Rafael Espindola67080ce2013-07-19 15:02:03 +0000987 CreationDisposition = OPEN_ALWAYS;
988 else
989 CreationDisposition = CREATE_ALWAYS;
990
Rafael Espindola7a0b6402014-02-24 03:07:41 +0000991 DWORD Access = GENERIC_WRITE;
992 if (Flags & F_RW)
993 Access |= GENERIC_READ;
994
Reid Klecknercefb3332017-08-04 21:52:00 +0000995 HANDLE H =
996 ::CreateFileW(PathUTF16.begin(), Access,
997 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
998 NULL, CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindola67080ce2013-07-19 15:02:03 +0000999
1000 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +00001001 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +00001002 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001003 // Provide a better error message when trying to open directories.
1004 // This only runs if we failed to open the file, so there is probably
1005 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +00001006 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001007 return EC;
1008 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +00001009 return make_error_code(errc::is_a_directory);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001010 return EC;
1011 }
1012
1013 int OpenFlags = 0;
1014 if (Flags & F_Append)
1015 OpenFlags |= _O_APPEND;
1016
Rafael Espindola90c7f1c2014-02-24 18:20:12 +00001017 if (Flags & F_Text)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001018 OpenFlags |= _O_TEXT;
1019
1020 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
1021 if (FD == -1) {
1022 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +00001023 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001024 }
1025
1026 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001027 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +00001028}
Taewook Ohd9153272016-06-13 15:54:56 +00001029
Zachary Turner260bda32017-03-08 22:49:32 +00001030std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
1031 // Convert to utf-16.
1032 SmallVector<wchar_t, 128> Path16;
1033 std::error_code EC = widenPath(path, Path16);
1034 if (EC && !IgnoreErrors)
1035 return EC;
1036
1037 // SHFileOperation() accepts a list of paths, and so must be double null-
1038 // terminated to indicate the end of the list. The buffer is already null
1039 // terminated, but since that null character is not considered part of the
1040 // vector's size, pushing another one will just consume that byte. So we
1041 // need to push 2 null terminators.
1042 Path16.push_back(0);
1043 Path16.push_back(0);
1044
1045 SHFILEOPSTRUCTW shfos = {};
1046 shfos.wFunc = FO_DELETE;
1047 shfos.pFrom = Path16.data();
1048 shfos.fFlags = FOF_NO_UI;
1049
1050 int result = ::SHFileOperationW(&shfos);
1051 if (result != 0 && !IgnoreErrors)
1052 return mapWindowsError(result);
1053 return std::error_code();
1054}
1055
Zachary Turnere48ace62017-03-10 17:39:21 +00001056static void expandTildeExpr(SmallVectorImpl<char> &Path) {
1057 // Path does not begin with a tilde expression.
1058 if (Path.empty() || Path[0] != '~')
1059 return;
1060
1061 StringRef PathStr(Path.begin(), Path.size());
1062 PathStr = PathStr.drop_front();
Zachary Turner5c5091f2017-03-16 22:28:04 +00001063 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
Zachary Turnere48ace62017-03-10 17:39:21 +00001064
1065 if (!Expr.empty()) {
1066 // This is probably a ~username/ expression. Don't support this on Windows.
1067 return;
1068 }
1069
1070 SmallString<128> HomeDir;
1071 if (!path::home_directory(HomeDir)) {
1072 // For some reason we couldn't get the home directory. Just exit.
1073 return;
1074 }
1075
1076 // Overwrite the first character and insert the rest.
1077 Path[0] = HomeDir[0];
1078 Path.insert(Path.begin() + 1, HomeDir.begin() + 1, HomeDir.end());
1079}
1080
1081std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
1082 bool expand_tilde) {
1083 dest.clear();
1084 if (path.isTriviallyEmpty())
1085 return std::error_code();
1086
1087 if (expand_tilde) {
1088 SmallString<128> Storage;
1089 path.toVector(Storage);
1090 expandTildeExpr(Storage);
1091 return real_path(Storage, dest, false);
1092 }
1093
1094 if (is_directory(path))
1095 return directoryRealPath(path, dest);
1096
1097 int fd;
1098 if (std::error_code EC = llvm::sys::fs::openFileForRead(path, fd, &dest))
1099 return EC;
1100 ::close(fd);
1101 return std::error_code();
1102}
1103
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +00001104} // end namespace fs
Rui Ueyama471d0c52013-09-10 19:45:51 +00001105
Peter Collingbournef7d41012014-01-31 23:46:06 +00001106namespace path {
Pawel Bylica7c1f36a2015-11-02 14:57:24 +00001107static bool getKnownFolderPath(KNOWNFOLDERID folderId,
1108 SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001109 wchar_t *path = nullptr;
1110 if (::SHGetKnownFolderPath(folderId, KF_FLAG_CREATE, nullptr, &path) != S_OK)
1111 return false;
1112
1113 bool ok = !UTF16ToUTF8(path, ::wcslen(path), result);
1114 ::CoTaskMemFree(path);
1115 return ok;
1116}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +00001117
1118bool getUserCacheDir(SmallVectorImpl<char> &Result) {
1119 return getKnownFolderPath(FOLDERID_LocalAppData, Result);
1120}
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001121
Peter Collingbournef7d41012014-01-31 23:46:06 +00001122bool home_directory(SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001123 return getKnownFolderPath(FOLDERID_Profile, result);
Peter Collingbournef7d41012014-01-31 23:46:06 +00001124}
1125
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001126static bool getTempDirEnvVar(const wchar_t *Var, SmallVectorImpl<char> &Res) {
Pawel Bylica6e680b22015-11-06 23:44:23 +00001127 SmallVector<wchar_t, 1024> Buf;
1128 size_t Size = 1024;
1129 do {
1130 Buf.reserve(Size);
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001131 Size = GetEnvironmentVariableW(Var, Buf.data(), Buf.capacity());
Pawel Bylica6e680b22015-11-06 23:44:23 +00001132 if (Size == 0)
1133 return false;
1134
1135 // Try again with larger buffer.
1136 } while (Size > Buf.capacity());
1137 Buf.set_size(Size);
1138
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001139 return !windows::UTF16ToUTF8(Buf.data(), Size, Res);
Pawel Bylica6e680b22015-11-06 23:44:23 +00001140}
1141
1142static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001143 const wchar_t *EnvironmentVariables[] = {L"TMP", L"TEMP", L"USERPROFILE"};
1144 for (auto *Env : EnvironmentVariables) {
Pawel Bylica6e680b22015-11-06 23:44:23 +00001145 if (getTempDirEnvVar(Env, Res))
1146 return true;
1147 }
1148 return false;
1149}
1150
Rafael Espindola016a6d52014-08-26 14:47:52 +00001151void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
1152 (void)ErasedOnReboot;
Pawel Bylica6e680b22015-11-06 23:44:23 +00001153 Result.clear();
Rafael Espindola016a6d52014-08-26 14:47:52 +00001154
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001155 // Check whether the temporary directory is specified by an environment var.
1156 // This matches GetTempPath logic to some degree. GetTempPath is not used
1157 // directly as it cannot handle evn var longer than 130 chars on Windows 7
1158 // (fixed on Windows 8).
1159 if (getTempDirEnvVar(Result)) {
1160 assert(!Result.empty() && "Unexpected empty path");
1161 native(Result); // Some Unix-like shells use Unix path separator in $TMP.
1162 fs::make_absolute(Result); // Make it absolute if not already.
Pawel Bylica6e680b22015-11-06 23:44:23 +00001163 return;
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001164 }
Rafael Espindola016a6d52014-08-26 14:47:52 +00001165
1166 // Fall back to a system default.
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001167 const char *DefaultResult = "C:\\Temp";
Rafael Espindola016a6d52014-08-26 14:47:52 +00001168 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
1169}
Peter Collingbournef7d41012014-01-31 23:46:06 +00001170} // end namespace path
1171
Rui Ueyama471d0c52013-09-10 19:45:51 +00001172namespace windows {
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001173std::error_code UTF8ToUTF16(llvm::StringRef utf8,
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001174 llvm::SmallVectorImpl<wchar_t> &utf16) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001175 if (!utf8.empty()) {
1176 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1177 utf8.size(), utf16.begin(), 0);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001178
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001179 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001180 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001181
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001182 utf16.reserve(len + 1);
1183 utf16.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001184
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001185 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1186 utf8.size(), utf16.begin(), utf16.size());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001187
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001188 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001189 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001190 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001191
1192 // Make utf16 null terminated.
1193 utf16.push_back(0);
1194 utf16.pop_back();
1195
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001196 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001197}
1198
Rafael Espindola9c359662014-09-03 20:02:00 +00001199static
1200std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
1201 size_t utf16_len,
1202 llvm::SmallVectorImpl<char> &utf8) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001203 if (utf16_len) {
1204 // Get length.
Rafael Espindola9c359662014-09-03 20:02:00 +00001205 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001206 0, NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001207
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001208 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001209 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001210
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001211 utf8.reserve(len);
1212 utf8.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001213
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001214 // Now do the actual conversion.
Rafael Espindola9c359662014-09-03 20:02:00 +00001215 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001216 utf8.size(), NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001217
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001218 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001219 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001220 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001221
1222 // Make utf8 null terminated.
1223 utf8.push_back(0);
1224 utf8.pop_back();
1225
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001226 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001227}
Rafael Espindola9c359662014-09-03 20:02:00 +00001228
1229std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
1230 llvm::SmallVectorImpl<char> &utf8) {
1231 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
1232}
1233
1234std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
1235 llvm::SmallVectorImpl<char> &utf8) {
1236 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
1237}
Taewook Ohd9153272016-06-13 15:54:56 +00001238
Rui Ueyama471d0c52013-09-10 19:45:51 +00001239} // end namespace windows
Michael J. Spencerebad2f92010-11-29 22:28:51 +00001240} // end namespace sys
1241} // end namespace llvm