2020-01-18 11:38:21 +03:00
|
|
|
/*
|
2021-01-27 21:45:53 +03:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-01-18 11:38:21 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2020-01-19 15:18:27 +03:00
|
|
|
#include <AK/BinarySearch.h>
|
2021-01-29 14:06:47 +03:00
|
|
|
#include <AK/Checked.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <AK/QuickSort.h>
|
2020-01-18 01:05:37 +03:00
|
|
|
#include <Kernel/Random.h>
|
2020-01-19 15:18:27 +03:00
|
|
|
#include <Kernel/Thread.h>
|
2020-02-09 17:47:15 +03:00
|
|
|
#include <Kernel/VM/RangeAllocator.h>
|
2019-05-17 04:40:15 +03:00
|
|
|
|
2019-09-30 18:21:45 +03:00
|
|
|
#define VM_GUARD_PAGES
|
2019-05-17 05:02:29 +03:00
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
namespace Kernel {
|
|
|
|
|
2020-01-18 01:05:37 +03:00
|
|
|
RangeAllocator::RangeAllocator()
|
2021-01-27 23:01:45 +03:00
|
|
|
: m_total_range({}, 0)
|
2020-01-18 01:05:37 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void RangeAllocator::initialize_with_range(VirtualAddress base, size_t size)
|
2019-05-17 04:40:15 +03:00
|
|
|
{
|
2020-01-19 15:18:27 +03:00
|
|
|
m_total_range = { base, size };
|
2019-05-17 04:40:15 +03:00
|
|
|
m_available_ranges.append({ base, size });
|
|
|
|
}
|
|
|
|
|
2020-01-18 01:05:37 +03:00
|
|
|
void RangeAllocator::initialize_from_parent(const RangeAllocator& parent_allocator)
|
2019-05-22 14:24:28 +03:00
|
|
|
{
|
2020-11-01 02:12:23 +03:00
|
|
|
ScopedSpinLock lock(parent_allocator.m_lock);
|
2020-01-19 15:18:27 +03:00
|
|
|
m_total_range = parent_allocator.m_total_range;
|
2020-01-18 01:05:37 +03:00
|
|
|
m_available_ranges = parent_allocator.m_available_ranges;
|
2019-05-22 14:24:28 +03:00
|
|
|
}
|
|
|
|
|
2019-05-17 04:40:15 +03:00
|
|
|
RangeAllocator::~RangeAllocator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void RangeAllocator::dump() const
|
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(m_lock.is_locked());
|
2021-01-10 18:21:56 +03:00
|
|
|
dbgln("RangeAllocator({})", this);
|
2019-05-17 04:40:15 +03:00
|
|
|
for (auto& range : m_available_ranges) {
|
2021-01-10 18:21:56 +03:00
|
|
|
dbgln(" {:x} -> {:x}", range.base().get(), range.end().get() - 1);
|
2019-05-17 04:40:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RangeAllocator::carve_at_index(int index, const Range& range)
|
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(m_lock.is_locked());
|
2019-05-17 04:40:15 +03:00
|
|
|
auto remaining_parts = m_available_ranges[index].carve(range);
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(remaining_parts.size() >= 1);
|
|
|
|
VERIFY(m_total_range.contains(remaining_parts[0]));
|
2019-05-17 04:40:15 +03:00
|
|
|
m_available_ranges[index] = remaining_parts[0];
|
2021-01-29 14:06:47 +03:00
|
|
|
if (remaining_parts.size() == 2) {
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(m_total_range.contains(remaining_parts[1]));
|
2019-05-17 04:40:15 +03:00
|
|
|
m_available_ranges.insert(index + 1, move(remaining_parts[1]));
|
2021-01-29 14:06:47 +03:00
|
|
|
}
|
2019-05-17 04:40:15 +03:00
|
|
|
}
|
|
|
|
|
2021-01-28 16:55:06 +03:00
|
|
|
Optional<Range> RangeAllocator::allocate_randomized(size_t size, size_t alignment)
|
|
|
|
{
|
|
|
|
if (!size)
|
|
|
|
return {};
|
|
|
|
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY((size % PAGE_SIZE) == 0);
|
|
|
|
VERIFY((alignment % PAGE_SIZE) == 0);
|
2021-01-28 16:55:06 +03:00
|
|
|
|
|
|
|
// FIXME: I'm sure there's a smarter way to do this.
|
|
|
|
static constexpr size_t maximum_randomization_attempts = 1000;
|
|
|
|
for (size_t i = 0; i < maximum_randomization_attempts; ++i) {
|
2021-02-27 18:56:50 +03:00
|
|
|
VirtualAddress random_address { round_up_to_power_of_two(get_fast_random<FlatPtr>(), alignment) };
|
2021-01-28 16:55:06 +03:00
|
|
|
|
2021-01-29 19:18:23 +03:00
|
|
|
if (!m_total_range.contains(random_address, size))
|
2021-01-28 16:55:06 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
auto range = allocate_specific(random_address, size);
|
|
|
|
if (range.has_value())
|
|
|
|
return range;
|
|
|
|
}
|
|
|
|
|
|
|
|
return allocate_anywhere(size, alignment);
|
|
|
|
}
|
|
|
|
|
2021-01-27 23:01:45 +03:00
|
|
|
Optional<Range> RangeAllocator::allocate_anywhere(size_t size, size_t alignment)
|
2019-05-17 04:40:15 +03:00
|
|
|
{
|
2020-02-20 00:19:55 +03:00
|
|
|
if (!size)
|
|
|
|
return {};
|
|
|
|
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY((size % PAGE_SIZE) == 0);
|
|
|
|
VERIFY((alignment % PAGE_SIZE) == 0);
|
2021-01-27 21:45:53 +03:00
|
|
|
|
2019-09-30 18:21:45 +03:00
|
|
|
#ifdef VM_GUARD_PAGES
|
2019-09-22 16:12:29 +03:00
|
|
|
// NOTE: We pad VM allocations with a guard page on each side.
|
2021-01-29 14:06:47 +03:00
|
|
|
if (Checked<size_t>::addition_would_overflow(size, PAGE_SIZE * 2))
|
|
|
|
return {};
|
|
|
|
|
2019-09-30 18:21:45 +03:00
|
|
|
size_t effective_size = size + PAGE_SIZE * 2;
|
|
|
|
size_t offset_from_effective_base = PAGE_SIZE;
|
|
|
|
#else
|
|
|
|
size_t effective_size = size;
|
|
|
|
size_t offset_from_effective_base = 0;
|
|
|
|
#endif
|
2020-02-16 14:55:56 +03:00
|
|
|
|
2021-01-29 14:06:47 +03:00
|
|
|
if (Checked<size_t>::addition_would_overflow(effective_size, alignment))
|
|
|
|
return {};
|
|
|
|
|
2020-11-01 02:12:23 +03:00
|
|
|
ScopedSpinLock lock(m_lock);
|
2020-02-25 16:49:47 +03:00
|
|
|
for (size_t i = 0; i < m_available_ranges.size(); ++i) {
|
2019-05-17 04:40:15 +03:00
|
|
|
auto& available_range = m_available_ranges[i];
|
2020-02-16 14:55:56 +03:00
|
|
|
// FIXME: This check is probably excluding some valid candidates when using a large alignment.
|
|
|
|
if (available_range.size() < (effective_size + alignment))
|
2019-05-17 04:40:15 +03:00
|
|
|
continue;
|
2020-02-16 14:55:56 +03:00
|
|
|
|
2020-03-08 12:36:51 +03:00
|
|
|
FlatPtr initial_base = available_range.base().offset(offset_from_effective_base).get();
|
|
|
|
FlatPtr aligned_base = round_up_to_power_of_two(initial_base, alignment);
|
2020-02-16 14:55:56 +03:00
|
|
|
|
|
|
|
Range allocated_range(VirtualAddress(aligned_base), size);
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(m_total_range.contains(allocated_range));
|
2021-01-29 14:06:47 +03:00
|
|
|
|
2020-02-16 14:55:56 +03:00
|
|
|
if (available_range == allocated_range) {
|
2019-05-17 04:40:15 +03:00
|
|
|
m_available_ranges.remove(i);
|
|
|
|
return allocated_range;
|
|
|
|
}
|
|
|
|
carve_at_index(i, allocated_range);
|
|
|
|
return allocated_range;
|
|
|
|
}
|
2021-02-12 18:02:47 +03:00
|
|
|
dmesgln("RangeAllocator: Failed to allocate anywhere: size={}, alignment={}", size, alignment);
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-05-17 04:40:15 +03:00
|
|
|
}
|
|
|
|
|
2021-01-27 23:01:45 +03:00
|
|
|
Optional<Range> RangeAllocator::allocate_specific(VirtualAddress base, size_t size)
|
2019-05-17 04:40:15 +03:00
|
|
|
{
|
2020-02-20 00:19:55 +03:00
|
|
|
if (!size)
|
|
|
|
return {};
|
|
|
|
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(base.is_page_aligned());
|
|
|
|
VERIFY((size % PAGE_SIZE) == 0);
|
2021-01-27 21:45:53 +03:00
|
|
|
|
2019-05-17 04:40:15 +03:00
|
|
|
Range allocated_range(base, size);
|
2020-11-01 02:12:23 +03:00
|
|
|
ScopedSpinLock lock(m_lock);
|
2020-02-25 16:49:47 +03:00
|
|
|
for (size_t i = 0; i < m_available_ranges.size(); ++i) {
|
2019-05-17 04:40:15 +03:00
|
|
|
auto& available_range = m_available_ranges[i];
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(m_total_range.contains(allocated_range));
|
2019-05-17 04:40:15 +03:00
|
|
|
if (!available_range.contains(base, size))
|
|
|
|
continue;
|
|
|
|
if (available_range == allocated_range) {
|
|
|
|
m_available_ranges.remove(i);
|
|
|
|
return allocated_range;
|
|
|
|
}
|
|
|
|
carve_at_index(i, allocated_range);
|
|
|
|
return allocated_range;
|
|
|
|
}
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-05-17 04:40:15 +03:00
|
|
|
}
|
|
|
|
|
2021-01-27 23:01:45 +03:00
|
|
|
void RangeAllocator::deallocate(const Range& range)
|
2019-05-17 04:40:15 +03:00
|
|
|
{
|
2020-11-01 02:12:23 +03:00
|
|
|
ScopedSpinLock lock(m_lock);
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(m_total_range.contains(range));
|
|
|
|
VERIFY(range.size());
|
|
|
|
VERIFY((range.size() % PAGE_SIZE) == 0);
|
|
|
|
VERIFY(range.base() < range.end());
|
|
|
|
VERIFY(!m_available_ranges.is_empty());
|
2020-01-19 15:18:27 +03:00
|
|
|
|
2020-08-02 22:10:35 +03:00
|
|
|
size_t nearby_index = 0;
|
2020-02-09 17:47:15 +03:00
|
|
|
auto* existing_range = binary_search(
|
2020-12-29 18:13:16 +03:00
|
|
|
m_available_ranges.span(),
|
|
|
|
range,
|
|
|
|
&nearby_index,
|
|
|
|
[](auto& a, auto& b) { return a.base().get() - b.end().get(); });
|
2020-01-19 15:18:27 +03:00
|
|
|
|
2020-02-25 16:49:47 +03:00
|
|
|
size_t inserted_index = 0;
|
2020-01-19 15:18:27 +03:00
|
|
|
if (existing_range) {
|
|
|
|
existing_range->m_size += range.size();
|
|
|
|
inserted_index = nearby_index;
|
|
|
|
} else {
|
2020-02-09 17:47:15 +03:00
|
|
|
m_available_ranges.insert_before_matching(
|
|
|
|
Range(range), [&](auto& entry) {
|
|
|
|
return entry.base() >= range.end();
|
|
|
|
},
|
|
|
|
nearby_index, &inserted_index);
|
2019-05-17 04:40:15 +03:00
|
|
|
}
|
|
|
|
|
2020-01-19 15:18:27 +03:00
|
|
|
if (inserted_index < (m_available_ranges.size() - 1)) {
|
|
|
|
// We already merged with previous. Try to merge with next.
|
|
|
|
auto& inserted_range = m_available_ranges[inserted_index];
|
|
|
|
auto& next_range = m_available_ranges[inserted_index + 1];
|
|
|
|
if (inserted_range.end() == next_range.base()) {
|
|
|
|
inserted_range.m_size += next_range.size();
|
|
|
|
m_available_ranges.remove(inserted_index + 1);
|
|
|
|
return;
|
2019-05-17 04:40:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|