Skip to content
Snippets Groups Projects
trap.c 1.75 KiB
Newer Older
rtm's avatar
foo
rtm committed
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
#include "x86.h"
#include "traps.h"
rtm's avatar
foo
rtm committed

struct Gatedesc idt[256];
struct Pseudodesc idt_pd = { 0, sizeof(idt) - 1, (unsigned) &idt };
extern unsigned vectors[]; /* vectors.S, array of 256 entry point addresses */

extern void trapenter();
extern void trapenter1();

void
rtm's avatar
rtm committed
tvinit()
rtm's avatar
foo
rtm committed
{
  int i;

  for(i = 0; i < 256; i++){
    SETGATE(idt[i], 1, SEG_KCODE << 3, vectors[i], 0);
rtm's avatar
foo
rtm committed
  }
  SETGATE(idt[T_SYSCALL], T_SYSCALL, SEG_KCODE << 3, vectors[48], 3);
rtm's avatar
rtm committed
}

void
idtinit()
{
rtm's avatar
foo
rtm committed
  asm volatile("lidt %0" : : "g" (idt_pd.pd_lim));
}

void
trap(struct Trapframe *tf)
{
  int v = tf->tf_trapno;
rtm's avatar
rtm committed

rtm's avatar
rtm committed
  if(tf->tf_cs == 0x8 && kernel_lock == cpu())
    cprintf("cpu %d: trap %d from %x:%x with lock=%d\n",
            cpu(), v, tf->tf_cs, tf->tf_eip, kernel_lock);
rtm's avatar
rtm committed
  acquire_spinlock(&kernel_lock); // released in trapret in trapasm.S

  if(v == T_SYSCALL){
rtm's avatar
rtm committed
    struct proc *cp = curproc[cpu()];
    if(cp == 0)
      panic("syscall with no proc");
    if(cp->killed)
      proc_exit();
rtm's avatar
rtm committed
    cp->tf = tf;
    syscall();
rtm's avatar
rtm committed
    if(cp != curproc[cpu()])
      panic("trap ret wrong curproc");
    if(cp->state != RUNNING)
      panic("trap ret but not RUNNING");
    if(tf != cp->tf)
      panic("trap ret wrong tf");
    if(read_esp() < (unsigned)cp->kstack || read_esp() >= (unsigned)cp->kstack + KSTACKSIZE)
rtm's avatar
rtm committed
      panic("trap ret esp wrong");
    if(cp->killed)
      proc_exit();
kaashoek's avatar
kaashoek committed
  if(v == (IRQ_OFFSET + IRQ_TIMER)){
    struct proc *cp = curproc[cpu()];
kaashoek's avatar
kaashoek committed
    lapic_timerintr();
    if(cp){
      sti();
      if(cp->killed)
        proc_exit();
      yield();
    }
    return;
  }
  if(v == (IRQ_OFFSET + IRQ_IDE)){
    ide_intr();
    return;
  }
kaashoek's avatar
kaashoek committed

rtm's avatar
foo
rtm committed
  // XXX probably ought to lgdt on trap return
kaashoek's avatar
kaashoek committed

  return;
rtm's avatar
foo
rtm committed
}