xv6-cs450/main.c

129 lines
3 KiB
C
Raw Normal View History

2006-06-12 17:22:12 +02:00
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
#include "x86.h"
2006-06-15 18:02:20 +02:00
#include "traps.h"
#include "syscall.h"
2006-06-22 22:47:23 +02:00
#include "elf.h"
#include "param.h"
#include "spinlock.h"
2006-06-12 17:22:12 +02:00
2006-06-14 00:08:20 +02:00
extern char edata[], end[];
extern int acpu;
2006-07-15 19:23:17 +02:00
extern uint8_t _binary_user1_start[], _binary_user1_size[];
extern uint8_t _binary_usertests_start[], _binary_usertests_size[];
extern uint8_t _binary_userfs_start[], _binary_userfs_size[];
2006-06-12 17:22:12 +02:00
extern int use_console_lock;
struct spinlock sillylock; // hold this to keep interrupts disabled
2006-06-15 18:02:20 +02:00
int
2006-06-12 17:22:12 +02:00
main()
{
struct proc *p;
if (acpu) {
cprintf("an application processor\n");
2006-06-27 16:35:53 +02:00
idtinit(); // CPU's idt
2006-06-22 22:47:23 +02:00
lapic_init(cpu());
lapic_timerinit();
lapic_enableintr();
2006-07-11 03:07:40 +02:00
scheduler();
}
acpu = 1;
2006-06-14 00:08:20 +02:00
// clear BSS
memset(edata, 0, end - edata);
2006-07-12 19:00:54 +02:00
mp_init(); // collect info about this machine
acquire(&sillylock);
use_console_lock = 1;
2006-07-12 19:00:54 +02:00
lapic_init(mp_bcpu());
2006-06-12 17:22:12 +02:00
cprintf("\nxV6\n\n");
pic_init(); // initialize PIC
2006-06-13 17:50:06 +02:00
kinit(); // physical memory allocator
tvinit(); // trap vectors
idtinit(); // CPU's idt
2006-06-12 17:22:12 +02:00
// create fake process zero
p = &proc[0];
2006-07-11 03:07:40 +02:00
memset(p, 0, sizeof *p);
p->state = SLEEPING;
p->sz = 4 * PAGE;
2006-06-12 17:22:12 +02:00
p->mem = kalloc(p->sz);
memset(p->mem, 0, p->sz);
p->kstack = kalloc(KSTACKSIZE);
p->tf = (struct Trapframe *) (p->kstack + KSTACKSIZE - sizeof(struct Trapframe));
memset(p->tf, 0, sizeof(struct Trapframe));
p->tf->es = p->tf->ds = p->tf->ss = (SEG_UDATA << 3) | 3;
p->tf->cs = (SEG_UCODE << 3) | 3;
p->tf->eflags = FL_IF;
2006-06-15 21:58:01 +02:00
p->pid = 0;
p->ppid = 0;
2006-06-12 17:22:12 +02:00
setupsegs(p);
mp_startthem();
// turn on timer and enable interrupts on the local APIC
2006-06-28 18:35:03 +02:00
lapic_timerinit();
lapic_enableintr();
2006-07-10 15:08:37 +02:00
// init disk device
//ide_init();
2006-07-10 15:08:37 +02:00
// become interruptable
sti();
2006-06-16 22:29:25 +02:00
p = copyproc(&proc[0]);
load_icode(p, _binary_usertests_start, (unsigned) _binary_usertests_size);
//load_icode(p, _binary_userfs_start, (unsigned) _binary_userfs_size);
p->state = RUNNABLE;
2006-07-11 03:07:40 +02:00
cprintf("loaded userfs\n");
release(&sillylock);
2006-07-11 03:07:40 +02:00
scheduler();
2006-06-15 18:02:20 +02:00
return 0;
2006-06-12 17:22:12 +02:00
}
2006-06-22 22:47:23 +02:00
void
load_icode(struct proc *p, uint8_t *binary, unsigned size)
{
2006-06-28 18:35:03 +02:00
int i;
struct Elf *elf;
struct Proghdr *ph;
2006-06-22 22:47:23 +02:00
2006-06-28 18:35:03 +02:00
// Check magic number on binary
elf = (struct Elf*) binary;
cprintf("elf %x magic %x\n", elf, elf->magic);
if (elf->magic != ELF_MAGIC)
2006-06-28 18:35:03 +02:00
panic("load_icode: not an ELF binary");
2006-06-22 22:47:23 +02:00
p->tf->eip = elf->entry;
p->tf->esp = p->sz;
2006-06-22 22:47:23 +02:00
2006-06-28 18:35:03 +02:00
// Map and load segments as directed.
ph = (struct Proghdr*) (binary + elf->phoff);
for (i = 0; i < elf->phnum; i++, ph++) {
if (ph->type != ELF_PROG_LOAD)
2006-06-28 18:35:03 +02:00
continue;
cprintf("va %x memsz %d\n", ph->va, ph->memsz);
if (ph->va + ph->memsz < ph->va)
2006-06-28 18:35:03 +02:00
panic("load_icode: overflow in elf header segment");
if (ph->va + ph->memsz >= p->sz)
2006-06-28 18:35:03 +02:00
panic("load_icode: icode wants to be above UTOP");
// Load/clear the segment
memmove(p->mem + ph->va, binary + ph->offset, ph->filesz);
memset(p->mem + ph->va + ph->filesz, 0, ph->memsz - ph->filesz);
2006-06-28 18:35:03 +02:00
}
2006-06-22 22:47:23 +02:00
}