blob: 335cecabe118cd4041dad7f62012cd4c68db0867 [file] [log] [blame]
Alexey Samsonov7f9c5a22012-06-05 07:46:31 +00001//===-- sanitizer_win.cc --------------------------------------------------===//
Alexey Samsonovc5d46512012-06-05 07:05:10 +00002//
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 is shared between AddressSanitizer and ThreadSanitizer
11// run-time libraries and implements windows-specific functions from
12// sanitizer_libc.h.
13//===----------------------------------------------------------------------===//
Evgeniy Stepanov24e13722013-03-19 14:33:38 +000014
15#include "sanitizer_platform.h"
16#if SANITIZER_WINDOWS
17
Dmitry Vyukov33b2a942012-11-06 13:19:59 +000018#define WIN32_LEAN_AND_MEAN
19#define NOGDI
Alexey Samsonovc5d46512012-06-05 07:05:10 +000020#include <windows.h>
Stephen Hines6d186232014-11-26 17:56:19 -080021#include <dbghelp.h>
22#include <io.h>
Stephen Hines86277eb2015-03-23 12:06:32 -070023#include <psapi.h>
Stephen Hines6d186232014-11-26 17:56:19 -080024#include <stdlib.h>
Alexey Samsonovc5d46512012-06-05 07:05:10 +000025
Alexey Samsonov9929ffd2012-06-06 09:43:32 +000026#include "sanitizer_common.h"
Alexey Samsonovc5d46512012-06-05 07:05:10 +000027#include "sanitizer_libc.h"
Dmitry Vyukov53833ea2013-01-14 14:28:06 +000028#include "sanitizer_mutex.h"
Sergey Matveev736cf492013-05-08 12:45:55 +000029#include "sanitizer_placement_new.h"
30#include "sanitizer_stacktrace.h"
Alexey Samsonovc5d46512012-06-05 07:05:10 +000031
Alexey Samsonovc5d46512012-06-05 07:05:10 +000032namespace __sanitizer {
33
Peter Collingbourne9578a3e2013-05-08 14:43:49 +000034#include "sanitizer_syscall_generic.inc"
35
Alexey Samsonove5931fd2012-06-07 07:13:46 +000036// --------------------- sanitizer_common.h
Kostya Serebryanyf67ec2b2012-11-23 15:38:49 +000037uptr GetPageSize() {
38 return 1U << 14; // FIXME: is this configurable?
39}
40
41uptr GetMmapGranularity() {
42 return 1U << 16; // FIXME: is this configurable?
43}
44
Timur Iskhodzhanovbb7f2d82013-07-16 09:47:39 +000045uptr GetMaxVirtualAddress() {
46 SYSTEM_INFO si;
47 GetSystemInfo(&si);
48 return (uptr)si.lpMaximumApplicationAddress;
49}
50
Alexey Samsonov93b4caf2012-11-09 14:45:30 +000051bool FileExists(const char *filename) {
52 UNIMPLEMENTED();
53}
54
Peter Collingbourne0b694fc2013-05-17 16:56:53 +000055uptr internal_getpid() {
Alexey Samsonov230c3be2012-06-06 09:26:25 +000056 return GetProcessId(GetCurrentProcess());
57}
58
Timur Iskhodzhanov2c969872013-03-25 22:04:29 +000059// In contrast to POSIX, on Windows GetCurrentThreadId()
60// returns a system-unique identifier.
61uptr GetTid() {
Alexey Samsonovfa3daaf2012-06-15 06:37:34 +000062 return GetCurrentThreadId();
63}
64
Timur Iskhodzhanov2c969872013-03-25 22:04:29 +000065uptr GetThreadSelf() {
66 return GetTid();
67}
68
Stephen Hines6d186232014-11-26 17:56:19 -080069#if !SANITIZER_GO
Alexey Samsonoved996f72012-06-07 07:32:00 +000070void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
Alexey Samsonove5931fd2012-06-07 07:13:46 +000071 uptr *stack_bottom) {
72 CHECK(stack_top);
73 CHECK(stack_bottom);
74 MEMORY_BASIC_INFORMATION mbi;
Kostya Serebryany69850852012-06-20 15:19:17 +000075 CHECK_NE(VirtualQuery(&mbi /* on stack */, &mbi, sizeof(mbi)), 0);
Alexey Samsonove5931fd2012-06-07 07:13:46 +000076 // FIXME: is it possible for the stack to not be a single allocation?
77 // Are these values what ASan expects to get (reserved, not committed;
78 // including stack guard page) ?
79 *stack_top = (uptr)mbi.BaseAddress + mbi.RegionSize;
80 *stack_bottom = (uptr)mbi.AllocationBase;
81}
Stephen Hines6d186232014-11-26 17:56:19 -080082#endif // #if !SANITIZER_GO
Alexey Samsonove5931fd2012-06-07 07:13:46 +000083
Alexey Samsonova25b3462012-06-06 16:15:07 +000084void *MmapOrDie(uptr size, const char *mem_type) {
Alexey Samsonov230c3be2012-06-06 09:26:25 +000085 void *rv = VirtualAlloc(0, size, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
Alexey Samsonova25b3462012-06-06 16:15:07 +000086 if (rv == 0) {
Stephen Hines2d1fdb22014-05-28 23:58:16 -070087 Report("ERROR: %s failed to "
88 "allocate 0x%zx (%zd) bytes of %s (error code: %d)\n",
89 SanitizerToolName, size, size, mem_type, GetLastError());
Alexey Samsonova25b3462012-06-06 16:15:07 +000090 CHECK("unable to mmap" && 0);
91 }
Alexey Samsonov230c3be2012-06-06 09:26:25 +000092 return rv;
93}
94
95void UnmapOrDie(void *addr, uptr size) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +000096 if (VirtualFree(addr, size, MEM_DECOMMIT) == 0) {
Stephen Hines2d1fdb22014-05-28 23:58:16 -070097 Report("ERROR: %s failed to "
98 "deallocate 0x%zx (%zd) bytes at address %p (error code: %d)\n",
99 SanitizerToolName, size, size, addr, GetLastError());
Alexey Samsonova25b3462012-06-06 16:15:07 +0000100 CHECK("unable to unmap" && 0);
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000101 }
Alexey Samsonov230c3be2012-06-06 09:26:25 +0000102}
103
Alexey Samsonovf607fc12012-06-14 14:42:58 +0000104void *MmapFixedNoReserve(uptr fixed_addr, uptr size) {
Kostya Serebryany9bfe78f2012-12-13 05:36:00 +0000105 // FIXME: is this really "NoReserve"? On Win32 this does not matter much,
106 // but on Win64 it does.
Dmitry Vyukov33b2a942012-11-06 13:19:59 +0000107 void *p = VirtualAlloc((LPVOID)fixed_addr, size,
108 MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
109 if (p == 0)
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700110 Report("ERROR: %s failed to "
111 "allocate %p (%zd) bytes at %p (error code: %d)\n",
112 SanitizerToolName, size, size, fixed_addr, GetLastError());
Dmitry Vyukov33b2a942012-11-06 13:19:59 +0000113 return p;
Alexey Samsonovf607fc12012-06-14 14:42:58 +0000114}
115
Kostya Serebryany9bfe78f2012-12-13 05:36:00 +0000116void *MmapFixedOrDie(uptr fixed_addr, uptr size) {
Kostya Serebryany8c58aa72012-12-13 05:51:02 +0000117 return MmapFixedNoReserve(fixed_addr, size);
Kostya Serebryany9bfe78f2012-12-13 05:36:00 +0000118}
119
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700120void *MmapNoReserveOrDie(uptr size, const char *mem_type) {
121 // FIXME: make this really NoReserve?
122 return MmapOrDie(size, mem_type);
123}
124
Alexey Samsonovf607fc12012-06-14 14:42:58 +0000125void *Mprotect(uptr fixed_addr, uptr size) {
Stephen Hines86277eb2015-03-23 12:06:32 -0700126 void *res = VirtualAlloc((LPVOID)fixed_addr, size,
127 MEM_RESERVE | MEM_COMMIT, PAGE_NOACCESS);
128 if (res == 0)
129 Report("WARNING: %s failed to "
130 "mprotect %p (%zd) bytes at %p (error code: %d)\n",
131 SanitizerToolName, size, size, fixed_addr, GetLastError());
132 return res;
Alexey Samsonovf607fc12012-06-14 14:42:58 +0000133}
134
Timur Iskhodzhanov2b10d392013-02-08 12:02:00 +0000135void FlushUnneededShadowMemory(uptr addr, uptr size) {
136 // This is almost useless on 32-bits.
Stephen Hines86277eb2015-03-23 12:06:32 -0700137 // FIXME: add madvise-analog when we move to 64-bits.
138}
139
140void NoHugePagesInRegion(uptr addr, uptr size) {
141 // FIXME: probably similar to FlushUnneededShadowMemory.
142}
143
144void DontDumpShadowMemory(uptr addr, uptr length) {
145 // This is almost useless on 32-bits.
146 // FIXME: add madvise-analog when we move to 64-bits.
Timur Iskhodzhanov2b10d392013-02-08 12:02:00 +0000147}
148
Alexey Samsonovdd3a9112012-06-15 07:29:14 +0000149bool MemoryRangeIsAvailable(uptr range_start, uptr range_end) {
Stephen Hines86277eb2015-03-23 12:06:32 -0700150 MEMORY_BASIC_INFORMATION mbi;
151 CHECK(VirtualQuery((void *)range_start, &mbi, sizeof(mbi)));
152 return mbi.Protect == PAGE_NOACCESS &&
153 (uptr)mbi.BaseAddress + mbi.RegionSize >= range_end;
Alexey Samsonovdd3a9112012-06-15 07:29:14 +0000154}
155
Alexey Samsonova68633f2012-07-03 08:24:14 +0000156void *MapFileToMemory(const char *file_name, uptr *buff_size) {
157 UNIMPLEMENTED();
158}
159
Stephen Hines6a211c52014-07-21 00:49:56 -0700160void *MapWritableFileToMemory(void *addr, uptr size, uptr fd, uptr offset) {
161 UNIMPLEMENTED();
162}
163
Alexey Samsonova3ab1922013-03-14 11:29:06 +0000164static const int kMaxEnvNameLength = 128;
Dmitry Vyukovc5288672013-06-10 10:02:02 +0000165static const DWORD kMaxEnvValueLength = 32767;
Alexey Samsonov1ef94b12013-03-14 11:10:23 +0000166
167namespace {
168
169struct EnvVariable {
170 char name[kMaxEnvNameLength];
171 char value[kMaxEnvValueLength];
172};
173
174} // namespace
175
176static const int kEnvVariables = 5;
177static EnvVariable env_vars[kEnvVariables];
178static int num_env_vars;
179
Alexey Samsonov3dbeabb2012-06-14 14:07:21 +0000180const char *GetEnv(const char *name) {
Alexey Samsonov1ef94b12013-03-14 11:10:23 +0000181 // Note: this implementation caches the values of the environment variables
182 // and limits their quantity.
183 for (int i = 0; i < num_env_vars; i++) {
184 if (0 == internal_strcmp(name, env_vars[i].name))
185 return env_vars[i].value;
186 }
187 CHECK_LT(num_env_vars, kEnvVariables);
188 DWORD rv = GetEnvironmentVariableA(name, env_vars[num_env_vars].value,
189 kMaxEnvValueLength);
190 if (rv > 0 && rv < kMaxEnvValueLength) {
191 CHECK_LT(internal_strlen(name), kMaxEnvNameLength);
192 internal_strncpy(env_vars[num_env_vars].name, name, kMaxEnvNameLength);
193 num_env_vars++;
194 return env_vars[num_env_vars - 1].value;
195 }
Alexey Samsonov3dbeabb2012-06-14 14:07:21 +0000196 return 0;
197}
198
Alexey Samsonov0969bcf2012-06-18 08:44:30 +0000199const char *GetPwd() {
200 UNIMPLEMENTED();
201}
202
Alexey Samsonov0fa691b2013-02-18 07:17:12 +0000203u32 GetUid() {
204 UNIMPLEMENTED();
205}
206
Stephen Hines86277eb2015-03-23 12:06:32 -0700207namespace {
208struct ModuleInfo {
209 HMODULE handle;
210 uptr base_address;
211 uptr end_address;
212};
213
214int CompareModulesBase(const void *pl, const void *pr) {
215 const ModuleInfo &l = *(ModuleInfo *)pl, &r = *(ModuleInfo *)pr;
216 if (l.base_address < r.base_address)
217 return -1;
218 return l.base_address > r.base_address;
Alexey Samsonovbe7420c2012-06-15 06:08:19 +0000219}
Stephen Hines86277eb2015-03-23 12:06:32 -0700220} // namespace
221
222#ifndef SANITIZER_GO
223void DumpProcessMap() {
224 Report("Dumping process modules:\n");
225 HANDLE cur_process = GetCurrentProcess();
226
227 // Query the list of modules. Start by assuming there are no more than 256
228 // modules and retry if that's not sufficient.
229 ModuleInfo *modules;
230 size_t num_modules;
231 {
232 HMODULE *hmodules = 0;
233 uptr modules_buffer_size = sizeof(HMODULE) * 256;
234 DWORD bytes_required;
235 while (!hmodules) {
236 hmodules = (HMODULE *)MmapOrDie(modules_buffer_size, __FUNCTION__);
237 CHECK(EnumProcessModules(cur_process, hmodules, modules_buffer_size,
238 &bytes_required));
239 if (bytes_required > modules_buffer_size) {
240 // Either there turned out to be more than 256 hmodules, or new hmodules
241 // could have loaded since the last try. Retry.
242 UnmapOrDie(hmodules, modules_buffer_size);
243 hmodules = 0;
244 modules_buffer_size = bytes_required;
245 }
246 }
247
248 num_modules = bytes_required / sizeof(HMODULE);
249 modules =
250 (ModuleInfo *)MmapOrDie(num_modules * sizeof(ModuleInfo), __FUNCTION__);
251 for (size_t i = 0; i < num_modules; ++i) {
252 modules[i].handle = hmodules[i];
253 MODULEINFO mi;
254 if (!GetModuleInformation(cur_process, hmodules[i], &mi, sizeof(mi)))
255 continue;
256 modules[i].base_address = (uptr)mi.lpBaseOfDll;
257 modules[i].end_address = (uptr)mi.lpBaseOfDll + mi.SizeOfImage;
258 }
259 UnmapOrDie(hmodules, modules_buffer_size);
260 }
261
262 qsort(modules, num_modules, sizeof(ModuleInfo), CompareModulesBase);
263
264 for (size_t i = 0; i < num_modules; ++i) {
265 const ModuleInfo &mi = modules[i];
266 char module_name[MAX_PATH];
267 bool got_module_name = GetModuleFileNameA(
268 mi.handle, module_name, sizeof(module_name));
269 if (mi.end_address != 0) {
270 Printf("\t%p-%p %s\n", mi.base_address, mi.end_address,
271 got_module_name ? module_name : "[no name]");
272 } else if (got_module_name) {
273 Printf("\t??\?-??? %s\n", module_name);
274 } else {
275 Printf("\t???\n");
276 }
277 }
278 UnmapOrDie(modules, num_modules * sizeof(ModuleInfo));
279}
280#endif
Alexey Samsonovbe7420c2012-06-15 06:08:19 +0000281
Stephen Hines6d186232014-11-26 17:56:19 -0800282void DisableCoreDumperIfNecessary() {
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700283 // Do nothing.
Alexey Samsonovbe7420c2012-06-15 06:08:19 +0000284}
285
Alexey Samsonovd7e5bb42012-09-17 09:12:39 +0000286void ReExec() {
287 UNIMPLEMENTED();
288}
289
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700290void PrepareForSandboxing(__sanitizer_sandbox_arguments *args) {
291 (void)args;
Alexander Potapenko25742572012-12-10 13:10:40 +0000292 // Nothing here for now.
293}
294
Alexey Samsonovd7e5bb42012-09-17 09:12:39 +0000295bool StackSizeIsUnlimited() {
296 UNIMPLEMENTED();
Alexey Samsonovd7e5bb42012-09-17 09:12:39 +0000297}
298
299void SetStackSizeLimitInBytes(uptr limit) {
300 UNIMPLEMENTED();
301}
302
Stephen Hines6d186232014-11-26 17:56:19 -0800303bool AddressSpaceIsUnlimited() {
304 UNIMPLEMENTED();
305}
306
307void SetAddressSpaceUnlimited() {
308 UNIMPLEMENTED();
309}
310
Alexey Samsonov1dcd1d92013-09-03 13:20:48 +0000311char *FindPathToBinary(const char *name) {
Timur Iskhodzhanov5a58ef42013-09-03 15:50:13 +0000312 // Nothing here for now.
313 return 0;
Alexey Samsonov1dcd1d92013-09-03 13:20:48 +0000314}
315
Alexey Samsonovfa3daaf2012-06-15 06:37:34 +0000316void SleepForSeconds(int seconds) {
317 Sleep(seconds * 1000);
318}
319
Alexey Samsonov0969bcf2012-06-18 08:44:30 +0000320void SleepForMillis(int millis) {
321 Sleep(millis);
322}
323
Dmitry Vyukovc5288672013-06-10 10:02:02 +0000324u64 NanoTime() {
325 return 0;
326}
327
Alexey Samsonovfa3daaf2012-06-15 06:37:34 +0000328void Abort() {
Stephen Hines86277eb2015-03-23 12:06:32 -0700329 if (::IsDebuggerPresent())
330 __debugbreak();
331 internal__exit(3);
Alexey Samsonovfa3daaf2012-06-15 06:37:34 +0000332}
333
Alexey Samsonov7847d772013-09-10 14:36:16 +0000334uptr GetListOfModules(LoadedModule *modules, uptr max_modules,
335 string_predicate_t filter) {
336 UNIMPLEMENTED();
337};
338
Dmitry Vyukov33b2a942012-11-06 13:19:59 +0000339#ifndef SANITIZER_GO
Alexey Samsonovfa3daaf2012-06-15 06:37:34 +0000340int Atexit(void (*function)(void)) {
341 return atexit(function);
342}
Dmitry Vyukov33b2a942012-11-06 13:19:59 +0000343#endif
Alexey Samsonovfa3daaf2012-06-15 06:37:34 +0000344
Alexey Samsonove5931fd2012-06-07 07:13:46 +0000345// ------------------ sanitizer_libc.h
Peter Collingbourne67128332013-05-08 18:15:01 +0000346uptr internal_mmap(void *addr, uptr length, int prot, int flags,
347 int fd, u64 offset) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000348 UNIMPLEMENTED();
Alexey Samsonovc5d46512012-06-05 07:05:10 +0000349}
350
Peter Collingbourne67128332013-05-08 18:15:01 +0000351uptr internal_munmap(void *addr, uptr length) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000352 UNIMPLEMENTED();
Alexey Samsonov1f11d312012-06-05 09:49:25 +0000353}
354
Peter Collingbourne9578a3e2013-05-08 14:43:49 +0000355uptr internal_close(fd_t fd) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000356 UNIMPLEMENTED();
Alexey Samsonova56aefd2012-06-05 08:32:53 +0000357}
358
Alexey Samsonov84d57b42012-11-02 15:18:34 +0000359int internal_isatty(fd_t fd) {
Alexey Samsonov2bac6612012-12-19 07:57:42 +0000360 return _isatty(fd);
Alexey Samsonov84d57b42012-11-02 15:18:34 +0000361}
362
Peter Collingbourne67128332013-05-08 18:15:01 +0000363uptr internal_open(const char *filename, int flags) {
Alexey Samsonovee7cc442013-02-01 15:58:46 +0000364 UNIMPLEMENTED();
365}
366
Peter Collingbourne67128332013-05-08 18:15:01 +0000367uptr internal_open(const char *filename, int flags, u32 mode) {
Alexey Samsonovee7cc442013-02-01 15:58:46 +0000368 UNIMPLEMENTED();
369}
370
Peter Collingbourne9578a3e2013-05-08 14:43:49 +0000371uptr OpenFile(const char *filename, bool write) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000372 UNIMPLEMENTED();
Alexey Samsonovc5d46512012-06-05 07:05:10 +0000373}
374
Alexey Samsonova56aefd2012-06-05 08:32:53 +0000375uptr internal_read(fd_t fd, void *buf, uptr count) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000376 UNIMPLEMENTED();
Alexey Samsonova56aefd2012-06-05 08:32:53 +0000377}
378
379uptr internal_write(fd_t fd, const void *buf, uptr count) {
Alexey Samsonovf3457cb2012-11-02 09:38:47 +0000380 if (fd != kStderrFd)
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000381 UNIMPLEMENTED();
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700382
383 static HANDLE output_stream = 0;
384 // Abort immediately if we know printing is not possible.
385 if (output_stream == INVALID_HANDLE_VALUE)
Alexey Samsonova56aefd2012-06-05 08:32:53 +0000386 return 0;
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700387
388 // If called for the first time, try to use stderr to output stuff,
389 // falling back to stdout if anything goes wrong.
390 bool fallback_to_stdout = false;
391 if (output_stream == 0) {
392 output_stream = GetStdHandle(STD_ERROR_HANDLE);
393 // We don't distinguish "no such handle" from error.
394 if (output_stream == 0)
395 output_stream = INVALID_HANDLE_VALUE;
396
397 if (output_stream == INVALID_HANDLE_VALUE) {
398 // Retry with stdout?
399 output_stream = GetStdHandle(STD_OUTPUT_HANDLE);
400 if (output_stream == 0)
401 output_stream = INVALID_HANDLE_VALUE;
402 if (output_stream == INVALID_HANDLE_VALUE)
403 return 0;
404 } else {
405 // Successfully got an stderr handle. However, if WriteFile() fails,
406 // we can still try to fallback to stdout.
407 fallback_to_stdout = true;
408 }
409 }
410
411 DWORD ret;
412 if (WriteFile(output_stream, buf, count, &ret, 0))
413 return ret;
414
415 // Re-try with stdout if using a valid stderr handle fails.
416 if (fallback_to_stdout) {
417 output_stream = GetStdHandle(STD_OUTPUT_HANDLE);
418 if (output_stream == 0)
419 output_stream = INVALID_HANDLE_VALUE;
420 if (output_stream != INVALID_HANDLE_VALUE)
421 return internal_write(fd, buf, count);
422 }
423 return 0;
Alexey Samsonova56aefd2012-06-05 08:32:53 +0000424}
425
Peter Collingbourne9578a3e2013-05-08 14:43:49 +0000426uptr internal_stat(const char *path, void *buf) {
Alexey Samsonov4c9317a2013-02-04 10:16:50 +0000427 UNIMPLEMENTED();
428}
429
Peter Collingbourne9578a3e2013-05-08 14:43:49 +0000430uptr internal_lstat(const char *path, void *buf) {
Alexey Samsonov4c9317a2013-02-04 10:16:50 +0000431 UNIMPLEMENTED();
432}
433
Peter Collingbourne9578a3e2013-05-08 14:43:49 +0000434uptr internal_fstat(fd_t fd, void *buf) {
Alexey Samsonov4c9317a2013-02-04 10:16:50 +0000435 UNIMPLEMENTED();
436}
437
Alexey Samsonov8e820fc2012-06-06 07:30:33 +0000438uptr internal_filesize(fd_t fd) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000439 UNIMPLEMENTED();
Alexey Samsonov8e820fc2012-06-06 07:30:33 +0000440}
441
Peter Collingbourne9578a3e2013-05-08 14:43:49 +0000442uptr internal_dup2(int oldfd, int newfd) {
Alexey Samsonov8c53e542012-06-06 15:47:40 +0000443 UNIMPLEMENTED();
Alexey Samsonov8e820fc2012-06-06 07:30:33 +0000444}
445
Alexey Samsonovd1b8f582012-09-05 14:48:24 +0000446uptr internal_readlink(const char *path, char *buf, uptr bufsize) {
447 UNIMPLEMENTED();
Alexey Samsonovd1b8f582012-09-05 14:48:24 +0000448}
449
Peter Collingbourne9578a3e2013-05-08 14:43:49 +0000450uptr internal_sched_yield() {
Dmitry Vyukov33b2a942012-11-06 13:19:59 +0000451 Sleep(0);
452 return 0;
Alexey Samsonov0969bcf2012-06-18 08:44:30 +0000453}
454
Alexey Samsonovf8822472013-02-20 13:54:32 +0000455void internal__exit(int exitcode) {
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700456 ExitProcess(exitcode);
Alexey Samsonovf8822472013-02-20 13:54:32 +0000457}
458
Stephen Hines6a211c52014-07-21 00:49:56 -0700459uptr internal_ftruncate(fd_t fd, uptr size) {
460 UNIMPLEMENTED();
461}
462
463uptr internal_rename(const char *oldpath, const char *newpath) {
464 UNIMPLEMENTED();
465}
466
Stephen Hines86277eb2015-03-23 12:06:32 -0700467uptr GetRSS() {
468 return 0;
469}
470
471void *internal_start_thread(void (*func)(void *arg), void *arg) { return 0; }
472void internal_join_thread(void *th) { }
473
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000474// ---------------------- BlockingMutex ---------------- {{{1
Dmitry Vyukovcf533b62013-02-04 10:42:38 +0000475const uptr LOCK_UNINITIALIZED = 0;
476const uptr LOCK_READY = (uptr)-1;
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000477
478BlockingMutex::BlockingMutex(LinkerInitialized li) {
479 // FIXME: see comments in BlockingMutex::Lock() for the details.
480 CHECK(li == LINKER_INITIALIZED || owner_ == LOCK_UNINITIALIZED);
481
482 CHECK(sizeof(CRITICAL_SECTION) <= sizeof(opaque_storage_));
483 InitializeCriticalSection((LPCRITICAL_SECTION)opaque_storage_);
484 owner_ = LOCK_READY;
485}
486
Alexey Samsonov93af5942013-03-14 13:30:56 +0000487BlockingMutex::BlockingMutex() {
488 CHECK(sizeof(CRITICAL_SECTION) <= sizeof(opaque_storage_));
489 InitializeCriticalSection((LPCRITICAL_SECTION)opaque_storage_);
490 owner_ = LOCK_READY;
491}
492
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000493void BlockingMutex::Lock() {
494 if (owner_ == LOCK_UNINITIALIZED) {
495 // FIXME: hm, global BlockingMutex objects are not initialized?!?
496 // This might be a side effect of the clang+cl+link Frankenbuild...
497 new(this) BlockingMutex((LinkerInitialized)(LINKER_INITIALIZED + 1));
498
499 // FIXME: If it turns out the linker doesn't invoke our
500 // constructors, we should probably manually Lock/Unlock all the global
501 // locks while we're starting in one thread to avoid double-init races.
502 }
503 EnterCriticalSection((LPCRITICAL_SECTION)opaque_storage_);
Dmitry Vyukov8ceeec42013-02-04 08:07:45 +0000504 CHECK_EQ(owner_, LOCK_READY);
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000505 owner_ = GetThreadSelf();
506}
507
508void BlockingMutex::Unlock() {
Dmitry Vyukov8ceeec42013-02-04 08:07:45 +0000509 CHECK_EQ(owner_, GetThreadSelf());
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000510 owner_ = LOCK_READY;
511 LeaveCriticalSection((LPCRITICAL_SECTION)opaque_storage_);
512}
513
Alexey Samsonovce700972013-03-11 15:45:20 +0000514void BlockingMutex::CheckLocked() {
515 CHECK_EQ(owner_, GetThreadSelf());
516}
517
Evgeniy Stepanovb114ed82013-03-13 08:19:53 +0000518uptr GetTlsSize() {
519 return 0;
520}
521
522void InitTlsSize() {
523}
524
Sergey Matveev24323de2013-05-07 14:41:43 +0000525void GetThreadStackAndTls(bool main, uptr *stk_addr, uptr *stk_size,
526 uptr *tls_addr, uptr *tls_size) {
Dmitry Vyukov21b3b1c2013-06-10 10:30:54 +0000527#ifdef SANITIZER_GO
528 *stk_addr = 0;
529 *stk_size = 0;
530 *tls_addr = 0;
531 *tls_size = 0;
532#else
Sergey Matveev24323de2013-05-07 14:41:43 +0000533 uptr stack_top, stack_bottom;
534 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
535 *stk_addr = stack_bottom;
536 *stk_size = stack_top - stack_bottom;
537 *tls_addr = 0;
538 *tls_size = 0;
Dmitry Vyukov21b3b1c2013-06-10 10:30:54 +0000539#endif
Sergey Matveev24323de2013-05-07 14:41:43 +0000540}
541
Stephen Hines6d186232014-11-26 17:56:19 -0800542#if !SANITIZER_GO
Stephen Hines86277eb2015-03-23 12:06:32 -0700543void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) {
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700544 CHECK_GE(max_depth, 2);
Sergey Matveev736cf492013-05-08 12:45:55 +0000545 // FIXME: CaptureStackBackTrace might be too slow for us.
546 // FIXME: Compare with StackWalk64.
547 // FIXME: Look at LLVMUnhandledExceptionFilter in Signals.inc
Timur Iskhodzhanov7177d2b2013-11-09 13:59:12 +0000548 size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax),
549 (void**)trace, 0);
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700550 if (size == 0)
551 return;
552
Sergey Matveev736cf492013-05-08 12:45:55 +0000553 // Skip the RTL frames by searching for the PC in the stacktrace.
Timur Iskhodzhanov7177d2b2013-11-09 13:59:12 +0000554 uptr pc_location = LocatePcInTrace(pc);
555 PopStackFrames(pc_location);
Sergey Matveev736cf492013-05-08 12:45:55 +0000556}
557
Stephen Hines6d186232014-11-26 17:56:19 -0800558void BufferedStackTrace::SlowUnwindStackWithContext(uptr pc, void *context,
Stephen Hines86277eb2015-03-23 12:06:32 -0700559 u32 max_depth) {
Stephen Hines6d186232014-11-26 17:56:19 -0800560 CONTEXT ctx = *(CONTEXT *)context;
561 STACKFRAME64 stack_frame;
562 memset(&stack_frame, 0, sizeof(stack_frame));
563 size = 0;
564#if defined(_WIN64)
565 int machine_type = IMAGE_FILE_MACHINE_AMD64;
566 stack_frame.AddrPC.Offset = ctx.Rip;
567 stack_frame.AddrFrame.Offset = ctx.Rbp;
568 stack_frame.AddrStack.Offset = ctx.Rsp;
569#else
570 int machine_type = IMAGE_FILE_MACHINE_I386;
571 stack_frame.AddrPC.Offset = ctx.Eip;
572 stack_frame.AddrFrame.Offset = ctx.Ebp;
573 stack_frame.AddrStack.Offset = ctx.Esp;
574#endif
575 stack_frame.AddrPC.Mode = AddrModeFlat;
576 stack_frame.AddrFrame.Mode = AddrModeFlat;
577 stack_frame.AddrStack.Mode = AddrModeFlat;
578 while (StackWalk64(machine_type, GetCurrentProcess(), GetCurrentThread(),
579 &stack_frame, &ctx, NULL, &SymFunctionTableAccess64,
580 &SymGetModuleBase64, NULL) &&
581 size < Min(max_depth, kStackTraceMax)) {
582 trace_buffer[size++] = (uptr)stack_frame.AddrPC.Offset;
583 }
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700584}
Stephen Hines6d186232014-11-26 17:56:19 -0800585#endif // #if !SANITIZER_GO
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700586
Stephen Hines86277eb2015-03-23 12:06:32 -0700587void ReportFile::Write(const char *buffer, uptr length) {
588 SpinMutexLock l(mu);
589 ReopenIfNecessary();
590 if (length != internal_write(fd, buffer, length)) {
Reid Kleckner923bac72013-09-05 03:19:57 +0000591 // stderr may be closed, but we may be able to print to the debugger
592 // instead. This is the case when launching a program from Visual Studio,
593 // and the following routine should write to its console.
594 OutputDebugStringA(buffer);
595 }
596}
597
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700598void SetAlternateSignalStack() {
599 // FIXME: Decide what to do on Windows.
600}
601
602void UnsetAlternateSignalStack() {
603 // FIXME: Decide what to do on Windows.
604}
605
606void InstallDeadlySignalHandlers(SignalHandlerType handler) {
607 (void)handler;
608 // FIXME: Decide what to do on Windows.
609}
610
611bool IsDeadlySignal(int signum) {
612 // FIXME: Decide what to do on Windows.
613 return false;
614}
615
Stephen Hines6d186232014-11-26 17:56:19 -0800616bool IsAccessibleMemoryRange(uptr beg, uptr size) {
617 // FIXME: Actually implement this function.
618 return true;
619}
620
Alexey Samsonovc5d46512012-06-05 07:05:10 +0000621} // namespace __sanitizer
622
623#endif // _WIN32