xv6-cs450/main.c

139 lines
3.1 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"
2006-06-12 17:22:12 +02:00
2006-06-14 00:08:20 +02:00
extern char edata[], end[];
extern int acpu;
2006-06-22 22:47:23 +02:00
extern char _binary_user1_start[];
extern char _binary_user1_size[];
2006-06-12 17:22:12 +02:00
2006-06-16 22:29:25 +02:00
char buf[512];
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");
release_spinlock(&kernel_lock);
2006-06-22 22:47:23 +02:00
acquire_spinlock(&kernel_lock);
lapic_init(cpu());
curproc[cpu()] = &proc[0]; // XXX
swtch();
}
acpu = 1;
2006-06-14 00:08:20 +02:00
// clear BSS
memset(edata, 0, end - edata);
2006-06-12 17:22:12 +02:00
cprintf("\nxV6\n\n");
mp_init(); // multiprocessor
2006-06-13 17:50:06 +02:00
kinit(); // physical memory allocator
tinit(); // traps and interrupts
2006-06-16 22:29:25 +02:00
pic_init();
2006-06-12 17:22:12 +02:00
// create fake process zero
p = &proc[0];
2006-06-22 22:47:23 +02:00
curproc[cpu()] = p;
2006-06-12 17:22:12 +02:00
p->state = WAITING;
p->sz = PAGE;
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->tf_es = p->tf->tf_ds = p->tf->tf_ss = (SEG_UDATA << 3) | 3;
p->tf->tf_cs = (SEG_UCODE << 3) | 3;
p->tf->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);
2006-06-16 22:29:25 +02:00
// turn on interrupts
2006-06-22 22:47:23 +02:00
irq_setmask_8259A(0xff);
2006-06-16 22:29:25 +02:00
write_eflags(read_eflags() | FL_IF);
2006-06-21 03:53:07 +02:00
#if 0
2006-06-16 22:29:25 +02:00
ide_read(0, buf, 1);
cprintf("sec0.0 %x\n", buf[0] & 0xff);
#endif
2006-06-22 22:47:23 +02:00
#if 1
2006-06-15 18:02:20 +02:00
p = newproc();
2006-06-22 22:47:23 +02:00
load_icode(p, _binary_user1_start, (unsigned) _binary_user1_size);
#endif
2006-06-15 18:02:20 +02:00
2006-06-22 22:47:23 +02:00
#if 0
2006-06-15 18:02:20 +02:00
i = 0;
p->mem[i++] = 0x90; // nop
p->mem[i++] = 0xb8; // mov ..., %eax
p->mem[i++] = SYS_fork;
p->mem[i++] = 0;
p->mem[i++] = 0;
p->mem[i++] = 0;
p->mem[i++] = 0xcd; // int
p->mem[i++] = T_SYSCALL;
p->mem[i++] = 0xb8; // mov ..., %eax
2006-06-15 21:58:01 +02:00
p->mem[i++] = SYS_wait;
p->mem[i++] = 0;
p->mem[i++] = 0;
p->mem[i++] = 0;
p->mem[i++] = 0xcd; // int
p->mem[i++] = T_SYSCALL;
p->mem[i++] = 0xb8; // mov ..., %eax
2006-06-15 18:02:20 +02:00
p->mem[i++] = SYS_exit;
p->mem[i++] = 0;
p->mem[i++] = 0;
p->mem[i++] = 0;
p->mem[i++] = 0xcd; // int
p->mem[i++] = T_SYSCALL;
2006-06-12 17:22:12 +02:00
p->tf->tf_eip = 0;
p->tf->tf_esp = p->sz;
2006-06-16 22:29:25 +02:00
#endif
2006-06-12 17:22:12 +02:00
2006-06-15 18:02:20 +02:00
swtch();
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)
{
int i;
struct Elf *elf;
struct Proghdr *ph;
// Check magic number on binary
elf = (struct Elf*) binary;
cprintf("elf %x magic %x\n", elf, elf->e_magic);
if (elf->e_magic != ELF_MAGIC)
panic("load_icode: not an ELF binary");
p->tf->tf_eip = elf->e_entry;
p->tf->tf_esp = p->sz;
// Map and load segments as directed.
ph = (struct Proghdr*) (binary + elf->e_phoff);
for (i = 0; i < elf->e_phnum; i++, ph++) {
if (ph->p_type != ELF_PROG_LOAD)
continue;
cprintf("va %x memsz %d\n", ph->p_va, ph->p_memsz);
if (ph->p_va + ph->p_memsz < ph->p_va)
panic("load_icode: overflow in elf header segment");
if (ph->p_va + ph->p_memsz >= p->sz)
panic("load_icode: icode wants to be above UTOP");
// Load/clear the segment
memcpy(p->mem + ph->p_va, binary + ph->p_offset, ph->p_filesz);
memset(p->mem + ph->p_va + ph->p_filesz, 0, ph->p_memsz - ph->p_filesz);
}
}