blob: 21afc6d85da5c65e078b00df4bbe63280b52cbab [file] [log] [blame]
Virgile Bellob2f1fb22013-08-23 12:44:05 +00001//===-- Windows.cpp ---------------------------------------------*- 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 provides Windows support functions
11
Zachary Turnerf343968f2016-08-09 23:06:08 +000012#include "lldb/Host/PosixApi.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000013#include "lldb/Host/windows/windows.h"
Virgile Bellob2f1fb22013-08-23 12:44:05 +000014
Zachary Turner190fadc2016-03-22 17:58:09 +000015#include "llvm/Support/ConvertUTF.h"
16
Chaoren Lin167c7962016-04-19 01:09:37 +000017#include <assert.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000018#include <cerrno>
Hafiz Abid Qadeerbdb51592014-03-12 10:39:46 +000019#include <ctype.h>
Kate Stoneb9c1b512016-09-06 20:57:50 +000020#include <io.h>
21#include <stdarg.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000025
Kate Stoneb9c1b512016-09-06 20:57:50 +000026// These prototypes are defined in <direct.h>, but it also defines chdir() and
27// getcwd(), giving multiply defined errors
28extern "C" {
29char *_getcwd(char *buffer, int maxlen);
30int _chdir(const char *path);
Ted Woodward4744ec62015-05-12 18:47:33 +000031}
32
Kate Stoneb9c1b512016-09-06 20:57:50 +000033namespace {
34bool utf8ToWide(const char *utf8, wchar_t *buf, size_t bufSize) {
Dimitar Vlahovski7ca05302016-09-30 14:36:17 +000035 const llvm::UTF8 *sourceStart = reinterpret_cast<const llvm::UTF8 *>(utf8);
Kate Stoneb9c1b512016-09-06 20:57:50 +000036 size_t sourceLen = strlen(utf8) + 1 /* convert null too */;
Dimitar Vlahovski7ca05302016-09-30 14:36:17 +000037 llvm::UTF16 *target = reinterpret_cast<llvm::UTF16 *>(buf);
Dimitar Vlahovski17d9caf2016-09-30 15:41:33 +000038 llvm::ConversionFlags flags = llvm::strictConversion;
Dimitar Vlahovski7ca05302016-09-30 14:36:17 +000039 return llvm::ConvertUTF8toUTF16(&sourceStart, sourceStart + sourceLen, &target,
40 target + bufSize, flags) == llvm::conversionOK;
Zachary Turner190fadc2016-03-22 17:58:09 +000041}
42
Kate Stoneb9c1b512016-09-06 20:57:50 +000043bool wideToUtf8(const wchar_t *wide, char *buf, size_t bufSize) {
Dimitar Vlahovski7ca05302016-09-30 14:36:17 +000044 const llvm::UTF16 *sourceStart = reinterpret_cast<const llvm::UTF16 *>(wide);
Kate Stoneb9c1b512016-09-06 20:57:50 +000045 size_t sourceLen = wcslen(wide) + 1 /* convert null too */;
Dimitar Vlahovski7ca05302016-09-30 14:36:17 +000046 llvm::UTF8 *target = reinterpret_cast<llvm::UTF8 *>(buf);
Dimitar Vlahovski17d9caf2016-09-30 15:41:33 +000047 llvm::ConversionFlags flags = llvm::strictConversion;
Dimitar Vlahovski7ca05302016-09-30 14:36:17 +000048 return llvm::ConvertUTF16toUTF8(&sourceStart, sourceStart + sourceLen, &target,
49 target + bufSize, flags) == llvm::conversionOK;
Zachary Turner190fadc2016-03-22 17:58:09 +000050}
51}
52
Kate Stoneb9c1b512016-09-06 20:57:50 +000053int vasprintf(char **ret, const char *fmt, va_list ap) {
54 char *buf;
55 int len;
56 size_t buflen;
57 va_list ap2;
Virgile Bellob2f1fb22013-08-23 12:44:05 +000058
59#if defined(_MSC_VER) || defined(__MINGW64)
Kate Stoneb9c1b512016-09-06 20:57:50 +000060 ap2 = ap;
61 len = _vscprintf(fmt, ap2);
Virgile Bellob2f1fb22013-08-23 12:44:05 +000062#else
Kate Stoneb9c1b512016-09-06 20:57:50 +000063 va_copy(ap2, ap);
64 len = vsnprintf(NULL, 0, fmt, ap2);
Virgile Bellob2f1fb22013-08-23 12:44:05 +000065#endif
66
Kate Stoneb9c1b512016-09-06 20:57:50 +000067 if (len >= 0 &&
68 (buf = (char *)malloc((buflen = (size_t)(len + 1)))) != NULL) {
69 len = vsnprintf(buf, buflen, fmt, ap);
70 *ret = buf;
71 } else {
72 *ret = NULL;
73 len = -1;
74 }
Virgile Bellob2f1fb22013-08-23 12:44:05 +000075
Kate Stoneb9c1b512016-09-06 20:57:50 +000076 va_end(ap2);
77 return len;
Virgile Bellob2f1fb22013-08-23 12:44:05 +000078}
79
Kate Stoneb9c1b512016-09-06 20:57:50 +000080char *strcasestr(const char *s, const char *find) {
81 char c, sc;
82 size_t len;
Virgile Bellob2f1fb22013-08-23 12:44:05 +000083
Kate Stoneb9c1b512016-09-06 20:57:50 +000084 if ((c = *find++) != 0) {
85 c = tolower((unsigned char)c);
86 len = strlen(find);
87 do {
88 do {
89 if ((sc = *s++) == 0)
90 return 0;
91 } while ((char)tolower((unsigned char)sc) != c);
92 } while (strncasecmp(s, find, len) != 0);
93 s--;
94 }
95 return ((char *)s);
Virgile Bellob2f1fb22013-08-23 12:44:05 +000096}
97
Kate Stoneb9c1b512016-09-06 20:57:50 +000098char *realpath(const char *name, char *resolved) {
99 char *retname = NULL;
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000100
Kate Stoneb9c1b512016-09-06 20:57:50 +0000101 /* SUSv3 says we must set `errno = EINVAL', and return NULL,
102 * if `name' is passed as a NULL pointer.
103 */
104 if (name == NULL) {
105 errno = EINVAL;
106 return NULL;
107 }
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000108
Kate Stoneb9c1b512016-09-06 20:57:50 +0000109 /* Otherwise, `name' must refer to a readable filesystem object,
110 * if we are going to resolve its absolute path name.
111 */
112 wchar_t wideNameBuffer[PATH_MAX];
113 wchar_t *wideName = wideNameBuffer;
114 if (!utf8ToWide(name, wideName, PATH_MAX)) {
115 errno = EINVAL;
116 return NULL;
117 }
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000118
Kate Stoneb9c1b512016-09-06 20:57:50 +0000119 if (_waccess(wideName, 4) != 0)
120 return NULL;
Zachary Turner190fadc2016-03-22 17:58:09 +0000121
Kate Stoneb9c1b512016-09-06 20:57:50 +0000122 /* If `name' didn't point to an existing entity,
123 * then we don't get to here; we simply fall past this block,
124 * returning NULL, with `errno' appropriately set by `access'.
125 *
126 * When we _do_ get to here, then we can use `_fullpath' to
127 * resolve the full path for `name' into `resolved', but first,
128 * check that we have a suitable buffer, in which to return it.
129 */
130
131 if ((retname = resolved) == NULL) {
132 /* Caller didn't give us a buffer, so we'll exercise the
133 * option granted by SUSv3, and allocate one.
Zachary Turner190fadc2016-03-22 17:58:09 +0000134 *
Kate Stoneb9c1b512016-09-06 20:57:50 +0000135 * `_fullpath' would do this for us, but it uses `malloc', and
136 * Microsoft's implementation doesn't set `errno' on failure.
137 * If we don't do this explicitly ourselves, then we will not
138 * know if `_fullpath' fails on `malloc' failure, or for some
139 * other reason, and we want to set `errno = ENOMEM' for the
140 * `malloc' failure case.
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000141 */
142
Kate Stoneb9c1b512016-09-06 20:57:50 +0000143 retname = (char *)malloc(PATH_MAX);
144 if (retname == NULL) {
145 errno = ENOMEM;
146 return NULL;
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000147 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000148 }
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000149
Kate Stoneb9c1b512016-09-06 20:57:50 +0000150 /* Otherwise, when we do have a valid buffer,
151 * `_fullpath' should only fail if the path name is too long.
152 */
Zachary Turner190fadc2016-03-22 17:58:09 +0000153
Kate Stoneb9c1b512016-09-06 20:57:50 +0000154 wchar_t wideFullPathBuffer[PATH_MAX];
155 wchar_t *wideFullPath;
156 if ((wideFullPath = _wfullpath(wideFullPathBuffer, wideName, PATH_MAX)) ==
157 NULL) {
158 errno = ENAMETOOLONG;
159 return NULL;
160 }
Zachary Turner190fadc2016-03-22 17:58:09 +0000161
Kate Stoneb9c1b512016-09-06 20:57:50 +0000162 // Do a LongPath<->ShortPath roundtrip so that case is resolved by OS
163 // FIXME: Check for failure
164 size_t initialLength = wcslen(wideFullPath);
165 GetShortPathNameW(wideFullPath, wideNameBuffer, PATH_MAX);
166 GetLongPathNameW(wideNameBuffer, wideFullPathBuffer, initialLength + 1);
Zachary Turner190fadc2016-03-22 17:58:09 +0000167
Kate Stoneb9c1b512016-09-06 20:57:50 +0000168 // Convert back to UTF-8
169 if (!wideToUtf8(wideFullPathBuffer, retname, PATH_MAX)) {
170 errno = EINVAL;
171 return NULL;
172 }
Zachary Turner190fadc2016-03-22 17:58:09 +0000173
Kate Stoneb9c1b512016-09-06 20:57:50 +0000174 // Force drive to be upper case
175 if (retname[1] == ':')
176 retname[0] = toupper(retname[0]);
Zachary Turner190fadc2016-03-22 17:58:09 +0000177
Kate Stoneb9c1b512016-09-06 20:57:50 +0000178 return retname;
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000179}
Virgile Bellod87fc152013-09-07 05:05:49 +0000180
181#ifdef _MSC_VER
182
Kate Stoneb9c1b512016-09-06 20:57:50 +0000183char *basename(char *path) {
184 char *l1 = strrchr(path, '\\');
185 char *l2 = strrchr(path, '/');
186 if (l2 > l1)
187 l1 = l2;
188 if (!l1)
189 return path; // no base name
190 return &l1[1];
Virgile Bellod87fc152013-09-07 05:05:49 +0000191}
192
Ted Woodward4744ec62015-05-12 18:47:33 +0000193// use _getcwd() instead of GetCurrentDirectory() because it updates errno
Kate Stoneb9c1b512016-09-06 20:57:50 +0000194char *getcwd(char *path, int max) {
195 assert(path == NULL || max <= PATH_MAX);
196 wchar_t wpath[PATH_MAX];
197 if (wchar_t *wresult = _wgetcwd(wpath, PATH_MAX)) {
198 // Caller is allowed to pass in NULL for `path`.
199 // In that case, we're supposed to allocate a
200 // buffer on the caller's behalf.
201 if (path == NULL) {
202 max = UNI_MAX_UTF8_BYTES_PER_CODE_POINT * wcslen(wresult) + 1;
203 path = (char *)malloc(max);
204 if (path == NULL) {
205 errno = ENOMEM;
206 return NULL;
207 }
Zachary Turner190fadc2016-03-22 17:58:09 +0000208 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000209 if (wideToUtf8(wresult, path, max))
210 return path;
211 }
212 return NULL;
Ted Woodward4744ec62015-05-12 18:47:33 +0000213}
214
215// use _chdir() instead of SetCurrentDirectory() because it updates errno
Kate Stoneb9c1b512016-09-06 20:57:50 +0000216int chdir(const char *path) { return _chdir(path); }
217
218char *dirname(char *path) {
219 char *l1 = strrchr(path, '\\');
220 char *l2 = strrchr(path, '/');
221 if (l2 > l1)
222 l1 = l2;
223 if (!l1)
224 return NULL; // no dir name
225 *l1 = 0;
226 return path;
Virgile Bellod87fc152013-09-07 05:05:49 +0000227}
228
Kate Stoneb9c1b512016-09-06 20:57:50 +0000229int strcasecmp(const char *s1, const char *s2) { return stricmp(s1, s2); }
230
231int strncasecmp(const char *s1, const char *s2, size_t n) {
232 return strnicmp(s1, s2, n);
Virgile Bellod87fc152013-09-07 05:05:49 +0000233}
234
Kate Stoneb9c1b512016-09-06 20:57:50 +0000235int usleep(uint32_t useconds) {
236 Sleep(useconds / 1000);
237 return 0;
Chaoren Lin0ef00272015-05-29 19:34:57 +0000238}
239
Zachary Turnerfbf8dad2015-07-24 22:32:22 +0000240#if _MSC_VER < 1900
Chaoren Linee3c2062015-08-20 20:53:15 +0000241namespace lldb_private {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000242int vsnprintf(char *buffer, size_t count, const char *format, va_list argptr) {
243 int old_errno = errno;
244 int r = ::vsnprintf(buffer, count, format, argptr);
245 int new_errno = errno;
246 buffer[count - 1] = '\0';
247 if (r == -1 || r == count) {
248 FILE *nul = fopen("nul", "w");
249 int bytes_written = ::vfprintf(nul, format, argptr);
250 fclose(nul);
251 if (bytes_written < count)
252 errno = new_errno;
253 else {
254 errno = old_errno;
255 r = bytes_written;
Chaoren Lin0ef00272015-05-29 19:34:57 +0000256 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000257 }
258 return r;
Virgile Bellod87fc152013-09-07 05:05:49 +0000259}
Chaoren Linee3c2062015-08-20 20:53:15 +0000260} // namespace lldb_private
Zachary Turnerfbf8dad2015-07-24 22:32:22 +0000261#endif
Virgile Bellod87fc152013-09-07 05:05:49 +0000262
263#endif // _MSC_VER