]> git.proxmox.com Git - rustc.git/blame - src/llvm/lib/Support/Windows/Path.inc
Imported Upstream version 1.0.0+dfsg1
[rustc.git] / src / llvm / lib / Support / Windows / Path.inc
CommitLineData
1a4d82fc 1//===- llvm/Support/Windows/Path.inc - Windows Path Impl --------*- C++ -*-===//
223e47cc
LB
2//
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//
1a4d82fc 10// This file implements the Windows specific implementation of the Path API.
223e47cc
LB
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
1a4d82fc
JJ
15//=== WARNING: Implementation here must contain only generic Windows code that
16//=== is guaranteed to work on *all* Windows variants.
223e47cc
LB
17//===----------------------------------------------------------------------===//
18
1a4d82fc
JJ
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/Support/WindowsError.h"
21#include <fcntl.h>
22#include <io.h>
23#include <sys/stat.h>
24#include <sys/types.h>
223e47cc 25
1a4d82fc
JJ
26// 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
28#include "WindowsSupport.h"
29#include <shlobj.h>
223e47cc 30
1a4d82fc 31#undef max
223e47cc 32
1a4d82fc
JJ
33// MinGW doesn't define this.
34#ifndef _ERRNO_T_DEFINED
35#define _ERRNO_T_DEFINED
36typedef int errno_t;
37#endif
223e47cc 38
1a4d82fc
JJ
39#ifdef _MSC_VER
40# pragma comment(lib, "advapi32.lib") // This provides CryptAcquireContextW.
41#endif
223e47cc 42
1a4d82fc 43using namespace llvm;
223e47cc 44
1a4d82fc
JJ
45using llvm::sys::windows::UTF8ToUTF16;
46using llvm::sys::windows::UTF16ToUTF8;
85aaf69f 47using llvm::sys::path::widenPath;
223e47cc 48
1a4d82fc
JJ
49static std::error_code windows_error(DWORD E) {
50 return mapWindowsError(E);
223e47cc
LB
51}
52
1a4d82fc
JJ
53static bool is_separator(const wchar_t value) {
54 switch (value) {
55 case L'\\':
56 case L'/':
57 return true;
58 default:
223e47cc 59 return false;
223e47cc 60 }
1a4d82fc 61}
223e47cc 62
1a4d82fc
JJ
63namespace llvm {
64namespace sys {
85aaf69f
SL
65namespace path {
66
67// Convert a UTF-8 path to UTF-16. Also, if the absolute equivalent of the
68// path is longer than CreateDirectory can tolerate, make it absolute and
69// prefixed by '\\?\'.
70std::error_code widenPath(const Twine &Path8,
71 SmallVectorImpl<wchar_t> &Path16) {
72 const size_t MaxDirLen = MAX_PATH - 12; // Must leave room for 8.3 filename.
73
74 // Several operations would convert Path8 to SmallString; more efficient to
75 // do it once up front.
76 SmallString<128> Path8Str;
77 Path8.toVector(Path8Str);
78
79 // If we made this path absolute, how much longer would it get?
80 size_t CurPathLen;
81 if (llvm::sys::path::is_absolute(Twine(Path8Str)))
82 CurPathLen = 0; // No contribution from current_path needed.
83 else {
84 CurPathLen = ::GetCurrentDirectoryW(0, NULL);
85 if (CurPathLen == 0)
86 return windows_error(::GetLastError());
87 }
88
89 // Would the absolute path be longer than our limit?
90 if ((Path8Str.size() + CurPathLen) >= MaxDirLen &&
91 !Path8Str.startswith("\\\\?\\")) {
92 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
93 if (CurPathLen) {
94 SmallString<80> CurPath;
95 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
96 return EC;
97 FullPath.append(CurPath);
98 }
99 // Traverse the requested path, canonicalizing . and .. as we go (because
100 // the \\?\ prefix is documented to treat them as real components).
101 // The iterators don't report separators and append() always attaches
102 // preferred_separator so we don't need to call native() on the result.
103 for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(Path8Str),
104 E = llvm::sys::path::end(Path8Str);
105 I != E; ++I) {
106 if (I->size() == 1 && *I == ".")
107 continue;
108 if (I->size() == 2 && *I == "..")
109 llvm::sys::path::remove_filename(FullPath);
110 else
111 llvm::sys::path::append(FullPath, *I);
112 }
113 return UTF8ToUTF16(FullPath, Path16);
114 }
115
116 // Just use the caller's original path.
117 return UTF8ToUTF16(Path8Str, Path16);
118}
119} // end namespace path
120
1a4d82fc 121namespace fs {
223e47cc 122
1a4d82fc
JJ
123std::string getMainExecutable(const char *argv0, void *MainExecAddr) {
124 SmallVector<wchar_t, MAX_PATH> PathName;
125 DWORD Size = ::GetModuleFileNameW(NULL, PathName.data(), PathName.capacity());
223e47cc 126
1a4d82fc
JJ
127 // A zero return value indicates a failure other than insufficient space.
128 if (Size == 0)
129 return "";
223e47cc 130
1a4d82fc
JJ
131 // Insufficient space is determined by a return value equal to the size of
132 // the buffer passed in.
133 if (Size == PathName.capacity())
134 return "";
223e47cc 135
1a4d82fc
JJ
136 // On success, GetModuleFileNameW returns the number of characters written to
137 // the buffer not including the NULL terminator.
138 PathName.set_size(Size);
223e47cc 139
1a4d82fc
JJ
140 // Convert the result from UTF-16 to UTF-8.
141 SmallVector<char, MAX_PATH> PathNameUTF8;
142 if (UTF16ToUTF8(PathName.data(), PathName.size(), PathNameUTF8))
143 return "";
223e47cc 144
1a4d82fc
JJ
145 return std::string(PathNameUTF8.data());
146}
223e47cc 147
1a4d82fc
JJ
148UniqueID file_status::getUniqueID() const {
149 // The file is uniquely identified by the volume serial number along
150 // with the 64-bit file identifier.
151 uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) |
152 static_cast<uint64_t>(FileIndexLow);
223e47cc 153
1a4d82fc 154 return UniqueID(VolumeSerialNumber, FileID);
223e47cc
LB
155}
156
1a4d82fc
JJ
157TimeValue file_status::getLastModificationTime() const {
158 ULARGE_INTEGER UI;
159 UI.LowPart = LastWriteTimeLow;
160 UI.HighPart = LastWriteTimeHigh;
223e47cc 161
1a4d82fc
JJ
162 TimeValue Ret;
163 Ret.fromWin32Time(UI.QuadPart);
164 return Ret;
223e47cc
LB
165}
166
1a4d82fc
JJ
167std::error_code current_path(SmallVectorImpl<char> &result) {
168 SmallVector<wchar_t, MAX_PATH> cur_path;
169 DWORD len = MAX_PATH;
223e47cc 170
1a4d82fc
JJ
171 do {
172 cur_path.reserve(len);
173 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
223e47cc 174
1a4d82fc
JJ
175 // A zero return value indicates a failure other than insufficient space.
176 if (len == 0)
177 return windows_error(::GetLastError());
223e47cc 178
1a4d82fc
JJ
179 // If there's insufficient space, the len returned is larger than the len
180 // given.
181 } while (len > cur_path.capacity());
223e47cc 182
1a4d82fc
JJ
183 // On success, GetCurrentDirectoryW returns the number of characters not
184 // including the null-terminator.
185 cur_path.set_size(len);
186 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
223e47cc
LB
187}
188
1a4d82fc 189std::error_code create_directory(const Twine &path, bool IgnoreExisting) {
1a4d82fc 190 SmallVector<wchar_t, 128> path_utf16;
223e47cc 191
85aaf69f 192 if (std::error_code ec = widenPath(path, path_utf16))
1a4d82fc 193 return ec;
223e47cc 194
1a4d82fc
JJ
195 if (!::CreateDirectoryW(path_utf16.begin(), NULL)) {
196 DWORD LastError = ::GetLastError();
197 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
198 return windows_error(LastError);
199 }
223e47cc 200
1a4d82fc 201 return std::error_code();
223e47cc
LB
202}
203
1a4d82fc
JJ
204// We can't use symbolic links for windows.
205std::error_code create_link(const Twine &to, const Twine &from) {
1a4d82fc
JJ
206 // Convert to utf-16.
207 SmallVector<wchar_t, 128> wide_from;
208 SmallVector<wchar_t, 128> wide_to;
85aaf69f 209 if (std::error_code ec = widenPath(from, wide_from))
1a4d82fc 210 return ec;
85aaf69f 211 if (std::error_code ec = widenPath(to, wide_to))
1a4d82fc 212 return ec;
223e47cc 213
1a4d82fc
JJ
214 if (!::CreateHardLinkW(wide_from.begin(), wide_to.begin(), NULL))
215 return windows_error(::GetLastError());
223e47cc 216
1a4d82fc 217 return std::error_code();
223e47cc
LB
218}
219
1a4d82fc 220std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
1a4d82fc 221 SmallVector<wchar_t, 128> path_utf16;
223e47cc 222
1a4d82fc
JJ
223 file_status ST;
224 if (std::error_code EC = status(path, ST)) {
225 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
226 return EC;
227 return std::error_code();
228 }
223e47cc 229
85aaf69f 230 if (std::error_code ec = widenPath(path, path_utf16))
1a4d82fc 231 return ec;
223e47cc 232
1a4d82fc
JJ
233 if (ST.type() == file_type::directory_file) {
234 if (!::RemoveDirectoryW(c_str(path_utf16))) {
235 std::error_code EC = windows_error(::GetLastError());
236 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
237 return EC;
238 }
239 return std::error_code();
240 }
241 if (!::DeleteFileW(c_str(path_utf16))) {
242 std::error_code EC = windows_error(::GetLastError());
243 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
244 return EC;
245 }
246 return std::error_code();
247}
248
249std::error_code rename(const Twine &from, const Twine &to) {
1a4d82fc
JJ
250 // Convert to utf-16.
251 SmallVector<wchar_t, 128> wide_from;
252 SmallVector<wchar_t, 128> wide_to;
85aaf69f 253 if (std::error_code ec = widenPath(from, wide_from))
1a4d82fc 254 return ec;
85aaf69f 255 if (std::error_code ec = widenPath(to, wide_to))
1a4d82fc
JJ
256 return ec;
257
258 std::error_code ec = std::error_code();
259 for (int i = 0; i < 2000; i++) {
260 if (::MoveFileExW(wide_from.begin(), wide_to.begin(),
261 MOVEFILE_COPY_ALLOWED | MOVEFILE_REPLACE_EXISTING))
262 return std::error_code();
263 DWORD LastError = ::GetLastError();
264 if (LastError != ERROR_ACCESS_DENIED)
265 break;
266 // Retry MoveFile() at ACCESS_DENIED.
267 // System scanners (eg. indexer) might open the source file when
268 // It is written and closed.
269 ::Sleep(1);
270 }
271
272 return ec;
273}
274
85aaf69f 275std::error_code resize_file(int FD, uint64_t Size) {
1a4d82fc 276#ifdef HAVE__CHSIZE_S
85aaf69f 277 errno_t error = ::_chsize_s(FD, Size);
1a4d82fc 278#else
85aaf69f 279 errno_t error = ::_chsize(FD, Size);
1a4d82fc 280#endif
1a4d82fc 281 return std::error_code(error, std::generic_category());
223e47cc
LB
282}
283
1a4d82fc 284std::error_code access(const Twine &Path, AccessMode Mode) {
1a4d82fc 285 SmallVector<wchar_t, 128> PathUtf16;
223e47cc 286
85aaf69f 287 if (std::error_code EC = widenPath(Path, PathUtf16))
1a4d82fc 288 return EC;
223e47cc 289
1a4d82fc 290 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
223e47cc 291
1a4d82fc
JJ
292 if (Attributes == INVALID_FILE_ATTRIBUTES) {
293 // See if the file didn't actually exist.
294 DWORD LastError = ::GetLastError();
295 if (LastError != ERROR_FILE_NOT_FOUND &&
296 LastError != ERROR_PATH_NOT_FOUND)
297 return windows_error(LastError);
298 return errc::no_such_file_or_directory;
299 }
223e47cc 300
1a4d82fc
JJ
301 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
302 return errc::permission_denied;
223e47cc 303
1a4d82fc 304 return std::error_code();
223e47cc
LB
305}
306
1a4d82fc
JJ
307bool equivalent(file_status A, file_status B) {
308 assert(status_known(A) && status_known(B));
309 return A.FileIndexHigh == B.FileIndexHigh &&
310 A.FileIndexLow == B.FileIndexLow &&
311 A.FileSizeHigh == B.FileSizeHigh &&
312 A.FileSizeLow == B.FileSizeLow &&
313 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
314 A.LastWriteTimeLow == B.LastWriteTimeLow &&
315 A.VolumeSerialNumber == B.VolumeSerialNumber;
223e47cc
LB
316}
317
1a4d82fc
JJ
318std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
319 file_status fsA, fsB;
320 if (std::error_code ec = status(A, fsA))
321 return ec;
322 if (std::error_code ec = status(B, fsB))
323 return ec;
324 result = equivalent(fsA, fsB);
325 return std::error_code();
223e47cc
LB
326}
327
1a4d82fc
JJ
328static bool isReservedName(StringRef path) {
329 // This list of reserved names comes from MSDN, at:
330 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
331 static const char *sReservedNames[] = { "nul", "con", "prn", "aux",
332 "com1", "com2", "com3", "com4", "com5", "com6",
333 "com7", "com8", "com9", "lpt1", "lpt2", "lpt3",
334 "lpt4", "lpt5", "lpt6", "lpt7", "lpt8", "lpt9" };
223e47cc 335
1a4d82fc
JJ
336 // First, check to see if this is a device namespace, which always
337 // starts with \\.\, since device namespaces are not legal file paths.
338 if (path.startswith("\\\\.\\"))
339 return true;
223e47cc 340
1a4d82fc
JJ
341 // Then compare against the list of ancient reserved names
342 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
343 if (path.equals_lower(sReservedNames[i]))
344 return true;
345 }
223e47cc 346
1a4d82fc
JJ
347 // The path isn't what we consider reserved.
348 return false;
223e47cc
LB
349}
350
1a4d82fc
JJ
351static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
352 if (FileHandle == INVALID_HANDLE_VALUE)
353 goto handle_status_error;
223e47cc 354
1a4d82fc
JJ
355 switch (::GetFileType(FileHandle)) {
356 default:
357 llvm_unreachable("Don't know anything about this file type");
358 case FILE_TYPE_UNKNOWN: {
359 DWORD Err = ::GetLastError();
360 if (Err != NO_ERROR)
361 return windows_error(Err);
362 Result = file_status(file_type::type_unknown);
363 return std::error_code();
364 }
365 case FILE_TYPE_DISK:
366 break;
367 case FILE_TYPE_CHAR:
368 Result = file_status(file_type::character_file);
369 return std::error_code();
370 case FILE_TYPE_PIPE:
371 Result = file_status(file_type::fifo_file);
372 return std::error_code();
373 }
374
375 BY_HANDLE_FILE_INFORMATION Info;
376 if (!::GetFileInformationByHandle(FileHandle, &Info))
377 goto handle_status_error;
223e47cc 378
1a4d82fc
JJ
379 {
380 file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
381 ? file_type::directory_file
382 : file_type::regular_file;
383 Result =
384 file_status(Type, Info.ftLastWriteTime.dwHighDateTime,
385 Info.ftLastWriteTime.dwLowDateTime,
386 Info.dwVolumeSerialNumber, Info.nFileSizeHigh,
387 Info.nFileSizeLow, Info.nFileIndexHigh, Info.nFileIndexLow);
388 return std::error_code();
389 }
390
391handle_status_error:
392 DWORD LastError = ::GetLastError();
393 if (LastError == ERROR_FILE_NOT_FOUND ||
394 LastError == ERROR_PATH_NOT_FOUND)
395 Result = file_status(file_type::file_not_found);
396 else if (LastError == ERROR_SHARING_VIOLATION)
397 Result = file_status(file_type::type_unknown);
398 else
399 Result = file_status(file_type::status_error);
400 return windows_error(LastError);
401}
223e47cc 402
1a4d82fc
JJ
403std::error_code status(const Twine &path, file_status &result) {
404 SmallString<128> path_storage;
405 SmallVector<wchar_t, 128> path_utf16;
223e47cc 406
1a4d82fc
JJ
407 StringRef path8 = path.toStringRef(path_storage);
408 if (isReservedName(path8)) {
409 result = file_status(file_type::character_file);
410 return std::error_code();
223e47cc 411 }
223e47cc 412
85aaf69f 413 if (std::error_code ec = widenPath(path8, path_utf16))
1a4d82fc 414 return ec;
223e47cc 415
1a4d82fc 416 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
223e47cc 417 if (attr == INVALID_FILE_ATTRIBUTES)
1a4d82fc
JJ
418 return getStatus(INVALID_HANDLE_VALUE, result);
419
420 // Handle reparse points.
421 if (attr & FILE_ATTRIBUTE_REPARSE_POINT) {
422 ScopedFileHandle h(
423 ::CreateFileW(path_utf16.begin(),
424 0, // Attributes only.
425 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
426 NULL,
427 OPEN_EXISTING,
428 FILE_FLAG_BACKUP_SEMANTICS,
429 0));
430 if (!h)
431 return getStatus(INVALID_HANDLE_VALUE, result);
432 }
433
434 ScopedFileHandle h(
435 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
436 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
437 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0));
438 if (!h)
439 return getStatus(INVALID_HANDLE_VALUE, result);
440
441 return getStatus(h, result);
442}
443
444std::error_code status(int FD, file_status &Result) {
445 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
446 return getStatus(FileHandle, Result);
447}
448
449std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time) {
450 ULARGE_INTEGER UI;
451 UI.QuadPart = Time.toWin32Time();
452 FILETIME FT;
453 FT.dwLowDateTime = UI.LowPart;
454 FT.dwHighDateTime = UI.HighPart;
455 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
456 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
457 return windows_error(::GetLastError());
458 return std::error_code();
459}
460
85aaf69f
SL
461std::error_code mapped_file_region::init(int FD, uint64_t Offset,
462 mapmode Mode) {
1a4d82fc 463 // Make sure that the requested size fits within SIZE_T.
85aaf69f 464 if (Size > std::numeric_limits<SIZE_T>::max())
1a4d82fc 465 return make_error_code(errc::invalid_argument);
85aaf69f
SL
466
467 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
468 if (FileHandle == INVALID_HANDLE_VALUE)
469 return make_error_code(errc::bad_file_descriptor);
1a4d82fc
JJ
470
471 DWORD flprotect;
472 switch (Mode) {
473 case readonly: flprotect = PAGE_READONLY; break;
474 case readwrite: flprotect = PAGE_READWRITE; break;
475 case priv: flprotect = PAGE_WRITECOPY; break;
476 }
477
85aaf69f 478 HANDLE FileMappingHandle =
1a4d82fc
JJ
479 ::CreateFileMappingW(FileHandle, 0, flprotect,
480 (Offset + Size) >> 32,
481 (Offset + Size) & 0xffffffff,
482 0);
483 if (FileMappingHandle == NULL) {
484 std::error_code ec = windows_error(GetLastError());
1a4d82fc
JJ
485 return ec;
486 }
487
488 DWORD dwDesiredAccess;
489 switch (Mode) {
490 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
491 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
492 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
493 }
494 Mapping = ::MapViewOfFile(FileMappingHandle,
495 dwDesiredAccess,
496 Offset >> 32,
497 Offset & 0xffffffff,
498 Size);
499 if (Mapping == NULL) {
500 std::error_code ec = windows_error(GetLastError());
501 ::CloseHandle(FileMappingHandle);
1a4d82fc
JJ
502 return ec;
503 }
504
505 if (Size == 0) {
506 MEMORY_BASIC_INFORMATION mbi;
507 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
508 if (Result == 0) {
509 std::error_code ec = windows_error(GetLastError());
510 ::UnmapViewOfFile(Mapping);
511 ::CloseHandle(FileMappingHandle);
1a4d82fc 512 return ec;
223e47cc 513 }
1a4d82fc
JJ
514 Size = mbi.RegionSize;
515 }
516
517 // Close all the handles except for the view. It will keep the other handles
518 // alive.
519 ::CloseHandle(FileMappingHandle);
1a4d82fc
JJ
520 return std::error_code();
521}
522
85aaf69f
SL
523mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
524 uint64_t offset, std::error_code &ec)
525 : Size(length), Mapping() {
526 ec = init(fd, offset, mode);
527 if (ec)
528 Mapping = 0;
1a4d82fc 529}
223e47cc 530
1a4d82fc
JJ
531mapped_file_region::~mapped_file_region() {
532 if (Mapping)
533 ::UnmapViewOfFile(Mapping);
223e47cc
LB
534}
535
1a4d82fc
JJ
536uint64_t mapped_file_region::size() const {
537 assert(Mapping && "Mapping failed but used anyway!");
538 return Size;
223e47cc
LB
539}
540
1a4d82fc 541char *mapped_file_region::data() const {
1a4d82fc
JJ
542 assert(Mapping && "Mapping failed but used anyway!");
543 return reinterpret_cast<char*>(Mapping);
223e47cc
LB
544}
545
1a4d82fc
JJ
546const char *mapped_file_region::const_data() const {
547 assert(Mapping && "Mapping failed but used anyway!");
548 return reinterpret_cast<const char*>(Mapping);
549}
550
551int mapped_file_region::alignment() {
552 SYSTEM_INFO SysInfo;
553 ::GetSystemInfo(&SysInfo);
554 return SysInfo.dwAllocationGranularity;
223e47cc
LB
555}
556
1a4d82fc
JJ
557std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
558 StringRef path){
559 SmallVector<wchar_t, 128> path_utf16;
223e47cc 560
85aaf69f 561 if (std::error_code ec = widenPath(path, path_utf16))
1a4d82fc 562 return ec;
223e47cc 563
1a4d82fc
JJ
564 // Convert path to the format that Windows is happy with.
565 if (path_utf16.size() > 0 &&
566 !is_separator(path_utf16[path.size() - 1]) &&
567 path_utf16[path.size() - 1] != L':') {
568 path_utf16.push_back(L'\\');
569 path_utf16.push_back(L'*');
570 } else {
571 path_utf16.push_back(L'*');
572 }
573
574 // Get the first directory entry.
575 WIN32_FIND_DATAW FirstFind;
576 ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind));
577 if (!FindHandle)
578 return windows_error(::GetLastError());
579
580 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
581 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
582 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
583 FirstFind.cFileName[1] == L'.'))
584 if (!::FindNextFileW(FindHandle, &FirstFind)) {
585 DWORD LastError = ::GetLastError();
586 // Check for end.
587 if (LastError == ERROR_NO_MORE_FILES)
588 return detail::directory_iterator_destruct(it);
589 return windows_error(LastError);
590 } else
591 FilenameLen = ::wcslen(FirstFind.cFileName);
592
593 // Construct the current directory entry.
594 SmallString<128> directory_entry_name_utf8;
595 if (std::error_code ec =
596 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
597 directory_entry_name_utf8))
598 return ec;
599
600 it.IterationHandle = intptr_t(FindHandle.take());
601 SmallString<128> directory_entry_path(path);
602 path::append(directory_entry_path, directory_entry_name_utf8.str());
603 it.CurrentEntry = directory_entry(directory_entry_path.str());
604
605 return std::error_code();
606}
607
608std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
609 if (it.IterationHandle != 0)
610 // Closes the handle if it's valid.
611 ScopedFindHandle close(HANDLE(it.IterationHandle));
612 it.IterationHandle = 0;
613 it.CurrentEntry = directory_entry();
614 return std::error_code();
615}
616
617std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
618 WIN32_FIND_DATAW FindData;
619 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
620 DWORD LastError = ::GetLastError();
621 // Check for end.
622 if (LastError == ERROR_NO_MORE_FILES)
623 return detail::directory_iterator_destruct(it);
624 return windows_error(LastError);
625 }
626
627 size_t FilenameLen = ::wcslen(FindData.cFileName);
628 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
629 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
630 FindData.cFileName[1] == L'.'))
631 return directory_iterator_increment(it);
632
633 SmallString<128> directory_entry_path_utf8;
634 if (std::error_code ec =
635 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
636 directory_entry_path_utf8))
637 return ec;
638
639 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
640 return std::error_code();
641}
642
643std::error_code openFileForRead(const Twine &Name, int &ResultFD) {
1a4d82fc
JJ
644 SmallVector<wchar_t, 128> PathUTF16;
645
85aaf69f 646 if (std::error_code EC = widenPath(Name, PathUTF16))
1a4d82fc
JJ
647 return EC;
648
649 HANDLE H = ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
650 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
651 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
652 if (H == INVALID_HANDLE_VALUE) {
653 DWORD LastError = ::GetLastError();
654 std::error_code EC = windows_error(LastError);
655 // Provide a better error message when trying to open directories.
656 // This only runs if we failed to open the file, so there is probably
657 // no performances issues.
658 if (LastError != ERROR_ACCESS_DENIED)
659 return EC;
660 if (is_directory(Name))
661 return make_error_code(errc::is_a_directory);
662 return EC;
663 }
664
665 int FD = ::_open_osfhandle(intptr_t(H), 0);
666 if (FD == -1) {
667 ::CloseHandle(H);
668 return windows_error(ERROR_INVALID_HANDLE);
669 }
670
671 ResultFD = FD;
672 return std::error_code();
673}
674
675std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
676 sys::fs::OpenFlags Flags, unsigned Mode) {
677 // Verify that we don't have both "append" and "excl".
678 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
679 "Cannot specify both 'excl' and 'append' file creation flags!");
680
1a4d82fc
JJ
681 SmallVector<wchar_t, 128> PathUTF16;
682
85aaf69f 683 if (std::error_code EC = widenPath(Name, PathUTF16))
1a4d82fc
JJ
684 return EC;
685
686 DWORD CreationDisposition;
687 if (Flags & F_Excl)
688 CreationDisposition = CREATE_NEW;
689 else if (Flags & F_Append)
690 CreationDisposition = OPEN_ALWAYS;
691 else
692 CreationDisposition = CREATE_ALWAYS;
223e47cc 693
1a4d82fc
JJ
694 DWORD Access = GENERIC_WRITE;
695 if (Flags & F_RW)
696 Access |= GENERIC_READ;
223e47cc 697
1a4d82fc
JJ
698 HANDLE H = ::CreateFileW(PathUTF16.begin(), Access,
699 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
700 CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
223e47cc 701
1a4d82fc
JJ
702 if (H == INVALID_HANDLE_VALUE) {
703 DWORD LastError = ::GetLastError();
704 std::error_code EC = windows_error(LastError);
705 // Provide a better error message when trying to open directories.
706 // This only runs if we failed to open the file, so there is probably
707 // no performances issues.
708 if (LastError != ERROR_ACCESS_DENIED)
709 return EC;
710 if (is_directory(Name))
711 return make_error_code(errc::is_a_directory);
712 return EC;
223e47cc 713 }
223e47cc 714
1a4d82fc
JJ
715 int OpenFlags = 0;
716 if (Flags & F_Append)
717 OpenFlags |= _O_APPEND;
223e47cc 718
1a4d82fc
JJ
719 if (Flags & F_Text)
720 OpenFlags |= _O_TEXT;
223e47cc 721
1a4d82fc
JJ
722 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
723 if (FD == -1) {
724 ::CloseHandle(H);
725 return windows_error(ERROR_INVALID_HANDLE);
726 }
223e47cc 727
1a4d82fc
JJ
728 ResultFD = FD;
729 return std::error_code();
730}
731} // end namespace fs
223e47cc 732
1a4d82fc 733namespace path {
223e47cc 734
1a4d82fc
JJ
735bool home_directory(SmallVectorImpl<char> &result) {
736 wchar_t Path[MAX_PATH];
737 if (::SHGetFolderPathW(0, CSIDL_APPDATA | CSIDL_FLAG_CREATE, 0,
738 /*SHGFP_TYPE_CURRENT*/0, Path) != S_OK)
223e47cc 739 return false;
223e47cc 740
1a4d82fc 741 if (UTF16ToUTF8(Path, ::wcslen(Path), result))
223e47cc 742 return false;
223e47cc 743
1a4d82fc
JJ
744 return true;
745}
223e47cc 746
1a4d82fc
JJ
747static bool getTempDirEnvVar(const char *Var, SmallVectorImpl<char> &Res) {
748 SmallVector<wchar_t, 128> NameUTF16;
749 if (windows::UTF8ToUTF16(Var, NameUTF16))
223e47cc
LB
750 return false;
751
1a4d82fc
JJ
752 SmallVector<wchar_t, 1024> Buf;
753 size_t Size = 1024;
754 do {
755 Buf.reserve(Size);
756 Size =
757 GetEnvironmentVariableW(NameUTF16.data(), Buf.data(), Buf.capacity());
758 if (Size == 0)
759 return false;
760
761 // Try again with larger buffer.
762 } while (Size > Buf.capacity());
763 Buf.set_size(Size);
223e47cc 764
1a4d82fc 765 if (windows::UTF16ToUTF8(Buf.data(), Size, Res))
223e47cc 766 return false;
223e47cc
LB
767 return true;
768}
769
1a4d82fc
JJ
770static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
771 const char *EnvironmentVariables[] = {"TMP", "TEMP", "USERPROFILE"};
772 for (const char *Env : EnvironmentVariables) {
773 if (getTempDirEnvVar(Env, Res))
774 return true;
775 }
223e47cc
LB
776 return false;
777}
778
1a4d82fc
JJ
779void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
780 (void)ErasedOnReboot;
781 Result.clear();
223e47cc 782
1a4d82fc
JJ
783 // Check whether the temporary directory is specified by an environment
784 // variable.
785 if (getTempDirEnvVar(Result))
786 return;
223e47cc 787
1a4d82fc
JJ
788 // Fall back to a system default.
789 const char *DefaultResult = "C:\\TEMP";
790 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
223e47cc 791}
1a4d82fc 792} // end namespace path
223e47cc 793
1a4d82fc
JJ
794namespace windows {
795std::error_code UTF8ToUTF16(llvm::StringRef utf8,
796 llvm::SmallVectorImpl<wchar_t> &utf16) {
797 if (!utf8.empty()) {
798 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
799 utf8.size(), utf16.begin(), 0);
800
801 if (len == 0)
802 return windows_error(::GetLastError());
803
804 utf16.reserve(len + 1);
805 utf16.set_size(len);
806
807 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
808 utf8.size(), utf16.begin(), utf16.size());
223e47cc 809
1a4d82fc
JJ
810 if (len == 0)
811 return windows_error(::GetLastError());
223e47cc 812 }
1a4d82fc
JJ
813
814 // Make utf16 null terminated.
815 utf16.push_back(0);
816 utf16.pop_back();
817
818 return std::error_code();
223e47cc
LB
819}
820
1a4d82fc
JJ
821static
822std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
823 size_t utf16_len,
824 llvm::SmallVectorImpl<char> &utf8) {
825 if (utf16_len) {
826 // Get length.
827 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
828 0, NULL, NULL);
223e47cc 829
1a4d82fc
JJ
830 if (len == 0)
831 return windows_error(::GetLastError());
223e47cc 832
1a4d82fc
JJ
833 utf8.reserve(len);
834 utf8.set_size(len);
223e47cc 835
1a4d82fc
JJ
836 // Now do the actual conversion.
837 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
838 utf8.size(), NULL, NULL);
839
840 if (len == 0)
841 return windows_error(::GetLastError());
842 }
223e47cc 843
1a4d82fc
JJ
844 // Make utf8 null terminated.
845 utf8.push_back(0);
846 utf8.pop_back();
847
848 return std::error_code();
223e47cc
LB
849}
850
1a4d82fc
JJ
851std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
852 llvm::SmallVectorImpl<char> &utf8) {
853 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
223e47cc 854}
1a4d82fc
JJ
855
856std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
857 llvm::SmallVectorImpl<char> &utf8) {
858 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
223e47cc 859}
1a4d82fc
JJ
860} // end namespace windows
861} // end namespace sys
862} // end namespace llvm