1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
base / allocator / partition_allocator / src / partition_alloc / reservation_offset_table.h [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PARTITION_ALLOC_RESERVATION_OFFSET_TABLE_H_
#define PARTITION_ALLOC_RESERVATION_OFFSET_TABLE_H_
#include <cstddef>
#include <cstdint>
#include <limits>
#include <tuple>
#include "partition_alloc/address_pool_manager.h"
#include "partition_alloc/build_config.h"
#include "partition_alloc/buildflags.h"
#include "partition_alloc/partition_address_space.h"
#include "partition_alloc/partition_alloc_base/compiler_specific.h"
#include "partition_alloc/partition_alloc_base/component_export.h"
#include "partition_alloc/partition_alloc_check.h"
#include "partition_alloc/partition_alloc_constants.h"
#include "partition_alloc/tagging.h"
#include "partition_alloc/thread_isolation/alignment.h"
namespace partition_alloc::internal {
static constexpr uint16_t kOffsetTagNotAllocated =
std::numeric_limits<uint16_t>::max();
static constexpr uint16_t kOffsetTagNormalBuckets =
std::numeric_limits<uint16_t>::max() - 1;
// The main purpose of the reservation offset table is to easily locate the
// direct map reservation start address for any given address. There is one
// entry in the table for each super page.
//
// When PartitionAlloc reserves an address region it is always aligned to
// super page boundary. However, in 32-bit mode, the size may not be aligned
// super-page-aligned, so it may look like this:
// |<--------- actual reservation size --------->|
// +----------+----------+-----+-----------+-----+ - - - +
// |SuperPage0|SuperPage1| ... |SuperPage K|SuperPage K+1|
// +----------+----------+-----+-----------+-----+ - - -.+
// |<-X->|<-Y*)->|
//
// The table entries for reserved super pages say how many pages away from the
// reservation the super page is:
// +----------+----------+-----+-----------+-------------+
// |Entry for |Entry for | ... |Entry for |Entry for |
// |SuperPage0|SuperPage1| |SuperPage K|SuperPage K+1|
// +----------+----------+-----+-----------+-------------+
// | 0 | 1 | ... | K | K + 1 |
// +----------+----------+-----+-----------+-------------+
//
// For an address Z, the reservation start can be found using this formula:
// ((Z >> kSuperPageShift) - (the entry for Z)) << kSuperPageShift
//
// kOffsetTagNotAllocated is a special tag denoting that the super page isn't
// allocated by PartitionAlloc and kOffsetTagNormalBuckets denotes that it is
// used for a normal-bucket allocation, not for a direct-map allocation.
//
// *) In 32-bit mode, Y is not used by PartitionAlloc, and cannot be used
// until X is unreserved, because PartitionAlloc always uses kSuperPageSize
// alignment when reserving address spaces. One can use check "is in pool?"
// to further determine which part of the super page is used by
// PartitionAlloc. This isn't a problem in 64-bit mode, where allocation
// granularity is kSuperPageSize.
class PA_COMPONENT_EXPORT(PARTITION_ALLOC)
PA_THREAD_ISOLATED_ALIGN ReservationOffsetTable {
public:
#if PA_BUILDFLAG(HAS_64_BIT_POINTERS)
// There is one reservation offset table per Pool in 64-bit mode.
static constexpr size_t kReservationOffsetTableCoverage = kPoolMaxSize;
static constexpr size_t kReservationOffsetTableLength =
kReservationOffsetTableCoverage >> kSuperPageShift;
#else
// The size of the reservation offset table should cover the entire 32-bit
// address space, one element per super page.
static constexpr uint64_t kGiB = 1024 * 1024 * 1024ull;
static constexpr size_t kReservationOffsetTableLength =
4 * kGiB / kSuperPageSize;
#endif // PA_BUILDFLAG(HAS_64_BIT_POINTERS)
static_assert(kReservationOffsetTableLength < kOffsetTagNormalBuckets,
"Offsets should be smaller than kOffsetTagNormalBuckets.");
struct _ReservationOffsetTable {
// The number of table elements is less than MAX_UINT16, so the element type
// can be uint16_t.
static_assert(
kReservationOffsetTableLength <= std::numeric_limits<uint16_t>::max(),
"Length of the reservation offset table must be less than MAX_UINT16");
uint16_t offsets[kReservationOffsetTableLength] = {};
constexpr _ReservationOffsetTable() {
for (uint16_t& offset : offsets) {
offset = kOffsetTagNotAllocated;
}
}
};
#if PA_BUILDFLAG(HAS_64_BIT_POINTERS)
// If thread isolation support is enabled, we need to write-protect the tables
// of the thread isolated pool. For this, we need to pad the tables so that
// the thread isolated ones start on a page boundary.
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wzero-length-array"
#endif
char pad_[PA_THREAD_ISOLATED_ARRAY_PAD_SZ(_ReservationOffsetTable,
kNumPools)] = {};
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
struct _ReservationOffsetTable tables[kNumPools];
PA_CONSTINIT static ReservationOffsetTable singleton_;
#else
// A single table for the entire 32-bit address space.
PA_CONSTINIT static struct _ReservationOffsetTable reservation_offset_table_;
#endif // PA_BUILDFLAG(HAS_64_BIT_POINTERS)
};
#if PA_BUILDFLAG(HAS_64_BIT_POINTERS)
PA_ALWAYS_INLINE uint16_t* GetReservationOffsetTable(pool_handle handle) {
PA_DCHECK(kNullPoolHandle < handle && handle <= kNumPools);
return ReservationOffsetTable::singleton_.tables[handle - 1].offsets;
}
PA_ALWAYS_INLINE const uint16_t* GetReservationOffsetTableEnd(
pool_handle handle) {
return GetReservationOffsetTable(handle) +
ReservationOffsetTable::kReservationOffsetTableLength;
}
PA_ALWAYS_INLINE uint16_t* GetReservationOffsetTable(uintptr_t address) {
pool_handle handle = GetPool(address);
return GetReservationOffsetTable(handle);
}
PA_ALWAYS_INLINE const uint16_t* GetReservationOffsetTableEnd(
uintptr_t address) {
pool_handle handle = GetPool(address);
return GetReservationOffsetTableEnd(handle);
}
PA_ALWAYS_INLINE uint16_t* ReservationOffsetPointer(pool_handle pool,
uintptr_t offset_in_pool) {
size_t table_index = offset_in_pool >> kSuperPageShift;
PA_DCHECK(table_index <
ReservationOffsetTable::kReservationOffsetTableLength);
return GetReservationOffsetTable(pool) + table_index;
}
#else // PA_BUILDFLAG(HAS_64_BIT_POINTERS)
PA_ALWAYS_INLINE uint16_t* GetReservationOffsetTable(uintptr_t address) {
return ReservationOffsetTable::reservation_offset_table_.offsets;
}
PA_ALWAYS_INLINE const uint16_t* GetReservationOffsetTableEnd(
uintptr_t address) {
return ReservationOffsetTable::reservation_offset_table_.offsets +
ReservationOffsetTable::kReservationOffsetTableLength;
}
#endif // PA_BUILDFLAG(HAS_64_BIT_POINTERS)
PA_ALWAYS_INLINE uint16_t* ReservationOffsetPointer(uintptr_t address) {
#if PA_BUILDFLAG(HAS_64_BIT_POINTERS)
// In 64-bit mode, find the owning Pool and compute the offset from its base.
PartitionAddressSpace::PoolInfo info = GetPoolInfo(address);
return ReservationOffsetPointer(info.handle, info.offset);
#else
size_t table_index = address >> kSuperPageShift;
PA_DCHECK(table_index <
ReservationOffsetTable::kReservationOffsetTableLength);
return GetReservationOffsetTable(address) + table_index;
#endif
}
PA_ALWAYS_INLINE uintptr_t ComputeReservationStart(uintptr_t address,
uint16_t* offset_ptr) {
return (address & kSuperPageBaseMask) -
(static_cast<size_t>(*offset_ptr) << kSuperPageShift);
}
// If the given address doesn't point to direct-map allocated memory,
// returns 0.
PA_ALWAYS_INLINE uintptr_t GetDirectMapReservationStart(uintptr_t address) {
#if PA_BUILDFLAG(DCHECKS_ARE_ON)
bool is_in_brp_pool = IsManagedByPartitionAllocBRPPool(address);
bool is_in_regular_pool = IsManagedByPartitionAllocRegularPool(address);
bool is_in_configurable_pool =
IsManagedByPartitionAllocConfigurablePool(address);
#if PA_BUILDFLAG(ENABLE_THREAD_ISOLATION)
bool is_in_thread_isolated_pool =
IsManagedByPartitionAllocThreadIsolatedPool(address);
#endif
// When ENABLE_BACKUP_REF_PTR_SUPPORT is off, BRP pool isn't used.
#if !PA_BUILDFLAG(ENABLE_BACKUP_REF_PTR_SUPPORT)
PA_DCHECK(!is_in_brp_pool);
#endif
#endif // PA_BUILDFLAG(DCHECKS_ARE_ON)
uint16_t* offset_ptr = ReservationOffsetPointer(address);
PA_DCHECK(*offset_ptr != kOffsetTagNotAllocated);
if (*offset_ptr == kOffsetTagNormalBuckets) {
return 0;
}
uintptr_t reservation_start = ComputeReservationStart(address, offset_ptr);
#if PA_BUILDFLAG(DCHECKS_ARE_ON)
// MSVC workaround: the preprocessor seems to choke on an `#if` embedded
// inside another macro (PA_DCHECK).
#if !PA_BUILDFLAG(HAS_64_BIT_POINTERS)
constexpr size_t kBRPOffset =
AddressPoolManagerBitmap::kBytesPer1BitOfBRPPoolBitmap *
AddressPoolManagerBitmap::kGuardOffsetOfBRPPoolBitmap;
#else
constexpr size_t kBRPOffset = 0ull;
#endif // !PA_BUILDFLAG(HAS_64_BIT_POINTERS)
// Make sure the reservation start is in the same pool as |address|.
// In the 32-bit mode, the beginning of a reservation may be excluded
// from the BRP pool, so shift the pointer. The other pools don't have
// this logic.
PA_DCHECK(is_in_brp_pool ==
IsManagedByPartitionAllocBRPPool(reservation_start + kBRPOffset));
PA_DCHECK(is_in_regular_pool ==
IsManagedByPartitionAllocRegularPool(reservation_start));
PA_DCHECK(is_in_configurable_pool ==
IsManagedByPartitionAllocConfigurablePool(reservation_start));
#if PA_BUILDFLAG(ENABLE_THREAD_ISOLATION)
PA_DCHECK(is_in_thread_isolated_pool ==
IsManagedByPartitionAllocThreadIsolatedPool(reservation_start));
#endif
PA_DCHECK(*ReservationOffsetPointer(reservation_start) == 0);
#endif // PA_BUILDFLAG(DCHECKS_ARE_ON)
return reservation_start;
}
#if PA_BUILDFLAG(HAS_64_BIT_POINTERS)
// If the given address doesn't point to direct-map allocated memory,
// returns 0.
// This variant has better performance than the regular one on 64-bit builds if
// the Pool that an allocation belongs to is known.
PA_ALWAYS_INLINE uintptr_t
GetDirectMapReservationStart(uintptr_t address,
pool_handle pool,
uintptr_t offset_in_pool) {
PA_DCHECK(AddressPoolManager::GetInstance().GetPoolBaseAddress(pool) +
offset_in_pool ==
address);
uint16_t* offset_ptr = ReservationOffsetPointer(pool, offset_in_pool);
PA_DCHECK(*offset_ptr != kOffsetTagNotAllocated);
if (*offset_ptr == kOffsetTagNormalBuckets) {
return 0;
}
uintptr_t reservation_start = ComputeReservationStart(address, offset_ptr);
PA_DCHECK(*ReservationOffsetPointer(reservation_start) == 0);
return reservation_start;
}
#endif // PA_BUILDFLAG(HAS_64_BIT_POINTERS)
// Returns true if |address| is the beginning of the first super page of a
// reservation, i.e. either a normal bucket super page, or the first super page
// of direct map.
// |address| must belong to an allocated super page.
PA_ALWAYS_INLINE bool IsReservationStart(uintptr_t address) {
uint16_t* offset_ptr = ReservationOffsetPointer(address);
PA_DCHECK(*offset_ptr != kOffsetTagNotAllocated);
return ((*offset_ptr == kOffsetTagNormalBuckets) || (*offset_ptr == 0)) &&
(address % kSuperPageSize == 0);
}
// Returns true if |address| belongs to a normal bucket super page.
PA_ALWAYS_INLINE bool IsManagedByNormalBuckets(uintptr_t address) {
uint16_t* offset_ptr = ReservationOffsetPointer(address);
return *offset_ptr == kOffsetTagNormalBuckets;
}
// Returns true if |address| belongs to a direct map region.
PA_ALWAYS_INLINE bool IsManagedByDirectMap(uintptr_t address) {
uint16_t* offset_ptr = ReservationOffsetPointer(address);
return *offset_ptr != kOffsetTagNormalBuckets &&
*offset_ptr != kOffsetTagNotAllocated;
}
// Returns true if |address| belongs to a normal bucket super page or a direct
// map region, i.e. belongs to an allocated super page.
PA_ALWAYS_INLINE bool IsManagedByNormalBucketsOrDirectMap(uintptr_t address) {
uint16_t* offset_ptr = ReservationOffsetPointer(address);
return *offset_ptr != kOffsetTagNotAllocated;
}
} // namespace partition_alloc::internal
#endif // PARTITION_ALLOC_RESERVATION_OFFSET_TABLE_H_