2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-10-18 00:13:55 +03:00
|
|
|
#include <AK/Assertions.h>
|
2020-03-08 14:33:14 +03:00
|
|
|
#include <AK/Memory.h>
|
2020-03-23 15:45:10 +03:00
|
|
|
#include <AK/StringView.h>
|
2019-06-07 21:02:01 +03:00
|
|
|
#include <Kernel/Arch/i386/CPU.h>
|
2020-05-06 18:40:06 +03:00
|
|
|
#include <Kernel/CMOS.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/FileSystem/Inode.h>
|
2019-06-09 12:48:58 +03:00
|
|
|
#include <Kernel/Multiboot.h>
|
2020-05-06 18:40:06 +03:00
|
|
|
#include <Kernel/Process.h>
|
2019-08-07 19:06:17 +03:00
|
|
|
#include <Kernel/VM/AnonymousVMObject.h>
|
2020-03-07 20:24:41 +03:00
|
|
|
#include <Kernel/VM/ContiguousVMObject.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/VM/MemoryManager.h>
|
2020-02-16 03:33:41 +03:00
|
|
|
#include <Kernel/VM/PageDirectory.h>
|
|
|
|
#include <Kernel/VM/PhysicalRegion.h>
|
2019-12-26 13:45:36 +03:00
|
|
|
#include <Kernel/VM/PurgeableVMObject.h>
|
2020-03-01 22:45:39 +03:00
|
|
|
#include <Kernel/VM/SharedInodeVMObject.h>
|
2020-05-16 13:00:04 +03:00
|
|
|
#include <Kernel/StdLib.h>
|
2018-10-18 00:13:55 +03:00
|
|
|
|
2018-11-01 13:30:48 +03:00
|
|
|
//#define MM_DEBUG
|
2018-11-05 15:48:07 +03:00
|
|
|
//#define PAGE_FAULT_DEBUG
|
2018-11-01 13:30:48 +03:00
|
|
|
|
2020-03-08 12:36:51 +03:00
|
|
|
extern FlatPtr start_of_kernel_text;
|
|
|
|
extern FlatPtr start_of_kernel_data;
|
|
|
|
extern FlatPtr end_of_kernel_bss;
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2020-08-22 18:53:34 +03:00
|
|
|
static MemoryManager* s_the;
|
2020-07-06 16:27:22 +03:00
|
|
|
RecursiveSpinLock s_mm_lock;
|
2018-10-18 00:13:55 +03:00
|
|
|
|
2018-10-27 15:56:52 +03:00
|
|
|
MemoryManager& MM
|
2018-10-18 00:13:55 +03:00
|
|
|
{
|
|
|
|
return *s_the;
|
|
|
|
}
|
|
|
|
|
2020-01-17 21:59:20 +03:00
|
|
|
MemoryManager::MemoryManager()
|
2018-10-18 00:13:55 +03:00
|
|
|
{
|
2020-07-06 18:11:52 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-17 21:59:20 +03:00
|
|
|
m_kernel_page_directory = PageDirectory::create_kernel_page_directory();
|
2020-01-17 23:03:52 +03:00
|
|
|
parse_memory_map();
|
2020-02-10 22:00:32 +03:00
|
|
|
write_cr3(kernel_page_directory().cr3());
|
2020-01-18 00:07:20 +03:00
|
|
|
protect_kernel_image();
|
2020-02-15 15:12:02 +03:00
|
|
|
|
|
|
|
m_shared_zero_page = allocate_user_physical_page();
|
2020-01-18 01:56:13 +03:00
|
|
|
}
|
2020-01-18 00:07:20 +03:00
|
|
|
|
2020-01-18 01:56:13 +03:00
|
|
|
MemoryManager::~MemoryManager()
|
|
|
|
{
|
2020-01-17 23:03:52 +03:00
|
|
|
}
|
|
|
|
|
2020-01-18 00:07:20 +03:00
|
|
|
void MemoryManager::protect_kernel_image()
|
|
|
|
{
|
|
|
|
// Disable writing to the kernel text and rodata segments.
|
2020-03-08 12:36:51 +03:00
|
|
|
for (size_t i = (FlatPtr)&start_of_kernel_text; i < (FlatPtr)&start_of_kernel_data; i += PAGE_SIZE) {
|
2020-01-18 00:07:20 +03:00
|
|
|
auto& pte = ensure_pte(kernel_page_directory(), VirtualAddress(i));
|
|
|
|
pte.set_writable(false);
|
|
|
|
}
|
|
|
|
|
2020-07-03 19:23:09 +03:00
|
|
|
if (Processor::current().has_feature(CPUFeature::NX)) {
|
2020-01-18 00:07:20 +03:00
|
|
|
// Disable execution of the kernel data and bss segments.
|
2020-03-08 12:36:51 +03:00
|
|
|
for (size_t i = (FlatPtr)&start_of_kernel_data; i < (FlatPtr)&end_of_kernel_bss; i += PAGE_SIZE) {
|
2020-01-18 00:07:20 +03:00
|
|
|
auto& pte = ensure_pte(kernel_page_directory(), VirtualAddress(i));
|
|
|
|
pte.set_execute_disabled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-17 23:03:52 +03:00
|
|
|
void MemoryManager::parse_memory_map()
|
|
|
|
{
|
2019-06-27 14:34:28 +03:00
|
|
|
RefPtr<PhysicalRegion> region;
|
2019-06-11 14:13:02 +03:00
|
|
|
bool region_is_super = false;
|
|
|
|
|
2020-01-17 23:03:52 +03:00
|
|
|
auto* mmap = (multiboot_memory_map_t*)(low_physical_to_virtual(multiboot_info_ptr->mmap_addr));
|
|
|
|
for (; (unsigned long)mmap < (low_physical_to_virtual(multiboot_info_ptr->mmap_addr)) + (multiboot_info_ptr->mmap_length); mmap = (multiboot_memory_map_t*)((unsigned long)mmap + mmap->size + sizeof(mmap->size))) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: Multiboot mmap: base_addr = " << String::format("0x%08x", mmap->addr) << ", length = " << String::format("0x%08x", mmap->len) << ", type = 0x" << String::format("%x", mmap->type);
|
2019-06-09 12:48:58 +03:00
|
|
|
if (mmap->type != MULTIBOOT_MEMORY_AVAILABLE)
|
|
|
|
continue;
|
2019-06-11 14:13:02 +03:00
|
|
|
|
AK: Rename KB, MB, GB to KiB, MiB, GiB
The SI prefixes "k", "M", "G" mean "10^3", "10^6", "10^9".
The IEC prefixes "Ki", "Mi", "Gi" mean "2^10", "2^20", "2^30".
Let's use the correct name, at least in code.
Only changes the name of the constants, no other behavior change.
2020-08-15 20:55:00 +03:00
|
|
|
// FIXME: Maybe make use of stuff below the 1MiB mark?
|
|
|
|
if (mmap->addr < (1 * MiB))
|
2019-11-23 19:27:09 +03:00
|
|
|
continue;
|
|
|
|
|
2019-09-17 02:58:38 +03:00
|
|
|
if ((mmap->addr + mmap->len) > 0xffffffff)
|
|
|
|
continue;
|
|
|
|
|
2020-03-08 12:36:51 +03:00
|
|
|
auto diff = (FlatPtr)mmap->addr % PAGE_SIZE;
|
2019-09-28 09:22:50 +03:00
|
|
|
if (diff != 0) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: got an unaligned region base from the bootloader; correcting " << String::format("%p", mmap->addr) << " by " << diff << " bytes";
|
2019-09-28 09:22:50 +03:00
|
|
|
diff = PAGE_SIZE - diff;
|
|
|
|
mmap->addr += diff;
|
|
|
|
mmap->len -= diff;
|
|
|
|
}
|
|
|
|
if ((mmap->len % PAGE_SIZE) != 0) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: got an unaligned region length from the bootloader; correcting " << mmap->len << " by " << (mmap->len % PAGE_SIZE) << " bytes";
|
2019-09-28 09:22:50 +03:00
|
|
|
mmap->len -= mmap->len % PAGE_SIZE;
|
|
|
|
}
|
|
|
|
if (mmap->len < PAGE_SIZE) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: memory region from bootloader is too small; we want >= " << PAGE_SIZE << " bytes, but got " << mmap->len << " bytes";
|
2019-09-28 09:22:50 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-06-11 14:13:02 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-03-08 12:36:51 +03:00
|
|
|
klog() << "MM: considering memory at " << String::format("%p", (FlatPtr)mmap->addr) << " - " << String::format("%p", (FlatPtr)(mmap->addr + mmap->len));
|
2019-06-11 14:13:02 +03:00
|
|
|
#endif
|
|
|
|
|
2019-06-09 12:48:58 +03:00
|
|
|
for (size_t page_base = mmap->addr; page_base < (mmap->addr + mmap->len); page_base += PAGE_SIZE) {
|
2019-06-11 14:13:02 +03:00
|
|
|
auto addr = PhysicalAddress(page_base);
|
|
|
|
|
AK: Rename KB, MB, GB to KiB, MiB, GiB
The SI prefixes "k", "M", "G" mean "10^3", "10^6", "10^9".
The IEC prefixes "Ki", "Mi", "Gi" mean "2^10", "2^20", "2^30".
Let's use the correct name, at least in code.
Only changes the name of the constants, no other behavior change.
2020-08-15 20:55:00 +03:00
|
|
|
if (page_base < 7 * MiB) {
|
2019-11-23 19:27:09 +03:00
|
|
|
// nothing
|
AK: Rename KB, MB, GB to KiB, MiB, GiB
The SI prefixes "k", "M", "G" mean "10^3", "10^6", "10^9".
The IEC prefixes "Ki", "Mi", "Gi" mean "2^10", "2^20", "2^30".
Let's use the correct name, at least in code.
Only changes the name of the constants, no other behavior change.
2020-08-15 20:55:00 +03:00
|
|
|
} else if (page_base >= 7 * MiB && page_base < 8 * MiB) {
|
2019-06-11 14:13:02 +03:00
|
|
|
if (region.is_null() || !region_is_super || region->upper().offset(PAGE_SIZE) != addr) {
|
|
|
|
m_super_physical_regions.append(PhysicalRegion::create(addr, addr));
|
|
|
|
region = m_super_physical_regions.last();
|
|
|
|
region_is_super = true;
|
|
|
|
} else {
|
|
|
|
region->expand(region->lower(), addr);
|
|
|
|
}
|
2019-11-23 19:27:09 +03:00
|
|
|
} else {
|
2019-06-11 14:13:02 +03:00
|
|
|
if (region.is_null() || region_is_super || region->upper().offset(PAGE_SIZE) != addr) {
|
|
|
|
m_user_physical_regions.append(PhysicalRegion::create(addr, addr));
|
2019-11-09 00:39:29 +03:00
|
|
|
region = m_user_physical_regions.last();
|
2019-06-11 14:13:02 +03:00
|
|
|
region_is_super = false;
|
|
|
|
} else {
|
|
|
|
region->expand(region->lower(), addr);
|
|
|
|
}
|
2019-06-09 12:48:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-31 16:58:03 +03:00
|
|
|
|
2019-06-11 14:13:02 +03:00
|
|
|
for (auto& region : m_super_physical_regions)
|
2019-06-27 14:34:28 +03:00
|
|
|
m_super_physical_pages += region.finalize_capacity();
|
2019-06-11 14:13:02 +03:00
|
|
|
|
|
|
|
for (auto& region : m_user_physical_regions)
|
2019-06-27 14:34:28 +03:00
|
|
|
m_user_physical_pages += region.finalize_capacity();
|
2020-05-08 23:15:02 +03:00
|
|
|
|
|
|
|
ASSERT(m_super_physical_pages > 0);
|
|
|
|
ASSERT(m_user_physical_pages > 0);
|
2018-10-18 00:13:55 +03:00
|
|
|
}
|
|
|
|
|
2020-02-21 15:05:39 +03:00
|
|
|
const PageTableEntry* MemoryManager::pte(const PageDirectory& page_directory, VirtualAddress vaddr)
|
|
|
|
{
|
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
2020-07-06 18:11:52 +03:00
|
|
|
ASSERT(s_mm_lock.own_lock());
|
2020-02-21 15:05:39 +03:00
|
|
|
u32 page_directory_table_index = (vaddr.get() >> 30) & 0x3;
|
|
|
|
u32 page_directory_index = (vaddr.get() >> 21) & 0x1ff;
|
|
|
|
u32 page_table_index = (vaddr.get() >> 12) & 0x1ff;
|
|
|
|
|
|
|
|
auto* pd = quickmap_pd(const_cast<PageDirectory&>(page_directory), page_directory_table_index);
|
|
|
|
const PageDirectoryEntry& pde = pd[page_directory_index];
|
|
|
|
if (!pde.is_present())
|
|
|
|
return nullptr;
|
|
|
|
|
2020-03-08 12:36:51 +03:00
|
|
|
return &quickmap_pt(PhysicalAddress((FlatPtr)pde.page_table_base()))[page_table_index];
|
2020-02-21 15:05:39 +03:00
|
|
|
}
|
|
|
|
|
2019-06-26 22:45:56 +03:00
|
|
|
PageTableEntry& MemoryManager::ensure_pte(PageDirectory& page_directory, VirtualAddress vaddr)
|
2018-10-18 00:13:55 +03:00
|
|
|
{
|
2018-10-25 11:15:28 +03:00
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
2020-07-06 18:11:52 +03:00
|
|
|
ASSERT(s_mm_lock.own_lock());
|
2019-12-25 13:22:16 +03:00
|
|
|
u32 page_directory_table_index = (vaddr.get() >> 30) & 0x3;
|
|
|
|
u32 page_directory_index = (vaddr.get() >> 21) & 0x1ff;
|
|
|
|
u32 page_table_index = (vaddr.get() >> 12) & 0x1ff;
|
2018-10-18 00:13:55 +03:00
|
|
|
|
2020-01-17 21:59:20 +03:00
|
|
|
auto* pd = quickmap_pd(page_directory, page_directory_table_index);
|
|
|
|
PageDirectoryEntry& pde = pd[page_directory_index];
|
2018-12-03 03:38:22 +03:00
|
|
|
if (!pde.is_present()) {
|
2018-10-31 22:10:39 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-03-06 17:00:44 +03:00
|
|
|
dbg() << "MM: PDE " << page_directory_index << " not present (requested for " << vaddr << "), allocating";
|
2018-10-31 22:10:39 +03:00
|
|
|
#endif
|
2020-01-18 00:18:56 +03:00
|
|
|
auto page_table = allocate_user_physical_page(ShouldZeroFill::Yes);
|
2018-11-01 13:30:48 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-03-06 17:00:44 +03:00
|
|
|
dbg() << "MM: PD K" << &page_directory << " (" << (&page_directory == m_kernel_page_directory ? "Kernel" : "User") << ") at " << PhysicalAddress(page_directory.cr3()) << " allocated page table #" << page_directory_index << " (for " << vaddr << ") at " << page_table->paddr();
|
2018-11-01 13:30:48 +03:00
|
|
|
#endif
|
2020-01-17 22:57:32 +03:00
|
|
|
pde.set_page_table_base(page_table->paddr().get());
|
|
|
|
pde.set_user_allowed(true);
|
|
|
|
pde.set_present(true);
|
|
|
|
pde.set_writable(true);
|
|
|
|
pde.set_global(&page_directory == m_kernel_page_directory.ptr());
|
|
|
|
page_directory.m_physical_pages.set(page_directory_index, move(page_table));
|
2018-10-18 00:13:55 +03:00
|
|
|
}
|
2020-01-17 21:59:20 +03:00
|
|
|
|
2020-03-08 12:36:51 +03:00
|
|
|
return quickmap_pt(PhysicalAddress((FlatPtr)pde.page_table_base()))[page_table_index];
|
2018-10-18 00:13:55 +03:00
|
|
|
}
|
|
|
|
|
2020-06-29 01:04:35 +03:00
|
|
|
void MemoryManager::initialize(u32 cpu)
|
2018-10-18 00:13:55 +03:00
|
|
|
{
|
2020-06-29 01:04:35 +03:00
|
|
|
auto mm_data = new MemoryManagerData;
|
|
|
|
#ifdef MM_DEBUG
|
|
|
|
dbg() << "MM: Processor #" << cpu << " specific data at " << VirtualAddress(mm_data);
|
|
|
|
#endif
|
|
|
|
Processor::current().set_mm_data(*mm_data);
|
|
|
|
|
|
|
|
if (cpu == 0)
|
2020-08-22 18:53:34 +03:00
|
|
|
s_the = new MemoryManager;
|
2018-10-18 00:13:55 +03:00
|
|
|
}
|
|
|
|
|
2019-08-06 11:31:20 +03:00
|
|
|
Region* MemoryManager::kernel_region_from_vaddr(VirtualAddress vaddr)
|
2018-11-05 15:48:07 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-08-08 14:40:58 +03:00
|
|
|
for (auto& region : MM.m_kernel_regions) {
|
|
|
|
if (region.contains(vaddr))
|
|
|
|
return ®ion;
|
2019-05-14 12:51:00 +03:00
|
|
|
}
|
2019-08-06 11:31:20 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
2019-05-14 12:51:00 +03:00
|
|
|
|
2019-08-06 11:31:20 +03:00
|
|
|
Region* MemoryManager::user_region_from_vaddr(Process& process, VirtualAddress vaddr)
|
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2018-11-05 15:48:07 +03:00
|
|
|
// FIXME: Use a binary search tree (maybe red/black?) or some other more appropriate data structure!
|
|
|
|
for (auto& region : process.m_regions) {
|
2019-06-27 14:34:28 +03:00
|
|
|
if (region.contains(vaddr))
|
|
|
|
return ®ion;
|
2018-11-05 15:48:07 +03:00
|
|
|
}
|
2020-02-22 09:29:23 +03:00
|
|
|
#ifdef MM_DEBUG
|
2019-08-06 11:31:20 +03:00
|
|
|
dbg() << process << " Couldn't find user region for " << vaddr;
|
2020-02-22 09:29:23 +03:00
|
|
|
#endif
|
2019-01-25 03:39:15 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-07-31 00:52:28 +03:00
|
|
|
Region* MemoryManager::find_region_from_vaddr(Process& process, VirtualAddress vaddr)
|
2019-08-06 11:31:20 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-05-20 15:02:43 +03:00
|
|
|
if (auto* region = user_region_from_vaddr(process, vaddr))
|
2019-08-06 12:19:16 +03:00
|
|
|
return region;
|
2020-05-20 15:02:43 +03:00
|
|
|
return kernel_region_from_vaddr(vaddr);
|
2019-08-06 11:31:20 +03:00
|
|
|
}
|
|
|
|
|
2020-07-31 00:52:28 +03:00
|
|
|
const Region* MemoryManager::find_region_from_vaddr(const Process& process, VirtualAddress vaddr)
|
2019-01-25 03:39:15 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-05-20 15:02:43 +03:00
|
|
|
if (auto* region = user_region_from_vaddr(const_cast<Process&>(process), vaddr))
|
2019-08-06 12:19:16 +03:00
|
|
|
return region;
|
2020-05-20 15:02:43 +03:00
|
|
|
return kernel_region_from_vaddr(vaddr);
|
2018-11-05 15:48:07 +03:00
|
|
|
}
|
|
|
|
|
2020-07-31 00:52:28 +03:00
|
|
|
Region* MemoryManager::find_region_from_vaddr(VirtualAddress vaddr)
|
2019-08-06 12:19:16 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-08-06 12:19:16 +03:00
|
|
|
if (auto* region = kernel_region_from_vaddr(vaddr))
|
|
|
|
return region;
|
2020-02-10 22:00:32 +03:00
|
|
|
auto page_directory = PageDirectory::find_by_cr3(read_cr3());
|
2019-08-06 12:19:16 +03:00
|
|
|
if (!page_directory)
|
|
|
|
return nullptr;
|
|
|
|
ASSERT(page_directory->process());
|
|
|
|
return user_region_from_vaddr(*page_directory->process(), vaddr);
|
|
|
|
}
|
|
|
|
|
2018-11-05 12:29:19 +03:00
|
|
|
PageFaultResponse MemoryManager::handle_page_fault(const PageFault& fault)
|
2018-10-18 14:05:00 +03:00
|
|
|
{
|
2018-10-25 11:15:28 +03:00
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
2020-06-29 00:34:31 +03:00
|
|
|
ASSERT(Thread::current() != nullptr);
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-06-27 22:42:28 +03:00
|
|
|
if (Processor::current().in_irq()) {
|
2020-06-28 02:06:33 +03:00
|
|
|
dbg() << "CPU[" << Processor::current().id() << "] BUG! Page fault while handling IRQ! code=" << fault.code() << ", vaddr=" << fault.vaddr() << ", irq level: " << Processor::current().in_irq();
|
2020-02-23 12:46:16 +03:00
|
|
|
dump_kernel_regions();
|
2020-06-27 22:42:28 +03:00
|
|
|
return PageFaultResponse::ShouldCrash;
|
2020-02-23 12:46:16 +03:00
|
|
|
}
|
2018-11-05 15:48:07 +03:00
|
|
|
#ifdef PAGE_FAULT_DEBUG
|
2020-06-28 02:06:33 +03:00
|
|
|
dbg() << "MM: CPU[" << Processor::current().id() << "] handle_page_fault(" << String::format("%w", fault.code()) << ") at " << fault.vaddr();
|
2018-11-05 15:48:07 +03:00
|
|
|
#endif
|
2020-07-31 00:52:28 +03:00
|
|
|
auto* region = find_region_from_vaddr(fault.vaddr());
|
2018-11-08 17:39:26 +03:00
|
|
|
if (!region) {
|
2020-06-28 02:06:33 +03:00
|
|
|
klog() << "CPU[" << Processor::current().id() << "] NP(error) fault at invalid address " << fault.vaddr();
|
2018-11-08 17:39:26 +03:00
|
|
|
return PageFaultResponse::ShouldCrash;
|
|
|
|
}
|
2019-11-04 02:45:33 +03:00
|
|
|
|
|
|
|
return region->handle_fault(fault);
|
2018-10-18 14:05:00 +03:00
|
|
|
}
|
|
|
|
|
2020-03-07 20:24:41 +03:00
|
|
|
OwnPtr<Region> MemoryManager::allocate_contiguous_kernel_region(size_t size, const StringView& name, u8 access, bool user_accessible, bool cacheable)
|
|
|
|
{
|
|
|
|
ASSERT(!(size % PAGE_SIZE));
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-03-07 20:24:41 +03:00
|
|
|
auto range = kernel_page_directory().range_allocator().allocate_anywhere(size);
|
|
|
|
if (!range.is_valid())
|
|
|
|
return nullptr;
|
|
|
|
auto vmobject = ContiguousVMObject::create_with_size(size);
|
|
|
|
auto region = allocate_kernel_region_with_vmobject(range, vmobject, name, access, user_accessible, cacheable);
|
|
|
|
if (!region)
|
|
|
|
return nullptr;
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2020-01-10 00:29:31 +03:00
|
|
|
OwnPtr<Region> MemoryManager::allocate_kernel_region(size_t size, const StringView& name, u8 access, bool user_accessible, bool should_commit, bool cacheable)
|
2019-05-14 12:51:00 +03:00
|
|
|
{
|
|
|
|
ASSERT(!(size % PAGE_SIZE));
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-05-20 05:46:29 +03:00
|
|
|
auto range = kernel_page_directory().range_allocator().allocate_anywhere(size);
|
2020-03-01 17:55:27 +03:00
|
|
|
if (!range.is_valid())
|
|
|
|
return nullptr;
|
2020-03-01 13:02:22 +03:00
|
|
|
auto vmobject = AnonymousVMObject::create_with_size(size);
|
2020-03-01 17:55:27 +03:00
|
|
|
auto region = allocate_kernel_region_with_vmobject(range, vmobject, name, access, user_accessible, cacheable);
|
|
|
|
if (!region)
|
|
|
|
return nullptr;
|
2020-05-08 22:47:08 +03:00
|
|
|
if (should_commit && !region->commit())
|
|
|
|
return nullptr;
|
2019-05-14 12:51:00 +03:00
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2020-01-10 00:29:31 +03:00
|
|
|
OwnPtr<Region> MemoryManager::allocate_kernel_region(PhysicalAddress paddr, size_t size, const StringView& name, u8 access, bool user_accessible, bool cacheable)
|
2019-07-19 18:01:16 +03:00
|
|
|
{
|
2020-01-10 00:29:31 +03:00
|
|
|
ASSERT(!(size % PAGE_SIZE));
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-10 00:29:31 +03:00
|
|
|
auto range = kernel_page_directory().range_allocator().allocate_anywhere(size);
|
2020-03-01 17:55:27 +03:00
|
|
|
if (!range.is_valid())
|
|
|
|
return nullptr;
|
2020-01-28 22:48:07 +03:00
|
|
|
auto vmobject = AnonymousVMObject::create_for_physical_range(paddr, size);
|
|
|
|
if (!vmobject)
|
|
|
|
return nullptr;
|
2020-03-01 17:55:27 +03:00
|
|
|
return allocate_kernel_region_with_vmobject(range, *vmobject, name, access, user_accessible, cacheable);
|
2019-07-19 18:01:16 +03:00
|
|
|
}
|
|
|
|
|
2020-06-02 07:55:09 +03:00
|
|
|
OwnPtr<Region> MemoryManager::allocate_kernel_region_identity(PhysicalAddress paddr, size_t size, const StringView& name, u8 access, bool user_accessible, bool cacheable)
|
|
|
|
{
|
|
|
|
ASSERT(!(size % PAGE_SIZE));
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-06-02 07:55:09 +03:00
|
|
|
auto range = kernel_page_directory().identity_range_allocator().allocate_specific(VirtualAddress(paddr.get()), size);
|
|
|
|
if (!range.is_valid())
|
|
|
|
return nullptr;
|
|
|
|
auto vmobject = AnonymousVMObject::create_for_physical_range(paddr, size);
|
|
|
|
if (!vmobject)
|
|
|
|
return nullptr;
|
|
|
|
return allocate_kernel_region_with_vmobject(range, *vmobject, name, access, user_accessible, cacheable);
|
|
|
|
}
|
|
|
|
|
2020-01-10 00:29:31 +03:00
|
|
|
OwnPtr<Region> MemoryManager::allocate_user_accessible_kernel_region(size_t size, const StringView& name, u8 access, bool cacheable)
|
|
|
|
{
|
|
|
|
return allocate_kernel_region(size, name, access, true, true, cacheable);
|
|
|
|
}
|
|
|
|
|
2020-03-01 17:55:27 +03:00
|
|
|
OwnPtr<Region> MemoryManager::allocate_kernel_region_with_vmobject(const Range& range, VMObject& vmobject, const StringView& name, u8 access, bool user_accessible, bool cacheable)
|
2019-12-16 00:21:28 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-10 00:29:31 +03:00
|
|
|
OwnPtr<Region> region;
|
|
|
|
if (user_accessible)
|
|
|
|
region = Region::create_user_accessible(range, vmobject, 0, name, access, cacheable);
|
|
|
|
else
|
|
|
|
region = Region::create_kernel_only(range, vmobject, 0, name, access, cacheable);
|
2020-03-01 17:55:27 +03:00
|
|
|
if (region)
|
|
|
|
region->map(kernel_page_directory());
|
2019-12-16 00:21:28 +03:00
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2020-03-01 17:55:27 +03:00
|
|
|
OwnPtr<Region> MemoryManager::allocate_kernel_region_with_vmobject(VMObject& vmobject, size_t size, const StringView& name, u8 access, bool user_accessible, bool cacheable)
|
|
|
|
{
|
|
|
|
ASSERT(!(size % PAGE_SIZE));
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-03-01 17:55:27 +03:00
|
|
|
auto range = kernel_page_directory().range_allocator().allocate_anywhere(size);
|
|
|
|
if (!range.is_valid())
|
|
|
|
return nullptr;
|
|
|
|
return allocate_kernel_region_with_vmobject(range, vmobject, name, access, user_accessible, cacheable);
|
|
|
|
}
|
|
|
|
|
2020-08-22 06:49:50 +03:00
|
|
|
void MemoryManager::deallocate_user_physical_page(const PhysicalPage& page)
|
2019-06-11 14:13:02 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-06-11 14:13:02 +03:00
|
|
|
for (auto& region : m_user_physical_regions) {
|
2019-06-27 14:34:28 +03:00
|
|
|
if (!region.contains(page)) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: deallocate_user_physical_page: " << page.paddr() << " not in " << region.lower() << " -> " << region.upper();
|
2019-06-11 14:13:02 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-08-22 06:49:50 +03:00
|
|
|
region.return_page(page);
|
2019-06-27 14:34:28 +03:00
|
|
|
--m_user_physical_pages_used;
|
2019-06-11 14:13:02 +03:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: deallocate_user_physical_page couldn't figure out region for user page @ " << page.paddr();
|
2019-06-11 14:13:02 +03:00
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
2019-11-09 00:39:29 +03:00
|
|
|
RefPtr<PhysicalPage> MemoryManager::find_free_user_physical_page()
|
2018-11-08 14:59:16 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ASSERT(s_mm_lock.is_locked());
|
2019-06-27 14:34:28 +03:00
|
|
|
RefPtr<PhysicalPage> page;
|
2019-06-11 14:13:02 +03:00
|
|
|
for (auto& region : m_user_physical_regions) {
|
2019-06-27 14:34:28 +03:00
|
|
|
page = region.take_free_page(false);
|
2019-11-09 00:39:29 +03:00
|
|
|
if (!page.is_null())
|
|
|
|
break;
|
2019-06-11 14:13:02 +03:00
|
|
|
}
|
2019-11-09 00:39:29 +03:00
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<PhysicalPage> MemoryManager::allocate_user_physical_page(ShouldZeroFill should_zero_fill)
|
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-05-08 23:15:02 +03:00
|
|
|
auto page = find_free_user_physical_page();
|
2019-06-11 14:13:02 +03:00
|
|
|
|
|
|
|
if (!page) {
|
2020-05-08 23:15:02 +03:00
|
|
|
// We didn't have a single free physical page. Let's try to free something up!
|
|
|
|
// First, we look for a purgeable VMObject in the volatile state.
|
2020-05-08 23:10:47 +03:00
|
|
|
for_each_vmobject_of_type<PurgeableVMObject>([&](auto& vmobject) {
|
|
|
|
int purged_page_count = vmobject.purge_with_interrupts_disabled({});
|
|
|
|
if (purged_page_count) {
|
|
|
|
klog() << "MM: Purge saved the day! Purged " << purged_page_count << " pages from PurgeableVMObject{" << &vmobject << "}";
|
|
|
|
page = find_free_user_physical_page();
|
|
|
|
ASSERT(page);
|
|
|
|
return IterationDecision::Break;
|
2019-12-26 13:45:36 +03:00
|
|
|
}
|
|
|
|
return IterationDecision::Continue;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!page) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: no user physical pages available";
|
2019-12-26 13:45:36 +03:00
|
|
|
return {};
|
|
|
|
}
|
2019-02-20 17:34:55 +03:00
|
|
|
}
|
2019-06-11 14:13:02 +03:00
|
|
|
|
2018-11-08 14:59:16 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-03-06 17:00:44 +03:00
|
|
|
dbg() << "MM: allocate_user_physical_page vending " << page->paddr();
|
2018-11-08 14:59:16 +03:00
|
|
|
#endif
|
2019-06-11 14:13:02 +03:00
|
|
|
|
2019-01-31 05:57:06 +03:00
|
|
|
if (should_zero_fill == ShouldZeroFill::Yes) {
|
2020-01-20 15:06:14 +03:00
|
|
|
auto* ptr = quickmap_page(*page);
|
2020-01-10 08:59:01 +03:00
|
|
|
memset(ptr, 0, PAGE_SIZE);
|
2019-01-31 05:57:06 +03:00
|
|
|
unquickmap_page();
|
|
|
|
}
|
2019-06-11 14:13:02 +03:00
|
|
|
|
2019-06-27 14:34:28 +03:00
|
|
|
++m_user_physical_pages_used;
|
2019-06-11 14:13:02 +03:00
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
2020-08-22 06:49:50 +03:00
|
|
|
void MemoryManager::deallocate_supervisor_physical_page(const PhysicalPage& page)
|
2019-06-11 14:13:02 +03:00
|
|
|
{
|
2020-08-21 01:41:05 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-06-11 14:13:02 +03:00
|
|
|
for (auto& region : m_super_physical_regions) {
|
2019-06-27 14:34:28 +03:00
|
|
|
if (!region.contains(page)) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: deallocate_supervisor_physical_page: " << page.paddr() << " not in " << region.lower() << " -> " << region.upper();
|
2019-06-11 14:13:02 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-08-22 06:49:50 +03:00
|
|
|
region.return_page(page);
|
2019-06-27 14:34:28 +03:00
|
|
|
--m_super_physical_pages_used;
|
2019-06-11 14:13:02 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: deallocate_supervisor_physical_page couldn't figure out region for super page @ " << page.paddr();
|
2019-06-11 14:13:02 +03:00
|
|
|
ASSERT_NOT_REACHED();
|
2018-11-08 14:59:16 +03:00
|
|
|
}
|
|
|
|
|
2020-05-08 21:15:01 +03:00
|
|
|
NonnullRefPtrVector<PhysicalPage> MemoryManager::allocate_contiguous_supervisor_physical_pages(size_t size)
|
2020-03-07 20:24:41 +03:00
|
|
|
{
|
|
|
|
ASSERT(!(size % PAGE_SIZE));
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-03-07 20:24:41 +03:00
|
|
|
size_t count = ceil_div(size, PAGE_SIZE);
|
2020-05-08 21:15:01 +03:00
|
|
|
NonnullRefPtrVector<PhysicalPage> physical_pages;
|
2020-03-07 20:24:41 +03:00
|
|
|
|
|
|
|
for (auto& region : m_super_physical_regions) {
|
|
|
|
physical_pages = region.take_contiguous_free_pages((count), true);
|
|
|
|
if (physical_pages.is_empty())
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (physical_pages.is_empty()) {
|
|
|
|
if (m_super_physical_regions.is_empty()) {
|
|
|
|
klog() << "MM: no super physical regions available (?)";
|
|
|
|
}
|
|
|
|
|
|
|
|
klog() << "MM: no super physical pages available";
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-05-08 21:15:01 +03:00
|
|
|
auto cleanup_region = MM.allocate_kernel_region(physical_pages[0].paddr(), PAGE_SIZE * count, "MemoryManager Allocation Sanitization", Region::Access::Read | Region::Access::Write);
|
2020-03-07 20:24:41 +03:00
|
|
|
fast_u32_fill((u32*)cleanup_region->vaddr().as_ptr(), 0, (PAGE_SIZE * count) / sizeof(u32));
|
|
|
|
m_super_physical_pages_used += count;
|
|
|
|
return physical_pages;
|
|
|
|
}
|
|
|
|
|
2019-06-21 19:37:47 +03:00
|
|
|
RefPtr<PhysicalPage> MemoryManager::allocate_supervisor_physical_page()
|
2018-11-01 13:30:48 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-06-27 14:34:28 +03:00
|
|
|
RefPtr<PhysicalPage> page;
|
2019-06-11 14:13:02 +03:00
|
|
|
|
|
|
|
for (auto& region : m_super_physical_regions) {
|
2019-06-27 14:34:28 +03:00
|
|
|
page = region.take_free_page(true);
|
2019-06-11 14:13:02 +03:00
|
|
|
if (page.is_null())
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!page) {
|
|
|
|
if (m_super_physical_regions.is_empty()) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: no super physical regions available (?)";
|
2019-06-11 14:13:02 +03:00
|
|
|
}
|
|
|
|
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "MM: no super physical pages available";
|
2019-02-20 17:34:55 +03:00
|
|
|
ASSERT_NOT_REACHED();
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-20 17:34:55 +03:00
|
|
|
}
|
2019-06-11 14:13:02 +03:00
|
|
|
|
2019-01-01 04:09:43 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-03-06 17:00:44 +03:00
|
|
|
dbg() << "MM: allocate_supervisor_physical_page vending " << page->paddr();
|
2019-01-01 04:09:43 +03:00
|
|
|
#endif
|
2019-06-11 14:13:02 +03:00
|
|
|
|
2020-01-17 21:59:20 +03:00
|
|
|
fast_u32_fill((u32*)page->paddr().offset(0xc0000000).as_ptr(), 0, PAGE_SIZE / sizeof(u32));
|
2019-06-27 14:34:28 +03:00
|
|
|
++m_super_physical_pages_used;
|
2019-06-11 14:13:02 +03:00
|
|
|
return page;
|
2018-11-01 13:30:48 +03:00
|
|
|
}
|
|
|
|
|
2018-11-01 15:15:46 +03:00
|
|
|
void MemoryManager::enter_process_paging_scope(Process& process)
|
2018-11-01 13:30:48 +03:00
|
|
|
{
|
2020-06-29 00:34:31 +03:00
|
|
|
auto current_thread = Thread::current();
|
|
|
|
ASSERT(current_thread != nullptr);
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-11-27 14:40:42 +03:00
|
|
|
|
2020-06-29 00:34:31 +03:00
|
|
|
current_thread->tss().cr3 = process.page_directory().cr3();
|
2020-02-10 22:00:32 +03:00
|
|
|
write_cr3(process.page_directory().cr3());
|
2018-11-01 13:30:48 +03:00
|
|
|
}
|
|
|
|
|
2020-07-06 16:27:22 +03:00
|
|
|
void MemoryManager::flush_tlb_local(VirtualAddress vaddr, size_t page_count)
|
2018-10-23 12:03:56 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
#ifdef MM_DEBUG
|
|
|
|
dbg() << "MM: Flush " << page_count << " pages at " << vaddr << " on CPU#" << Processor::current().id();
|
|
|
|
#endif
|
|
|
|
Processor::flush_tlb_local(vaddr, page_count);
|
2018-10-23 12:03:56 +03:00
|
|
|
}
|
|
|
|
|
2020-07-06 16:27:22 +03:00
|
|
|
void MemoryManager::flush_tlb(VirtualAddress vaddr, size_t page_count)
|
2018-10-23 16:53:11 +03:00
|
|
|
{
|
2020-01-10 00:29:31 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-07-06 16:27:22 +03:00
|
|
|
dbg() << "MM: Flush " << page_count << " pages at " << vaddr;
|
2020-01-10 00:29:31 +03:00
|
|
|
#endif
|
2020-07-06 16:27:22 +03:00
|
|
|
Processor::flush_tlb(vaddr, page_count);
|
2018-10-23 16:53:11 +03:00
|
|
|
}
|
|
|
|
|
2020-05-26 00:19:37 +03:00
|
|
|
extern "C" PageTableEntry boot_pd3_pt1023[1024];
|
2020-01-17 21:59:20 +03:00
|
|
|
|
|
|
|
PageDirectoryEntry* MemoryManager::quickmap_pd(PageDirectory& directory, size_t pdpt_index)
|
|
|
|
{
|
2020-07-06 18:11:52 +03:00
|
|
|
ASSERT(s_mm_lock.own_lock());
|
2020-05-26 00:19:37 +03:00
|
|
|
auto& pte = boot_pd3_pt1023[4];
|
2020-01-17 21:59:20 +03:00
|
|
|
auto pd_paddr = directory.m_directory_pages[pdpt_index]->paddr();
|
|
|
|
if (pte.physical_page_base() != pd_paddr.as_ptr()) {
|
2020-01-18 00:02:10 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-02-25 01:54:30 +03:00
|
|
|
dbg() << "quickmap_pd: Mapping P" << (void*)directory.m_directory_pages[pdpt_index]->paddr().as_ptr() << " at 0xffe04000 in pte @ " << &pte;
|
2020-01-18 00:02:10 +03:00
|
|
|
#endif
|
2020-01-17 21:59:20 +03:00
|
|
|
pte.set_physical_page_base(pd_paddr.get());
|
|
|
|
pte.set_present(true);
|
|
|
|
pte.set_writable(true);
|
|
|
|
pte.set_user_allowed(false);
|
2020-07-06 18:11:52 +03:00
|
|
|
// Because we must continue to hold the MM lock while we use this
|
|
|
|
// mapping, it is sufficient to only flush on the current CPU. Other
|
|
|
|
// CPUs trying to use this API must wait on the MM lock anyway
|
|
|
|
flush_tlb_local(VirtualAddress(0xffe04000));
|
2020-01-17 21:59:20 +03:00
|
|
|
}
|
|
|
|
return (PageDirectoryEntry*)0xffe04000;
|
|
|
|
}
|
|
|
|
|
|
|
|
PageTableEntry* MemoryManager::quickmap_pt(PhysicalAddress pt_paddr)
|
|
|
|
{
|
2020-07-06 18:11:52 +03:00
|
|
|
ASSERT(s_mm_lock.own_lock());
|
2020-06-29 01:04:35 +03:00
|
|
|
auto& pte = boot_pd3_pt1023[0];
|
2020-01-17 21:59:20 +03:00
|
|
|
if (pte.physical_page_base() != pt_paddr.as_ptr()) {
|
2020-01-18 00:02:10 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-06-29 01:04:35 +03:00
|
|
|
dbg() << "quickmap_pt: Mapping P" << (void*)pt_paddr.as_ptr() << " at 0xffe00000 in pte @ " << &pte;
|
2020-01-18 00:02:10 +03:00
|
|
|
#endif
|
2020-01-17 21:59:20 +03:00
|
|
|
pte.set_physical_page_base(pt_paddr.get());
|
|
|
|
pte.set_present(true);
|
|
|
|
pte.set_writable(true);
|
|
|
|
pte.set_user_allowed(false);
|
2020-07-06 18:11:52 +03:00
|
|
|
// Because we must continue to hold the MM lock while we use this
|
|
|
|
// mapping, it is sufficient to only flush on the current CPU. Other
|
|
|
|
// CPUs trying to use this API must wait on the MM lock anyway
|
|
|
|
flush_tlb_local(VirtualAddress(0xffe00000));
|
2020-01-17 21:59:20 +03:00
|
|
|
}
|
2020-06-29 01:04:35 +03:00
|
|
|
return (PageTableEntry*)0xffe00000;
|
2020-01-17 21:59:20 +03:00
|
|
|
}
|
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
u8* MemoryManager::quickmap_page(PhysicalPage& physical_page)
|
2018-11-05 15:48:07 +03:00
|
|
|
{
|
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
2020-06-29 01:04:35 +03:00
|
|
|
auto& mm_data = get_data();
|
2020-07-03 14:19:50 +03:00
|
|
|
mm_data.m_quickmap_prev_flags = mm_data.m_quickmap_in_use.lock();
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-18 00:18:56 +03:00
|
|
|
|
2020-06-29 01:04:35 +03:00
|
|
|
u32 pte_idx = 8 + Processor::current().id();
|
|
|
|
VirtualAddress vaddr(0xffe00000 + pte_idx * PAGE_SIZE);
|
|
|
|
|
|
|
|
auto& pte = boot_pd3_pt1023[pte_idx];
|
2020-01-18 00:18:56 +03:00
|
|
|
if (pte.physical_page_base() != physical_page.paddr().as_ptr()) {
|
2018-11-05 15:48:07 +03:00
|
|
|
#ifdef MM_DEBUG
|
2020-06-29 01:04:35 +03:00
|
|
|
dbg() << "quickmap_page: Mapping P" << (void*)physical_page.paddr().as_ptr() << " at 0xffe08000 in pte @ " << &pte;
|
2018-11-05 15:48:07 +03:00
|
|
|
#endif
|
2020-01-18 00:18:56 +03:00
|
|
|
pte.set_physical_page_base(physical_page.paddr().get());
|
|
|
|
pte.set_present(true);
|
|
|
|
pte.set_writable(true);
|
|
|
|
pte.set_user_allowed(false);
|
2020-07-06 18:11:52 +03:00
|
|
|
flush_tlb_local(vaddr);
|
2020-01-18 00:18:56 +03:00
|
|
|
}
|
2020-06-29 01:04:35 +03:00
|
|
|
return vaddr.as_ptr();
|
2018-11-05 15:48:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void MemoryManager::unquickmap_page()
|
|
|
|
{
|
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-06-29 01:04:35 +03:00
|
|
|
auto& mm_data = get_data();
|
|
|
|
ASSERT(mm_data.m_quickmap_in_use.is_locked());
|
|
|
|
u32 pte_idx = 8 + Processor::current().id();
|
|
|
|
VirtualAddress vaddr(0xffe00000 + pte_idx * PAGE_SIZE);
|
|
|
|
auto& pte = boot_pd3_pt1023[pte_idx];
|
2020-02-08 14:49:00 +03:00
|
|
|
pte.clear();
|
2020-07-06 18:11:52 +03:00
|
|
|
flush_tlb_local(vaddr);
|
2020-07-03 14:19:50 +03:00
|
|
|
mm_data.m_quickmap_in_use.unlock(mm_data.m_quickmap_prev_flags);
|
2018-11-05 15:48:07 +03:00
|
|
|
}
|
|
|
|
|
2020-01-02 04:09:25 +03:00
|
|
|
template<MemoryManager::AccessSpace space, MemoryManager::AccessType access_type>
|
|
|
|
bool MemoryManager::validate_range(const Process& process, VirtualAddress base_vaddr, size_t size) const
|
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ASSERT(s_mm_lock.is_locked());
|
2020-01-02 04:09:25 +03:00
|
|
|
ASSERT(size);
|
2020-01-29 14:39:27 +03:00
|
|
|
if (base_vaddr > base_vaddr.offset(size)) {
|
|
|
|
dbg() << "Shenanigans! Asked to validate wrappy " << base_vaddr << " size=" << size;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-02 04:09:25 +03:00
|
|
|
VirtualAddress vaddr = base_vaddr.page_base();
|
|
|
|
VirtualAddress end_vaddr = base_vaddr.offset(size - 1).page_base();
|
|
|
|
if (end_vaddr < vaddr) {
|
2020-01-21 18:14:39 +03:00
|
|
|
dbg() << "Shenanigans! Asked to validate " << base_vaddr << " size=" << size;
|
2020-01-02 04:09:25 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const Region* region = nullptr;
|
|
|
|
while (vaddr <= end_vaddr) {
|
|
|
|
if (!region || !region->contains(vaddr)) {
|
|
|
|
if (space == AccessSpace::Kernel)
|
|
|
|
region = kernel_region_from_vaddr(vaddr);
|
|
|
|
if (!region || !region->contains(vaddr))
|
|
|
|
region = user_region_from_vaddr(const_cast<Process&>(process), vaddr);
|
|
|
|
if (!region
|
|
|
|
|| (space == AccessSpace::User && !region->is_user_accessible())
|
|
|
|
|| (access_type == AccessType::Read && !region->is_readable())
|
|
|
|
|| (access_type == AccessType::Write && !region->is_writable())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2020-05-20 15:03:34 +03:00
|
|
|
vaddr = region->range().end();
|
2020-01-02 04:09:25 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-11-17 14:11:43 +03:00
|
|
|
bool MemoryManager::validate_user_stack(const Process& process, VirtualAddress vaddr) const
|
|
|
|
{
|
2019-12-31 05:43:24 +03:00
|
|
|
if (!is_user_address(vaddr))
|
|
|
|
return false;
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-12-31 02:27:04 +03:00
|
|
|
auto* region = user_region_from_vaddr(const_cast<Process&>(process), vaddr);
|
|
|
|
return region && region->is_user_accessible() && region->is_stack();
|
2019-11-17 14:11:43 +03:00
|
|
|
}
|
|
|
|
|
2020-01-02 04:09:25 +03:00
|
|
|
bool MemoryManager::validate_kernel_read(const Process& process, VirtualAddress vaddr, size_t size) const
|
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-02 04:09:25 +03:00
|
|
|
return validate_range<AccessSpace::Kernel, AccessType::Read>(process, vaddr, size);
|
|
|
|
}
|
|
|
|
|
2020-02-21 15:05:39 +03:00
|
|
|
bool MemoryManager::can_read_without_faulting(const Process& process, VirtualAddress vaddr, size_t size) const
|
|
|
|
{
|
|
|
|
// FIXME: Use the size argument!
|
|
|
|
UNUSED_PARAM(size);
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-02-21 15:05:39 +03:00
|
|
|
auto* pte = const_cast<MemoryManager*>(this)->pte(process.page_directory(), vaddr);
|
|
|
|
if (!pte)
|
|
|
|
return false;
|
|
|
|
return pte->is_present();
|
|
|
|
}
|
|
|
|
|
2020-01-02 04:09:25 +03:00
|
|
|
bool MemoryManager::validate_user_read(const Process& process, VirtualAddress vaddr, size_t size) const
|
2018-11-01 14:45:51 +03:00
|
|
|
{
|
2019-12-31 05:43:24 +03:00
|
|
|
if (!is_user_address(vaddr))
|
|
|
|
return false;
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-02 04:09:25 +03:00
|
|
|
return validate_range<AccessSpace::User, AccessType::Read>(process, vaddr, size);
|
2018-11-01 14:45:51 +03:00
|
|
|
}
|
|
|
|
|
2020-01-02 04:09:25 +03:00
|
|
|
bool MemoryManager::validate_user_write(const Process& process, VirtualAddress vaddr, size_t size) const
|
2018-11-01 14:45:51 +03:00
|
|
|
{
|
2019-12-31 05:43:24 +03:00
|
|
|
if (!is_user_address(vaddr))
|
|
|
|
return false;
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-02 04:09:25 +03:00
|
|
|
return validate_range<AccessSpace::User, AccessType::Write>(process, vaddr, size);
|
2018-10-22 16:42:39 +03:00
|
|
|
}
|
2018-11-02 22:41:58 +03:00
|
|
|
|
2019-12-19 21:13:44 +03:00
|
|
|
void MemoryManager::register_vmobject(VMObject& vmobject)
|
2018-11-08 23:20:09 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-12-19 21:13:44 +03:00
|
|
|
m_vmobjects.append(&vmobject);
|
2018-11-08 23:20:09 +03:00
|
|
|
}
|
|
|
|
|
2019-12-19 21:13:44 +03:00
|
|
|
void MemoryManager::unregister_vmobject(VMObject& vmobject)
|
2018-11-08 23:20:09 +03:00
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2019-12-19 21:13:44 +03:00
|
|
|
m_vmobjects.remove(&vmobject);
|
2018-11-08 23:20:09 +03:00
|
|
|
}
|
2018-11-09 00:24:02 +03:00
|
|
|
|
|
|
|
void MemoryManager::register_region(Region& region)
|
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-06-02 07:55:09 +03:00
|
|
|
if (region.is_kernel())
|
2019-08-08 11:53:24 +03:00
|
|
|
m_kernel_regions.append(®ion);
|
2019-05-14 12:51:00 +03:00
|
|
|
else
|
2019-08-08 11:53:24 +03:00
|
|
|
m_user_regions.append(®ion);
|
2018-11-09 00:24:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void MemoryManager::unregister_region(Region& region)
|
|
|
|
{
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-06-02 07:55:09 +03:00
|
|
|
if (region.is_kernel())
|
2019-05-14 12:51:00 +03:00
|
|
|
m_kernel_regions.remove(®ion);
|
|
|
|
else
|
|
|
|
m_user_regions.remove(®ion);
|
2018-11-09 00:24:02 +03:00
|
|
|
}
|
2018-11-09 03:25:31 +03:00
|
|
|
|
2020-01-18 10:34:28 +03:00
|
|
|
void MemoryManager::dump_kernel_regions()
|
|
|
|
{
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << "Kernel regions:";
|
|
|
|
klog() << "BEGIN END SIZE ACCESS NAME";
|
2020-07-06 16:27:22 +03:00
|
|
|
ScopedSpinLock lock(s_mm_lock);
|
2020-01-18 10:34:28 +03:00
|
|
|
for (auto& region : MM.m_kernel_regions) {
|
2020-03-01 22:45:39 +03:00
|
|
|
klog() << String::format("%08x", region.vaddr().get()) << " -- " << String::format("%08x", region.vaddr().offset(region.size() - 1).get()) << " " << String::format("%08x", region.size()) << " " << (region.is_readable() ? 'R' : ' ') << (region.is_writable() ? 'W' : ' ') << (region.is_executable() ? 'X' : ' ') << (region.is_shared() ? 'S' : ' ') << (region.is_stack() ? 'T' : ' ') << (region.vmobject().is_purgeable() ? 'P' : ' ') << " " << region.name().characters();
|
2020-01-18 10:34:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
}
|