123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- #include "trap.h"
- #include "gate.h"
- #include <common/kprint.h>
- #include <debug/traceback/traceback.h>
- #include <process/process.h>
- #include <process/ptrace.h>
- #include <sched/sched.h>
- extern void ignore_int();
- void do_divide_error(struct pt_regs *regs, unsigned long error_code)
- {
-
- kerror("do_divide_error(0),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\t pid=%d\n", error_code,
- regs->rsp, regs->rip, proc_current_cpu_id, current_pcb->pid);
- traceback(regs);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_debug(struct pt_regs *regs, unsigned long error_code)
- {
- printk("[ ");
- printk_color(RED, BLACK, "ERROR / TRAP");
- printk(" ] do_debug(1),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp, regs->rip,
- proc_current_cpu_id);
- while (1)
- hlt();
- }
- void do_nmi(struct pt_regs *regs, unsigned long error_code)
- {
- printk("[ ");
- printk_color(BLUE, BLACK, "INT");
- printk(" ] do_nmi(2),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp, regs->rip,
- proc_current_cpu_id);
- while (1)
- hlt();
- }
- void do_int3(struct pt_regs *regs, unsigned long error_code)
- {
- printk("[ ");
- printk_color(YELLOW, BLACK, "TRAP");
- printk(" ] do_int3(3),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp, regs->rip,
- proc_current_cpu_id);
- while (1)
- hlt();
- }
- void do_overflow(struct pt_regs *regs, unsigned long error_code)
- {
- printk("[ ");
- printk_color(YELLOW, BLACK, "TRAP");
- printk(" ] do_overflow(4),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_bounds(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_bounds(5),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp, regs->rip,
- proc_current_cpu_id);
- while (1)
- hlt();
- }
- void do_undefined_opcode(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_undefined_opcode(6),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d, pid:%ld", error_code,
- regs->rsp, regs->rip, proc_current_cpu_id, current_pcb->pid);
- traceback(regs);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_dev_not_avaliable(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_dev_not_avaliable(7),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_double_fault(struct pt_regs *regs, unsigned long error_code)
- {
- printk("[ ");
- printk_color(RED, BLACK, "Terminate");
- printk(" ] do_double_fault(8),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- traceback(regs);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_coprocessor_segment_overrun(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_coprocessor_segment_overrun(9),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code,
- regs->rsp, regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_invalid_TSS(struct pt_regs *regs, unsigned long error_code)
- {
- printk("[");
- printk_color(RED, BLACK, "ERROR");
- printk("] do_invalid_TSS(10),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- printk_color(YELLOW, BLACK, "Information:\n");
-
- if (error_code & 0x01)
- printk("The exception occurred during delivery of an event external to the program.\n");
- if (error_code & 0x02)
- printk("Refers to a descriptor in the IDT.\n");
- else
- {
- if (error_code & 0x04)
- printk("Refers to a descriptor in the current LDT.\n");
- else
- printk("Refers to a descriptor in the GDT.\n");
- }
- printk("Segment Selector Index:%10x\n", error_code & 0xfff8);
- printk("\n");
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_segment_not_exists(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_segment_not_exists(11),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_stack_segment_fault(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_stack_segment_fault(12),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- traceback(regs);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_general_protection(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_general_protection(13),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\tpid=%ld\n", error_code,
- regs->rsp, regs->rip, proc_current_cpu_id, current_pcb->pid);
- if (error_code & 0x01)
- printk_color(RED, BLACK,
- "The exception occurred during delivery of an event external to the program,such as an interrupt "
- "or an earlier exception.\n");
- if (error_code & 0x02)
- printk_color(RED, BLACK, "Refers to a gate descriptor in the IDT;\n");
- else
- printk_color(RED, BLACK, "Refers to a descriptor in the GDT or the current LDT;\n");
- if ((error_code & 0x02) == 0)
- if (error_code & 0x04)
- printk_color(RED, BLACK, "Refers to a segment or gate descriptor in the LDT;\n");
- else
- printk_color(RED, BLACK, "Refers to a descriptor in the current GDT;\n");
- printk_color(RED, BLACK, "Segment Selector Index:%#010x\n", error_code & 0xfff8);
- traceback(regs);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_page_fault(struct pt_regs *regs, unsigned long error_code)
- {
- unsigned long cr2 = 0;
- __asm__ __volatile__("movq %%cr2, %0" : "=r"(cr2)::"memory");
- kerror("do_page_fault(14),Error code :%#018lx,RSP:%#018lx, RBP=%#018lx, RIP:%#018lx CPU:%d, pid=%d\n", error_code,
- regs->rsp, regs->rbp, regs->rip, proc_current_cpu_id, current_pcb->pid);
- kerror("regs->rax = %#018lx\n", regs->rax);
- if (!(error_code & 0x01))
- printk_color(RED, BLACK, "Page Not-Present,\t");
- if (error_code & 0x02)
- printk_color(RED, BLACK, "Write Cause Fault,\t");
- else
- printk_color(RED, BLACK, "Read Cause Fault,\t");
- if (error_code & 0x04)
- printk_color(RED, BLACK, "Fault in user(3)\t");
- else
- printk_color(RED, BLACK, "Fault in supervisor(0,1,2)\t");
- if (error_code & 0x08)
- printk_color(RED, BLACK, ",Reserved Bit Cause Fault\t");
- if (error_code & 0x10)
- printk_color(RED, BLACK, ",Instruction fetch Cause Fault");
- printk_color(RED, BLACK, "\n");
- printk_color(RED, BLACK, "CR2:%#018lx\n", cr2);
- traceback(regs);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_x87_FPU_error(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_x87_FPU_error(16),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- while (1)
- hlt();
- }
- void do_alignment_check(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_alignment_check(17),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_machine_check(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_machine_check(18),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_SIMD_exception(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_SIMD_exception(19),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
- regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void do_virtualization_exception(struct pt_regs *regs, unsigned long error_code)
- {
- kerror("do_virtualization_exception(20),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code,
- regs->rsp, regs->rip, proc_current_cpu_id);
- current_pcb->state = PROC_STOPPED;
- sched();
- }
- void ignore_int_handler(struct pt_regs *regs, unsigned long error_code)
- {
- kwarn("Unknown interrupt or fault at RIP.\n");
- }
- void sys_vector_init()
- {
-
-
- for (int i = 0; i < 256; ++i)
- set_intr_gate(i, 0, ignore_int);
- set_trap_gate(0, 0, divide_error);
- set_trap_gate(1, 0, debug);
- set_intr_gate(2, 0, nmi);
- set_system_trap_gate(3, 0, int3);
- set_system_trap_gate(4, 0, overflow);
- set_system_trap_gate(5, 0, bounds);
- set_trap_gate(6, 0, undefined_opcode);
- set_trap_gate(7, 0, dev_not_avaliable);
- set_trap_gate(8, 0, double_fault);
- set_trap_gate(9, 0, coprocessor_segment_overrun);
- set_trap_gate(10, 0, invalid_TSS);
- set_trap_gate(11, 0, segment_not_exists);
- set_trap_gate(12, 0, stack_segment_fault);
- set_trap_gate(13, 0, general_protection);
- set_trap_gate(14, 0, page_fault);
-
- set_trap_gate(16, 0, x87_FPU_error);
- set_trap_gate(17, 0, alignment_check);
- set_trap_gate(18, 0, machine_check);
- set_trap_gate(19, 0, SIMD_exception);
- set_trap_gate(20, 0, virtualization_exception);
-
-
- }
|