blob: eb9f1bfefec2775ffd7f9f577e9e4409934317f8 [file] [log] [blame]
Alexey Samsonove5f58952012-06-04 13:50:10 +00001//===-- asan_globals.cc ---------------------------------------------------===//
Kostya Serebryany1e172b42011-11-30 01:07:02 +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 a part of AddressSanitizer, an address sanity checker.
11//
12// Handle globals.
13//===----------------------------------------------------------------------===//
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080014
Kostya Serebryany1e172b42011-11-30 01:07:02 +000015#include "asan_interceptors.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000016#include "asan_internal.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000017#include "asan_mapping.h"
Alexey Samsonov7e843492013-03-28 15:42:43 +000018#include "asan_poisoning.h"
Alexey Samsonove4bfca22012-08-09 09:27:24 +000019#include "asan_report.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000020#include "asan_stack.h"
21#include "asan_stats.h"
Stephen Hines86277eb2015-03-23 12:06:32 -070022#include "asan_suppressions.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000023#include "asan_thread.h"
Alexey Samsonov7e843492013-03-28 15:42:43 +000024#include "sanitizer_common/sanitizer_common.h"
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +000025#include "sanitizer_common/sanitizer_mutex.h"
Alexey Samsonov7e843492013-03-28 15:42:43 +000026#include "sanitizer_common/sanitizer_placement_new.h"
Stephen Hines6a211c52014-07-21 00:49:56 -070027#include "sanitizer_common/sanitizer_stackdepot.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000028
Kostya Serebryany1e172b42011-11-30 01:07:02 +000029namespace __asan {
30
31typedef __asan_global Global;
32
Kostya Serebryanyb89567c2011-12-02 21:02:20 +000033struct ListOfGlobals {
34 const Global *g;
35 ListOfGlobals *next;
36};
37
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +000038static BlockingMutex mu_for_globals(LINKER_INITIALIZED);
Alexey Samsonov947fbd12012-08-27 14:04:54 +000039static LowLevelAllocator allocator_for_globals;
Kostya Serebryany3945c582012-08-21 14:10:25 +000040static ListOfGlobals *list_of_all_globals;
Kostya Serebryany1e172b42011-11-30 01:07:02 +000041
Alexey Samsonov7e843492013-03-28 15:42:43 +000042static const int kDynamicInitGlobalsInitialCapacity = 512;
Alexey Samsonovdfeef672013-04-19 08:35:16 +000043struct DynInitGlobal {
44 Global g;
45 bool initialized;
46};
Alexey Samsonova64d4352013-06-14 09:59:40 +000047typedef InternalMmapVector<DynInitGlobal> VectorOfGlobals;
Alexey Samsonov7e843492013-03-28 15:42:43 +000048// Lazy-initialized and never deleted.
49static VectorOfGlobals *dynamic_init_globals;
50
Stephen Hines6a211c52014-07-21 00:49:56 -070051// We want to remember where a certain range of globals was registered.
52struct GlobalRegistrationSite {
53 u32 stack_id;
54 Global *g_first, *g_last;
55};
56typedef InternalMmapVector<GlobalRegistrationSite> GlobalRegistrationSiteVector;
57static GlobalRegistrationSiteVector *global_registration_site_vector;
58
Timur Iskhodzhanovabfdbdf2013-03-28 18:52:40 +000059ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) {
Alexey Samsonov7e843492013-03-28 15:42:43 +000060 FastPoisonShadow(g->beg, g->size_with_redzone, value);
61}
62
Timur Iskhodzhanovabfdbdf2013-03-28 18:52:40 +000063ALWAYS_INLINE void PoisonRedZones(const Global &g) {
Kostya Serebryanya3b0e5e2013-01-23 11:14:21 +000064 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY);
Alexey Samsonov7e843492013-03-28 15:42:43 +000065 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size,
66 kAsanGlobalRedzoneMagic);
Kostya Serebryanya3b0e5e2013-01-23 11:14:21 +000067 if (g.size != aligned_size) {
Alexey Samsonov7e843492013-03-28 15:42:43 +000068 FastPoisonShadowPartialRightRedzone(
Kostya Serebryanya3b0e5e2013-01-23 11:14:21 +000069 g.beg + RoundDownTo(g.size, SHADOW_GRANULARITY),
70 g.size % SHADOW_GRANULARITY,
71 SHADOW_GRANULARITY,
72 kAsanGlobalRedzoneMagic);
Kostya Serebryany1e172b42011-11-30 01:07:02 +000073 }
74}
75
Stephen Hines6d186232014-11-26 17:56:19 -080076const uptr kMinimalDistanceFromAnotherGlobal = 64;
77
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -070078static bool IsAddressNearGlobal(uptr addr, const __asan_global &g) {
Stephen Hines6d186232014-11-26 17:56:19 -080079 if (addr <= g.beg - kMinimalDistanceFromAnotherGlobal) return false;
80 if (addr >= g.beg + g.size_with_redzone) return false;
81 return true;
Alexey Samsonov05e16a02013-03-26 13:06:12 +000082}
83
Stephen Hines6d186232014-11-26 17:56:19 -080084static void ReportGlobal(const Global &g, const char *prefix) {
85 Report("%s Global[%p]: beg=%p size=%zu/%zu name=%s module=%s dyn_init=%zu\n",
86 prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name,
87 g.module_name, g.has_dynamic_init);
88 if (g.location) {
89 Report(" location (%p): name=%s[%p], %d %d\n", g.location,
90 g.location->filename, g.location->filename, g.location->line_no,
91 g.location->column_no);
92 }
93}
94
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -070095static u32 FindRegistrationSite(const Global *g) {
96 mu_for_globals.CheckLocked();
Stephen Hines6a211c52014-07-21 00:49:56 -070097 CHECK(global_registration_site_vector);
98 for (uptr i = 0, n = global_registration_site_vector->size(); i < n; i++) {
99 GlobalRegistrationSite &grs = (*global_registration_site_vector)[i];
100 if (g >= grs.g_first && g <= grs.g_last)
101 return grs.stack_id;
102 }
103 return 0;
104}
105
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700106int GetGlobalsForAddress(uptr addr, Global *globals, u32 *reg_sites,
107 int max_globals) {
108 if (!flags()->report_globals) return 0;
109 BlockingMutexLock lock(&mu_for_globals);
110 int res = 0;
111 for (ListOfGlobals *l = list_of_all_globals; l; l = l->next) {
112 const Global &g = *l->g;
113 if (flags()->report_globals >= 2)
114 ReportGlobal(g, "Search");
115 if (IsAddressNearGlobal(addr, g)) {
116 globals[res] = g;
117 if (reg_sites)
118 reg_sites[res] = FindRegistrationSite(&g);
119 res++;
120 if (res == max_globals) break;
121 }
122 }
123 return res;
124}
125
126bool GetInfoForAddressIfGlobal(uptr addr, AddressDescription *descr) {
127 Global g = {};
128 if (GetGlobalsForAddress(addr, &g, nullptr, 1)) {
129 internal_strncpy(descr->name, g.name, descr->name_size);
130 descr->region_address = g.beg;
131 descr->region_size = g.size;
132 descr->region_kind = "global";
133 return true;
134 }
135 return false;
136}
137
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000138// Register a global variable.
139// This function may be called more than once for every global
140// so we store the globals in a map.
141static void RegisterGlobal(const Global *g) {
142 CHECK(asan_inited);
Kostya Serebryany3945c582012-08-21 14:10:25 +0000143 if (flags()->report_globals >= 2)
Alexey Samsonov05e16a02013-03-26 13:06:12 +0000144 ReportGlobal(*g, "Added");
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000145 CHECK(flags()->report_globals);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000146 CHECK(AddrIsInMem(g->beg));
Kostya Serebryanyb89567c2011-12-02 21:02:20 +0000147 CHECK(AddrIsAlignedByGranularity(g->beg));
Kostya Serebryanyc4910612011-12-15 21:55:34 +0000148 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone));
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700149 if (flags()->detect_odr_violation) {
150 // Try detecting ODR (One Definition Rule) violation, i.e. the situation
151 // where two globals with the same name are defined in different modules.
152 if (__asan_region_is_poisoned(g->beg, g->size_with_redzone)) {
153 // This check may not be enough: if the first global is much larger
154 // the entire redzone of the second global may be within the first global.
155 for (ListOfGlobals *l = list_of_all_globals; l; l = l->next) {
156 if (g->beg == l->g->beg &&
Stephen Hines86277eb2015-03-23 12:06:32 -0700157 (flags()->detect_odr_violation >= 2 || g->size != l->g->size) &&
158 !IsODRViolationSuppressed(g->name))
Stephen Hines6a211c52014-07-21 00:49:56 -0700159 ReportODRViolation(g, FindRegistrationSite(g),
160 l->g, FindRegistrationSite(l->g));
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700161 }
162 }
163 }
Stephen Hines86277eb2015-03-23 12:06:32 -0700164 if (CanPoisonMemory())
Alexey Samsonov7e843492013-03-28 15:42:43 +0000165 PoisonRedZones(*g);
Peter Collingbourne53177242013-10-24 06:23:39 +0000166 ListOfGlobals *l = new(allocator_for_globals) ListOfGlobals;
Kostya Serebryanyb89567c2011-12-02 21:02:20 +0000167 l->g = g;
Kostya Serebryany3945c582012-08-21 14:10:25 +0000168 l->next = list_of_all_globals;
169 list_of_all_globals = l;
170 if (g->has_dynamic_init) {
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800171 if (!dynamic_init_globals) {
Peter Collingbourne53177242013-10-24 06:23:39 +0000172 dynamic_init_globals = new(allocator_for_globals)
Alexey Samsonov7e843492013-03-28 15:42:43 +0000173 VectorOfGlobals(kDynamicInitGlobalsInitialCapacity);
174 }
Alexey Samsonovdfeef672013-04-19 08:35:16 +0000175 DynInitGlobal dyn_global = { *g, false };
176 dynamic_init_globals->push_back(dyn_global);
Kostya Serebryany3945c582012-08-21 14:10:25 +0000177 }
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000178}
179
Kostya Serebryanyc4910612011-12-15 21:55:34 +0000180static void UnregisterGlobal(const Global *g) {
181 CHECK(asan_inited);
Stephen Hines86277eb2015-03-23 12:06:32 -0700182 if (flags()->report_globals >= 2)
183 ReportGlobal(*g, "Removed");
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000184 CHECK(flags()->report_globals);
Kostya Serebryanyc4910612011-12-15 21:55:34 +0000185 CHECK(AddrIsInMem(g->beg));
186 CHECK(AddrIsAlignedByGranularity(g->beg));
187 CHECK(AddrIsAlignedByGranularity(g->size_with_redzone));
Stephen Hines86277eb2015-03-23 12:06:32 -0700188 if (CanPoisonMemory())
Alexey Samsonov7e843492013-03-28 15:42:43 +0000189 PoisonShadowForGlobal(g, 0);
Kostya Serebryanyc4910612011-12-15 21:55:34 +0000190 // We unpoison the shadow memory for the global but we do not remove it from
191 // the list because that would require O(n^2) time with the current list
192 // implementation. It might not be worth doing anyway.
193}
194
Alexey Samsonov46efcb02013-05-24 11:46:56 +0000195void StopInitOrderChecking() {
196 BlockingMutexLock lock(&mu_for_globals);
197 if (!flags()->check_initialization_order || !dynamic_init_globals)
198 return;
199 flags()->check_initialization_order = false;
200 for (uptr i = 0, n = dynamic_init_globals->size(); i < n; ++i) {
201 DynInitGlobal &dyn_g = (*dynamic_init_globals)[i];
202 const Global *g = &dyn_g.g;
203 // Unpoison the whole global.
204 PoisonShadowForGlobal(g, 0);
205 // Poison redzones back.
206 PoisonRedZones(*g);
207 }
208}
209
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800210} // namespace __asan
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000211
212// ---------------------- Interface ---------------- {{{1
213using namespace __asan; // NOLINT
214
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000215// Register an array of globals.
Kostya Serebryany9aead372012-05-31 14:11:07 +0000216void __asan_register_globals(__asan_global *globals, uptr n) {
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000217 if (!flags()->report_globals) return;
Stephen Hines86277eb2015-03-23 12:06:32 -0700218 GET_STACK_TRACE_MALLOC;
Stephen Hines6d186232014-11-26 17:56:19 -0800219 u32 stack_id = StackDepotPut(stack);
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000220 BlockingMutexLock lock(&mu_for_globals);
Stephen Hines6a211c52014-07-21 00:49:56 -0700221 if (!global_registration_site_vector)
222 global_registration_site_vector =
223 new(allocator_for_globals) GlobalRegistrationSiteVector(128);
224 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]};
225 global_registration_site_vector->push_back(site);
226 if (flags()->report_globals >= 2) {
227 PRINT_CURRENT_STACK();
228 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]);
229 }
Kostya Serebryany9aead372012-05-31 14:11:07 +0000230 for (uptr i = 0; i < n; i++) {
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000231 RegisterGlobal(&globals[i]);
232 }
233}
Kostya Serebryanyc4910612011-12-15 21:55:34 +0000234
235// Unregister an array of globals.
Kostya Serebryany3945c582012-08-21 14:10:25 +0000236// We must do this when a shared objects gets dlclosed.
Kostya Serebryany9aead372012-05-31 14:11:07 +0000237void __asan_unregister_globals(__asan_global *globals, uptr n) {
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000238 if (!flags()->report_globals) return;
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000239 BlockingMutexLock lock(&mu_for_globals);
Kostya Serebryany9aead372012-05-31 14:11:07 +0000240 for (uptr i = 0; i < n; i++) {
Kostya Serebryanyc4910612011-12-15 21:55:34 +0000241 UnregisterGlobal(&globals[i]);
242 }
243}
Kostya Serebryany3945c582012-08-21 14:10:25 +0000244
245// This method runs immediately prior to dynamic initialization in each TU,
246// when all dynamically initialized globals are unpoisoned. This method
247// poisons all global variables not defined in this TU, so that a dynamic
248// initializer can only touch global variables in the same TU.
Alexey Samsonov05e16a02013-03-26 13:06:12 +0000249void __asan_before_dynamic_init(const char *module_name) {
Alexey Samsonov7e843492013-03-28 15:42:43 +0000250 if (!flags()->check_initialization_order ||
Stephen Hines86277eb2015-03-23 12:06:32 -0700251 !CanPoisonMemory())
Alexey Samsonov7e843492013-03-28 15:42:43 +0000252 return;
Alexey Samsonovdfeef672013-04-19 08:35:16 +0000253 bool strict_init_order = flags()->strict_init_order;
Alexey Samsonov7e843492013-03-28 15:42:43 +0000254 CHECK(dynamic_init_globals);
Alexey Samsonov05e16a02013-03-26 13:06:12 +0000255 CHECK(module_name);
Alexey Samsonov7e843492013-03-28 15:42:43 +0000256 CHECK(asan_inited);
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000257 BlockingMutexLock lock(&mu_for_globals);
Alexey Samsonov7e843492013-03-28 15:42:43 +0000258 if (flags()->report_globals >= 3)
259 Printf("DynInitPoison module: %s\n", module_name);
260 for (uptr i = 0, n = dynamic_init_globals->size(); i < n; ++i) {
Alexey Samsonovdfeef672013-04-19 08:35:16 +0000261 DynInitGlobal &dyn_g = (*dynamic_init_globals)[i];
262 const Global *g = &dyn_g.g;
263 if (dyn_g.initialized)
264 continue;
Alexey Samsonov7e843492013-03-28 15:42:43 +0000265 if (g->module_name != module_name)
266 PoisonShadowForGlobal(g, kAsanInitializationOrderMagic);
Alexey Samsonovdfeef672013-04-19 08:35:16 +0000267 else if (!strict_init_order)
268 dyn_g.initialized = true;
Kostya Serebryany3945c582012-08-21 14:10:25 +0000269 }
Kostya Serebryany3945c582012-08-21 14:10:25 +0000270}
271
272// This method runs immediately after dynamic initialization in each TU, when
273// all dynamically initialized globals except for those defined in the current
274// TU are poisoned. It simply unpoisons all dynamically initialized globals.
275void __asan_after_dynamic_init() {
Alexey Samsonov7e843492013-03-28 15:42:43 +0000276 if (!flags()->check_initialization_order ||
Stephen Hines86277eb2015-03-23 12:06:32 -0700277 !CanPoisonMemory())
Alexey Samsonov7e843492013-03-28 15:42:43 +0000278 return;
279 CHECK(asan_inited);
Dmitry Vyukovf4f51f22013-01-14 07:51:39 +0000280 BlockingMutexLock lock(&mu_for_globals);
Alexey Samsonov7e843492013-03-28 15:42:43 +0000281 // FIXME: Optionally report that we're unpoisoning globals from a module.
282 for (uptr i = 0, n = dynamic_init_globals->size(); i < n; ++i) {
Alexey Samsonovdfeef672013-04-19 08:35:16 +0000283 DynInitGlobal &dyn_g = (*dynamic_init_globals)[i];
284 const Global *g = &dyn_g.g;
285 if (!dyn_g.initialized) {
286 // Unpoison the whole global.
287 PoisonShadowForGlobal(g, 0);
288 // Poison redzones back.
289 PoisonRedZones(*g);
290 }
Alexey Samsonov7e843492013-03-28 15:42:43 +0000291 }
Kostya Serebryany3945c582012-08-21 14:10:25 +0000292}