blob: d59f9f5768a07be40aa2b2e7267a2ad092e9cf72 [file] [log] [blame]
Stephen Hines6d186232014-11-26 17:56:19 -08001//===-- asan_win_uar_thunk.cc ---------------------------------------------===//
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 is a part of AddressSanitizer, an address sanity checker.
11//
12// This file defines things that need to be present in the application modules
13// to interact with the ASan DLL runtime correctly and can't be implemented
14// using the default "import library" generated when linking the DLL RTL.
15//
16// This includes:
17// - forwarding the detect_stack_use_after_return runtime option
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070018// - working around deficiencies of the MD runtime
19// - installing a custom SEH handlerx
Stephen Hines6d186232014-11-26 17:56:19 -080020//
21//===----------------------------------------------------------------------===//
22
23// Only compile this code when buidling asan_dynamic_runtime_thunk.lib
24// Using #ifdef rather than relying on Makefiles etc.
25// simplifies the build procedure.
26#ifdef ASAN_DYNAMIC_RUNTIME_THUNK
Stephen Hines86277eb2015-03-23 12:06:32 -070027#include <windows.h>
Stephen Hines6d186232014-11-26 17:56:19 -080028
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070029// First, declare CRT sections we'll be using in this file
30#pragma section(".CRT$XID", long, read) // NOLINT
31#pragma section(".CRT$XIZ", long, read) // NOLINT
32#pragma section(".CRT$XTW", long, read) // NOLINT
33#pragma section(".CRT$XTY", long, read) // NOLINT
34
Stephen Hines86277eb2015-03-23 12:06:32 -070035////////////////////////////////////////////////////////////////////////////////
Stephen Hines6d186232014-11-26 17:56:19 -080036// Define a copy of __asan_option_detect_stack_use_after_return that should be
37// used when linking an MD runtime with a set of object files on Windows.
38//
39// The ASan MD runtime dllexports '__asan_option_detect_stack_use_after_return',
40// so normally we would just dllimport it. Unfortunately, the dllimport
41// attribute adds __imp_ prefix to the symbol name of a variable.
42// Since in general we don't know if a given TU is going to be used
43// with a MT or MD runtime and we don't want to use ugly __imp_ names on Windows
44// just to work around this issue, let's clone the a variable that is
45// constant after initialization anyways.
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070046extern "C" {
Stephen Hines86277eb2015-03-23 12:06:32 -070047__declspec(dllimport) int __asan_should_detect_stack_use_after_return();
Stephen Hines6d186232014-11-26 17:56:19 -080048int __asan_option_detect_stack_use_after_return =
49 __asan_should_detect_stack_use_after_return();
Stephen Hines86277eb2015-03-23 12:06:32 -070050}
Stephen Hines6d186232014-11-26 17:56:19 -080051
Stephen Hines86277eb2015-03-23 12:06:32 -070052////////////////////////////////////////////////////////////////////////////////
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070053// For some reason, the MD CRT doesn't call the C/C++ terminators during on DLL
54// unload or on exit. ASan relies on LLVM global_dtors to call
55// __asan_unregister_globals on these events, which unfortunately doesn't work
56// with the MD runtime, see PR22545 for the details.
57// To work around this, for each DLL we schedule a call to UnregisterGlobals
58// using atexit() that calls a small subset of C terminators
59// where LLVM global_dtors is placed. Fingers crossed, no other C terminators
60// are there.
61extern "C" void __cdecl _initterm(void *a, void *b);
Stephen Hines86277eb2015-03-23 12:06:32 -070062
63namespace {
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070064__declspec(allocate(".CRT$XTW")) void* before_global_dtors = 0;
65__declspec(allocate(".CRT$XTY")) void* after_global_dtors = 0;
Stephen Hines86277eb2015-03-23 12:06:32 -070066
67void UnregisterGlobals() {
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070068 _initterm(&before_global_dtors, &after_global_dtors);
Stephen Hines86277eb2015-03-23 12:06:32 -070069}
70
71int ScheduleUnregisterGlobals() {
Stephen Hines86277eb2015-03-23 12:06:32 -070072 return atexit(UnregisterGlobals);
73}
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070074
75// We need to call 'atexit(UnregisterGlobals);' as early as possible, but after
76// atexit() is initialized (.CRT$XIC). As this is executed before C++
77// initializers (think ctors for globals), UnregisterGlobals gets executed after
78// dtors for C++ globals.
79__declspec(allocate(".CRT$XID"))
80int (*__asan_schedule_unregister_globals)() = ScheduleUnregisterGlobals;
81
Stephen Hines86277eb2015-03-23 12:06:32 -070082} // namespace
83
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070084////////////////////////////////////////////////////////////////////////////////
Stephen Hines86277eb2015-03-23 12:06:32 -070085// ASan SEH handling.
Stephen Hines86277eb2015-03-23 12:06:32 -070086// We need to set the ASan-specific SEH handler at the end of CRT initialization
87// of each module (see also asan_win.cc).
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070088extern "C" {
89__declspec(dllimport) int __asan_set_seh_filter();
90static int SetSEHFilter() { return __asan_set_seh_filter(); }
91
Stephen Hines6d186232014-11-26 17:56:19 -080092// Unfortunately, putting a pointer to __asan_set_seh_filter into
93// __asan_intercept_seh gets optimized out, so we have to use an extra function.
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070094__declspec(allocate(".CRT$XIZ")) int (*__asan_seh_interceptor)() = SetSEHFilter;
95}
Stephen Hines86277eb2015-03-23 12:06:32 -070096
Stephen Hines6d186232014-11-26 17:56:19 -080097#endif // ASAN_DYNAMIC_RUNTIME_THUNK