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
|
// 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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "v8_platform_page_allocator.h"
#include "base/check_op.h"
#include "base/cpu.h"
#include "base/memory/page_size.h"
#include "build/build_config.h"
#include "partition_alloc/address_space_randomization.h"
#include "partition_alloc/page_allocator_constants.h"
#include "partition_alloc/random.h"
namespace {
template <typename T>
T IfBtiEnabledOr(T enabled_value, T disabled_value) {
#if defined(__ARM_FEATURE_BTI_DEFAULT)
return base::CPU::GetInstanceNoAllocation().has_bti() ? enabled_value
: disabled_value;
#else
return disabled_value;
#endif
}
// Maps the v8 page permissions into a page configuration from base.
::partition_alloc::PageAccessibilityConfiguration::Permissions
GetPagePermissions(v8::PageAllocator::Permission permission) {
// The switch doesn't have a default-case by intention. This means we can
// detect new enum values very easily by a compile error without introducing
// bugs due to unknown (hence, untested) values. On the other hand it
// incurs a slight overhead when rolling V8.
switch (permission) {
case v8::PageAllocator::Permission::kRead:
return ::partition_alloc::PageAccessibilityConfiguration::kRead;
case v8::PageAllocator::Permission::kReadWrite:
return ::partition_alloc::PageAccessibilityConfiguration::kReadWrite;
case v8::PageAllocator::Permission::kReadWriteExecute:
return IfBtiEnabledOr(
::partition_alloc::PageAccessibilityConfiguration::
kReadWriteExecuteProtected,
::partition_alloc::PageAccessibilityConfiguration::kReadWriteExecute);
case v8::PageAllocator::Permission::kReadExecute:
return IfBtiEnabledOr(
::partition_alloc::PageAccessibilityConfiguration::
kReadExecuteProtected,
::partition_alloc::PageAccessibilityConfiguration::kReadExecute);
case v8::PageAllocator::Permission::kNoAccessWillJitLater:
return ::partition_alloc::PageAccessibilityConfiguration::
kInaccessibleWillJitLater;
case v8::PageAllocator::Permission::kNoAccess:
return ::partition_alloc::PageAccessibilityConfiguration::kInaccessible;
}
}
::partition_alloc::PageAccessibilityConfiguration GetPageConfig(
v8::PageAllocator::Permission permission) {
return ::partition_alloc::PageAccessibilityConfiguration(
GetPagePermissions(permission));
}
} // namespace
namespace gin {
PageAllocator::~PageAllocator() = default;
size_t PageAllocator::AllocatePageSize() {
return partition_alloc::internal::PageAllocationGranularity();
}
size_t PageAllocator::CommitPageSize() {
return base::GetPageSize();
}
void PageAllocator::SetRandomMmapSeed(int64_t seed) {
::partition_alloc::SetMmapSeedForTesting(seed);
}
void* PageAllocator::GetRandomMmapAddr() {
return reinterpret_cast<void*>(::partition_alloc::GetRandomPageBase());
}
void* PageAllocator::AllocatePages(void* address,
size_t length,
size_t alignment,
v8::PageAllocator::Permission permissions) {
partition_alloc::PageAccessibilityConfiguration config =
GetPageConfig(permissions);
return partition_alloc::AllocPages(address, length, alignment, config,
::partition_alloc::PageTag::kV8);
}
bool PageAllocator::FreePages(void* address, size_t length) {
partition_alloc::FreePages(address, length);
return true;
}
bool PageAllocator::ReleasePages(void* address,
size_t length,
size_t new_length) {
DCHECK_LT(new_length, length);
uint8_t* release_base = reinterpret_cast<uint8_t*>(address) + new_length;
size_t release_size = length - new_length;
#if BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
// On POSIX, we can unmap the trailing pages.
partition_alloc::FreePages(release_base, release_size);
#elif BUILDFLAG(IS_WIN)
// On Windows, we can only de-commit the trailing pages. FreePages() will
// still free all pages in the region including the released tail, so it's
// safe to just decommit the tail.
partition_alloc::DecommitSystemPages(
release_base, release_size,
::partition_alloc::PageAccessibilityDisposition::kRequireUpdate);
#else
#error Unsupported platform
#endif
return true;
}
bool PageAllocator::SetPermissions(void* address,
size_t length,
Permission permissions) {
// If V8 sets permissions to none, we can discard the memory.
if (permissions == v8::PageAllocator::Permission::kNoAccess) {
// Use PageAccessibilityDisposition::kAllowKeepForPerf as an
// optimization, to avoid perf regression (see crrev.com/c/2563038 for
// details). This may cause the memory region to still be accessible on
// certain platforms, but at least the physical pages will be discarded.
partition_alloc::DecommitSystemPages(
address, length,
::partition_alloc::PageAccessibilityDisposition::kAllowKeepForPerf);
return true;
} else {
return partition_alloc::TrySetSystemPagesAccess(address, length,
GetPageConfig(permissions));
}
}
bool PageAllocator::RecommitPages(void* address,
size_t length,
Permission permissions) {
partition_alloc::RecommitSystemPages(
reinterpret_cast<uintptr_t>(address), length, GetPageConfig(permissions),
partition_alloc::PageAccessibilityDisposition::kAllowKeepForPerf);
return true;
}
bool PageAllocator::DiscardSystemPages(void* address, size_t size) {
partition_alloc::DiscardSystemPages(address, size);
return true;
}
bool PageAllocator::DecommitPages(void* address, size_t size) {
// V8 expects the pages to be inaccessible and zero-initialized upon next
// access.
return partition_alloc::DecommitAndZeroSystemPages(
address, size, partition_alloc::PageTag::kV8);
}
bool PageAllocator::SealPages(void* address, size_t size) {
return partition_alloc::SealSystemPages(address, size);
}
partition_alloc::PageAccessibilityConfiguration::Permissions
PageAllocator::GetPageConfigPermissionsForTesting(
v8::PageAllocator::Permission permission) {
return GetPageConfig(permission).permissions;
}
} // namespace gin
|