2006-09-06 17:50:20 +00:00
|
|
|
// Physical memory allocator, intended to allocate
|
2010-08-31 12:54:47 -04:00
|
|
|
// memory for user processes, kernel stacks, page table pages,
|
|
|
|
// and pipe buffers. Allocates 4096-byte pages.
|
2006-06-12 15:22:12 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
#include "defs.h"
|
2006-07-12 11:15:38 +00:00
|
|
|
#include "param.h"
|
2011-07-29 07:31:27 -04:00
|
|
|
#include "memlayout.h"
|
2010-07-02 14:51:53 -04:00
|
|
|
#include "mmu.h"
|
2006-07-12 01:48:35 +00:00
|
|
|
#include "spinlock.h"
|
|
|
|
|
2011-09-13 13:14:52 -04:00
|
|
|
void freerange(void *vstart, void *vend);
|
|
|
|
extern char end[]; // first address after kernel loaded from ELF file
|
|
|
|
|
2006-06-12 15:22:12 +00:00
|
|
|
struct run {
|
|
|
|
struct run *next;
|
|
|
|
};
|
2009-05-31 05:12:21 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct spinlock lock;
|
2011-09-13 13:14:52 -04:00
|
|
|
int use_lock;
|
2009-05-31 05:12:21 +00:00
|
|
|
struct run *freelist;
|
|
|
|
} kmem;
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2011-09-13 13:14:52 -04:00
|
|
|
// Initialization happens in two phases.
|
|
|
|
// 1. main() calls kinit1() while still using entrypgdir to place just
|
|
|
|
// the pages mapped by entrypgdir on free list.
|
|
|
|
// 2. main() calls kinit2() with the rest of the physical pages
|
|
|
|
// after installing a full page table that maps them on all cores.
|
|
|
|
void
|
|
|
|
kinit1(void *vstart, void *vend)
|
2011-07-29 07:31:27 -04:00
|
|
|
{
|
2011-09-13 13:14:52 -04:00
|
|
|
initlock(&kmem.lock, "kmem");
|
|
|
|
kmem.use_lock = 0;
|
|
|
|
freerange(vstart, vend);
|
|
|
|
}
|
2011-07-29 07:31:27 -04:00
|
|
|
|
2011-09-13 13:14:52 -04:00
|
|
|
void
|
|
|
|
kinit2(void *vstart, void *vend)
|
|
|
|
{
|
|
|
|
freerange(vstart, vend);
|
|
|
|
kmem.use_lock = 1;
|
2011-07-29 07:31:27 -04:00
|
|
|
}
|
2010-09-19 07:18:42 -04:00
|
|
|
|
2006-06-12 15:22:12 +00:00
|
|
|
void
|
2011-09-13 13:14:52 -04:00
|
|
|
freerange(void *vstart, void *vend)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2011-01-11 13:01:13 -05:00
|
|
|
char *p;
|
2011-09-13 13:14:52 -04:00
|
|
|
p = (char*)PGROUNDUP((uint)vstart);
|
|
|
|
for(; p + PGSIZE <= (char*)vend; p += PGSIZE)
|
2010-08-31 19:21:33 -04:00
|
|
|
kfree(p);
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|
|
|
|
|
2010-08-31 17:52:03 -04:00
|
|
|
//PAGEBREAK: 21
|
2010-08-31 12:54:47 -04:00
|
|
|
// Free the page of physical memory pointed at by v,
|
2006-09-07 14:12:30 +00:00
|
|
|
// which normally should have been returned by a
|
2010-08-31 12:54:47 -04:00
|
|
|
// call to kalloc(). (The exception is when
|
2006-09-07 14:12:30 +00:00
|
|
|
// initializing the allocator; see kinit above.)
|
2006-06-12 15:22:12 +00:00
|
|
|
void
|
2010-08-31 12:54:47 -04:00
|
|
|
kfree(char *v)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2010-08-31 12:54:47 -04:00
|
|
|
struct run *r;
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2016-08-24 13:40:06 -04:00
|
|
|
if((uint)v % PGSIZE || v < end || V2P(v) >= PHYSTOP)
|
2006-06-12 15:22:12 +00:00
|
|
|
panic("kfree");
|
|
|
|
|
2006-09-06 18:06:04 +00:00
|
|
|
// Fill with junk to catch dangling refs.
|
2010-08-31 12:54:47 -04:00
|
|
|
memset(v, 1, PGSIZE);
|
2006-07-01 21:26:01 +00:00
|
|
|
|
2011-09-13 13:14:52 -04:00
|
|
|
if(kmem.use_lock)
|
|
|
|
acquire(&kmem.lock);
|
2011-01-11 13:01:13 -05:00
|
|
|
r = (struct run*)v;
|
2010-08-31 12:54:47 -04:00
|
|
|
r->next = kmem.freelist;
|
|
|
|
kmem.freelist = r;
|
2011-09-13 13:14:52 -04:00
|
|
|
if(kmem.use_lock)
|
|
|
|
release(&kmem.lock);
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|
|
|
|
|
2010-08-31 12:54:47 -04:00
|
|
|
// Allocate one 4096-byte page of physical memory.
|
|
|
|
// Returns a pointer that the kernel can use.
|
2006-09-06 17:50:20 +00:00
|
|
|
// Returns 0 if the memory cannot be allocated.
|
2006-07-16 16:05:37 +00:00
|
|
|
char*
|
2011-01-11 13:01:13 -05:00
|
|
|
kalloc(void)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2010-08-31 12:54:47 -04:00
|
|
|
struct run *r;
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2011-09-13 13:14:52 -04:00
|
|
|
if(kmem.use_lock)
|
|
|
|
acquire(&kmem.lock);
|
2010-08-31 12:54:47 -04:00
|
|
|
r = kmem.freelist;
|
|
|
|
if(r)
|
|
|
|
kmem.freelist = r->next;
|
2011-09-13 13:14:52 -04:00
|
|
|
if(kmem.use_lock)
|
|
|
|
release(&kmem.lock);
|
2011-01-11 13:01:13 -05:00
|
|
|
return (char*)r;
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|
2010-07-02 14:51:53 -04:00
|
|
|
|