blob: ab3be91fcf8d237c1957c79c2682499e27c16cec [file] [log] [blame]
Evgeniy Stepanov78c56c32012-12-11 12:27:27 +00001//===-- msan_linux.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 MemorySanitizer.
11//
Stephen Hines86277eb2015-03-23 12:06:32 -070012// Linux- and FreeBSD-specific code.
Evgeniy Stepanov78c56c32012-12-11 12:27:27 +000013//===----------------------------------------------------------------------===//
14
Evgeniy Stepanov24e13722013-03-19 14:33:38 +000015#include "sanitizer_common/sanitizer_platform.h"
Stephen Hines86277eb2015-03-23 12:06:32 -070016#if SANITIZER_FREEBSD || SANITIZER_LINUX
Evgeniy Stepanov78c56c32012-12-11 12:27:27 +000017
18#include "msan.h"
Stephen Hines2d1fdb22014-05-28 23:58:16 -070019#include "msan_thread.h"
Evgeniy Stepanov78c56c32012-12-11 12:27:27 +000020
Reid Kleckner0f92deb2013-03-11 18:07:42 +000021#include <elf.h>
22#include <link.h>
Stephen Hines2d1fdb22014-05-28 23:58:16 -070023#include <pthread.h>
Evgeniy Stepanov78c56c32012-12-11 12:27:27 +000024#include <stdio.h>
25#include <stdlib.h>
26#include <signal.h>
27#include <unistd.h>
28#include <unwind.h>
29#include <execinfo.h>
30#include <sys/time.h>
31#include <sys/resource.h>
32
33#include "sanitizer_common/sanitizer_common.h"
34#include "sanitizer_common/sanitizer_procmaps.h"
35
36namespace __msan {
37
Stephen Hines86277eb2015-03-23 12:06:32 -070038void ReportMapRange(const char *descr, uptr beg, uptr size) {
39 if (size > 0) {
40 uptr end = beg + size - 1;
41 VPrintf(1, "%s : %p - %p\n", descr, beg, end);
Evgeniy Stepanov62355e92013-11-11 09:27:20 +000042 }
Stephen Hines86277eb2015-03-23 12:06:32 -070043}
Evgeniy Stepanov62355e92013-11-11 09:27:20 +000044
Stephen Hines86277eb2015-03-23 12:06:32 -070045static bool CheckMemoryRangeAvailability(uptr beg, uptr size) {
46 if (size > 0) {
47 uptr end = beg + size - 1;
48 if (!MemoryRangeIsAvailable(beg, end)) {
49 Printf("FATAL: Memory range %p - %p is not available.\n", beg, end);
50 return false;
51 }
Evgeniy Stepanov78c56c32012-12-11 12:27:27 +000052 }
53 return true;
54}
55
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -070056static bool ProtectMemoryRange(uptr beg, uptr size, const char *name) {
Stephen Hines86277eb2015-03-23 12:06:32 -070057 if (size > 0) {
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -070058 void *addr = MmapNoAccess(beg, size, name);
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080059 if (beg == 0 && addr) {
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -070060 // Depending on the kernel configuration, we may not be able to protect
61 // the page at address zero.
62 uptr gap = 16 * GetPageSizeCached();
63 beg += gap;
64 size -= gap;
65 addr = MmapNoAccess(beg, size, name);
66 }
67 if ((uptr)addr != beg) {
68 uptr end = beg + size - 1;
Stephen Hines86277eb2015-03-23 12:06:32 -070069 Printf("FATAL: Cannot protect memory range %p - %p.\n", beg, end);
70 return false;
71 }
72 }
73 return true;
74}
75
76static void CheckMemoryLayoutSanity() {
77 uptr prev_end = 0;
78 for (unsigned i = 0; i < kMemoryLayoutSize; ++i) {
79 uptr start = kMemoryLayout[i].start;
80 uptr end = kMemoryLayout[i].end;
81 MappingDesc::Type type = kMemoryLayout[i].type;
82 CHECK_LT(start, end);
83 CHECK_EQ(prev_end, start);
84 CHECK(addr_is_type(start, type));
85 CHECK(addr_is_type((start + end) / 2, type));
86 CHECK(addr_is_type(end - 1, type));
87 if (type == MappingDesc::APP) {
88 uptr addr = start;
89 CHECK(MEM_IS_SHADOW(MEM_TO_SHADOW(addr)));
90 CHECK(MEM_IS_ORIGIN(MEM_TO_ORIGIN(addr)));
91 CHECK_EQ(MEM_TO_ORIGIN(addr), SHADOW_TO_ORIGIN(MEM_TO_SHADOW(addr)));
92
93 addr = (start + end) / 2;
94 CHECK(MEM_IS_SHADOW(MEM_TO_SHADOW(addr)));
95 CHECK(MEM_IS_ORIGIN(MEM_TO_ORIGIN(addr)));
96 CHECK_EQ(MEM_TO_ORIGIN(addr), SHADOW_TO_ORIGIN(MEM_TO_SHADOW(addr)));
97
98 addr = end - 1;
99 CHECK(MEM_IS_SHADOW(MEM_TO_SHADOW(addr)));
100 CHECK(MEM_IS_ORIGIN(MEM_TO_ORIGIN(addr)));
101 CHECK_EQ(MEM_TO_ORIGIN(addr), SHADOW_TO_ORIGIN(MEM_TO_SHADOW(addr)));
102 }
103 prev_end = end;
104 }
105}
106
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700107bool InitShadow(bool init_origins) {
Stephen Hines86277eb2015-03-23 12:06:32 -0700108 // Let user know mapping parameters first.
109 VPrintf(1, "__msan_init %p\n", &__msan_init);
110 for (unsigned i = 0; i < kMemoryLayoutSize; ++i)
111 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start,
112 kMemoryLayout[i].end - 1);
113
114 CheckMemoryLayoutSanity();
115
116 if (!MEM_IS_APP(&__msan_init)) {
117 Printf("FATAL: Code %p is out of application range. Non-PIE build?\n",
118 (uptr)&__msan_init);
119 return false;
120 }
121
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800122 const uptr maxVirtualAddress = GetMaxVirtualAddress();
123
Stephen Hines86277eb2015-03-23 12:06:32 -0700124 for (unsigned i = 0; i < kMemoryLayoutSize; ++i) {
125 uptr start = kMemoryLayout[i].start;
126 uptr end = kMemoryLayout[i].end;
127 uptr size= end - start;
128 MappingDesc::Type type = kMemoryLayout[i].type;
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700129
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800130 // Check if the segment should be mapped based on platform constraints.
131 if (start >= maxVirtualAddress)
132 continue;
133
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700134 bool map = type == MappingDesc::SHADOW ||
135 (init_origins && type == MappingDesc::ORIGIN);
136 bool protect = type == MappingDesc::INVALID ||
137 (!init_origins && type == MappingDesc::ORIGIN);
138 CHECK(!(map && protect));
139 if (!map && !protect)
140 CHECK(type == MappingDesc::APP);
141 if (map) {
142 if (!CheckMemoryRangeAvailability(start, size))
143 return false;
144 if ((uptr)MmapFixedNoReserve(start, size, kMemoryLayout[i].name) != start)
145 return false;
Stephen Hines86277eb2015-03-23 12:06:32 -0700146 if (common_flags()->use_madv_dontdump)
147 DontDumpShadowMemory(start, size);
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700148 }
149 if (protect) {
150 if (!CheckMemoryRangeAvailability(start, size))
151 return false;
152 if (!ProtectMemoryRange(start, size, kMemoryLayout[i].name))
153 return false;
Stephen Hines86277eb2015-03-23 12:06:32 -0700154 }
155 }
156
157 return true;
158}
159
Evgeniy Stepanov99bf1d72013-01-10 11:17:55 +0000160static void MsanAtExit(void) {
Stephen Hines6a211c52014-07-21 00:49:56 -0700161 if (flags()->print_stats && (flags()->atexit || msan_report_count > 0))
162 ReportStats();
Evgeniy Stepanov99bf1d72013-01-10 11:17:55 +0000163 if (msan_report_count > 0) {
164 ReportAtExitStatistics();
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800165 if (common_flags()->exitcode)
166 internal__exit(common_flags()->exitcode);
Evgeniy Stepanov99bf1d72013-01-10 11:17:55 +0000167 }
168}
169
170void InstallAtExitHandler() {
171 atexit(MsanAtExit);
172}
Reid Kleckner0f92deb2013-03-11 18:07:42 +0000173
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700174// ---------------------- TSD ---------------- {{{1
175
176static pthread_key_t tsd_key;
177static bool tsd_key_inited = false;
Stephen Hines86277eb2015-03-23 12:06:32 -0700178
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700179void MsanTSDInit(void (*destructor)(void *tsd)) {
180 CHECK(!tsd_key_inited);
181 tsd_key_inited = true;
182 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor));
183}
184
Stephen Hines86277eb2015-03-23 12:06:32 -0700185static THREADLOCAL MsanThread* msan_current_thread;
186
187MsanThread *GetCurrentThread() {
188 return msan_current_thread;
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700189}
190
Stephen Hines86277eb2015-03-23 12:06:32 -0700191void SetCurrentThread(MsanThread *t) {
192 // Make sure we do not reset the current MsanThread.
193 CHECK_EQ(0, msan_current_thread);
194 msan_current_thread = t;
195 // Make sure that MsanTSDDtor gets called at the end.
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700196 CHECK(tsd_key_inited);
Stephen Hines86277eb2015-03-23 12:06:32 -0700197 pthread_setspecific(tsd_key, (void *)t);
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700198}
199
200void MsanTSDDtor(void *tsd) {
201 MsanThread *t = (MsanThread*)tsd;
202 if (t->destructor_iterations_ > 1) {
203 t->destructor_iterations_--;
204 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
205 return;
206 }
Stephen Hines86277eb2015-03-23 12:06:32 -0700207 msan_current_thread = nullptr;
208 // Make sure that signal handler can not see a stale current thread pointer.
209 atomic_signal_fence(memory_order_seq_cst);
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700210 MsanThread::TSDDtor(tsd);
211}
212
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800213} // namespace __msan
Evgeniy Stepanov78c56c32012-12-11 12:27:27 +0000214
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800215#endif // SANITIZER_FREEBSD || SANITIZER_LINUX