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