diff options
author | Marvin Borner | 2021-04-10 15:25:27 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-10 15:25:27 +0200 |
commit | f96b8ad1ee83dec08ae636e179cc48019ca50b12 (patch) | |
tree | 80ff605e1305673291ce6230941db7ed4229856d /kernel/features/mm.c | |
parent | 9655593d80e23d2ea3c091e3187e8e47b278bc3d (diff) |
Some changes here and there
Diffstat (limited to 'kernel/features/mm.c')
-rw-r--r-- | kernel/features/mm.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/kernel/features/mm.c b/kernel/features/mm.c index 0972ab3..9a7a64e 100644 --- a/kernel/features/mm.c +++ b/kernel/features/mm.c @@ -82,14 +82,19 @@ void page_fault_handler(struct regs *r) u32 paddr = virtual_to_physical(dir, vaddr); // Print! + printf("%s process tried to %s a %s page at [vaddr=%x; paddr=%x]\n", super, operation, type, vaddr, paddr); + if (proc && vaddr > proc->regs.ebp - PROC_STACK_SIZE - PAGE_SIZE && vaddr < proc->regs.ebp + PAGE_SIZE) print("Probably a stack overflow\n"); + printf("Sections: [vaddr_section=%s; paddr_section=%s; eip_section=%s]\n", page_fault_section(vaddr), page_fault_section(paddr), page_fault_section(r->eip)); + /* printf("%b\n", virtual_entry(dir, vaddr)->uint); */ + isr_panic(r); } @@ -421,6 +426,14 @@ err: return NULL; } +void *memory_alloc_with_boundary(struct page_dir *dir, u32 size, u32 flags) +{ + u32 mem = PAGE_SIZE + (u32)memory_alloc(dir, size + 2 * PAGE_SIZE, flags); + virtual_remap_readonly(dir, memory_range(mem - PAGE_SIZE, PAGE_SIZE)); + virtual_remap_readonly(dir, memory_range(mem + size, PAGE_SIZE)); + return (void *)mem; +} + void *memory_alloc_identity(struct page_dir *dir, u32 flags) { for (u32 i = 1; i < PAGE_KERNEL_COUNT * PAGE_COUNT; i++) { |