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