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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/gwp_asan/client/extreme_lightweight_detector_malloc_shims.h"
#if PA_BUILDFLAG(USE_PARTITION_ALLOC_AS_MALLOC)
#include <atomic>
#include "base/compiler_specific.h"
#include "base/functional/bind.h"
#include "base/no_destructor.h"
#include "base/trace_event/malloc_dump_provider.h"
#include "components/gwp_asan/client/extreme_lightweight_detector_quarantine.h"
#include "components/gwp_asan/client/sampling_state.h"
#include "components/gwp_asan/common/extreme_lightweight_detector_util.h"
#include "partition_alloc/partition_address_space.h"
#include "partition_alloc/partition_root.h"
#include "partition_alloc/shim/allocator_shim.h"
#include "partition_alloc/shim/allocator_shim_default_dispatch_to_partition_alloc.h"
namespace gwp_asan::internal {
namespace {
using allocator_shim::AllocatorDispatch;
extern AllocatorDispatch allocator_dispatch;
// By being implemented as a global with inline method definitions, method calls
// and member accesses are inlined and as efficient as possible in the
// performance-sensitive allocation hot-path.
//
// Note that this optimization has not been benchmarked. However since it is
// easy to do there is no reason to pay the extra cost.
SamplingState<EXTREMELIGHTWEIGHTDETECTOR> sampling_state;
ExtremeLightweightDetectorOptions init_options;
std::atomic<bool> is_quarantine_initialized = false;
// The PartitionRoot used by the PartitionAlloc-Everywhere (i.e. PartitionAlloc
// as malloc), which is also the target partition root of the quarantine.
// Since ExtremeLightweightDetectorQuarantineRoot is designed to be used for a
// certain PartitionRoot and
// ExtremeLightweightDetectorQuarantineBranch::QuarantineWithAcquiringLock()
// cannot handle an object in an unknown root, the Extreme LUD performs only for
// the objects in this PartitionRoot.
partition_alloc::PartitionRoot* lightweight_quarantine_partition_root;
// A raw pointer to the ExtremeLightweightDetectorQuarantineBranch as the fast
// path to the object. This bypasses the access check and indirect access due to
// the following std::optional and base::NoDestructor.
ExtremeLightweightDetectorQuarantineBranch*
lightweight_quarantine_branch_for_small_objects;
ExtremeLightweightDetectorQuarantineBranch*
lightweight_quarantine_branch_for_large_objects;
// The memory storage for the quarantine root and branch to make them alive for
// the process lifetime. std::optional reserves the memory space without
// constructing the objects and allows to construct them lazily.
std::optional<base::NoDestructor<ExtremeLightweightDetectorQuarantineRoot>>
lightweight_quarantine_root_storage;
std::optional<base::NoDestructor<ExtremeLightweightDetectorQuarantineBranch>>
lightweight_quarantine_branch_storage_for_small_objects;
std::optional<base::NoDestructor<ExtremeLightweightDetectorQuarantineBranch>>
lightweight_quarantine_branch_storage_for_large_objects;
// Sets up all we need and returns true, or returns false.
//
// We need to wait for the completion of `allocator_shim::ConfigurePartitions`
// so that the default PartitionRoot for `malloc` is fixed and the quarantine
// will be created for the default PartitionRoot. Until then, returns false.
bool TryInitSlow();
inline bool TryInit() {
if (is_quarantine_initialized.load(std::memory_order_acquire)) [[likely]] {
return true;
}
return TryInitSlow();
}
bool TryInitSlow() {
if (!allocator_shim::internal::PartitionAllocMalloc::
AllocatorConfigurationFinalized()) {
// `allocator_shim::ConfigurePartitions` has not yet been called, and the
// default PartitionRoot for `malloc` has not yet been fixed. Delay the
// initialization of the quarantine.
return false;
}
// Run the initialization process only once atomically (thread-safely).
//
// CAUTION: No deallocation is allowed here.
//
// This code runs only on the codepaths of deallocations (`free`, `delete`,
// etc.) and _never_ runs on the codepaths of allocations (`malloc`, `new`,
// etc.) because this allocator shim hooks only FreeFn, FreeWithSizeFn,
// etc. So, it's safe to allocate memory here as it doesn't recurse, however,
// it's _NOT_ allowed to deallocate memory here as it _does_ recurse.
//
// The following code may allocate memory:
// - `static` as a mutex may allocate memory.
// - `ExtremeLightweightDetectorQuarantineBranch` may allocate memory.
// `ExtremeLightweightDetectorQuarantineBranch` has a data member of type
// `std::vector`, which may allocate.
static bool init_once = [&]() -> bool {
partition_alloc::PartitionRoot* partition_root =
allocator_shim::internal::PartitionAllocMalloc::Allocator();
lightweight_quarantine_partition_root = partition_root;
lightweight_quarantine_root_storage.emplace(*partition_root);
lightweight_quarantine_branch_storage_for_small_objects.emplace(
lightweight_quarantine_root_storage->get()->CreateBranch(
ExtremeLightweightDetectorQuarantineBranchConfig{
.branch_capacity_in_bytes =
init_options.quarantine_capacity_for_small_objects_in_bytes,
}));
lightweight_quarantine_branch_for_small_objects =
lightweight_quarantine_branch_storage_for_small_objects.value().get();
lightweight_quarantine_branch_storage_for_large_objects.emplace(
lightweight_quarantine_root_storage->get()->CreateBranch(
ExtremeLightweightDetectorQuarantineBranchConfig{
.branch_capacity_in_bytes =
init_options.quarantine_capacity_for_large_objects_in_bytes,
}));
lightweight_quarantine_branch_for_large_objects =
lightweight_quarantine_branch_storage_for_large_objects.value().get();
is_quarantine_initialized.store(true, std::memory_order_release);
return true;
}();
return init_once;
}
// Quarantines the object pointed to by `object`.
// Returns true when the object is quarantined (hence will be freed later) or
// freed immediately, otherwise false.
//
// CAUTION: No deallocation is allowed in this function because it causes
// a reentrancy issue.
inline bool Quarantine(void* object) {
if (!TryInit()) [[unlikely]] {
return false;
}
if (!object) [[unlikely]] {
return false;
}
// This function is going to zap the memory region allocated for `object`,
// but it can be cold in cache. So, prefetches it to avoid stall.
PA_PREFETCH_FOR_WRITE(object);
if (!partition_alloc::IsManagedByPartitionAlloc(
reinterpret_cast<uintptr_t>(object))) [[unlikely]] {
return false;
}
// TODO(yukishiino): It may and may not be more performative to get the root
// via `FromAddrInFirstSuperpage(internal::ObjectPtr2Addr(object))`.
// See also:
// https://source.chromium.org/chromium/chromium/src/+/main:base/allocator/partition_allocator/src/partition_alloc/partition_root.h;l=1424-1434;drc=6b284da9be36f6edfdc0ddde4a031270c41096d8
// Although in this case `slot_span` will be touched by `GetSlotUsableSize`.
partition_alloc::internal::SlotSpanMetadata<
partition_alloc::internal::MetadataKind::kReadOnly>* slot_span =
partition_alloc::internal::SlotSpanMetadata<
partition_alloc::internal::MetadataKind::kReadOnly>::
FromObject(object);
partition_alloc::PartitionRoot* root =
partition_alloc::PartitionRoot::FromSlotSpanMetadata(slot_span);
if (root != lightweight_quarantine_partition_root) [[unlikely]] {
// The ExtremeLightweightDetectorQuarantineRoot is configured for
// lightweight_quarantine_partition_root. We cannot quarantine an object
// in other partition roots.
return false;
}
if (lightweight_quarantine_partition_root->IsDirectMapped(slot_span))
[[unlikely]] {
// Direct-mapped allocations get immediately unmapped when being
// deallocated, so the following accesses to the memory will cause crash
// unless the address gets re-mapped again. Plus, direct-mapped allocations
// tend to be very large, and zapping is more costful. So, we don't
// quarantine the direct-mapped allocations.
return false;
}
size_t usable_size = root->GetSlotUsableSize(slot_span);
ExtremeLightweightDetectorUtil::Zap(object, usable_size);
uintptr_t slot_start = root->ObjectToSlotStart(object);
if (usable_size <= init_options.object_size_threshold_in_bytes) [[likely]] {
lightweight_quarantine_branch_for_small_objects->Quarantine(
object, slot_span, slot_start, usable_size);
} else {
lightweight_quarantine_branch_for_large_objects->Quarantine(
object, slot_span, slot_start, usable_size);
}
return true;
}
void FreeFn(void* address, void* context) {
if (sampling_state.Sample()) [[unlikely]] {
if (Quarantine(address)) [[likely]] {
return;
}
}
MUSTTAIL return allocator_dispatch.next->free_function(address, context);
}
void FreeWithSizeFn(void* address, size_t size, void* context) {
if (sampling_state.Sample()) [[unlikely]] {
if (Quarantine(address)) [[likely]] {
return;
}
}
MUSTTAIL return allocator_dispatch.next->free_with_size_function(
address, size, context);
}
void FreeWithAlignmentFn(void* address, size_t alignment, void* context) {
if (sampling_state.Sample()) [[unlikely]] {
if (Quarantine(address)) [[likely]] {
return;
}
}
MUSTTAIL return allocator_dispatch.next->free_with_alignment_function(
address, alignment, context);
}
void FreeWithSizeAndAlignmentFn(void* address,
size_t size,
size_t alignment,
void* context) {
if (sampling_state.Sample()) [[unlikely]] {
if (Quarantine(address)) [[likely]] {
return;
}
}
MUSTTAIL return allocator_dispatch.next
->free_with_size_and_alignment_function(address, size, alignment,
context);
}
AllocatorDispatch allocator_dispatch = {
nullptr, // alloc_function
nullptr, // alloc_unchecked_function
nullptr, // alloc_zero_initialized_function
nullptr, // alloc_aligned_function
// realloc doesn't always deallocate memory, so the Extreme LUD doesn't
// support realloc.
nullptr, // realloc_function
nullptr, // realloc_unchecked_function
FreeFn, // free_function
FreeWithSizeFn, // free_with_size_function
FreeWithAlignmentFn, // free_with_alignment_function
FreeWithSizeAndAlignmentFn, // free_with_size_and_alignment_function
nullptr, // get_size_estimate_function
nullptr, // good_size_function
nullptr, // claimed_address_function
nullptr, // batch_malloc_function
// batch_free is rarely used, so the Extreme LUD doesn't support batch_free
// (at least for now).
nullptr, // batch_free_function
// try_free_default is rarely used, so the Extreme LUD doesn't support
// try_free_default (at least for now).
nullptr, // try_free_default_function
nullptr, // aligned_malloc_function
nullptr, // aligned_malloc_unchecked_function
// The same reason with realloc_function.
nullptr, // aligned_realloc_function
nullptr, // aligned_realloc_unchecked_function
// As of 2024 Jan, only _aligned_free on Windows calls this function. The
// function is rarely used, so the Extreme LUD doesn't support this for now.
nullptr, // aligned_free_function
nullptr // next
};
[[maybe_unused]] base::trace_event::MallocDumpProvider::ExtremeLUDStatsSet
GetStats() {
if (!lightweight_quarantine_branch_for_small_objects ||
!lightweight_quarantine_branch_for_large_objects) {
return {}; // Not yet initialized.
}
base::trace_event::MallocDumpProvider::ExtremeLUDStatsSet elud_stats_set;
elud_stats_set.for_small_objects.capacity_in_bytes =
lightweight_quarantine_branch_for_small_objects->GetCapacityInBytes();
lightweight_quarantine_branch_for_small_objects->GetRoot().AccumulateStats(
elud_stats_set.for_small_objects);
elud_stats_set.for_large_objects.capacity_in_bytes =
lightweight_quarantine_branch_for_large_objects->GetCapacityInBytes();
lightweight_quarantine_branch_for_large_objects->GetRoot().AccumulateStats(
elud_stats_set.for_large_objects);
return elud_stats_set;
}
} // namespace
void InstallExtremeLightweightDetectorHooks(
const ExtremeLightweightDetectorOptions& options) {
DCHECK(!init_options.sampling_frequency);
DCHECK(options.sampling_frequency);
init_options = options;
sampling_state.Init(init_options.sampling_frequency);
allocator_shim::InsertAllocatorDispatch(&allocator_dispatch);
#if PA_BUILDFLAG(USE_PARTITION_ALLOC_AS_MALLOC)
base::trace_event::MallocDumpProvider::SetExtremeLUDGetStatsCallback(
base::BindRepeating(GetStats));
#endif // PA_BUILDFLAG(USE_PARTITION_ALLOC_AS_MALLOC)
}
ExtremeLightweightDetectorQuarantineBranch&
GetEludQuarantineBranchForSmallObjectsForTesting() {
CHECK(TryInit());
return *lightweight_quarantine_branch_for_small_objects;
}
ExtremeLightweightDetectorQuarantineBranch&
GetEludQuarantineBranchForLargeObjectsForTesting() {
CHECK(TryInit());
return *lightweight_quarantine_branch_for_large_objects;
}
} // namespace gwp_asan::internal
#endif // PA_BUILDFLAG(USE_PARTITION_ALLOC_AS_MALLOC)
|