Skip to content
Snippets Groups Projects
main.c 4.4 KiB
Newer Older
rtm's avatar
rtm committed
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
#include "x86.h"
#include "traps.h"
#include "syscall.h"
rtm's avatar
rtm committed
#include "elf.h"
#include "param.h"
#include "spinlock.h"
rtm's avatar
rtm committed

rtm's avatar
rtm committed
extern char edata[], end[];
rsc's avatar
rsc committed
extern uchar _binary__init_start[], _binary__init_size[];
rtm's avatar
rtm committed

void process0();
kaashoek's avatar
kaashoek committed
// Bootstrap processor starts running C code here.
rsc's avatar
rsc committed
// This is called main0 not main so that it can have
// a void return type.  Gcc can't handle functions named
// main that don't return int.  Really.
void
main0(void)
rtm's avatar
rtm committed
{
  int i;
rsc's avatar
rsc committed
  static int bcpu;  // cannot be on stack
rtm's avatar
rtm committed
  struct proc *p;
rtm's avatar
rtm committed
  // clear BSS
  memset(edata, 0, end - edata);

  // Prevent release() from enabling interrupts.
  for(i=0; i<NCPU; i++)
    cpus[i].nlock = 1;
kaashoek's avatar
kaashoek committed
  mp_init(); // collect info about this machine
  bcpu = mp_bcpu();

  // switch to bootstrap processor's stack
rsc's avatar
rsc committed
  asm volatile("movl %0, %%esp" : : "r" (cpus[bcpu].mpstack + MPSTACK - 32));
  asm volatile("movl %0, %%ebp" : : "r" (cpus[bcpu].mpstack + MPSTACK));
  cprintf("\ncpu%d: starting xv6\n\n", cpu());
rtm's avatar
rtm committed

  pinit(); // process table
  binit(); // buffer cache
  pic_init();
rtm's avatar
rtm committed
  kinit(); // physical memory allocator
rtm's avatar
rtm committed
  tvinit(); // trap vectors
  idtinit(); // this CPU's interrupt descriptor table
rsc's avatar
rsc committed
  fileinit();
  iinit(); // i-node table
  // initialize process 0
rtm's avatar
rtm committed
  p = &proc[0];
  p->state = RUNNABLE;
kaashoek's avatar
kaashoek committed
  p->kstack = kalloc(KSTACKSIZE);
  // cause proc[0] to start in kernel at process0
  p->jmpbuf.eip = (uint) process0;
  p->jmpbuf.esp = (uint) (p->kstack + KSTACKSIZE - 4);

  // make sure there's a TSS
  setupsegs(0);
rtm's avatar
rtm committed

  // initialize I/O devices, let them enable interrupts
kaashoek's avatar
kaashoek committed
  console_init();
rsc's avatar
rsc committed
  ide_init();
  // start other CPUs
  mp_startthem();
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  if(ismp)
    lapic_timerinit();
  else
    pit8253_timerinit();

  // enable interrupts on the local APIC
kaashoek's avatar
kaashoek committed
  lapic_enableintr();
rtm's avatar
rtm committed

  // enable interrupts on this processor.
  cpus[cpu()].nlock--;
rtm's avatar
rtm committed

rtm's avatar
rtm committed
}
rtm's avatar
rtm committed

// Additional processors start here.
rsc's avatar
rsc committed
void
mpmain(void)
{
  cprintf("cpu%d: starting\n", cpu());
  idtinit(); // CPU's idt
rtm's avatar
rtm committed
  if(cpu() == 0)
    panic("mpmain on cpu 0");
  lapic_init(cpu());
  lapic_timerinit();
  lapic_enableintr();

  // make sure there's a TSS
  setupsegs(0);
  cpuid(0, 0, 0, 0, 0);  // memory barrier
  cpus[cpu()].booted = 1;

  // Enable interrupts on this processor.
  cpus[cpu()].nlock--;
  sti();

  scheduler();
}

// proc[0] starts here, called by scheduler() in the ordinary way.
void
rsc's avatar
rsc committed
process0(void)
{
  extern struct spinlock proc_table_lock;
rsc's avatar
rsc committed
  struct proc *p0, *p1;
  struct trapframe tf;

  release(&proc_table_lock);

rsc's avatar
rsc committed
  p0 = &proc[0];
  p0->cwd = iget(rootdev, 1);
  iunlock(p0->cwd);

rsc's avatar
 
rsc committed
  // Dummy user memory to make copyproc() happy.
  // Must be big enough to hold the init binary and stack.
  p0->sz = 2*PAGE;
  p0->mem = kalloc(p0->sz);

rsc's avatar
 
rsc committed
  // Fake a trap frame as if a user process had made a system
  // call, so that copyproc will have a place for the new
  // process to return to.
  p0->tf = &tf;
  memset(p0->tf, 0, sizeof(struct trapframe));
rsc's avatar
rsc committed
  p0->tf->es = p0->tf->ds = p0->tf->ss = (SEG_UDATA << 3) | DPL_USER;
  p0->tf->cs = (SEG_UCODE << 3) | DPL_USER;
  p0->tf->eflags = FL_IF;
  p0->tf->esp = p0->sz;
rsc's avatar
 
rsc committed
  
  // Push bogus return address, both to cause problems
  // if main returns and also because gcc can generate
  // function prologs that expect to be able to read the
  // return address off the stack without causing a fault.
  p0->tf->esp -= 4;
  *(uint*)(p0->mem + p0->tf->esp) = 0xefefefef;
  p1 = copyproc(p0);
rsc's avatar
rsc committed
  load_icode(p1, _binary__init_start, (uint) _binary__init_size);
  p1->state = RUNNABLE;
rsc's avatar
rsc committed
  safestrcpy(p1->name, "init", sizeof p1->name);

  proc_wait();
  panic("init exited");
}

rtm's avatar
rtm committed
void
rtm's avatar
rtm committed
load_icode(struct proc *p, uchar *binary, uint size)
rtm's avatar
rtm committed
{
kaashoek's avatar
kaashoek committed
  int i;
  struct elfhdr *elf;
  struct proghdr *ph;
rtm's avatar
rtm committed

  elf = (struct elfhdr*) binary;
rsc's avatar
rsc committed
  if(elf->magic != ELF_MAGIC)
kaashoek's avatar
kaashoek committed
    panic("load_icode: not an ELF binary");
rtm's avatar
rtm committed

  p->tf->eip = elf->entry;
rtm's avatar
rtm committed

kaashoek's avatar
kaashoek committed
  // Map and load segments as directed.
  ph = (struct proghdr*) (binary + elf->phoff);
rsc's avatar
rsc committed
  for(i = 0; i < elf->phnum; i++, ph++) {
    if(ph->type != ELF_PROG_LOAD)
kaashoek's avatar
kaashoek committed
      continue;
rsc's avatar
rsc committed
    if(ph->va + ph->memsz < ph->va)
rsc's avatar
rsc committed
      panic("load_icode: overflow in proghdr");
rsc's avatar
rsc committed
    if(ph->va + ph->memsz >= p->sz)
rsc's avatar
rsc committed
      panic("load_icode: icode too large");
kaashoek's avatar
kaashoek committed

    // 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);
kaashoek's avatar
kaashoek committed
  }
rtm's avatar
rtm committed
}