blob: df39ac7e757cba107212853b5885ed2e80f636e8 [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
Rafael Espindola041299e2017-11-18 02:05:59 +0000347static std::error_code realPathFromHandle(HANDLE H,
Rafael Espindola8dc0e102017-11-18 02:12:53 +0000348 SmallVectorImpl<wchar_t> &Buffer) {
349 DWORD CountChars = ::GetFinalPathNameByHandleW(
350 H, Buffer.begin(), Buffer.capacity() - 1, FILE_NAME_NORMALIZED);
351 if (CountChars > Buffer.capacity()) {
352 // The buffer wasn't big enough, try again. In this case the return value
353 // *does* indicate the size of the null terminator.
354 Buffer.reserve(CountChars);
355 CountChars = ::GetFinalPathNameByHandleW(
356 H, Buffer.data(), Buffer.capacity() - 1, FILE_NAME_NORMALIZED);
357 }
358 if (CountChars == 0)
359 return mapWindowsError(GetLastError());
360 Buffer.set_size(CountChars);
361 return std::error_code();
362}
363
364static std::error_code realPathFromHandle(HANDLE H,
365 SmallVectorImpl<char> &RealPath) {
366 RealPath.clear();
367 SmallVector<wchar_t, MAX_PATH> Buffer;
368 if (std::error_code EC = realPathFromHandle(H, Buffer))
369 return EC;
370
371 const wchar_t *Data = Buffer.data();
372 DWORD CountChars = Buffer.size();
373 if (CountChars >= 4) {
374 if (0 == ::memcmp(Data, L"\\\\?\\", 8)) {
375 CountChars -= 4;
376 Data += 4;
377 }
378 }
379
380 // Convert the result from UTF-16 to UTF-8.
381 return UTF16ToUTF8(Data, CountChars, RealPath);
382}
Rafael Espindola041299e2017-11-18 02:05:59 +0000383
Zachary Turner392ed9d2017-02-21 20:55:47 +0000384std::error_code is_local(int FD, bool &Result) {
385 SmallVector<wchar_t, 128> FinalPath;
386 HANDLE Handle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
387
Rafael Espindola041299e2017-11-18 02:05:59 +0000388 if (std::error_code EC = realPathFromHandle(Handle, FinalPath))
389 return EC;
Zachary Turner392ed9d2017-02-21 20:55:47 +0000390
391 return is_local_internal(FinalPath, Result);
392}
393
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000394static std::error_code rename_internal(HANDLE FromHandle, const Twine &To,
395 bool ReplaceIfExists) {
396 SmallVector<wchar_t, 0> ToWide;
397 if (auto EC = widenPath(To, ToWide))
398 return EC;
399
400 std::vector<char> RenameInfoBuf(sizeof(FILE_RENAME_INFO) - sizeof(wchar_t) +
401 (ToWide.size() * sizeof(wchar_t)));
402 FILE_RENAME_INFO &RenameInfo =
403 *reinterpret_cast<FILE_RENAME_INFO *>(RenameInfoBuf.data());
404 RenameInfo.ReplaceIfExists = ReplaceIfExists;
405 RenameInfo.RootDirectory = 0;
406 RenameInfo.FileNameLength = ToWide.size();
Adrian McCarthye6275c62017-10-09 17:50:01 +0000407 std::copy(ToWide.begin(), ToWide.end(), &RenameInfo.FileName[0]);
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000408
Hans Wennborg477c9742017-10-12 17:38:22 +0000409 SetLastError(ERROR_SUCCESS);
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000410 if (!SetFileInformationByHandle(FromHandle, FileRenameInfo, &RenameInfo,
Hans Wennborg477c9742017-10-12 17:38:22 +0000411 RenameInfoBuf.size())) {
412 unsigned Error = GetLastError();
413 if (Error == ERROR_SUCCESS)
414 Error = ERROR_CALL_NOT_IMPLEMENTED; // Wine doesn't always set error code.
415 return mapWindowsError(Error);
416 }
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000417
418 return std::error_code();
419}
420
421std::error_code rename(const Twine &From, const Twine &To) {
Michael J. Spencer409f5562010-12-03 17:53:55 +0000422 // Convert to utf-16.
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000423 SmallVector<wchar_t, 128> WideFrom;
424 SmallVector<wchar_t, 128> WideTo;
425 if (std::error_code EC = widenPath(From, WideFrom))
426 return EC;
427 if (std::error_code EC = widenPath(To, WideTo))
428 return EC;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000429
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000430 ScopedFileHandle FromHandle;
431 // Retry this a few times to defeat badly behaved file system scanners.
432 for (unsigned Retry = 0; Retry != 200; ++Retry) {
433 if (Retry != 0)
434 ::Sleep(10);
435 FromHandle =
436 ::CreateFileW(WideFrom.begin(), GENERIC_READ | DELETE,
437 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
438 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
439 if (FromHandle)
440 break;
441 }
442 if (!FromHandle)
443 return mapWindowsError(GetLastError());
Greg Bedwell7f68a712015-10-12 15:11:47 +0000444
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000445 // We normally expect this loop to succeed after a few iterations. If it
446 // requires more than 200 tries, it's more likely that the failures are due to
447 // a true error, so stop trying.
448 for (unsigned Retry = 0; Retry != 200; ++Retry) {
449 auto EC = rename_internal(FromHandle, To, true);
Hans Wennborg17701ab2017-10-11 22:04:14 +0000450
451 if (EC ==
452 std::error_code(ERROR_CALL_NOT_IMPLEMENTED, std::system_category())) {
453 // Wine doesn't support SetFileInformationByHandle in rename_internal.
454 // Fall back to MoveFileEx.
455 if (::MoveFileExW(WideFrom.begin(), WideTo.begin(),
456 MOVEFILE_REPLACE_EXISTING))
457 return std::error_code();
458 return mapWindowsError(GetLastError());
459 }
460
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000461 if (!EC || EC != errc::permission_denied)
462 return EC;
Greg Bedwell7f68a712015-10-12 15:11:47 +0000463
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000464 // The destination file probably exists and is currently open in another
465 // process, either because the file was opened without FILE_SHARE_DELETE or
466 // it is mapped into memory (e.g. using MemoryBuffer). Rename it in order to
467 // move it out of the way of the source file. Use FILE_FLAG_DELETE_ON_CLOSE
468 // to arrange for the destination file to be deleted when the other process
469 // closes it.
470 ScopedFileHandle ToHandle(
471 ::CreateFileW(WideTo.begin(), GENERIC_READ | DELETE,
472 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
473 NULL, OPEN_EXISTING,
474 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, NULL));
475 if (!ToHandle) {
476 auto EC = mapWindowsError(GetLastError());
477 // Another process might have raced with us and moved the existing file
478 // out of the way before we had a chance to open it. If that happens, try
479 // to rename the source file again.
480 if (EC == errc::no_such_file_or_directory)
Sunil Srivastava34fce932016-03-25 23:41:28 +0000481 continue;
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000482 return EC;
Sunil Srivastava34fce932016-03-25 23:41:28 +0000483 }
Greg Bedwell7f68a712015-10-12 15:11:47 +0000484
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000485 BY_HANDLE_FILE_INFORMATION FI;
486 if (!GetFileInformationByHandle(ToHandle, &FI))
487 return mapWindowsError(GetLastError());
Greg Bedwell7f68a712015-10-12 15:11:47 +0000488
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000489 // Try to find a unique new name for the destination file.
490 for (unsigned UniqueId = 0; UniqueId != 200; ++UniqueId) {
491 std::string TmpFilename = (To + ".tmp" + utostr(UniqueId)).str();
492 if (auto EC = rename_internal(ToHandle, TmpFilename, false)) {
493 if (EC == errc::file_exists || EC == errc::permission_denied) {
494 // Again, another process might have raced with us and moved the file
495 // before we could move it. Check whether this is the case, as it
496 // might have caused the permission denied error. If that was the
497 // case, we don't need to move it ourselves.
498 ScopedFileHandle ToHandle2(::CreateFileW(
499 WideTo.begin(), 0,
500 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL,
501 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL));
502 if (!ToHandle2) {
503 auto EC = mapWindowsError(GetLastError());
504 if (EC == errc::no_such_file_or_directory)
505 break;
506 return EC;
507 }
508 BY_HANDLE_FILE_INFORMATION FI2;
509 if (!GetFileInformationByHandle(ToHandle2, &FI2))
510 return mapWindowsError(GetLastError());
511 if (FI.nFileIndexHigh != FI2.nFileIndexHigh ||
512 FI.nFileIndexLow != FI2.nFileIndexLow ||
513 FI.dwVolumeSerialNumber != FI2.dwVolumeSerialNumber)
514 break;
515 continue;
516 }
517 return EC;
518 }
519 break;
520 }
521
522 // Okay, the old destination file has probably been moved out of the way at
523 // this point, so try to rename the source file again. Still, another
524 // process might have raced with us to create and open the destination
525 // file, so we need to keep doing this until we succeed.
NAKAMURA Takumi3b7f9952012-05-08 14:31:46 +0000526 }
Michael J. Spencer409f5562010-12-03 17:53:55 +0000527
Peter Collingbourne80e31f12017-10-06 17:14:36 +0000528 // The most likely root cause.
529 return errc::permission_denied;
Michael J. Spencer409f5562010-12-03 17:53:55 +0000530}
531
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000532std::error_code resize_file(int FD, uint64_t Size) {
Michael J. Spencerca242f22010-12-03 18:48:56 +0000533#ifdef HAVE__CHSIZE_S
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000534 errno_t error = ::_chsize_s(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000535#else
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000536 errno_t error = ::_chsize(FD, Size);
Michael J. Spencerca242f22010-12-03 18:48:56 +0000537#endif
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000538 return std::error_code(error, std::generic_category());
Michael J. Spencerc20a0322010-12-03 17:54:07 +0000539}
540
Rafael Espindola281f23a2014-09-11 20:30:02 +0000541std::error_code access(const Twine &Path, AccessMode Mode) {
Rafael Espindola281f23a2014-09-11 20:30:02 +0000542 SmallVector<wchar_t, 128> PathUtf16;
Michael J. Spencer45710402010-12-03 01:21:28 +0000543
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000544 if (std::error_code EC = widenPath(Path, PathUtf16))
Rafael Espindola281f23a2014-09-11 20:30:02 +0000545 return EC;
Michael J. Spencer45710402010-12-03 01:21:28 +0000546
Rafael Espindola281f23a2014-09-11 20:30:02 +0000547 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
Michael J. Spencer45710402010-12-03 01:21:28 +0000548
Rafael Espindola281f23a2014-09-11 20:30:02 +0000549 if (Attributes == INVALID_FILE_ATTRIBUTES) {
Michael J. Spencer45710402010-12-03 01:21:28 +0000550 // See if the file didn't actually exist.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000551 DWORD LastError = ::GetLastError();
552 if (LastError != ERROR_FILE_NOT_FOUND &&
553 LastError != ERROR_PATH_NOT_FOUND)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000554 return mapWindowsError(LastError);
Rafael Espindola281f23a2014-09-11 20:30:02 +0000555 return errc::no_such_file_or_directory;
556 }
557
558 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
559 return errc::permission_denied;
560
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000561 return std::error_code();
Michael J. Spencer45710402010-12-03 01:21:28 +0000562}
563
Reid Kleckner89d4b1a2015-09-10 23:28:06 +0000564bool can_execute(const Twine &Path) {
565 return !access(Path, AccessMode::Execute) ||
566 !access(Path + ".exe", AccessMode::Execute);
567}
568
Michael J. Spencer203d7802011-12-12 06:04:28 +0000569bool equivalent(file_status A, file_status B) {
570 assert(status_known(A) && status_known(B));
Mehdi Amini1e39ef32016-03-25 07:30:21 +0000571 return A.FileIndexHigh == B.FileIndexHigh &&
572 A.FileIndexLow == B.FileIndexLow &&
573 A.FileSizeHigh == B.FileSizeHigh &&
574 A.FileSizeLow == B.FileSizeLow &&
575 A.LastAccessedTimeHigh == B.LastAccessedTimeHigh &&
576 A.LastAccessedTimeLow == B.LastAccessedTimeLow &&
577 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
578 A.LastWriteTimeLow == B.LastWriteTimeLow &&
579 A.VolumeSerialNumber == B.VolumeSerialNumber;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000580}
581
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000582std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
Michael J. Spencer203d7802011-12-12 06:04:28 +0000583 file_status fsA, fsB;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000584 if (std::error_code ec = status(A, fsA))
585 return ec;
586 if (std::error_code ec = status(B, fsB))
587 return ec;
Michael J. Spencer203d7802011-12-12 06:04:28 +0000588 result = equivalent(fsA, fsB);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000589 return std::error_code();
Michael J. Spencer376d3872010-12-03 18:49:13 +0000590}
591
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000592static bool isReservedName(StringRef path) {
593 // This list of reserved names comes from MSDN, at:
594 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
Craig Topper26260942015-10-18 05:15:34 +0000595 static const char *const sReservedNames[] = { "nul", "con", "prn", "aux",
596 "com1", "com2", "com3", "com4",
597 "com5", "com6", "com7", "com8",
598 "com9", "lpt1", "lpt2", "lpt3",
599 "lpt4", "lpt5", "lpt6", "lpt7",
600 "lpt8", "lpt9" };
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000601
602 // First, check to see if this is a device namespace, which always
603 // starts with \\.\, since device namespaces are not legal file paths.
604 if (path.startswith("\\\\.\\"))
605 return true;
606
Douglas Yung091d8fd2016-05-03 00:12:59 +0000607 // Then compare against the list of ancient reserved names.
Craig Topper58713212013-07-15 04:27:47 +0000608 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000609 if (path.equals_lower(sReservedNames[i]))
610 return true;
611 }
612
613 // The path isn't what we consider reserved.
614 return false;
615}
616
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000617static file_type file_type_from_attrs(DWORD Attrs) {
618 return (Attrs & FILE_ATTRIBUTE_DIRECTORY) ? file_type::directory_file
619 : file_type::regular_file;
620}
621
622static perms perms_from_attrs(DWORD Attrs) {
623 return (Attrs & FILE_ATTRIBUTE_READONLY) ? (all_read | all_exe) : all_all;
624}
625
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000626static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000627 if (FileHandle == INVALID_HANDLE_VALUE)
628 goto handle_status_error;
629
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000630 switch (::GetFileType(FileHandle)) {
631 default:
Rafael Espindola81177c52013-07-18 18:42:52 +0000632 llvm_unreachable("Don't know anything about this file type");
633 case FILE_TYPE_UNKNOWN: {
634 DWORD Err = ::GetLastError();
635 if (Err != NO_ERROR)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000636 return mapWindowsError(Err);
Rafael Espindola81177c52013-07-18 18:42:52 +0000637 Result = file_status(file_type::type_unknown);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000638 return std::error_code();
Rafael Espindola81177c52013-07-18 18:42:52 +0000639 }
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000640 case FILE_TYPE_DISK:
641 break;
642 case FILE_TYPE_CHAR:
643 Result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000644 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000645 case FILE_TYPE_PIPE:
646 Result = file_status(file_type::fifo_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000647 return std::error_code();
NAKAMURA Takumi8b01da42013-07-18 17:00:54 +0000648 }
649
Rafael Espindola77021c92013-07-16 03:20:13 +0000650 BY_HANDLE_FILE_INFORMATION Info;
651 if (!::GetFileInformationByHandle(FileHandle, &Info))
652 goto handle_status_error;
653
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000654 Result = file_status(
655 file_type_from_attrs(Info.dwFileAttributes),
656 perms_from_attrs(Info.dwFileAttributes), Info.nNumberOfLinks,
657 Info.ftLastAccessTime.dwHighDateTime, Info.ftLastAccessTime.dwLowDateTime,
658 Info.ftLastWriteTime.dwHighDateTime, Info.ftLastWriteTime.dwLowDateTime,
659 Info.dwVolumeSerialNumber, Info.nFileSizeHigh, Info.nFileSizeLow,
660 Info.nFileIndexHigh, Info.nFileIndexLow);
661 return std::error_code();
Aaron Ballman345012d2017-03-13 12:24:51 +0000662
Rafael Espindola77021c92013-07-16 03:20:13 +0000663handle_status_error:
Rafael Espindolaa813d602014-06-11 03:58:34 +0000664 DWORD LastError = ::GetLastError();
665 if (LastError == ERROR_FILE_NOT_FOUND ||
666 LastError == ERROR_PATH_NOT_FOUND)
Rafael Espindola77021c92013-07-16 03:20:13 +0000667 Result = file_status(file_type::file_not_found);
Rafael Espindolaa813d602014-06-11 03:58:34 +0000668 else if (LastError == ERROR_SHARING_VIOLATION)
Rafael Espindola77021c92013-07-16 03:20:13 +0000669 Result = file_status(file_type::type_unknown);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000670 else
Rafael Espindola77021c92013-07-16 03:20:13 +0000671 Result = file_status(file_type::status_error);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000672 return mapWindowsError(LastError);
Rafael Espindola77021c92013-07-16 03:20:13 +0000673}
674
Zachary Turner82dd5422017-03-07 16:10:10 +0000675std::error_code status(const Twine &path, file_status &result, bool Follow) {
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000676 SmallString<128> path_storage;
677 SmallVector<wchar_t, 128> path_utf16;
678
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000679 StringRef path8 = path.toStringRef(path_storage);
Benjamin Kramer58994ec2011-08-20 21:36:38 +0000680 if (isReservedName(path8)) {
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000681 result = file_status(file_type::character_file);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000682 return std::error_code();
NAKAMURA Takumia3d47492011-03-16 02:53:32 +0000683 }
684
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000685 if (std::error_code ec = widenPath(path8, path_utf16))
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000686 return ec;
687
688 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
689 if (attr == INVALID_FILE_ATTRIBUTES)
Rafael Espindola77021c92013-07-16 03:20:13 +0000690 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000691
Zachary Turner82dd5422017-03-07 16:10:10 +0000692 DWORD Flags = FILE_FLAG_BACKUP_SEMANTICS;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000693 // Handle reparse points.
Zachary Turner82dd5422017-03-07 16:10:10 +0000694 if (!Follow && (attr & FILE_ATTRIBUTE_REPARSE_POINT))
695 Flags |= FILE_FLAG_OPEN_REPARSE_POINT;
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000696
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000697 ScopedFileHandle h(
698 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
Michael J. Spencer203d7802011-12-12 06:04:28 +0000699 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
Zachary Turner82dd5422017-03-07 16:10:10 +0000700 NULL, OPEN_EXISTING, Flags, 0));
701 if (!h)
702 return getStatus(INVALID_HANDLE_VALUE, result);
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000703
Zachary Turner82dd5422017-03-07 16:10:10 +0000704 return getStatus(h, result);
Rafael Espindola77021c92013-07-16 03:20:13 +0000705}
Michael J. Spencerdb5576a2010-12-04 00:32:40 +0000706
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000707std::error_code status(int FD, file_status &Result) {
Rafael Espindola77021c92013-07-16 03:20:13 +0000708 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
Aaron Ballman345012d2017-03-13 12:24:51 +0000709 return getStatus(FileHandle, Result);
710}
711
James Henderson566fdf42017-03-16 11:22:09 +0000712std::error_code setPermissions(const Twine &Path, perms Permissions) {
713 SmallVector<wchar_t, 128> PathUTF16;
714 if (std::error_code EC = widenPath(Path, PathUTF16))
715 return EC;
716
717 DWORD Attributes = ::GetFileAttributesW(PathUTF16.begin());
718 if (Attributes == INVALID_FILE_ATTRIBUTES)
719 return mapWindowsError(GetLastError());
720
721 // There are many Windows file attributes that are not to do with the file
722 // permissions (e.g. FILE_ATTRIBUTE_HIDDEN). We need to be careful to preserve
723 // them.
724 if (Permissions & all_write) {
725 Attributes &= ~FILE_ATTRIBUTE_READONLY;
726 if (Attributes == 0)
727 // FILE_ATTRIBUTE_NORMAL indicates no other attributes are set.
728 Attributes |= FILE_ATTRIBUTE_NORMAL;
729 }
730 else {
731 Attributes |= FILE_ATTRIBUTE_READONLY;
732 // FILE_ATTRIBUTE_NORMAL is not compatible with any other attributes, so
733 // remove it, if it is present.
734 Attributes &= ~FILE_ATTRIBUTE_NORMAL;
735 }
736
737 if (!::SetFileAttributesW(PathUTF16.begin(), Attributes))
738 return mapWindowsError(GetLastError());
739
740 return std::error_code();
741}
742
Aaron Ballman345012d2017-03-13 12:24:51 +0000743std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
744 FILETIME FT = toFILETIME(Time);
745 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000746 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
Yaron Kerenf8e65172015-05-04 04:48:10 +0000747 return mapWindowsError(::GetLastError());
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000748 return std::error_code();
Rafael Espindola4a3365c2013-06-20 20:56:14 +0000749}
Nick Kledzik18497e92012-06-20 00:28:54 +0000750
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000751std::error_code mapped_file_region::init(int FD, uint64_t Offset,
752 mapmode Mode) {
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000753 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
754 if (FileHandle == INVALID_HANDLE_VALUE)
755 return make_error_code(errc::bad_file_descriptor);
756
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000757 DWORD flprotect;
758 switch (Mode) {
759 case readonly: flprotect = PAGE_READONLY; break;
760 case readwrite: flprotect = PAGE_READWRITE; break;
761 case priv: flprotect = PAGE_WRITECOPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000762 }
763
Rafael Espindola369d5142014-12-16 02:53:35 +0000764 HANDLE FileMappingHandle =
David Majnemer17a44962013-10-07 09:52:36 +0000765 ::CreateFileMappingW(FileHandle, 0, flprotect,
Zachary Turnerab1ade42017-11-16 22:39:55 +0000766 Hi_32(Size),
767 Lo_32(Size),
David Majnemer17a44962013-10-07 09:52:36 +0000768 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000769 if (FileMappingHandle == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000770 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000771 return ec;
772 }
773
774 DWORD dwDesiredAccess;
775 switch (Mode) {
776 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
777 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
778 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000779 }
780 Mapping = ::MapViewOfFile(FileMappingHandle,
781 dwDesiredAccess,
782 Offset >> 32,
783 Offset & 0xffffffff,
784 Size);
785 if (Mapping == NULL) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000786 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000787 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000788 return ec;
789 }
790
791 if (Size == 0) {
792 MEMORY_BASIC_INFORMATION mbi;
793 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
794 if (Result == 0) {
Yaron Kerenf8e65172015-05-04 04:48:10 +0000795 std::error_code ec = mapWindowsError(GetLastError());
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000796 ::UnmapViewOfFile(Mapping);
797 ::CloseHandle(FileMappingHandle);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000798 return ec;
799 }
800 Size = mbi.RegionSize;
801 }
Michael J. Spencer42ad29f2013-03-14 00:20:10 +0000802
803 // Close all the handles except for the view. It will keep the other handles
804 // alive.
805 ::CloseHandle(FileMappingHandle);
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000806 return std::error_code();
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000807}
808
Roman Lebedev1e053ab2017-09-27 17:24:34 +0000809mapped_file_region::mapped_file_region(int fd, mapmode mode, size_t length,
Rafael Espindola7eb1f182014-12-11 20:12:55 +0000810 uint64_t offset, std::error_code &ec)
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000811 : Size(length), Mapping() {
Rafael Espindola986f5ad2014-12-16 02:19:26 +0000812 ec = init(fd, offset, mode);
Rafael Espindolaa23008a2014-12-16 03:10:29 +0000813 if (ec)
Rafael Espindola369d5142014-12-16 02:53:35 +0000814 Mapping = 0;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000815}
816
817mapped_file_region::~mapped_file_region() {
818 if (Mapping)
819 ::UnmapViewOfFile(Mapping);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000820}
821
Roman Lebedev1e053ab2017-09-27 17:24:34 +0000822size_t mapped_file_region::size() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000823 assert(Mapping && "Mapping failed but used anyway!");
824 return Size;
825}
826
827char *mapped_file_region::data() const {
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000828 assert(Mapping && "Mapping failed but used anyway!");
829 return reinterpret_cast<char*>(Mapping);
830}
831
832const char *mapped_file_region::const_data() const {
833 assert(Mapping && "Mapping failed but used anyway!");
834 return reinterpret_cast<const char*>(Mapping);
835}
836
837int mapped_file_region::alignment() {
838 SYSTEM_INFO SysInfo;
839 ::GetSystemInfo(&SysInfo);
840 return SysInfo.dwAllocationGranularity;
841}
842
Peter Collingbourneb4f1b882017-10-11 02:09:06 +0000843static basic_file_status status_from_find_data(WIN32_FIND_DATAW *FindData) {
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000844 return basic_file_status(file_type_from_attrs(FindData->dwFileAttributes),
845 perms_from_attrs(FindData->dwFileAttributes),
846 FindData->ftLastAccessTime.dwHighDateTime,
847 FindData->ftLastAccessTime.dwLowDateTime,
848 FindData->ftLastWriteTime.dwHighDateTime,
849 FindData->ftLastWriteTime.dwLowDateTime,
850 FindData->nFileSizeHigh, FindData->nFileSizeLow);
851}
852
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000853std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
Zachary Turner260bda32017-03-08 22:49:32 +0000854 StringRef path,
855 bool follow_symlinks) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000856 SmallVector<wchar_t, 128> path_utf16;
857
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000858 if (std::error_code ec = widenPath(path, path_utf16))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000859 return ec;
860
861 // Convert path to the format that Windows is happy with.
862 if (path_utf16.size() > 0 &&
863 !is_separator(path_utf16[path.size() - 1]) &&
864 path_utf16[path.size() - 1] != L':') {
865 path_utf16.push_back(L'\\');
866 path_utf16.push_back(L'*');
867 } else {
868 path_utf16.push_back(L'*');
869 }
870
871 // Get the first directory entry.
872 WIN32_FIND_DATAW FirstFind;
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000873 ScopedFindHandle FindHandle(::FindFirstFileExW(
874 c_str(path_utf16), FindExInfoBasic, &FirstFind, FindExSearchNameMatch,
875 NULL, FIND_FIRST_EX_LARGE_FETCH));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000876 if (!FindHandle)
Yaron Kerenf8e65172015-05-04 04:48:10 +0000877 return mapWindowsError(::GetLastError());
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000878
Michael J. Spencer98879d72011-01-05 16:39:30 +0000879 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
880 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
881 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
882 FirstFind.cFileName[1] == L'.'))
883 if (!::FindNextFileW(FindHandle, &FirstFind)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000884 DWORD LastError = ::GetLastError();
Michael J. Spencer98879d72011-01-05 16:39:30 +0000885 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000886 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000887 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000888 return mapWindowsError(LastError);
Michael J. Spencer98879d72011-01-05 16:39:30 +0000889 } else
890 FilenameLen = ::wcslen(FirstFind.cFileName);
891
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000892 // Construct the current directory entry.
Michael J. Spencer98879d72011-01-05 16:39:30 +0000893 SmallString<128> directory_entry_name_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000894 if (std::error_code ec =
895 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
896 directory_entry_name_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000897 return ec;
898
899 it.IterationHandle = intptr_t(FindHandle.take());
Michael J. Spencer98879d72011-01-05 16:39:30 +0000900 SmallString<128> directory_entry_path(path);
Yaron Keren92e1b622015-03-18 10:17:07 +0000901 path::append(directory_entry_path, directory_entry_name_utf8);
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000902 it.CurrentEntry = directory_entry(directory_entry_path, follow_symlinks,
903 status_from_find_data(&FirstFind));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000904
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000905 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000906}
907
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000908std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000909 if (it.IterationHandle != 0)
910 // Closes the handle if it's valid.
911 ScopedFindHandle close(HANDLE(it.IterationHandle));
912 it.IterationHandle = 0;
913 it.CurrentEntry = directory_entry();
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000914 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000915}
916
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000917std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000918 WIN32_FIND_DATAW FindData;
919 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000920 DWORD LastError = ::GetLastError();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000921 // Check for end.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000922 if (LastError == ERROR_NO_MORE_FILES)
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000923 return detail::directory_iterator_destruct(it);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000924 return mapWindowsError(LastError);
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000925 }
926
Michael J. Spencer98879d72011-01-05 16:39:30 +0000927 size_t FilenameLen = ::wcslen(FindData.cFileName);
928 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
929 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
930 FindData.cFileName[1] == L'.'))
931 return directory_iterator_increment(it);
932
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000933 SmallString<128> directory_entry_path_utf8;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000934 if (std::error_code ec =
935 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
936 directory_entry_path_utf8))
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000937 return ec;
938
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000939 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8),
940 status_from_find_data(&FindData));
Rafael Espindolab4ad29b2014-06-13 02:36:09 +0000941 return std::error_code();
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000942}
943
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000944ErrorOr<basic_file_status> directory_entry::status() const {
945 return Status;
946}
947
Zachary Turnere48ace62017-03-10 17:39:21 +0000948static std::error_code directoryRealPath(const Twine &Name,
949 SmallVectorImpl<char> &RealPath) {
950 SmallVector<wchar_t, 128> PathUTF16;
951
952 if (std::error_code EC = widenPath(Name, PathUTF16))
953 return EC;
954
955 HANDLE H =
956 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
957 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
958 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
959 if (H == INVALID_HANDLE_VALUE)
960 return mapWindowsError(GetLastError());
961 std::error_code EC = realPathFromHandle(H, RealPath);
962 ::CloseHandle(H);
963 return EC;
964}
965
Taewook Ohd9153272016-06-13 15:54:56 +0000966std::error_code openFileForRead(const Twine &Name, int &ResultFD,
967 SmallVectorImpl<char> *RealPath) {
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000968 SmallVector<wchar_t, 128> PathUTF16;
Nick Kledzik18497e92012-06-20 00:28:54 +0000969
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000970 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000971 return EC;
972
Greg Bedwell7f68a712015-10-12 15:11:47 +0000973 HANDLE H =
974 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
975 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
976 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000977 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +0000978 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +0000979 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola331aeba2013-07-17 19:58:28 +0000980 // Provide a better error message when trying to open directories.
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000981 // This only runs if we failed to open the file, so there is probably
982 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +0000983 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000984 return EC;
985 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +0000986 return make_error_code(errc::is_a_directory);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000987 return EC;
988 }
989
990 int FD = ::_open_osfhandle(intptr_t(H), 0);
991 if (FD == -1) {
992 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +0000993 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +0000994 }
995
Taewook Ohd9153272016-06-13 15:54:56 +0000996 // Fetch the real name of the file, if the user asked
Zachary Turnere48ace62017-03-10 17:39:21 +0000997 if (RealPath)
Zachary Turner3c0dc332017-03-10 18:33:41 +0000998 realPathFromHandle(H, *RealPath);
Taewook Ohd9153272016-06-13 15:54:56 +0000999
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +00001000 ResultFD = FD;
Zachary Turner3c0dc332017-03-10 18:33:41 +00001001 return std::error_code();
Rafael Espindolaa0d9b6b2013-07-17 14:58:25 +00001002}
Nick Kledzik18497e92012-06-20 00:28:54 +00001003
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001004std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
Rafael Espindola67080ce2013-07-19 15:02:03 +00001005 sys::fs::OpenFlags Flags, unsigned Mode) {
1006 // Verify that we don't have both "append" and "excl".
1007 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
1008 "Cannot specify both 'excl' and 'append' file creation flags!");
1009
Rafael Espindola67080ce2013-07-19 15:02:03 +00001010 SmallVector<wchar_t, 128> PathUTF16;
1011
Paul Robinsond9c4a9a2014-11-13 00:12:14 +00001012 if (std::error_code EC = widenPath(Name, PathUTF16))
Rafael Espindola67080ce2013-07-19 15:02:03 +00001013 return EC;
1014
1015 DWORD CreationDisposition;
1016 if (Flags & F_Excl)
1017 CreationDisposition = CREATE_NEW;
NAKAMURA Takumiedf76152013-08-22 15:14:45 +00001018 else if (Flags & F_Append)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001019 CreationDisposition = OPEN_ALWAYS;
1020 else
1021 CreationDisposition = CREATE_ALWAYS;
1022
Rafael Espindola7a0b6402014-02-24 03:07:41 +00001023 DWORD Access = GENERIC_WRITE;
1024 if (Flags & F_RW)
1025 Access |= GENERIC_READ;
1026
Reid Klecknercefb3332017-08-04 21:52:00 +00001027 HANDLE H =
1028 ::CreateFileW(PathUTF16.begin(), Access,
1029 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
1030 NULL, CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001031
1032 if (H == INVALID_HANDLE_VALUE) {
Rafael Espindolaa813d602014-06-11 03:58:34 +00001033 DWORD LastError = ::GetLastError();
Yaron Kerenf8e65172015-05-04 04:48:10 +00001034 std::error_code EC = mapWindowsError(LastError);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001035 // Provide a better error message when trying to open directories.
1036 // This only runs if we failed to open the file, so there is probably
1037 // no performances issues.
Rafael Espindolaa813d602014-06-11 03:58:34 +00001038 if (LastError != ERROR_ACCESS_DENIED)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001039 return EC;
1040 if (is_directory(Name))
Rafael Espindola2a826e42014-06-13 17:20:48 +00001041 return make_error_code(errc::is_a_directory);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001042 return EC;
1043 }
1044
1045 int OpenFlags = 0;
1046 if (Flags & F_Append)
1047 OpenFlags |= _O_APPEND;
1048
Rafael Espindola90c7f1c2014-02-24 18:20:12 +00001049 if (Flags & F_Text)
Rafael Espindola67080ce2013-07-19 15:02:03 +00001050 OpenFlags |= _O_TEXT;
1051
1052 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
1053 if (FD == -1) {
1054 ::CloseHandle(H);
Yaron Kerenf8e65172015-05-04 04:48:10 +00001055 return mapWindowsError(ERROR_INVALID_HANDLE);
Rafael Espindola67080ce2013-07-19 15:02:03 +00001056 }
1057
1058 ResultFD = FD;
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001059 return std::error_code();
Rafael Espindola67080ce2013-07-19 15:02:03 +00001060}
Taewook Ohd9153272016-06-13 15:54:56 +00001061
Zachary Turner260bda32017-03-08 22:49:32 +00001062std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
1063 // Convert to utf-16.
1064 SmallVector<wchar_t, 128> Path16;
1065 std::error_code EC = widenPath(path, Path16);
1066 if (EC && !IgnoreErrors)
1067 return EC;
1068
1069 // SHFileOperation() accepts a list of paths, and so must be double null-
1070 // terminated to indicate the end of the list. The buffer is already null
1071 // terminated, but since that null character is not considered part of the
1072 // vector's size, pushing another one will just consume that byte. So we
1073 // need to push 2 null terminators.
1074 Path16.push_back(0);
1075 Path16.push_back(0);
1076
1077 SHFILEOPSTRUCTW shfos = {};
1078 shfos.wFunc = FO_DELETE;
1079 shfos.pFrom = Path16.data();
1080 shfos.fFlags = FOF_NO_UI;
1081
1082 int result = ::SHFileOperationW(&shfos);
1083 if (result != 0 && !IgnoreErrors)
1084 return mapWindowsError(result);
1085 return std::error_code();
1086}
1087
Zachary Turnere48ace62017-03-10 17:39:21 +00001088static void expandTildeExpr(SmallVectorImpl<char> &Path) {
1089 // Path does not begin with a tilde expression.
1090 if (Path.empty() || Path[0] != '~')
1091 return;
1092
1093 StringRef PathStr(Path.begin(), Path.size());
1094 PathStr = PathStr.drop_front();
Zachary Turner5c5091f2017-03-16 22:28:04 +00001095 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
Zachary Turnere48ace62017-03-10 17:39:21 +00001096
1097 if (!Expr.empty()) {
1098 // This is probably a ~username/ expression. Don't support this on Windows.
1099 return;
1100 }
1101
1102 SmallString<128> HomeDir;
1103 if (!path::home_directory(HomeDir)) {
1104 // For some reason we couldn't get the home directory. Just exit.
1105 return;
1106 }
1107
1108 // Overwrite the first character and insert the rest.
1109 Path[0] = HomeDir[0];
1110 Path.insert(Path.begin() + 1, HomeDir.begin() + 1, HomeDir.end());
1111}
1112
1113std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
1114 bool expand_tilde) {
1115 dest.clear();
1116 if (path.isTriviallyEmpty())
1117 return std::error_code();
1118
1119 if (expand_tilde) {
1120 SmallString<128> Storage;
1121 path.toVector(Storage);
1122 expandTildeExpr(Storage);
1123 return real_path(Storage, dest, false);
1124 }
1125
1126 if (is_directory(path))
1127 return directoryRealPath(path, dest);
1128
1129 int fd;
1130 if (std::error_code EC = llvm::sys::fs::openFileForRead(path, fd, &dest))
1131 return EC;
1132 ::close(fd);
1133 return std::error_code();
1134}
1135
Michael J. Spencer9fc1d9d2010-12-01 19:32:01 +00001136} // end namespace fs
Rui Ueyama471d0c52013-09-10 19:45:51 +00001137
Peter Collingbournef7d41012014-01-31 23:46:06 +00001138namespace path {
Pawel Bylica7c1f36a2015-11-02 14:57:24 +00001139static bool getKnownFolderPath(KNOWNFOLDERID folderId,
1140 SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001141 wchar_t *path = nullptr;
1142 if (::SHGetKnownFolderPath(folderId, KF_FLAG_CREATE, nullptr, &path) != S_OK)
1143 return false;
1144
1145 bool ok = !UTF16ToUTF8(path, ::wcslen(path), result);
1146 ::CoTaskMemFree(path);
1147 return ok;
1148}
Pawel Bylica0e97e5c2015-11-02 09:49:17 +00001149
1150bool getUserCacheDir(SmallVectorImpl<char> &Result) {
1151 return getKnownFolderPath(FOLDERID_LocalAppData, Result);
1152}
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001153
Peter Collingbournef7d41012014-01-31 23:46:06 +00001154bool home_directory(SmallVectorImpl<char> &result) {
Pawel Bylica7187e4b2015-10-16 09:08:59 +00001155 return getKnownFolderPath(FOLDERID_Profile, result);
Peter Collingbournef7d41012014-01-31 23:46:06 +00001156}
1157
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001158static bool getTempDirEnvVar(const wchar_t *Var, SmallVectorImpl<char> &Res) {
Pawel Bylica6e680b22015-11-06 23:44:23 +00001159 SmallVector<wchar_t, 1024> Buf;
1160 size_t Size = 1024;
1161 do {
1162 Buf.reserve(Size);
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001163 Size = GetEnvironmentVariableW(Var, Buf.data(), Buf.capacity());
Pawel Bylica6e680b22015-11-06 23:44:23 +00001164 if (Size == 0)
1165 return false;
1166
1167 // Try again with larger buffer.
1168 } while (Size > Buf.capacity());
1169 Buf.set_size(Size);
1170
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001171 return !windows::UTF16ToUTF8(Buf.data(), Size, Res);
Pawel Bylica6e680b22015-11-06 23:44:23 +00001172}
1173
1174static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001175 const wchar_t *EnvironmentVariables[] = {L"TMP", L"TEMP", L"USERPROFILE"};
1176 for (auto *Env : EnvironmentVariables) {
Pawel Bylica6e680b22015-11-06 23:44:23 +00001177 if (getTempDirEnvVar(Env, Res))
1178 return true;
1179 }
1180 return false;
1181}
1182
Rafael Espindola016a6d52014-08-26 14:47:52 +00001183void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
1184 (void)ErasedOnReboot;
Pawel Bylica6e680b22015-11-06 23:44:23 +00001185 Result.clear();
Rafael Espindola016a6d52014-08-26 14:47:52 +00001186
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001187 // Check whether the temporary directory is specified by an environment var.
1188 // This matches GetTempPath logic to some degree. GetTempPath is not used
1189 // directly as it cannot handle evn var longer than 130 chars on Windows 7
1190 // (fixed on Windows 8).
1191 if (getTempDirEnvVar(Result)) {
1192 assert(!Result.empty() && "Unexpected empty path");
1193 native(Result); // Some Unix-like shells use Unix path separator in $TMP.
1194 fs::make_absolute(Result); // Make it absolute if not already.
Pawel Bylica6e680b22015-11-06 23:44:23 +00001195 return;
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001196 }
Rafael Espindola016a6d52014-08-26 14:47:52 +00001197
1198 // Fall back to a system default.
Pawel Bylicaa90e7452015-11-17 16:54:32 +00001199 const char *DefaultResult = "C:\\Temp";
Rafael Espindola016a6d52014-08-26 14:47:52 +00001200 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
1201}
Peter Collingbournef7d41012014-01-31 23:46:06 +00001202} // end namespace path
1203
Rui Ueyama471d0c52013-09-10 19:45:51 +00001204namespace windows {
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001205std::error_code UTF8ToUTF16(llvm::StringRef utf8,
Rafael Espindolab4ad29b2014-06-13 02:36:09 +00001206 llvm::SmallVectorImpl<wchar_t> &utf16) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001207 if (!utf8.empty()) {
1208 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1209 utf8.size(), utf16.begin(), 0);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001210
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001211 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001212 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001213
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001214 utf16.reserve(len + 1);
1215 utf16.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001216
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001217 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
1218 utf8.size(), utf16.begin(), utf16.size());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001219
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001220 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001221 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001222 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001223
1224 // Make utf16 null terminated.
1225 utf16.push_back(0);
1226 utf16.pop_back();
1227
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001228 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001229}
1230
Rafael Espindola9c359662014-09-03 20:02:00 +00001231static
1232std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
1233 size_t utf16_len,
1234 llvm::SmallVectorImpl<char> &utf8) {
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001235 if (utf16_len) {
1236 // Get length.
Rafael Espindola9c359662014-09-03 20:02:00 +00001237 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001238 0, NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001239
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001240 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001241 return mapWindowsError(::GetLastError());
Rui Ueyama471d0c52013-09-10 19:45:51 +00001242
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001243 utf8.reserve(len);
1244 utf8.set_size(len);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001245
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001246 // Now do the actual conversion.
Rafael Espindola9c359662014-09-03 20:02:00 +00001247 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001248 utf8.size(), NULL, NULL);
Rui Ueyama471d0c52013-09-10 19:45:51 +00001249
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001250 if (len == 0)
Yaron Kerenf8e65172015-05-04 04:48:10 +00001251 return mapWindowsError(::GetLastError());
Michael J. Spencer7a3a5102014-02-20 20:46:23 +00001252 }
Rui Ueyama471d0c52013-09-10 19:45:51 +00001253
1254 // Make utf8 null terminated.
1255 utf8.push_back(0);
1256 utf8.pop_back();
1257
Rafael Espindola0a5f9cf2014-06-12 14:11:22 +00001258 return std::error_code();
Rui Ueyama471d0c52013-09-10 19:45:51 +00001259}
Rafael Espindola9c359662014-09-03 20:02:00 +00001260
1261std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
1262 llvm::SmallVectorImpl<char> &utf8) {
1263 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
1264}
1265
1266std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
1267 llvm::SmallVectorImpl<char> &utf8) {
1268 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
1269}
Taewook Ohd9153272016-06-13 15:54:56 +00001270
Rui Ueyama471d0c52013-09-10 19:45:51 +00001271} // end namespace windows
Michael J. Spencerebad2f92010-11-29 22:28:51 +00001272} // end namespace sys
1273} // end namespace llvm