More long path name support on Windows, this time in program execution.
[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, bool CloseFD, uint64_t Offset) {
471   FileDescriptor = FD;
472   // Make sure that the requested size fits within SIZE_T.
473   if (Size > std::numeric_limits<SIZE_T>::max()) {
474     if (FileDescriptor) {
475       if (CloseFD)
476         _close(FileDescriptor);
477     } else
478       ::CloseHandle(FileHandle);
479     return make_error_code(errc::invalid_argument);
480   }
481
482   DWORD flprotect;
483   switch (Mode) {
484   case readonly:  flprotect = PAGE_READONLY; break;
485   case readwrite: flprotect = PAGE_READWRITE; break;
486   case priv:      flprotect = PAGE_WRITECOPY; break;
487   }
488
489   FileMappingHandle =
490       ::CreateFileMappingW(FileHandle, 0, flprotect,
491                            (Offset + Size) >> 32,
492                            (Offset + Size) & 0xffffffff,
493                            0);
494   if (FileMappingHandle == NULL) {
495     std::error_code ec = windows_error(GetLastError());
496     if (FileDescriptor) {
497       if (CloseFD)
498         _close(FileDescriptor);
499     } else
500       ::CloseHandle(FileHandle);
501     return ec;
502   }
503
504   DWORD dwDesiredAccess;
505   switch (Mode) {
506   case readonly:  dwDesiredAccess = FILE_MAP_READ; break;
507   case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
508   case priv:      dwDesiredAccess = FILE_MAP_COPY; break;
509   }
510   Mapping = ::MapViewOfFile(FileMappingHandle,
511                             dwDesiredAccess,
512                             Offset >> 32,
513                             Offset & 0xffffffff,
514                             Size);
515   if (Mapping == NULL) {
516     std::error_code ec = windows_error(GetLastError());
517     ::CloseHandle(FileMappingHandle);
518     if (FileDescriptor) {
519       if (CloseFD)
520         _close(FileDescriptor);
521     } else
522       ::CloseHandle(FileHandle);
523     return ec;
524   }
525
526   if (Size == 0) {
527     MEMORY_BASIC_INFORMATION mbi;
528     SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
529     if (Result == 0) {
530       std::error_code ec = windows_error(GetLastError());
531       ::UnmapViewOfFile(Mapping);
532       ::CloseHandle(FileMappingHandle);
533       if (FileDescriptor) {
534         if (CloseFD)
535           _close(FileDescriptor);
536       } else
537         ::CloseHandle(FileHandle);
538       return ec;
539     }
540     Size = mbi.RegionSize;
541   }
542
543   // Close all the handles except for the view. It will keep the other handles
544   // alive.
545   ::CloseHandle(FileMappingHandle);
546   if (FileDescriptor) {
547     if (CloseFD)
548       _close(FileDescriptor); // Also closes FileHandle.
549   } else
550     ::CloseHandle(FileHandle);
551   return std::error_code();
552 }
553
554 mapped_file_region::mapped_file_region(const Twine &path,
555                                        mapmode mode,
556                                        uint64_t length,
557                                        uint64_t offset,
558                                        std::error_code &ec)
559   : Mode(mode)
560   , Size(length)
561   , Mapping()
562   , FileDescriptor()
563   , FileHandle(INVALID_HANDLE_VALUE)
564   , FileMappingHandle() {
565   SmallVector<wchar_t, 128> path_utf16;
566
567   // Convert path to UTF-16.
568   if ((ec = widenPath(path, path_utf16)))
569     return;
570
571   // Get file handle for creating a file mapping.
572   FileHandle = ::CreateFileW(c_str(path_utf16),
573                              Mode == readonly ? GENERIC_READ
574                                               : GENERIC_READ | GENERIC_WRITE,
575                              Mode == readonly ? FILE_SHARE_READ
576                                               : 0,
577                              0,
578                              Mode == readonly ? OPEN_EXISTING
579                                               : OPEN_ALWAYS,
580                              Mode == readonly ? FILE_ATTRIBUTE_READONLY
581                                               : FILE_ATTRIBUTE_NORMAL,
582                              0);
583   if (FileHandle == INVALID_HANDLE_VALUE) {
584     ec = windows_error(::GetLastError());
585     return;
586   }
587
588   FileDescriptor = 0;
589   ec = init(FileDescriptor, true, offset);
590   if (ec) {
591     Mapping = FileMappingHandle = 0;
592     FileHandle = INVALID_HANDLE_VALUE;
593     FileDescriptor = 0;
594   }
595 }
596
597 mapped_file_region::mapped_file_region(int fd,
598                                        bool closefd,
599                                        mapmode mode,
600                                        uint64_t length,
601                                        uint64_t offset,
602                                        std::error_code &ec)
603   : Mode(mode)
604   , Size(length)
605   , Mapping()
606   , FileDescriptor(fd)
607   , FileHandle(INVALID_HANDLE_VALUE)
608   , FileMappingHandle() {
609   FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(fd));
610   if (FileHandle == INVALID_HANDLE_VALUE) {
611     if (closefd)
612       _close(FileDescriptor);
613     FileDescriptor = 0;
614     ec = make_error_code(errc::bad_file_descriptor);
615     return;
616   }
617
618   ec = init(FileDescriptor, closefd, offset);
619   if (ec) {
620     Mapping = FileMappingHandle = 0;
621     FileHandle = INVALID_HANDLE_VALUE;
622     FileDescriptor = 0;
623   }
624 }
625
626 mapped_file_region::~mapped_file_region() {
627   if (Mapping)
628     ::UnmapViewOfFile(Mapping);
629 }
630
631 mapped_file_region::mapped_file_region(mapped_file_region &&other)
632   : Mode(other.Mode)
633   , Size(other.Size)
634   , Mapping(other.Mapping)
635   , FileDescriptor(other.FileDescriptor)
636   , FileHandle(other.FileHandle)
637   , FileMappingHandle(other.FileMappingHandle) {
638   other.Mapping = other.FileMappingHandle = 0;
639   other.FileHandle = INVALID_HANDLE_VALUE;
640   other.FileDescriptor = 0;
641 }
642
643 mapped_file_region::mapmode mapped_file_region::flags() const {
644   assert(Mapping && "Mapping failed but used anyway!");
645   return Mode;
646 }
647
648 uint64_t mapped_file_region::size() const {
649   assert(Mapping && "Mapping failed but used anyway!");
650   return Size;
651 }
652
653 char *mapped_file_region::data() const {
654   assert(Mode != readonly && "Cannot get non-const data for readonly mapping!");
655   assert(Mapping && "Mapping failed but used anyway!");
656   return reinterpret_cast<char*>(Mapping);
657 }
658
659 const char *mapped_file_region::const_data() const {
660   assert(Mapping && "Mapping failed but used anyway!");
661   return reinterpret_cast<const char*>(Mapping);
662 }
663
664 int mapped_file_region::alignment() {
665   SYSTEM_INFO SysInfo;
666   ::GetSystemInfo(&SysInfo);
667   return SysInfo.dwAllocationGranularity;
668 }
669
670 std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
671                                                 StringRef path){
672   SmallVector<wchar_t, 128> path_utf16;
673
674   if (std::error_code ec = widenPath(path, path_utf16))
675     return ec;
676
677   // Convert path to the format that Windows is happy with.
678   if (path_utf16.size() > 0 &&
679       !is_separator(path_utf16[path.size() - 1]) &&
680       path_utf16[path.size() - 1] != L':') {
681     path_utf16.push_back(L'\\');
682     path_utf16.push_back(L'*');
683   } else {
684     path_utf16.push_back(L'*');
685   }
686
687   //  Get the first directory entry.
688   WIN32_FIND_DATAW FirstFind;
689   ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind));
690   if (!FindHandle)
691     return windows_error(::GetLastError());
692
693   size_t FilenameLen = ::wcslen(FirstFind.cFileName);
694   while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
695          (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
696                               FirstFind.cFileName[1] == L'.'))
697     if (!::FindNextFileW(FindHandle, &FirstFind)) {
698       DWORD LastError = ::GetLastError();
699       // Check for end.
700       if (LastError == ERROR_NO_MORE_FILES)
701         return detail::directory_iterator_destruct(it);
702       return windows_error(LastError);
703     } else
704       FilenameLen = ::wcslen(FirstFind.cFileName);
705
706   // Construct the current directory entry.
707   SmallString<128> directory_entry_name_utf8;
708   if (std::error_code ec =
709           UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
710                       directory_entry_name_utf8))
711     return ec;
712
713   it.IterationHandle = intptr_t(FindHandle.take());
714   SmallString<128> directory_entry_path(path);
715   path::append(directory_entry_path, directory_entry_name_utf8.str());
716   it.CurrentEntry = directory_entry(directory_entry_path.str());
717
718   return std::error_code();
719 }
720
721 std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
722   if (it.IterationHandle != 0)
723     // Closes the handle if it's valid.
724     ScopedFindHandle close(HANDLE(it.IterationHandle));
725   it.IterationHandle = 0;
726   it.CurrentEntry = directory_entry();
727   return std::error_code();
728 }
729
730 std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
731   WIN32_FIND_DATAW FindData;
732   if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
733     DWORD LastError = ::GetLastError();
734     // Check for end.
735     if (LastError == ERROR_NO_MORE_FILES)
736       return detail::directory_iterator_destruct(it);
737     return windows_error(LastError);
738   }
739
740   size_t FilenameLen = ::wcslen(FindData.cFileName);
741   if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
742       (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
743                            FindData.cFileName[1] == L'.'))
744     return directory_iterator_increment(it);
745
746   SmallString<128> directory_entry_path_utf8;
747   if (std::error_code ec =
748           UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
749                       directory_entry_path_utf8))
750     return ec;
751
752   it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
753   return std::error_code();
754 }
755
756 std::error_code openFileForRead(const Twine &Name, int &ResultFD) {
757   SmallVector<wchar_t, 128> PathUTF16;
758
759   if (std::error_code EC = widenPath(Name, PathUTF16))
760     return EC;
761
762   HANDLE H = ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
763                            FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
764                            OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
765   if (H == INVALID_HANDLE_VALUE) {
766     DWORD LastError = ::GetLastError();
767     std::error_code EC = windows_error(LastError);
768     // Provide a better error message when trying to open directories.
769     // This only runs if we failed to open the file, so there is probably
770     // no performances issues.
771     if (LastError != ERROR_ACCESS_DENIED)
772       return EC;
773     if (is_directory(Name))
774       return make_error_code(errc::is_a_directory);
775     return EC;
776   }
777
778   int FD = ::_open_osfhandle(intptr_t(H), 0);
779   if (FD == -1) {
780     ::CloseHandle(H);
781     return windows_error(ERROR_INVALID_HANDLE);
782   }
783
784   ResultFD = FD;
785   return std::error_code();
786 }
787
788 std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
789                             sys::fs::OpenFlags Flags, unsigned Mode) {
790   // Verify that we don't have both "append" and "excl".
791   assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
792          "Cannot specify both 'excl' and 'append' file creation flags!");
793
794   SmallVector<wchar_t, 128> PathUTF16;
795
796   if (std::error_code EC = widenPath(Name, PathUTF16))
797     return EC;
798
799   DWORD CreationDisposition;
800   if (Flags & F_Excl)
801     CreationDisposition = CREATE_NEW;
802   else if (Flags & F_Append)
803     CreationDisposition = OPEN_ALWAYS;
804   else
805     CreationDisposition = CREATE_ALWAYS;
806
807   DWORD Access = GENERIC_WRITE;
808   if (Flags & F_RW)
809     Access |= GENERIC_READ;
810
811   HANDLE H = ::CreateFileW(PathUTF16.begin(), Access,
812                            FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
813                            CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
814
815   if (H == INVALID_HANDLE_VALUE) {
816     DWORD LastError = ::GetLastError();
817     std::error_code EC = windows_error(LastError);
818     // Provide a better error message when trying to open directories.
819     // This only runs if we failed to open the file, so there is probably
820     // no performances issues.
821     if (LastError != ERROR_ACCESS_DENIED)
822       return EC;
823     if (is_directory(Name))
824       return make_error_code(errc::is_a_directory);
825     return EC;
826   }
827
828   int OpenFlags = 0;
829   if (Flags & F_Append)
830     OpenFlags |= _O_APPEND;
831
832   if (Flags & F_Text)
833     OpenFlags |= _O_TEXT;
834
835   int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
836   if (FD == -1) {
837     ::CloseHandle(H);
838     return windows_error(ERROR_INVALID_HANDLE);
839   }
840
841   ResultFD = FD;
842   return std::error_code();
843 }
844 } // end namespace fs
845
846 namespace path {
847
848 bool home_directory(SmallVectorImpl<char> &result) {
849   wchar_t Path[MAX_PATH];
850   if (::SHGetFolderPathW(0, CSIDL_APPDATA | CSIDL_FLAG_CREATE, 0,
851                          /*SHGFP_TYPE_CURRENT*/0, Path) != S_OK)
852     return false;
853
854   if (UTF16ToUTF8(Path, ::wcslen(Path), result))
855     return false;
856
857   return true;
858 }
859
860 static bool getTempDirEnvVar(const char *Var, SmallVectorImpl<char> &Res) {
861   SmallVector<wchar_t, 128> NameUTF16;
862   if (windows::UTF8ToUTF16(Var, NameUTF16))
863     return false;
864
865   SmallVector<wchar_t, 1024> Buf;
866   size_t Size = 1024;
867   do {
868     Buf.reserve(Size);
869     Size =
870         GetEnvironmentVariableW(NameUTF16.data(), Buf.data(), Buf.capacity());
871     if (Size == 0)
872       return false;
873
874     // Try again with larger buffer.
875   } while (Size > Buf.capacity());
876   Buf.set_size(Size);
877
878   if (windows::UTF16ToUTF8(Buf.data(), Size, Res))
879     return false;
880   return true;
881 }
882
883 static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
884   const char *EnvironmentVariables[] = {"TMP", "TEMP", "USERPROFILE"};
885   for (const char *Env : EnvironmentVariables) {
886     if (getTempDirEnvVar(Env, Res))
887       return true;
888   }
889   return false;
890 }
891
892 void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
893   (void)ErasedOnReboot;
894   Result.clear();
895
896   // Check whether the temporary directory is specified by an environment
897   // variable.
898   if (getTempDirEnvVar(Result))
899     return;
900
901   // Fall back to a system default.
902   const char *DefaultResult = "C:\\TEMP";
903   Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
904 }
905 } // end namespace path
906
907 namespace windows {
908 std::error_code UTF8ToUTF16(llvm::StringRef utf8,
909                             llvm::SmallVectorImpl<wchar_t> &utf16) {
910   if (!utf8.empty()) {
911     int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
912                                     utf8.size(), utf16.begin(), 0);
913
914     if (len == 0)
915       return windows_error(::GetLastError());
916
917     utf16.reserve(len + 1);
918     utf16.set_size(len);
919
920     len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
921                                 utf8.size(), utf16.begin(), utf16.size());
922
923     if (len == 0)
924       return windows_error(::GetLastError());
925   }
926
927   // Make utf16 null terminated.
928   utf16.push_back(0);
929   utf16.pop_back();
930
931   return std::error_code();
932 }
933
934 static
935 std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
936                                 size_t utf16_len,
937                                 llvm::SmallVectorImpl<char> &utf8) {
938   if (utf16_len) {
939     // Get length.
940     int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
941                                     0, NULL, NULL);
942
943     if (len == 0)
944       return windows_error(::GetLastError());
945
946     utf8.reserve(len);
947     utf8.set_size(len);
948
949     // Now do the actual conversion.
950     len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
951                                 utf8.size(), NULL, NULL);
952
953     if (len == 0)
954       return windows_error(::GetLastError());
955   }
956
957   // Make utf8 null terminated.
958   utf8.push_back(0);
959   utf8.pop_back();
960
961   return std::error_code();
962 }
963
964 std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
965                             llvm::SmallVectorImpl<char> &utf8) {
966   return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
967 }
968
969 std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
970                              llvm::SmallVectorImpl<char> &utf8) {
971   return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
972 }
973 } // end namespace windows
974 } // end namespace sys
975 } // end namespace llvm