Implement virtual memory allocator

This commit is contained in:
plutoo 2017-10-08 15:11:59 +02:00
parent b82ad0b099
commit a9555bb5b5
2 changed files with 117 additions and 7 deletions

View File

@ -22,3 +22,5 @@
#define LIBNX_BADRELOC 1 #define LIBNX_BADRELOC 1
#define LIBNX_OUTOFMEM 2 #define LIBNX_OUTOFMEM 2
#define LIBNX_ALREADYMAPPED 3 #define LIBNX_ALREADYMAPPED 3
#define LIBNX_BADGETINFO 4
#define LIBNX_BADQUERYMEMORY 5

View File

@ -1,21 +1,129 @@
#include <switch.h> #include <switch.h>
static u8* g_VirtBase; typedef struct {
u64 start;
u64 end;
} VirtualRegion;
enum {
REGION_MAP =0,
REGION_HEAP=1,
REGION_UNK =2,
REGION_MAX
};
static VirtualRegion g_AddressSpace;
static VirtualRegion g_Region[REGION_MAX];
static u64 g_CurrentAddr;
static Result _GetRegionFromInfo(VirtualRegion* r, u64 id0_addr, u32 id0_sz) {
u64 base;
Result rc = svcGetInfo(&base, id0_addr, CUR_PROCESS_HANDLE, 0);
if (R_SUCCEEDED(rc)) {
u64 size;
rc = svcGetInfo(&size, id0_sz, CUR_PROCESS_HANDLE, 0);
if (R_SUCCEEDED(rc)) {
r->start = base;
r->end = base + size;
}
}
return rc;
}
static inline bool _InRegion(VirtualRegion* r, u64 addr) {
return (addr >= r->start) && (addr < (r->end-1));
}
void virtmemSetup() { void virtmemSetup() {
// TODO: Implement this. if (R_FAILED(_GetRegionFromInfo(&g_AddressSpace, 12, 13))) {
// Default values in case we're running on 1.0.0
// Assumes 36-bit address space
g_AddressSpace.start = 0x8000000ull;
g_AddressSpace.end = 0x1000000000ull;
}
if (R_FAILED(_GetRegionFromInfo(&g_Region[REGION_MAP], 2, 3))) {
fatalSimple(MAKERESULT(MODULE_LIBNX, LIBNX_BADGETINFO));
}
if (R_FAILED(_GetRegionFromInfo(&g_Region[REGION_HEAP], 4, 5))) {
fatalSimple(MAKERESULT(MODULE_LIBNX, LIBNX_BADGETINFO));
}
// Failure is OK, happens on 1.0.0
// In that case, g_UnkRegion will default to (0, 0).
_GetRegionFromInfo(&g_Region[REGION_UNK], 14, 15);
} }
void* virtmemReserve(size_t size) { void* virtmemReserve(size_t size) {
void* ret = g_VirtBase; Result rc;
MemInfo meminfo;
u32 pageinfo;
size_t i;
size = (size + 0xFFF) &~ 0xFFF; size = (size + 0xFFF) &~ 0xFFF;
g_VirtBase += size + 0x1000;
return ret; u64 addr = g_CurrentAddr;
while (1)
{
// Add a guard page.
addr += 0x1000;
// If we go outside address space, let's go back to start.
if (!_InRegion(&g_AddressSpace, addr)) {
addr = g_AddressSpace.start;
}
// Query information about address.
rc = svcQueryMemory(&meminfo, &pageinfo, addr);
if (R_FAILED(rc)) {
fatalSimple(MAKERESULT(MODULE_LIBNX, LIBNX_BADQUERYMEMORY));
}
if (meminfo.memorytype != 0) {
// Address is already taken, let's move past it.
addr = meminfo.base_addr + meminfo.size;
continue;
}
if (size > meminfo.size) {
// We can't fit in this region, let's move past it.
addr = meminfo.base_addr + meminfo.size;
continue;
}
// Check if we end up in a reserved region.
for(i=0; i<REGION_MAX; i++)
{
u64 end = addr + size - 1;
if (_InRegion(&g_Region[i], addr)) {
break;
}
if (_InRegion(&g_Region[i], end)) {
break;
}
}
// Did we?
if (i != REGION_MAX) {
addr = g_Region[i].end;
continue;
}
// Not in a reserved region, we're good to go!
break;
}
g_CurrentAddr = addr + size;
return (void*) addr;
} }
void virtmemFree(void* addr, size_t size) { void virtmemFree(void* addr, size_t size) {
(void) addr; IGNORE_ARG(addr);
(void) size; IGNORE_ARG(size);
} }