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