Refactored the internal kernel memory management API.

It is now permission-oriented, not just user/kernel oriented.

Added <sys/mman.h> with nice PROT_{READ,WRITE,EXEC,FORK} constants.
This commit is contained in:
Jonas 'Sortie' Termansen 2012-03-21 17:19:26 +01:00
parent ec5fa92761
commit 22990b77b8
13 changed files with 369 additions and 157 deletions

View File

@ -22,6 +22,7 @@
******************************************************************************/ ******************************************************************************/
#include <sys/mman.h>
#include <libmaxsi/platform.h> #include <libmaxsi/platform.h>
#include <libmaxsi/memory.h> #include <libmaxsi/memory.h>
#include <libmaxsi/error.h> #include <libmaxsi/error.h>
@ -78,11 +79,11 @@ namespace Maxsi
void FreeMemory(addr_t where, size_t bytes) void FreeMemory(addr_t where, size_t bytes)
{ {
ASSERT( (bytes & (PAGESIZE-1UL)) == 0 ); ASSERT(Sortix::Page::IsAligned(where + bytes));
while ( bytes ) while ( bytes )
{ {
addr_t page = Sortix::Memory::UnmapKernel(where); addr_t page = Sortix::Memory::Unmap(where);
Sortix::Page::Put(page); Sortix::Page::Put(page);
bytes -= PAGESIZE; bytes -= PAGESIZE;
@ -92,7 +93,7 @@ namespace Maxsi
bool AllocateMemory(addr_t where, size_t bytes) bool AllocateMemory(addr_t where, size_t bytes)
{ {
ASSERT( (bytes & (PAGESIZE-1UL)) == 0 ); ASSERT(Sortix::Page::IsAligned(where + bytes));
addr_t pos = where; addr_t pos = where;
@ -105,7 +106,7 @@ namespace Maxsi
return false; return false;
} }
if ( !Sortix::Memory::MapKernel(page, pos) ) if ( !Sortix::Memory::Map(page, pos, PROT_KREAD | PROT_KWRITE) )
{ {
Sortix::Page::Put(page); Sortix::Page::Put(page);
FreeMemory(where, pos-where); FreeMemory(where, pos-where);

View File

@ -0,0 +1,36 @@
/*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2012.
This file is part of LibMaxsi.
LibMaxsi is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
sys/mman.h
Memory management declarations.
*******************************************************************************/
#ifndef _SYS_MMAN_H
#define _SYS_MMAN_H 1
#include <features.h>
#include <sortix/mman.h>
__BEGIN_DECLS
__END_DECLS
#endif

View File

@ -93,6 +93,7 @@ interrupt.o \
time.o \ time.o \
log.o \ log.o \
utf8.o \ utf8.o \
memorymanagement.o \
calltrace.o \ calltrace.o \
$(CPU)/calltrace.o \ $(CPU)/calltrace.o \
kthread.o \ kthread.o \

View File

@ -23,6 +23,7 @@
******************************************************************************/ ******************************************************************************/
#include <sortix/kernel/platform.h> #include <sortix/kernel/platform.h>
#include <sortix/mman.h>
#include <libmaxsi/error.h> #include <libmaxsi/error.h>
#include <libmaxsi/memory.h> #include <libmaxsi/memory.h>
#include "elf.h" #include "elf.h"
@ -104,14 +105,20 @@ namespace Sortix
segment->size = Page::AlignUp(mapbytes); segment->size = Page::AlignUp(mapbytes);
segment->type = ToProgramSectionType(pht->flags); segment->type = ToProgramSectionType(pht->flags);
int prot = PROT_FORK | PROT_KREAD | PROT_KWRITE;
if ( pht->flags & PF_X ) { prot |= PROT_EXEC; }
if ( pht->flags & PF_R ) { prot |= PROT_READ; }
if ( pht->flags & PF_W ) { prot |= PROT_WRITE; }
if ( segment->Intersects(process->segments) ) if ( segment->Intersects(process->segments) )
{ {
delete segment; delete segment;
return 0; return 0;
} }
if ( !Memory::MapRangeUser(mapto, mapbytes)) if ( !Memory::MapRange(mapto, mapbytes, prot))
{ {
// TODO: Memory leak of segment?
return 0; return 0;
} }
@ -184,14 +191,20 @@ namespace Sortix
segment->size = Page::AlignUp(mapbytes); segment->size = Page::AlignUp(mapbytes);
segment->type = ToProgramSectionType(pht->flags); segment->type = ToProgramSectionType(pht->flags);
int prot = PROT_FORK | PROT_KREAD | PROT_KWRITE;
if ( pht->flags & PF_X ) { prot |= PROT_EXEC; }
if ( pht->flags & PF_R ) { prot |= PROT_READ; }
if ( pht->flags & PF_W ) { prot |= PROT_WRITE; }
if ( segment->Intersects(process->segments) ) if ( segment->Intersects(process->segments) )
{ {
delete segment; delete segment;
return 0; return 0;
} }
if ( !Memory::MapRangeUser(mapto, mapbytes)) if ( !Memory::MapRange(mapto, mapbytes, prot))
{ {
// TODO: Memory leak of segment?
return 0; return 0;
} }

View File

@ -1,6 +1,6 @@
/****************************************************************************** /*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011, 2012.
This file is part of Sortix. This file is part of Sortix.
@ -14,13 +14,13 @@
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details. details.
You should have received a copy of the GNU General Public License along You should have received a copy of the GNU General Public License along with
with Sortix. If not, see <http://www.gnu.org/licenses/>. Sortix. If not, see <http://www.gnu.org/licenses/>.
memorymanagement.h memorymanagement.h
Functions that allow modification of virtual memory. Functions that allow modification of virtual memory.
******************************************************************************/ *******************************************************************************/
#ifndef SORTIX_MEMORYMANAGEMENT_H #ifndef SORTIX_MEMORYMANAGEMENT_H
#define SORTIX_MEMORYMANAGEMENT_H #define SORTIX_MEMORYMANAGEMENT_H
@ -32,9 +32,14 @@ namespace Sortix
{ {
namespace Page namespace Page
{ {
bool Reserve(size_t* counter, size_t amount);
bool Reserve(size_t* counter, size_t least, size_t ideal);
addr_t GetReserved(size_t* counter);
addr_t Get(); addr_t Get();
void Put(addr_t page); void Put(addr_t page);
inline size_t Size() { return 4096UL; }
// Rounds a memory address down to nearest page. // Rounds a memory address down to nearest page.
inline addr_t AlignDown(addr_t page) { return page & ~(0xFFFUL); } inline addr_t AlignDown(addr_t page) { return page & ~(0xFFFUL); }
@ -53,14 +58,17 @@ namespace Sortix
addr_t Fork(); addr_t Fork();
addr_t SwitchAddressSpace(addr_t addrspace); addr_t SwitchAddressSpace(addr_t addrspace);
void DestroyAddressSpace(); void DestroyAddressSpace();
bool MapRangeKernel(addr_t where, size_t bytes); bool Map(addr_t physical, addr_t mapto, int prot);
void UnmapRangeKernel(addr_t where, size_t bytes); addr_t Unmap(addr_t mapto);
bool MapRangeUser(addr_t where, size_t bytes); addr_t Physical(addr_t mapto);
void UnmapRangeUser(addr_t where, size_t bytes); int PageProtection(addr_t mapto);
bool MapKernel(addr_t physical, addr_t mapto); bool LookUp(addr_t mapto, addr_t* physical, int* prot);
bool MapUser(addr_t physical, addr_t mapto); int ProvidedProtection(int prot);
addr_t UnmapKernel(addr_t mapto); void PageProtect(addr_t mapto, int protection);
addr_t UnmapUser(addr_t mapto); void PageProtectAdd(addr_t mapto, int protection);
void PageProtectSub(addr_t mapto, int protection);
bool MapRange(addr_t where, size_t bytes, int protection);
bool UnmapRange(addr_t where, size_t bytes);
void Statistics(size_t* amountused, size_t* totalmem); void Statistics(size_t* amountused, size_t* totalmem);
addr_t GetKernelStack(); addr_t GetKernelStack();
size_t GetKernelStackSize(); size_t GetKernelStackSize();

View File

@ -0,0 +1,47 @@
/*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2012.
This file is part of Sortix.
Sortix is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
Sortix. If not, see <http://www.gnu.org/licenses/>.
sortix/mman.h
Memory management declarations.
*******************************************************************************/
#ifndef SORTIX_MMAN_H
#define SORTIX_MMAN_H
/* Note that not all combinations of the following may be possible on all
architectures. However, you do get at least as much access as you request. */
#define PROT_NONE (0)
/* Flags that control user-space access to memory. */
#define PROT_EXEC (1<<0)
#define PROT_WRITE (1<<1)
#define PROT_READ (1<<2)
#define PROT_USER (PROT_EXEC | PROT_WRITE | PROT_READ)
/* Flags that control kernel access to memory. */
#define PROT_KEXEC (1<<3)
#define PROT_KWRITE (1<<4)
#define PROT_KREAD (1<<5)
#define PROT_KERNEL (PROT_KEXEC | PROT_KWRITE | PROT_KREAD)
#define PROT_FORK (1<<6)
#endif

View File

@ -25,6 +25,7 @@
#include <sortix/kernel/platform.h> #include <sortix/kernel/platform.h>
#include <sortix/kernel/memorymanagement.h> #include <sortix/kernel/memorymanagement.h>
#include <sortix/stat.h> #include <sortix/stat.h>
#include <sortix/mman.h>
#include <sortix/initrd.h> #include <sortix/initrd.h>
#include <libmaxsi/error.h> #include <libmaxsi/error.h>
#include <libmaxsi/memory.h> #include <libmaxsi/memory.h>
@ -188,7 +189,7 @@ void Init(addr_t phys, size_t size)
size_t amount = 0; size_t amount = 0;
while ( amount < size ) while ( amount < size )
{ {
if ( !Memory::MapKernel(phys + amount, virt + amount) ) if ( !Memory::Map(phys + amount, virt + amount, PROT_KREAD) )
{ {
Panic("Unable to map the init ramdisk into virtual memory"); Panic("Unable to map the init ramdisk into virtual memory");
} }

View File

@ -0,0 +1,53 @@
/*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011, 2012.
This file is part of Sortix.
Sortix is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
Sortix. If not, see <http://www.gnu.org/licenses/>.
memorymanagement.cpp
Functions that allow modification of virtual memory.
*******************************************************************************/
#include <sortix/kernel/platform.h>
#include <sortix/kernel/memorymanagement.h>
#include "syscall.h"
namespace Sortix {
namespace Memory {
int SysMemStat(size_t* memused, size_t* memtotal)
{
size_t used;
size_t total;
Statistics(&used, &total);
// TODO: Check if legal user-space buffers!
*memused = used;
*memtotal = total;
return 0;
}
void InitCPU(multiboot_info_t* bootinfo);
void Init(multiboot_info_t* bootinfo)
{
InitCPU(bootinfo);
Syscall::Register(SYSCALL_MEMSTAT, (void*) SysMemStat);
}
} // namespace Memory
} // namespace Sortix

View File

@ -25,6 +25,7 @@
#include <sortix/kernel/platform.h> #include <sortix/kernel/platform.h>
#include <sortix/unistd.h> #include <sortix/unistd.h>
#include <sortix/fork.h> #include <sortix/fork.h>
#include <sortix/mman.h>
#include <libmaxsi/error.h> #include <libmaxsi/error.h>
#include <libmaxsi/memory.h> #include <libmaxsi/memory.h>
#include <libmaxsi/string.h> #include <libmaxsi/string.h>
@ -129,7 +130,7 @@ namespace Sortix
ProcessSegment* tmp = segments; ProcessSegment* tmp = segments;
while ( tmp != NULL ) while ( tmp != NULL )
{ {
Memory::UnmapRangeUser(tmp->position, tmp->size); Memory::UnmapRange(tmp->position, tmp->size);
ProcessSegment* todelete = tmp; ProcessSegment* todelete = tmp;
tmp = tmp->next; tmp = tmp->next;
delete todelete; delete todelete;
@ -807,7 +808,7 @@ namespace Sortix
if ( unmapfrom < currentend ) if ( unmapfrom < currentend )
{ {
size_t unmapbytes = Page::AlignUp(currentend - unmapfrom); size_t unmapbytes = Page::AlignUp(currentend - unmapfrom);
Memory::UnmapRangeUser(unmapfrom, unmapbytes); Memory::UnmapRange(unmapfrom, unmapbytes);
} }
} }
else if ( currentend < newend ) else if ( currentend < newend )
@ -818,7 +819,8 @@ namespace Sortix
if ( mapfrom < newend ) if ( mapfrom < newend )
{ {
size_t mapbytes = Page::AlignUp(newend - mapfrom); size_t mapbytes = Page::AlignUp(newend - mapfrom);
if ( !Memory::MapRangeUser(mapfrom, mapbytes) ) int prot = PROT_FORK | PROT_READ | PROT_WRITE | PROT_KREAD | PROT_KWRITE;
if ( !Memory::MapRange(mapfrom, mapbytes, prot) )
{ {
return (void*) -1UL; return (void*) -1UL;
} }

View File

@ -23,6 +23,7 @@
******************************************************************************/ ******************************************************************************/
#include <sortix/kernel/platform.h> #include <sortix/kernel/platform.h>
#include <sortix/mman.h>
#include <libmaxsi/memory.h> #include <libmaxsi/memory.h>
#include <sortix/kernel/panic.h> #include <sortix/kernel/panic.h>
#include "thread.h" #include "thread.h"
@ -82,7 +83,8 @@ namespace Sortix
addr_t stackstart = Memory::GetKernelStack(); addr_t stackstart = Memory::GetKernelStack();
size_t stacksize = Memory::GetKernelStackSize(); size_t stacksize = Memory::GetKernelStackSize();
addr_t stackend = stackstart - stacksize; addr_t stackend = stackstart - stacksize;
if ( !Memory::MapRangeKernel(stackend, stacksize) ) int prot = PROT_KREAD | PROT_KWRITE;
if ( !Memory::MapRange(stackend, stacksize, prot) )
{ {
PanicF("could not create kernel stack (%zx to %zx)", PanicF("could not create kernel stack (%zx to %zx)",
stackend, stackstart); stackend, stackstart);

View File

@ -23,6 +23,7 @@
******************************************************************************/ ******************************************************************************/
#include <sortix/kernel/platform.h> #include <sortix/kernel/platform.h>
#include <sortix/mman.h>
#include <libmaxsi/error.h> #include <libmaxsi/error.h>
#include <libmaxsi/memory.h> #include <libmaxsi/memory.h>
#include "event.h" #include "event.h"
@ -106,7 +107,7 @@ namespace Sortix
delete todelete; delete todelete;
} }
Memory::UnmapRangeUser(stackpos, stacksize); Memory::UnmapRange(stackpos, stacksize);
terminated = true; terminated = true;
} }
@ -152,7 +153,8 @@ namespace Sortix
addr_t stackpos = process->AllocVirtualAddr(stacksize); addr_t stackpos = process->AllocVirtualAddr(stacksize);
if ( !stackpos ) { return NULL; } if ( !stackpos ) { return NULL; }
if ( !Memory::MapRangeUser(stackpos, stacksize) ) int prot = PROT_FORK | PROT_READ | PROT_WRITE | PROT_KREAD | PROT_KWRITE;
if ( !Memory::MapRange(stackpos, stacksize, prot) )
{ {
// TODO: Free the reserved virtual memory area. // TODO: Free the reserved virtual memory area.
return NULL; return NULL;
@ -161,7 +163,7 @@ namespace Sortix
Thread* thread = new Thread(); Thread* thread = new Thread();
if ( !thread ) if ( !thread )
{ {
Memory::UnmapRangeUser(stackpos, stacksize); Memory::UnmapRange(stackpos, stacksize);
// TODO: Free the reserved virtual memory area. // TODO: Free the reserved virtual memory area.
return NULL; return NULL;
} }

View File

@ -1,6 +1,6 @@
/****************************************************************************** /*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
This file is part of Sortix. This file is part of Sortix.
@ -14,19 +14,20 @@
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details. details.
You should have received a copy of the GNU General Public License along You should have received a copy of the GNU General Public License along with
with Sortix. If not, see <http://www.gnu.org/licenses/>. Sortix. If not, see <http://www.gnu.org/licenses/>.
memorymanagement.cpp memorymanagement.cpp
Handles memory for the x86 family of architectures. Handles memory for the x86 family of architectures.
******************************************************************************/ *******************************************************************************/
#include <sortix/kernel/platform.h> #include <sortix/kernel/platform.h>
#include <libmaxsi/error.h> #include <libmaxsi/error.h>
#include <libmaxsi/memory.h> #include <libmaxsi/memory.h>
#include "multiboot.h" #include "multiboot.h"
#include <sortix/kernel/panic.h> #include <sortix/kernel/panic.h>
#include <sortix/mman.h>
#include <sortix/kernel/memorymanagement.h> #include <sortix/kernel/memorymanagement.h>
#include "memorymanagement.h" #include "memorymanagement.h"
#include "syscall.h" #include "syscall.h"
@ -43,6 +44,7 @@ namespace Sortix
void InitPushRegion(addr_t position, size_t length); void InitPushRegion(addr_t position, size_t length);
size_t pagesnotonstack; size_t pagesnotonstack;
size_t stackused; size_t stackused;
size_t stackreserved;
size_t stacklength; size_t stacklength;
size_t totalmem; size_t totalmem;
} }
@ -56,7 +58,7 @@ namespace Sortix
int SysMemStat(size_t* memused, size_t* memtotal); int SysMemStat(size_t* memused, size_t* memtotal);
addr_t PAT2PMLFlags[PAT_NUM]; addr_t PAT2PMLFlags[PAT_NUM];
void Init(multiboot_info_t* bootinfo) void InitCPU(multiboot_info_t* bootinfo)
{ {
const size_t MAXKERNELEND = 0x400000UL; /* 4 MiB */ const size_t MAXKERNELEND = 0x400000UL; /* 4 MiB */
addr_t kernelend = Page::AlignUp((addr_t) &end); addr_t kernelend = Page::AlignUp((addr_t) &end);
@ -68,6 +70,7 @@ namespace Sortix
MAXKERNELEND); MAXKERNELEND);
} }
Page::stackreserved = 0;
Page::pagesnotonstack = 0; Page::pagesnotonstack = 0;
Page::totalmem = 0; Page::totalmem = 0;
@ -108,7 +111,7 @@ namespace Sortix
// Loop over every detected memory region. // Loop over every detected memory region.
for ( for (
mmap_t mmap = (mmap_t) bootinfo->mmap_addr; mmap_t mmap = (mmap_t) (addr_t) bootinfo->mmap_addr;
(addr_t) mmap < bootinfo->mmap_addr + bootinfo->mmap_length; (addr_t) mmap < bootinfo->mmap_addr + bootinfo->mmap_length;
mmap = (mmap_t) ((addr_t) mmap + mmap->size + sizeof(mmap->size)) mmap = (mmap_t) ((addr_t) mmap + mmap->size + sizeof(mmap->size))
) )
@ -145,7 +148,7 @@ namespace Sortix
// Don't give any of our modules to the physical page // Don't give any of our modules to the physical page
// allocator, we'll need them. // allocator, we'll need them.
bool continuing = false; bool continuing = false;
uint32_t* modules = (uint32_t*) bootinfo->mods_addr; uint32_t* modules = (uint32_t*) (addr_t) bootinfo->mods_addr;
for ( uint32_t i = 0; i < bootinfo->mods_count; i++ ) for ( uint32_t i = 0; i < bootinfo->mods_count; i++ )
{ {
size_t modsize = (size_t) (modules[2*i+1] - modules[2*i+0]); size_t modsize = (size_t) (modules[2*i+1] - modules[2*i+0]);
@ -188,29 +191,16 @@ namespace Sortix
// Finish allocating the top level PMLs for the kernels use. // Finish allocating the top level PMLs for the kernels use.
AllocateKernelPMLs(); AllocateKernelPMLs();
Syscall::Register(SYSCALL_MEMSTAT, (void*) SysMemStat);
} }
void Statistics(size_t* amountused, size_t* totalmem) void Statistics(size_t* amountused, size_t* totalmem)
{ {
size_t memfree = Page::stackused << 12UL; size_t memfree = (Page::stackused - Page::stackreserved) << 12UL;
size_t memused = Page::totalmem - memfree; size_t memused = Page::totalmem - memfree;
if ( amountused ) { *amountused = memused; } if ( amountused ) { *amountused = memused; }
if ( totalmem ) { *totalmem = Page::totalmem; } if ( totalmem ) { *totalmem = Page::totalmem; }
} }
int SysMemStat(size_t* memused, size_t* memtotal)
{
size_t used;
size_t total;
Statistics(&used, &total);
// TODO: Check if legal user-space buffers!
*memused = used;
*memtotal = total;
return 0;
}
// Prepare the non-forkable kernel PMLs such that forking the kernel // Prepare the non-forkable kernel PMLs such that forking the kernel
// address space will always keep the kernel mapped. // address space will always keep the kernel mapped.
void AllocateKernelPMLs() void AllocateKernelPMLs()
@ -249,7 +239,8 @@ namespace Sortix
// This call will also succeed, since there are plenty of physical // This call will also succeed, since there are plenty of physical
// pages available and it might need some. // pages available and it might need some.
if ( !Memory::MapKernel(page, (addr_t) (STACK + stacklength)) ) addr_t virt = (addr_t) (STACK + stacklength);
if ( !Memory::Map(page, virt, PROT_KREAD | PROT_KWRITE) )
{ {
Panic("Unable to extend page stack, which should have worked"); Panic("Unable to extend page stack, which should have worked");
} }
@ -280,16 +271,49 @@ namespace Sortix
ExtendStack(); ExtendStack();
} }
STACK[stackused++] = position; addr_t* stackentry = &(STACK[stackused++]);
*stackentry = position;
length -= 4096UL; length -= 4096UL;
position += 4096UL; position += 4096UL;
} }
} }
bool Reserve(size_t* counter, size_t least, size_t ideal)
{
ASSERT(least < ideal);
size_t available = stackused - stackreserved;
if ( least < available ) { Error::Set(ENOMEM); return false; }
if ( available < ideal ) { ideal = available; }
stackreserved += ideal;
*counter += ideal;
return true;
}
bool Reserve(size_t* counter, size_t amount)
{
return Reserve(counter, amount, amount);
}
addr_t GetReserved(size_t* counter)
{
if ( !*counter ) { return false; }
ASSERT(stackused); // After all, we did _reserve_ the memory.
addr_t result = STACK[--stackused];
ASSERT(result == AlignDown(result));
stackreserved--;
(*counter)--;
return result;
}
addr_t Get() addr_t Get()
{ {
if ( unlikely(stackused == 0) ) { Error::Set(ENOMEM); return 0; } ASSERT(stackreserved <= stackused);
if ( unlikely(stackreserved == stackused) )
{
Error::Set(ENOMEM);
return 0;
}
addr_t result = STACK[--stackused]; addr_t result = STACK[--stackused];
ASSERT(result == AlignDown(result)); ASSERT(result == AlignDown(result));
return result; return result;
@ -305,6 +329,76 @@ namespace Sortix
namespace Memory namespace Memory
{ {
addr_t ProtectionToPMLFlags(int prot)
{
addr_t result = 0;
if ( prot & PROT_EXEC ) { result |= PML_USERSPACE; }
if ( prot & PROT_READ ) { result |= PML_USERSPACE; }
if ( prot & PROT_WRITE ) { result |= PML_USERSPACE | PML_WRITABLE; }
if ( prot & PROT_KEXEC ) { result |= 0; }
if ( prot & PROT_KREAD ) { result |= 0; }
if ( prot & PROT_KWRITE ) { result |= PML_WRITABLE; }
if ( prot & PROT_FORK ) { result |= PML_FORK; }
return result;
}
int PMLFlagsToProtection(addr_t flags)
{
int prot = PROT_KREAD | PROT_KEXEC;
bool user = flags & PML_USERSPACE;
bool write = flags & PML_WRITABLE;
if ( user ) { prot |= PROT_EXEC | PROT_READ; }
if ( user && write ) { prot |= PROT_WRITE; }
return prot;
}
int ProvidedProtection(int prot)
{
addr_t flags = ProtectionToPMLFlags(prot);
return PMLFlagsToProtection(flags);
}
bool LookUp(addr_t mapto, addr_t* physical, int* protection)
{
// Translate the virtual address into PML indexes.
const size_t MASK = (1<<TRANSBITS)-1;
size_t pmlchildid[TOPPMLLEVEL + 1];
for ( size_t i = 1; i <= TOPPMLLEVEL; i++ )
{
pmlchildid[i] = (mapto >> (12+(i-1)*TRANSBITS)) & MASK;
}
int prot = PROT_USER | PROT_KERNEL | PROT_FORK;
// For each PML level, make sure it exists.
size_t offset = 0;
for ( size_t i = TOPPMLLEVEL; i > 1; i-- )
{
size_t childid = pmlchildid[i];
PML* pml = PMLS[i] + offset;
addr_t entry = pml->entry[childid];
if ( !(entry & PML_PRESENT) ) { return false; }
int entryflags = entry & PML_ADDRESS;
int entryprot = PMLFlagsToProtection(entryflags);
prot &= entryprot;
// Find the index of the next PML in the fractal mapped memory.
offset = offset * ENTRIES + childid;
}
addr_t entry = (PMLS[1] + offset)->entry[pmlchildid[1]];
int entryflags = entry & PML_ADDRESS;
int entryprot = PMLFlagsToProtection(entryflags);
prot &= entryprot;
addr_t phys = entry & PML_ADDRESS;
if ( physical ) { *physical = phys; }
if ( protection ) { *protection = prot; }
return true;
}
void InvalidatePage(addr_t /*addr*/) void InvalidatePage(addr_t /*addr*/)
{ {
// TODO: Actually just call the instruction. // TODO: Actually just call the instruction.
@ -342,7 +436,7 @@ namespace Sortix
return previous; return previous;
} }
bool MapRangeKernel(addr_t where, size_t bytes) bool MapRange(addr_t where, size_t bytes, int protection)
{ {
for ( addr_t page = where; page < where + bytes; page += 4096UL ) for ( addr_t page = where; page < where + bytes; page += 4096UL )
{ {
@ -352,61 +446,31 @@ namespace Sortix
while ( where < page ) while ( where < page )
{ {
page -= 4096UL; page -= 4096UL;
physicalpage = UnmapKernel(page); physicalpage = Unmap(page);
Page::Put(physicalpage); Page::Put(physicalpage);
} }
return false; return false;
} }
MapKernel(physicalpage, page); Map(physicalpage, page, protection);
} }
return true; return true;
} }
void UnmapRangeKernel(addr_t where, size_t bytes) bool UnmapRange(addr_t where, size_t bytes)
{ {
for ( addr_t page = where; page < where + bytes; page += 4096UL ) for ( addr_t page = where; page < where + bytes; page += 4096UL )
{ {
addr_t physicalpage = UnmapKernel(page); addr_t physicalpage = Unmap(page);
Page::Put(physicalpage); Page::Put(physicalpage);
} }
}
bool MapRangeUser(addr_t where, size_t bytes)
{
for ( addr_t page = where; page < where + bytes; page += 4096UL )
{
addr_t physicalpage = Page::Get();
if ( physicalpage == 0 || !MapUser(physicalpage, page) )
{
while ( where < page )
{
page -= 4096UL;
physicalpage = UnmapUser(page);
Page::Put(physicalpage);
}
return false;
}
}
return true; return true;
} }
void UnmapRangeUser(addr_t where, size_t bytes) static bool MapInternal(addr_t physical, addr_t mapto, int prot, addr_t extraflags = 0)
{ {
for ( addr_t page = where; page < where + bytes; page += 4096UL ) addr_t flags = ProtectionToPMLFlags(prot) | PML_PRESENT;
{
addr_t physicalpage = UnmapUser(page);
Page::Put(physicalpage);
}
}
template <bool userspace, bool invalidate>
bool Map(addr_t physical, addr_t mapto, addr_t extraflags = 0)
{
const addr_t userflags = userspace ? (PML_USERSPACE | PML_FORK) : 0;
const addr_t flags = userflags | PML_PRESENT | PML_WRITABLE;
// Translate the virtual address into PML indexes. // Translate the virtual address into PML indexes.
const size_t MASK = (1<<TRANSBITS)-1; const size_t MASK = (1<<TRANSBITS)-1;
@ -416,7 +480,7 @@ namespace Sortix
pmlchildid[i] = (mapto >> (12+(i-1)*TRANSBITS)) & MASK; pmlchildid[i] = (mapto >> (12+(i-1)*TRANSBITS)) & MASK;
} }
// For each PML level, make sure it exists, and that we may use it. // For each PML level, make sure it exists.
size_t offset = 0; size_t offset = 0;
for ( size_t i = TOPPMLLEVEL; i > 1; i-- ) for ( size_t i = TOPPMLLEVEL; i > 1; i-- )
{ {
@ -432,21 +496,17 @@ namespace Sortix
{ {
// TODO: Possible memory leak when page allocation fails. // TODO: Possible memory leak when page allocation fails.
addr_t page = Page::Get(); addr_t page = Page::Get();
if ( page == 0 ) { return false; }
entry = page | flags | extraflags; if ( !page ) { return false; }
addr_t pmlflags = PML_PRESENT | PML_WRITABLE | PML_USERSPACE
| PML_FORK;
entry = page | pmlflags;
// Invalidate the new PML and reset it to zeroes. // Invalidate the new PML and reset it to zeroes.
addr_t pmladdr = (addr_t) (PMLS[i-1] + childoffset); addr_t pmladdr = (addr_t) (PMLS[i-1] + childoffset);
InvalidatePage(pmladdr); InvalidatePage(pmladdr);
Maxsi::Memory::Set((void*) pmladdr, 0, sizeof(PML)); Maxsi::Memory::Set((void*) pmladdr, 0, sizeof(PML));
} }
else if ( userspace && !(entry & PML_USERSPACE) )
{
PanicF("attempted to map physical page %p to virtual page "
"%p with userspace permissions, but the virtual page "
"wasn't in an userspace PML[%zu]. This is a bug in the "
"code calling this function", physical, mapto, i-1);
}
offset = childoffset; offset = childoffset;
} }
@ -454,16 +514,39 @@ namespace Sortix
// Actually map the physical page to the virtual page. // Actually map the physical page to the virtual page.
const addr_t entry = physical | flags | extraflags; const addr_t entry = physical | flags | extraflags;
(PMLS[1] + offset)->entry[pmlchildid[1]] = entry; (PMLS[1] + offset)->entry[pmlchildid[1]] = entry;
if ( invalidate )
{
InvalidatePage(mapto);
}
return true; return true;
} }
template <bool userspace, bool invalidate> bool Map(addr_t physical, addr_t mapto, int prot)
{
return MapInternal(physical, mapto, prot);
}
void PageProtect(addr_t mapto, int protection)
{
addr_t phys;
LookUp(mapto, &phys, NULL);
Map(phys, mapto, protection);
}
void PageProtectAdd(addr_t mapto, int protection)
{
addr_t phys;
int prot;
LookUp(mapto, &phys, &prot);
prot |= protection;
Map(phys, mapto, prot);
}
void PageProtectSub(addr_t mapto, int protection)
{
addr_t phys;
int prot;
LookUp(mapto, &phys, &prot);
prot &= ~protection;
Map(phys, mapto, prot);
}
addr_t Unmap(addr_t mapto) addr_t Unmap(addr_t mapto)
{ {
// Translate the virtual address into PML indexes. // Translate the virtual address into PML indexes.
@ -474,8 +557,7 @@ namespace Sortix
pmlchildid[i] = (mapto >> (12+(i-1)*TRANSBITS)) & MASK; pmlchildid[i] = (mapto >> (12+(i-1)*TRANSBITS)) & MASK;
} }
// For each PML level, make sure it exists, and that it belongs to // For each PML level, make sure it exists.
// user-space.
size_t offset = 0; size_t offset = 0;
for ( size_t i = TOPPMLLEVEL; i > 1; i-- ) for ( size_t i = TOPPMLLEVEL; i > 1; i-- )
{ {
@ -486,15 +568,9 @@ namespace Sortix
if ( !(entry & PML_PRESENT) ) if ( !(entry & PML_PRESENT) )
{ {
PanicF("attempted to unmap virtual page %p with userspace, " PanicF("Attempted to unmap virtual page %p, but the virtual"
" but the virtual page wasn't mapped. This is a bug " " page was wasn't mapped. This is a bug in the code "
"in the code calling this function", mapto); "code calling this function", mapto);
}
else if ( userspace && !(entry & PML_USERSPACE) )
{
PanicF("attempted to unmap virtual page %p it wasn't in an "
"userspace PML[%zu]. This is a bug in the code "
"calling this function", mapto, i-1);
} }
// Find the index of the next PML in the fractal mapped memory. // Find the index of the next PML in the fractal mapped memory.
@ -508,44 +584,13 @@ namespace Sortix
// TODO: If all the entries in PML[N] are not-present, then who // TODO: If all the entries in PML[N] are not-present, then who
// unmaps its entry from PML[N-1]? // unmaps its entry from PML[N-1]?
if ( invalidate )
{
Flush();
}
return result; return result;
} }
bool MapKernelPAT(addr_t physical, addr_t mapto, addr_t mtype) bool MapPAT(addr_t physical, addr_t mapto, int prot, addr_t mtype)
{ {
addr_t extraflags = PAT2PMLFlags[mtype]; addr_t extraflags = PAT2PMLFlags[mtype];
return Map<false, false>(physical, mapto, extraflags); return MapInternal(physical, mapto, prot, extraflags);
}
bool MapKernel(addr_t physical, addr_t mapto)
{
return MapKernelPAT(physical, mapto, PAT_WB);
}
bool MapUserPAT(addr_t physical, addr_t mapto, addr_t mtype)
{
addr_t extraflags = PAT2PMLFlags[mtype];
return Map<true, false>(physical, mapto, extraflags);
}
bool MapUser(addr_t physical, addr_t mapto)
{
return MapUserPAT(physical, mapto, PAT_WB);
}
addr_t UnmapKernel(addr_t mapto)
{
return Unmap<false, false>(mapto);
}
addr_t UnmapUser(addr_t mapto)
{
return Unmap<true, false>(mapto);
} }
void ForkCleanup(size_t i, size_t level) void ForkCleanup(size_t i, size_t level)
@ -560,7 +605,7 @@ namespace Sortix
if ( 1 < level ) if ( 1 < level )
{ {
addr_t destaddr = (addr_t) (FORKPML + level-1); addr_t destaddr = (addr_t) (FORKPML + level-1);
MapKernel(phys, destaddr); Map(phys, destaddr, PROT_KREAD | PROT_KWRITE);
InvalidatePage(destaddr); InvalidatePage(destaddr);
ForkCleanup(ENTRIES+1UL, level-1); ForkCleanup(ENTRIES+1UL, level-1);
} }
@ -592,7 +637,7 @@ namespace Sortix
// Map the destination page. // Map the destination page.
addr_t destaddr = (addr_t) (FORKPML + level-1); addr_t destaddr = (addr_t) (FORKPML + level-1);
MapKernel(phys, destaddr); Map(phys, destaddr, PROT_KREAD | PROT_KWRITE);
InvalidatePage(destaddr); InvalidatePage(destaddr);
size_t offset = pmloffset * ENTRIES + i; size_t offset = pmloffset * ENTRIES + i;
@ -625,7 +670,7 @@ namespace Sortix
PML* destpml = FORKPML + level; PML* destpml = FORKPML + level;
// This call always succeeds. // This call always succeeds.
MapKernel(dir, (addr_t) destpml); Map(dir, (addr_t) destpml, PROT_KREAD | PROT_KWRITE);
InvalidatePage((addr_t) destpml); InvalidatePage((addr_t) destpml);
return Fork(level, pmloffset); return Fork(level, pmloffset);
@ -649,7 +694,7 @@ namespace Sortix
for ( size_t i = TOPPMLLEVEL-1; i > 0; i-- ) for ( size_t i = TOPPMLLEVEL-1; i > 0; i-- )
{ {
mapto = (addr_t) (FORKPML + i); mapto = (addr_t) (FORKPML + i);
MapKernel(childaddr, mapto); Map(childaddr, mapto, PROT_KREAD | PROT_KWRITE);
InvalidatePage(mapto); InvalidatePage(mapto);
(FORKPML + i)->entry[ENTRIES-1] = dir | flags; (FORKPML + i)->entry[ENTRIES-1] = dir | flags;
childaddr = (FORKPML + i)->entry[ENTRIES-2] & PML_ADDRESS; childaddr = (FORKPML + i)->entry[ENTRIES-2] & PML_ADDRESS;

View File

@ -1,6 +1,6 @@
/****************************************************************************** /******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
This file is part of Sortix. This file is part of Sortix.
@ -86,8 +86,9 @@ namespace Sortix
if ( pat & 0x4 ) { result |= PML_PAT; } if ( pat & 0x4 ) { result |= PML_PAT; }
return result; return result;
} }
bool MapKernelPAT(addr_t physical, addr_t mapto, addr_t mtype); bool Map(addr_t physical, addr_t mapto, int prot, addr_t mtype);
bool MapUserPAT(addr_t physical, addr_t mapto, addr_t mtype); addr_t ProtectionToPMLFlags(int prot);
int PMLFlagsToProtection(addr_t flags);
} }
} }