2019-07-24 20:40:13 +02:00
|
|
|
// Physical memory allocator, for user processes,
|
|
|
|
// kernel stacks, page-table pages,
|
|
|
|
// and pipe buffers. Allocates whole 4096-byte pages.
|
2006-06-12 17:22:12 +02:00
|
|
|
|
|
|
|
#include "types.h"
|
2011-07-29 13:31:27 +02:00
|
|
|
#include "memlayout.h"
|
2006-07-12 03:48:35 +02:00
|
|
|
#include "spinlock.h"
|
2019-05-31 15:45:59 +02:00
|
|
|
#include "riscv.h"
|
|
|
|
#include "defs.h"
|
|
|
|
|
2024-08-09 07:59:03 +02:00
|
|
|
/** Free list of physical pages. */
|
2019-05-31 15:45:59 +02:00
|
|
|
void freerange(void *pa_start, void *pa_end);
|
2006-07-12 03:48:35 +02:00
|
|
|
|
2024-08-09 07:59:03 +02:00
|
|
|
/** first address after kernel. defined by kernel.ld. */
|
|
|
|
extern char end[];
|
2011-09-13 19:14:52 +02:00
|
|
|
|
2024-08-09 07:59:03 +02:00
|
|
|
/** A run is a node in the free list. */
|
2006-06-12 17:22:12 +02:00
|
|
|
struct run {
|
|
|
|
struct run *next;
|
|
|
|
};
|
2009-05-31 07:12:21 +02:00
|
|
|
|
2024-08-09 07:59:03 +02:00
|
|
|
/** Kernel memory allocator. */
|
2009-05-31 07:12:21 +02:00
|
|
|
struct {
|
|
|
|
struct spinlock lock;
|
2024-06-15 16:55:06 +02:00
|
|
|
struct run *freelist;
|
2009-05-31 07:12:21 +02:00
|
|
|
} kmem;
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2011-09-13 19:14:52 +02:00
|
|
|
void
|
2019-05-31 15:45:59 +02:00
|
|
|
kinit()
|
2011-07-29 13:31:27 +02:00
|
|
|
{
|
2011-09-13 19:14:52 +02:00
|
|
|
initlock(&kmem.lock, "kmem");
|
2024-06-15 16:55:06 +02:00
|
|
|
freerange(end, (void *)PHYSTOP);
|
2011-07-29 13:31:27 +02:00
|
|
|
}
|
2010-09-19 13:18:42 +02:00
|
|
|
|
2006-06-12 17:22:12 +02:00
|
|
|
void
|
2019-05-31 15:45:59 +02:00
|
|
|
freerange(void *pa_start, void *pa_end)
|
2006-06-12 17:22:12 +02:00
|
|
|
{
|
2011-01-11 19:01:13 +01:00
|
|
|
char *p;
|
2024-06-15 16:55:06 +02:00
|
|
|
p = (char *)PGROUNDUP((u64)pa_start);
|
|
|
|
for(; p + PGSIZE <= (char *)pa_end; p += PGSIZE)
|
2010-09-01 01:21:33 +02:00
|
|
|
kfree(p);
|
2006-06-12 17:22:12 +02:00
|
|
|
}
|
2019-07-24 19:33:43 +02:00
|
|
|
|
2006-06-12 17:22:12 +02:00
|
|
|
void
|
2019-05-31 15:45:59 +02:00
|
|
|
kfree(void *pa)
|
2006-06-12 17:22:12 +02:00
|
|
|
{
|
2010-08-31 18:54:47 +02:00
|
|
|
struct run *r;
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2025-01-15 13:45:36 +01:00
|
|
|
// Assert that page is a ligned to a page boundary and that its correctly sized
|
2024-06-15 16:55:06 +02:00
|
|
|
if(((u64)pa % PGSIZE) != 0 || (char *)pa < end || (u64)pa >= PHYSTOP)
|
2006-06-12 17:22:12 +02:00
|
|
|
panic("kfree");
|
|
|
|
|
2006-09-06 20:06:04 +02:00
|
|
|
// Fill with junk to catch dangling refs.
|
2019-05-31 15:45:59 +02:00
|
|
|
memset(pa, 1, PGSIZE);
|
2006-07-01 23:26:01 +02:00
|
|
|
|
2024-06-15 16:55:06 +02:00
|
|
|
r = (struct run *)pa;
|
2019-07-11 11:41:59 +02:00
|
|
|
|
|
|
|
acquire(&kmem.lock);
|
2010-08-31 18:54:47 +02:00
|
|
|
r->next = kmem.freelist;
|
|
|
|
kmem.freelist = r;
|
2019-05-31 15:45:59 +02:00
|
|
|
release(&kmem.lock);
|
2006-06-12 17:22:12 +02:00
|
|
|
}
|
|
|
|
|
2019-05-31 15:45:59 +02:00
|
|
|
void *
|
2011-01-11 19:01:13 +01:00
|
|
|
kalloc(void)
|
2006-06-12 17:22:12 +02:00
|
|
|
{
|
2010-08-31 18:54:47 +02:00
|
|
|
struct run *r;
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2019-05-31 15:45:59 +02:00
|
|
|
acquire(&kmem.lock);
|
2010-08-31 18:54:47 +02:00
|
|
|
r = kmem.freelist;
|
|
|
|
if(r)
|
|
|
|
kmem.freelist = r->next;
|
2019-05-31 15:45:59 +02:00
|
|
|
release(&kmem.lock);
|
2019-07-11 11:41:59 +02:00
|
|
|
|
2019-06-04 16:43:45 +02:00
|
|
|
if(r)
|
2024-06-15 16:55:06 +02:00
|
|
|
memset((char *)r, 5, PGSIZE); // fill with junk
|
|
|
|
return (void *)r;
|
2006-06-12 17:22:12 +02:00
|
|
|
}
|