trap.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. #include "trap.h"
  2. #include "gate.h"
  3. #include <common/kprint.h>
  4. #include <debug/traceback/traceback.h>
  5. #include <process/process.h>
  6. #include <process/ptrace.h>
  7. #include <sched/sched.h>
  8. extern void ignore_int();
  9. // 0 #DE 除法错误
  10. void do_divide_error(struct pt_regs *regs, unsigned long error_code)
  11. {
  12. // kerror("do_divide_error(0)");
  13. kerror("do_divide_error(0),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\t pid=%d\n", error_code,
  14. regs->rsp, regs->rip, proc_current_cpu_id, current_pcb->pid);
  15. traceback(regs);
  16. current_pcb->state = PROC_STOPPED;
  17. sched();
  18. }
  19. // 1 #DB 调试异常
  20. void do_debug(struct pt_regs *regs, unsigned long error_code)
  21. {
  22. printk("[ ");
  23. printk_color(RED, BLACK, "ERROR / TRAP");
  24. printk(" ] do_debug(1),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d, pid:%d\n", error_code, regs->rsp, regs->rip,
  25. proc_current_cpu_id, current_pcb->pid);
  26. while (1)
  27. hlt();
  28. }
  29. // 2 不可屏蔽中断
  30. void do_nmi(struct pt_regs *regs, unsigned long error_code)
  31. {
  32. printk("[ ");
  33. printk_color(BLUE, BLACK, "INT");
  34. printk(" ] do_nmi(2),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp, regs->rip,
  35. proc_current_cpu_id);
  36. while (1)
  37. hlt();
  38. }
  39. // 3 #BP 断点异常
  40. void do_int3(struct pt_regs *regs, unsigned long error_code)
  41. {
  42. printk("[ ");
  43. printk_color(YELLOW, BLACK, "TRAP");
  44. printk(" ] do_int3(3),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp, regs->rip,
  45. proc_current_cpu_id);
  46. while (1)
  47. hlt();
  48. }
  49. // 4 #OF 溢出异常
  50. void do_overflow(struct pt_regs *regs, unsigned long error_code)
  51. {
  52. printk("[ ");
  53. printk_color(YELLOW, BLACK, "TRAP");
  54. printk(" ] do_overflow(4),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  55. regs->rip, proc_current_cpu_id);
  56. current_pcb->state = PROC_STOPPED;
  57. sched();
  58. }
  59. // 5 #BR 越界异常
  60. void do_bounds(struct pt_regs *regs, unsigned long error_code)
  61. {
  62. kerror("do_bounds(5),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp, regs->rip,
  63. proc_current_cpu_id);
  64. while (1)
  65. hlt();
  66. }
  67. // 6 #UD 无效/未定义的机器码
  68. void do_undefined_opcode(struct pt_regs *regs, unsigned long error_code)
  69. {
  70. kerror("do_undefined_opcode(6),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d, pid:%ld", error_code,
  71. regs->rsp, regs->rip, proc_current_cpu_id, current_pcb->pid);
  72. traceback(regs);
  73. current_pcb->state = PROC_STOPPED;
  74. sched();
  75. }
  76. // 7 #NM 设备异常(FPU不存在)
  77. void do_dev_not_avaliable(struct pt_regs *regs, unsigned long error_code)
  78. {
  79. kerror("do_dev_not_avaliable(7),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d, pid=%d\n", error_code, regs->rsp,
  80. regs->rip, proc_current_cpu_id, current_pcb->pid);
  81. current_pcb->state = PROC_STOPPED;
  82. sched();
  83. }
  84. // 8 #DF 双重错误
  85. void do_double_fault(struct pt_regs *regs, unsigned long error_code)
  86. {
  87. printk("[ ");
  88. printk_color(RED, BLACK, "Terminate");
  89. printk(" ] do_double_fault(8),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  90. regs->rip, proc_current_cpu_id);
  91. traceback(regs);
  92. current_pcb->state = PROC_STOPPED;
  93. sched();
  94. }
  95. // 9 协处理器越界(保留)
  96. void do_coprocessor_segment_overrun(struct pt_regs *regs, unsigned long error_code)
  97. {
  98. kerror("do_coprocessor_segment_overrun(9),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code,
  99. regs->rsp, regs->rip, proc_current_cpu_id);
  100. current_pcb->state = PROC_STOPPED;
  101. sched();
  102. }
  103. // 10 #TS 无效的TSS段
  104. void do_invalid_TSS(struct pt_regs *regs, unsigned long error_code)
  105. {
  106. printk("[");
  107. printk_color(RED, BLACK, "ERROR");
  108. printk("] do_invalid_TSS(10),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  109. regs->rip, proc_current_cpu_id);
  110. printk_color(YELLOW, BLACK, "Information:\n");
  111. // 解析错误码
  112. if (error_code & 0x01)
  113. printk("The exception occurred during delivery of an event external to the program.\n");
  114. if (error_code & 0x02)
  115. printk("Refers to a descriptor in the IDT.\n");
  116. else
  117. {
  118. if (error_code & 0x04)
  119. printk("Refers to a descriptor in the current LDT.\n");
  120. else
  121. printk("Refers to a descriptor in the GDT.\n");
  122. }
  123. printk("Segment Selector Index:%10x\n", error_code & 0xfff8);
  124. printk("\n");
  125. current_pcb->state = PROC_STOPPED;
  126. sched();
  127. }
  128. // 11 #NP 段不存在
  129. void do_segment_not_exists(struct pt_regs *regs, unsigned long error_code)
  130. {
  131. kerror("do_segment_not_exists(11),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  132. regs->rip, proc_current_cpu_id);
  133. current_pcb->state = PROC_STOPPED;
  134. sched();
  135. }
  136. // 12 #SS SS段错误
  137. void do_stack_segment_fault(struct pt_regs *regs, unsigned long error_code)
  138. {
  139. kerror("do_stack_segment_fault(12),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  140. regs->rip, proc_current_cpu_id);
  141. // kinfo("cs=%#04x, ds=%#04x, ss=%#04x", regs->cs, regs->ds, regs->ss);
  142. traceback(regs);
  143. current_pcb->state = PROC_STOPPED;
  144. sched();
  145. }
  146. // 13 #GP 通用保护性异常
  147. void do_general_protection(struct pt_regs *regs, unsigned long error_code)
  148. {
  149. kerror("do_general_protection(13),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\tpid=%ld\n", error_code,
  150. regs->rsp, regs->rip, proc_current_cpu_id, current_pcb->pid);
  151. if (error_code & 0x01)
  152. printk_color(RED, BLACK,
  153. "The exception occurred during delivery of an event external to the program,such as an interrupt "
  154. "or an earlier exception.\n");
  155. if (error_code & 0x02)
  156. printk_color(RED, BLACK, "Refers to a gate descriptor in the IDT;\n");
  157. else
  158. printk_color(RED, BLACK, "Refers to a descriptor in the GDT or the current LDT;\n");
  159. if ((error_code & 0x02) == 0)
  160. if (error_code & 0x04)
  161. printk_color(RED, BLACK, "Refers to a segment or gate descriptor in the LDT;\n");
  162. else
  163. printk_color(RED, BLACK, "Refers to a descriptor in the current GDT;\n");
  164. printk_color(RED, BLACK, "Segment Selector Index:%#010x\n", error_code & 0xfff8);
  165. traceback(regs);
  166. current_pcb->state = PROC_STOPPED;
  167. sched();
  168. }
  169. // 14 #PF 页故障
  170. void do_page_fault(struct pt_regs *regs, unsigned long error_code)
  171. {
  172. unsigned long cr2 = 0;
  173. __asm__ __volatile__("movq %%cr2, %0" : "=r"(cr2)::"memory");
  174. kerror("do_page_fault(14),Error code :%#018lx,RSP:%#018lx, RBP=%#018lx, RIP:%#018lx CPU:%d, pid=%d\n", error_code,
  175. regs->rsp, regs->rbp, regs->rip, proc_current_cpu_id, current_pcb->pid);
  176. kerror("regs->rax = %#018lx\n", regs->rax);
  177. if (!(error_code & 0x01))
  178. printk_color(RED, BLACK, "Page Not-Present,\t");
  179. if (error_code & 0x02)
  180. printk_color(RED, BLACK, "Write Cause Fault,\t");
  181. else
  182. printk_color(RED, BLACK, "Read Cause Fault,\t");
  183. if (error_code & 0x04)
  184. printk_color(RED, BLACK, "Fault in user(3)\t");
  185. else
  186. printk_color(RED, BLACK, "Fault in supervisor(0,1,2)\t");
  187. if (error_code & 0x08)
  188. printk_color(RED, BLACK, ",Reserved Bit Cause Fault\t");
  189. if (error_code & 0x10)
  190. printk_color(RED, BLACK, ",Instruction fetch Cause Fault");
  191. printk_color(RED, BLACK, "\n");
  192. printk_color(RED, BLACK, "CR2:%#018lx\n", cr2);
  193. traceback(regs);
  194. process_do_exit(-1);
  195. // current_pcb->state = PROC_STOPPED;
  196. // sched();
  197. }
  198. // 15 Intel保留,请勿使用
  199. // 16 #MF x87FPU错误
  200. void do_x87_FPU_error(struct pt_regs *regs, unsigned long error_code)
  201. {
  202. kerror("do_x87_FPU_error(16),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  203. regs->rip, proc_current_cpu_id);
  204. while (1)
  205. hlt();
  206. }
  207. // 17 #AC 对齐检测
  208. void do_alignment_check(struct pt_regs *regs, unsigned long error_code)
  209. {
  210. kerror("do_alignment_check(17),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  211. regs->rip, proc_current_cpu_id);
  212. current_pcb->state = PROC_STOPPED;
  213. sched();
  214. }
  215. // 18 #MC 机器检测
  216. void do_machine_check(struct pt_regs *regs, unsigned long error_code)
  217. {
  218. kerror("do_machine_check(18),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  219. regs->rip, proc_current_cpu_id);
  220. current_pcb->state = PROC_STOPPED;
  221. sched();
  222. }
  223. // 19 #XM SIMD浮点异常
  224. void do_SIMD_exception(struct pt_regs *regs, unsigned long error_code)
  225. {
  226. kerror("do_SIMD_exception(19),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code, regs->rsp,
  227. regs->rip, proc_current_cpu_id);
  228. current_pcb->state = PROC_STOPPED;
  229. sched();
  230. }
  231. // 20 #VE 虚拟化异常
  232. void do_virtualization_exception(struct pt_regs *regs, unsigned long error_code)
  233. {
  234. kerror("do_virtualization_exception(20),\tError Code:%#18lx,\tRSP:%#18lx,\tRIP:%#18lx\t CPU:%d\n", error_code,
  235. regs->rsp, regs->rip, proc_current_cpu_id);
  236. current_pcb->state = PROC_STOPPED;
  237. sched();
  238. }
  239. // 21-21 Intel保留,请勿使用
  240. /**
  241. * @brief 当系统收到未知的中断时,执行此处理函数
  242. *
  243. * @param regs
  244. * @param error_code
  245. */
  246. void ignore_int_handler(struct pt_regs *regs, unsigned long error_code)
  247. {
  248. kwarn("Unknown interrupt or fault at RIP.\n");
  249. }
  250. void sys_vector_init()
  251. {
  252. // 将idt重置为新的ignore_int入点(此前在head.S中有设置,
  253. // 但是那个不完整,某些版本的编译器的输出,在真机运行时会破坏进程执行环境,从而导致#GP
  254. for (int i = 0; i < 256; ++i)
  255. set_intr_gate(i, 0, ignore_int);
  256. set_trap_gate(0, 0, divide_error);
  257. set_trap_gate(1, 0, debug);
  258. set_intr_gate(2, 0, nmi);
  259. set_system_trap_gate(3, 0, int3);
  260. set_system_trap_gate(4, 0, overflow);
  261. set_system_trap_gate(5, 0, bounds);
  262. set_trap_gate(6, 0, undefined_opcode);
  263. set_trap_gate(7, 0, dev_not_avaliable);
  264. set_trap_gate(8, 0, double_fault);
  265. set_trap_gate(9, 0, coprocessor_segment_overrun);
  266. set_trap_gate(10, 0, invalid_TSS);
  267. set_trap_gate(11, 0, segment_not_exists);
  268. set_trap_gate(12, 0, stack_segment_fault);
  269. set_trap_gate(13, 0, general_protection);
  270. set_trap_gate(14, 0, page_fault);
  271. // 中断号15由Intel保留,不能使用
  272. set_trap_gate(16, 0, x87_FPU_error);
  273. set_trap_gate(17, 0, alignment_check);
  274. set_trap_gate(18, 0, machine_check);
  275. set_trap_gate(19, 0, SIMD_exception);
  276. set_trap_gate(20, 0, virtualization_exception);
  277. // 中断号21-31由Intel保留,不能使用
  278. // 32-255为用户自定义中断内部
  279. }