1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 * A poison value that can be used to fill a memory space with
9 * an address that leads to a safe crash when dereferenced.
12 #include "mozilla/Poison.h"
14 #include "mozilla/Assertions.h"
17 #elif !defined(__OS2__)
20 # include <sys/mman.h>
23 # define MAP_ANON MAP_ANONYMOUS
25 # error "Don't know how to get anonymous memory"
31 // Freed memory is filled with a poison value, which we arrange to
32 // form a pointer either to an always-unmapped region of the address
33 // space, or to a page that has been reserved and rendered
34 // inaccessible via OS primitives. See tests/TestPoisonArea.cpp for
35 // extensive discussion of the requirements for this page. The code
36 // from here to 'class FreeList' needs to be kept in sync with that
40 static void* ReserveRegion(uintptr_t aRegion
, uintptr_t aSize
) {
41 return VirtualAlloc((void*)aRegion
, aSize
, MEM_RESERVE
, PAGE_NOACCESS
);
44 static void ReleaseRegion(void* aRegion
, uintptr_t aSize
) {
45 VirtualFree(aRegion
, aSize
, MEM_RELEASE
);
48 static bool ProbeRegion(uintptr_t aRegion
, uintptr_t aSize
) {
50 GetSystemInfo(&sinfo
);
51 if (aRegion
>= (uintptr_t)sinfo
.lpMaximumApplicationAddress
&&
52 aRegion
+ aSize
>= (uintptr_t)sinfo
.lpMaximumApplicationAddress
) {
59 static uintptr_t GetDesiredRegionSize() {
61 GetSystemInfo(&sinfo
);
62 return sinfo
.dwAllocationGranularity
;
65 # define RESERVE_FAILED 0
67 #elif defined(__OS2__)
68 static void* ReserveRegion(uintptr_t aRegion
, uintptr_t aSize
) {
69 // OS/2 doesn't support allocation at an arbitrary address,
70 // so return an address that is known to be invalid.
71 return (void*)0xFFFD0000;
74 static void ReleaseRegion(void* aRegion
, uintptr_t aSize
) { return; }
76 static bool ProbeRegion(uintptr_t aRegion
, uintptr_t aSize
) {
77 // There's no reliable way to probe an address in the system
78 // arena other than by touching it and seeing if a trap occurs.
82 static uintptr_t GetDesiredRegionSize() {
83 // Page size is fixed at 4k.
87 # define RESERVE_FAILED 0
89 #elif defined(__wasi__)
91 # define RESERVE_FAILED 0
93 static void* ReserveRegion(uintptr_t aRegion
, uintptr_t aSize
) {
94 return RESERVE_FAILED
;
97 static void ReleaseRegion(void* aRegion
, uintptr_t aSize
) { return; }
99 static bool ProbeRegion(uintptr_t aRegion
, uintptr_t aSize
) {
100 const auto pageSize
= 1 << 16;
101 MOZ_ASSERT(pageSize
== sysconf(_SC_PAGESIZE
));
102 auto heapSize
= __builtin_wasm_memory_size(0) * pageSize
;
103 return aRegion
+ aSize
< heapSize
;
106 static uintptr_t GetDesiredRegionSize() { return 0; }
110 # include "mozilla/TaggedAnonymousMemory.h"
112 static void* ReserveRegion(uintptr_t aRegion
, uintptr_t aSize
) {
113 return MozTaggedAnonymousMmap(reinterpret_cast<void*>(aRegion
), aSize
,
114 PROT_NONE
, MAP_PRIVATE
| MAP_ANON
, -1, 0,
118 static void ReleaseRegion(void* aRegion
, uintptr_t aSize
) {
119 munmap(aRegion
, aSize
);
122 static bool ProbeRegion(uintptr_t aRegion
, uintptr_t aSize
) {
124 if (posix_madvise(reinterpret_cast<void*>(aRegion
), aSize
,
125 POSIX_MADV_NORMAL
)) {
127 if (madvise(reinterpret_cast<void*>(aRegion
), aSize
, MADV_NORMAL
)) {
135 static uintptr_t GetDesiredRegionSize() { return sysconf(_SC_PAGESIZE
); }
137 # define RESERVE_FAILED MAP_FAILED
139 #endif // system dependencies
141 static_assert((sizeof(uintptr_t) == 4 || sizeof(uintptr_t) == 8) &&
142 (sizeof(uintptr_t) == sizeof(void*)));
144 static uintptr_t ReservePoisonArea(uintptr_t rgnsize
) {
145 if (sizeof(uintptr_t) == 8) {
146 // Use the hardware-inaccessible region.
147 // We have to avoid 64-bit constants and shifts by 32 bits, since this
148 // code is compiled in 32-bit mode, although it is never executed there.
149 return (((uintptr_t(0x7FFFFFFFu
) << 31) << 1 | uintptr_t(0xF0DEAFFFu
)) &
153 // First see if we can allocate the preferred poison address from the OS.
154 uintptr_t candidate
= (0xF0DEAFFF & ~(rgnsize
- 1));
155 void* result
= ReserveRegion(candidate
, rgnsize
);
156 if (result
== (void*)candidate
) {
157 // success - inaccessible page allocated
161 // That didn't work, so see if the preferred address is within a range
162 // of permanently inacessible memory.
163 if (ProbeRegion(candidate
, rgnsize
)) {
164 // success - selected page cannot be usable memory
165 if (result
!= RESERVE_FAILED
) {
166 ReleaseRegion(result
, rgnsize
);
171 // The preferred address is already in use. Did the OS give us a
172 // consolation prize?
173 if (result
!= RESERVE_FAILED
) {
174 return uintptr_t(result
);
177 // It didn't, so try to allocate again, without any constraint on
179 result
= ReserveRegion(0, rgnsize
);
180 if (result
!= RESERVE_FAILED
) {
181 return uintptr_t(result
);
184 MOZ_CRASH("no usable poison region identified");
187 static uintptr_t GetPoisonValue(uintptr_t aBase
, uintptr_t aSize
) {
188 if (aSize
== 0) { // can't happen
191 return aBase
+ aSize
/ 2 - 1;
194 // Poison is used so pervasively throughout the codebase that we decided it was
195 // best to actually use ordered dynamic initialization of globals (AKA static
196 // constructors) for this. This way everything will have properly initialized
197 // poison -- except other dynamic initialization code in libmozglue, which there
198 // shouldn't be much of. (libmozglue is one of the first things loaded, and
199 // specifically comes before libxul, so nearly all gecko code runs strictly
202 uintptr_t gMozillaPoisonSize
= GetDesiredRegionSize();
203 uintptr_t gMozillaPoisonBase
= ReservePoisonArea(gMozillaPoisonSize
);
204 uintptr_t gMozillaPoisonValue
=
205 GetPoisonValue(gMozillaPoisonBase
, gMozillaPoisonSize
);