Kernel: Fix overly loose MemoryManager::kernel_region_from_vaddr()

It's not enough to just find the largest-address-not-above the argument,
we must also check that the found region actually contains the argument.

Regressed in a23edd42b8, thanks to Idan
for pointing this out.
This commit is contained in:
Andreas Kling 2021-12-11 21:16:57 +01:00
parent ecccd511fa
commit 813593a485
Notes: sideshowbarker 2024-07-17 22:58:54 +09:00

View File

@ -623,7 +623,7 @@ Region* MemoryManager::kernel_region_from_vaddr(VirtualAddress vaddr)
auto* region_ptr = MM.m_kernel_regions.find_largest_not_above(vaddr.get());
if (!region_ptr)
return nullptr;
return *region_ptr;
return (*region_ptr)->contains(vaddr) ? *region_ptr : nullptr;
}
Region* MemoryManager::find_user_region_from_vaddr_no_lock(AddressSpace& space, VirtualAddress vaddr)