traps.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015
  1. /*
  2. * Copyright (C) 1991, 1992 Linus Torvalds
  3. * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
  4. *
  5. * Pentium III FXSR, SSE support
  6. * Gareth Hughes <gareth@valinux.com>, May 2000
  7. */
  8. /*
  9. * Handle hardware traps and faults.
  10. */
  11. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  12. #include <linux/context_tracking.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/kallsyms.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/kprobes.h>
  17. #include <linux/uaccess.h>
  18. #include <linux/kdebug.h>
  19. #include <linux/kgdb.h>
  20. #include <linux/kernel.h>
  21. #include <linux/export.h>
  22. #include <linux/ptrace.h>
  23. #include <linux/uprobes.h>
  24. #include <linux/string.h>
  25. #include <linux/delay.h>
  26. #include <linux/errno.h>
  27. #include <linux/kexec.h>
  28. #include <linux/sched.h>
  29. #include <linux/sched/task_stack.h>
  30. #include <linux/timer.h>
  31. #include <linux/init.h>
  32. #include <linux/bug.h>
  33. #include <linux/nmi.h>
  34. #include <linux/mm.h>
  35. #include <linux/smp.h>
  36. #include <linux/io.h>
  37. #ifdef CONFIG_EISA
  38. #include <linux/ioport.h>
  39. #include <linux/eisa.h>
  40. #endif
  41. #if defined(CONFIG_EDAC)
  42. #include <linux/edac.h>
  43. #endif
  44. #include <asm/kmemcheck.h>
  45. #include <asm/stacktrace.h>
  46. #include <asm/processor.h>
  47. #include <asm/debugreg.h>
  48. #include <linux/atomic.h>
  49. #include <asm/text-patching.h>
  50. #include <asm/ftrace.h>
  51. #include <asm/traps.h>
  52. #include <asm/desc.h>
  53. #include <asm/fpu/internal.h>
  54. #include <asm/mce.h>
  55. #include <asm/fixmap.h>
  56. #include <asm/mach_traps.h>
  57. #include <asm/alternative.h>
  58. #include <asm/fpu/xstate.h>
  59. #include <asm/trace/mpx.h>
  60. #include <asm/mpx.h>
  61. #include <asm/vm86.h>
  62. #ifdef CONFIG_X86_64
  63. #include <asm/x86_init.h>
  64. #include <asm/pgalloc.h>
  65. #include <asm/proto.h>
  66. /* No need to be aligned, but done to keep all IDTs defined the same way. */
  67. gate_desc debug_idt_table[NR_VECTORS] __page_aligned_bss;
  68. #else
  69. #include <asm/processor-flags.h>
  70. #include <asm/setup.h>
  71. #include <asm/proto.h>
  72. #endif
  73. /* Must be page-aligned because the real IDT is used in a fixmap. */
  74. gate_desc idt_table[NR_VECTORS] __page_aligned_bss;
  75. DECLARE_BITMAP(used_vectors, NR_VECTORS);
  76. EXPORT_SYMBOL_GPL(used_vectors);
  77. static inline void cond_local_irq_enable(struct pt_regs *regs)
  78. {
  79. if (regs->flags & X86_EFLAGS_IF)
  80. local_irq_enable();
  81. }
  82. static inline void cond_local_irq_disable(struct pt_regs *regs)
  83. {
  84. if (regs->flags & X86_EFLAGS_IF)
  85. local_irq_disable();
  86. }
  87. /*
  88. * In IST context, we explicitly disable preemption. This serves two
  89. * purposes: it makes it much less likely that we would accidentally
  90. * schedule in IST context and it will force a warning if we somehow
  91. * manage to schedule by accident.
  92. */
  93. void ist_enter(struct pt_regs *regs)
  94. {
  95. if (user_mode(regs)) {
  96. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  97. } else {
  98. /*
  99. * We might have interrupted pretty much anything. In
  100. * fact, if we're a machine check, we can even interrupt
  101. * NMI processing. We don't want in_nmi() to return true,
  102. * but we need to notify RCU.
  103. */
  104. rcu_nmi_enter();
  105. }
  106. preempt_disable();
  107. /* This code is a bit fragile. Test it. */
  108. RCU_LOCKDEP_WARN(!rcu_is_watching(), "ist_enter didn't work");
  109. }
  110. void ist_exit(struct pt_regs *regs)
  111. {
  112. preempt_enable_no_resched();
  113. if (!user_mode(regs))
  114. rcu_nmi_exit();
  115. }
  116. /**
  117. * ist_begin_non_atomic() - begin a non-atomic section in an IST exception
  118. * @regs: regs passed to the IST exception handler
  119. *
  120. * IST exception handlers normally cannot schedule. As a special
  121. * exception, if the exception interrupted userspace code (i.e.
  122. * user_mode(regs) would return true) and the exception was not
  123. * a double fault, it can be safe to schedule. ist_begin_non_atomic()
  124. * begins a non-atomic section within an ist_enter()/ist_exit() region.
  125. * Callers are responsible for enabling interrupts themselves inside
  126. * the non-atomic section, and callers must call ist_end_non_atomic()
  127. * before ist_exit().
  128. */
  129. void ist_begin_non_atomic(struct pt_regs *regs)
  130. {
  131. BUG_ON(!user_mode(regs));
  132. /*
  133. * Sanity check: we need to be on the normal thread stack. This
  134. * will catch asm bugs and any attempt to use ist_preempt_enable
  135. * from double_fault.
  136. */
  137. BUG_ON((unsigned long)(current_top_of_stack() -
  138. current_stack_pointer()) >= THREAD_SIZE);
  139. preempt_enable_no_resched();
  140. }
  141. /**
  142. * ist_end_non_atomic() - begin a non-atomic section in an IST exception
  143. *
  144. * Ends a non-atomic section started with ist_begin_non_atomic().
  145. */
  146. void ist_end_non_atomic(void)
  147. {
  148. preempt_disable();
  149. }
  150. static nokprobe_inline int
  151. do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str,
  152. struct pt_regs *regs, long error_code)
  153. {
  154. if (v8086_mode(regs)) {
  155. /*
  156. * Traps 0, 1, 3, 4, and 5 should be forwarded to vm86.
  157. * On nmi (interrupt 2), do_trap should not be called.
  158. */
  159. if (trapnr < X86_TRAP_UD) {
  160. if (!handle_vm86_trap((struct kernel_vm86_regs *) regs,
  161. error_code, trapnr))
  162. return 0;
  163. }
  164. return -1;
  165. }
  166. if (!user_mode(regs)) {
  167. if (!fixup_exception(regs, trapnr)) {
  168. tsk->thread.error_code = error_code;
  169. tsk->thread.trap_nr = trapnr;
  170. die(str, regs, error_code);
  171. }
  172. return 0;
  173. }
  174. return -1;
  175. }
  176. static siginfo_t *fill_trap_info(struct pt_regs *regs, int signr, int trapnr,
  177. siginfo_t *info)
  178. {
  179. unsigned long siaddr;
  180. int sicode;
  181. switch (trapnr) {
  182. default:
  183. return SEND_SIG_PRIV;
  184. case X86_TRAP_DE:
  185. sicode = FPE_INTDIV;
  186. siaddr = uprobe_get_trap_addr(regs);
  187. break;
  188. case X86_TRAP_UD:
  189. sicode = ILL_ILLOPN;
  190. siaddr = uprobe_get_trap_addr(regs);
  191. break;
  192. case X86_TRAP_AC:
  193. sicode = BUS_ADRALN;
  194. siaddr = 0;
  195. break;
  196. }
  197. info->si_signo = signr;
  198. info->si_errno = 0;
  199. info->si_code = sicode;
  200. info->si_addr = (void __user *)siaddr;
  201. return info;
  202. }
  203. static void
  204. do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
  205. long error_code, siginfo_t *info)
  206. {
  207. struct task_struct *tsk = current;
  208. if (!do_trap_no_signal(tsk, trapnr, str, regs, error_code))
  209. return;
  210. /*
  211. * We want error_code and trap_nr set for userspace faults and
  212. * kernelspace faults which result in die(), but not
  213. * kernelspace faults which are fixed up. die() gives the
  214. * process no chance to handle the signal and notice the
  215. * kernel fault information, so that won't result in polluting
  216. * the information about previously queued, but not yet
  217. * delivered, faults. See also do_general_protection below.
  218. */
  219. tsk->thread.error_code = error_code;
  220. tsk->thread.trap_nr = trapnr;
  221. if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
  222. printk_ratelimit()) {
  223. pr_info("%s[%d] trap %s ip:%lx sp:%lx error:%lx",
  224. tsk->comm, tsk->pid, str,
  225. regs->ip, regs->sp, error_code);
  226. print_vma_addr(" in ", regs->ip);
  227. pr_cont("\n");
  228. }
  229. force_sig_info(signr, info ?: SEND_SIG_PRIV, tsk);
  230. }
  231. NOKPROBE_SYMBOL(do_trap);
  232. static void do_error_trap(struct pt_regs *regs, long error_code, char *str,
  233. unsigned long trapnr, int signr)
  234. {
  235. siginfo_t info;
  236. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  237. if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) !=
  238. NOTIFY_STOP) {
  239. cond_local_irq_enable(regs);
  240. do_trap(trapnr, signr, str, regs, error_code,
  241. fill_trap_info(regs, signr, trapnr, &info));
  242. }
  243. }
  244. #define DO_ERROR(trapnr, signr, str, name) \
  245. dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \
  246. { \
  247. do_error_trap(regs, error_code, str, trapnr, signr); \
  248. }
  249. DO_ERROR(X86_TRAP_DE, SIGFPE, "divide error", divide_error)
  250. DO_ERROR(X86_TRAP_OF, SIGSEGV, "overflow", overflow)
  251. DO_ERROR(X86_TRAP_UD, SIGILL, "invalid opcode", invalid_op)
  252. DO_ERROR(X86_TRAP_OLD_MF, SIGFPE, "coprocessor segment overrun",coprocessor_segment_overrun)
  253. DO_ERROR(X86_TRAP_TS, SIGSEGV, "invalid TSS", invalid_TSS)
  254. DO_ERROR(X86_TRAP_NP, SIGBUS, "segment not present", segment_not_present)
  255. DO_ERROR(X86_TRAP_SS, SIGBUS, "stack segment", stack_segment)
  256. DO_ERROR(X86_TRAP_AC, SIGBUS, "alignment check", alignment_check)
  257. #ifdef CONFIG_VMAP_STACK
  258. __visible void __noreturn handle_stack_overflow(const char *message,
  259. struct pt_regs *regs,
  260. unsigned long fault_address)
  261. {
  262. printk(KERN_EMERG "BUG: stack guard page was hit at %p (stack is %p..%p)\n",
  263. (void *)fault_address, current->stack,
  264. (char *)current->stack + THREAD_SIZE - 1);
  265. die(message, regs, 0);
  266. /* Be absolutely certain we don't return. */
  267. panic(message);
  268. }
  269. #endif
  270. #ifdef CONFIG_X86_64
  271. /* Runs on IST stack */
  272. dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code)
  273. {
  274. static const char str[] = "double fault";
  275. struct task_struct *tsk = current;
  276. #ifdef CONFIG_VMAP_STACK
  277. unsigned long cr2;
  278. #endif
  279. #ifdef CONFIG_X86_ESPFIX64
  280. extern unsigned char native_irq_return_iret[];
  281. /*
  282. * If IRET takes a non-IST fault on the espfix64 stack, then we
  283. * end up promoting it to a doublefault. In that case, modify
  284. * the stack to make it look like we just entered the #GP
  285. * handler from user space, similar to bad_iret.
  286. *
  287. * No need for ist_enter here because we don't use RCU.
  288. */
  289. if (((long)regs->sp >> PGDIR_SHIFT) == ESPFIX_PGD_ENTRY &&
  290. regs->cs == __KERNEL_CS &&
  291. regs->ip == (unsigned long)native_irq_return_iret)
  292. {
  293. struct pt_regs *normal_regs = task_pt_regs(current);
  294. /* Fake a #GP(0) from userspace. */
  295. memmove(&normal_regs->ip, (void *)regs->sp, 5*8);
  296. normal_regs->orig_ax = 0; /* Missing (lost) #GP error code */
  297. regs->ip = (unsigned long)general_protection;
  298. regs->sp = (unsigned long)&normal_regs->orig_ax;
  299. return;
  300. }
  301. #endif
  302. ist_enter(regs);
  303. notify_die(DIE_TRAP, str, regs, error_code, X86_TRAP_DF, SIGSEGV);
  304. tsk->thread.error_code = error_code;
  305. tsk->thread.trap_nr = X86_TRAP_DF;
  306. #ifdef CONFIG_VMAP_STACK
  307. /*
  308. * If we overflow the stack into a guard page, the CPU will fail
  309. * to deliver #PF and will send #DF instead. Similarly, if we
  310. * take any non-IST exception while too close to the bottom of
  311. * the stack, the processor will get a page fault while
  312. * delivering the exception and will generate a double fault.
  313. *
  314. * According to the SDM (footnote in 6.15 under "Interrupt 14 -
  315. * Page-Fault Exception (#PF):
  316. *
  317. * Processors update CR2 whenever a page fault is detected. If a
  318. * second page fault occurs while an earlier page fault is being
  319. * deliv- ered, the faulting linear address of the second fault will
  320. * overwrite the contents of CR2 (replacing the previous
  321. * address). These updates to CR2 occur even if the page fault
  322. * results in a double fault or occurs during the delivery of a
  323. * double fault.
  324. *
  325. * The logic below has a small possibility of incorrectly diagnosing
  326. * some errors as stack overflows. For example, if the IDT or GDT
  327. * gets corrupted such that #GP delivery fails due to a bad descriptor
  328. * causing #GP and we hit this condition while CR2 coincidentally
  329. * points to the stack guard page, we'll think we overflowed the
  330. * stack. Given that we're going to panic one way or another
  331. * if this happens, this isn't necessarily worth fixing.
  332. *
  333. * If necessary, we could improve the test by only diagnosing
  334. * a stack overflow if the saved RSP points within 47 bytes of
  335. * the bottom of the stack: if RSP == tsk_stack + 48 and we
  336. * take an exception, the stack is already aligned and there
  337. * will be enough room SS, RSP, RFLAGS, CS, RIP, and a
  338. * possible error code, so a stack overflow would *not* double
  339. * fault. With any less space left, exception delivery could
  340. * fail, and, as a practical matter, we've overflowed the
  341. * stack even if the actual trigger for the double fault was
  342. * something else.
  343. */
  344. cr2 = read_cr2();
  345. if ((unsigned long)task_stack_page(tsk) - 1 - cr2 < PAGE_SIZE)
  346. handle_stack_overflow("kernel stack overflow (double-fault)", regs, cr2);
  347. #endif
  348. #ifdef CONFIG_DOUBLEFAULT
  349. df_debug(regs, error_code);
  350. #endif
  351. /*
  352. * This is always a kernel trap and never fixable (and thus must
  353. * never return).
  354. */
  355. for (;;)
  356. die(str, regs, error_code);
  357. }
  358. #endif
  359. dotraplinkage void do_bounds(struct pt_regs *regs, long error_code)
  360. {
  361. const struct mpx_bndcsr *bndcsr;
  362. siginfo_t *info;
  363. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  364. if (notify_die(DIE_TRAP, "bounds", regs, error_code,
  365. X86_TRAP_BR, SIGSEGV) == NOTIFY_STOP)
  366. return;
  367. cond_local_irq_enable(regs);
  368. if (!user_mode(regs))
  369. die("bounds", regs, error_code);
  370. if (!cpu_feature_enabled(X86_FEATURE_MPX)) {
  371. /* The exception is not from Intel MPX */
  372. goto exit_trap;
  373. }
  374. /*
  375. * We need to look at BNDSTATUS to resolve this exception.
  376. * A NULL here might mean that it is in its 'init state',
  377. * which is all zeros which indicates MPX was not
  378. * responsible for the exception.
  379. */
  380. bndcsr = get_xsave_field_ptr(XFEATURE_MASK_BNDCSR);
  381. if (!bndcsr)
  382. goto exit_trap;
  383. trace_bounds_exception_mpx(bndcsr);
  384. /*
  385. * The error code field of the BNDSTATUS register communicates status
  386. * information of a bound range exception #BR or operation involving
  387. * bound directory.
  388. */
  389. switch (bndcsr->bndstatus & MPX_BNDSTA_ERROR_CODE) {
  390. case 2: /* Bound directory has invalid entry. */
  391. if (mpx_handle_bd_fault())
  392. goto exit_trap;
  393. break; /* Success, it was handled */
  394. case 1: /* Bound violation. */
  395. info = mpx_generate_siginfo(regs);
  396. if (IS_ERR(info)) {
  397. /*
  398. * We failed to decode the MPX instruction. Act as if
  399. * the exception was not caused by MPX.
  400. */
  401. goto exit_trap;
  402. }
  403. /*
  404. * Success, we decoded the instruction and retrieved
  405. * an 'info' containing the address being accessed
  406. * which caused the exception. This information
  407. * allows and application to possibly handle the
  408. * #BR exception itself.
  409. */
  410. do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, info);
  411. kfree(info);
  412. break;
  413. case 0: /* No exception caused by Intel MPX operations. */
  414. goto exit_trap;
  415. default:
  416. die("bounds", regs, error_code);
  417. }
  418. return;
  419. exit_trap:
  420. /*
  421. * This path out is for all the cases where we could not
  422. * handle the exception in some way (like allocating a
  423. * table or telling userspace about it. We will also end
  424. * up here if the kernel has MPX turned off at compile
  425. * time..
  426. */
  427. do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, NULL);
  428. }
  429. dotraplinkage void
  430. do_general_protection(struct pt_regs *regs, long error_code)
  431. {
  432. struct task_struct *tsk;
  433. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  434. cond_local_irq_enable(regs);
  435. if (v8086_mode(regs)) {
  436. local_irq_enable();
  437. handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
  438. return;
  439. }
  440. tsk = current;
  441. if (!user_mode(regs)) {
  442. if (fixup_exception(regs, X86_TRAP_GP))
  443. return;
  444. tsk->thread.error_code = error_code;
  445. tsk->thread.trap_nr = X86_TRAP_GP;
  446. if (notify_die(DIE_GPF, "general protection fault", regs, error_code,
  447. X86_TRAP_GP, SIGSEGV) != NOTIFY_STOP)
  448. die("general protection fault", regs, error_code);
  449. return;
  450. }
  451. tsk->thread.error_code = error_code;
  452. tsk->thread.trap_nr = X86_TRAP_GP;
  453. if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
  454. printk_ratelimit()) {
  455. pr_info("%s[%d] general protection ip:%lx sp:%lx error:%lx",
  456. tsk->comm, task_pid_nr(tsk),
  457. regs->ip, regs->sp, error_code);
  458. print_vma_addr(" in ", regs->ip);
  459. pr_cont("\n");
  460. }
  461. force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk);
  462. }
  463. NOKPROBE_SYMBOL(do_general_protection);
  464. /* May run on IST stack. */
  465. dotraplinkage void notrace do_int3(struct pt_regs *regs, long error_code)
  466. {
  467. #ifdef CONFIG_DYNAMIC_FTRACE
  468. /*
  469. * ftrace must be first, everything else may cause a recursive crash.
  470. * See note by declaration of modifying_ftrace_code in ftrace.c
  471. */
  472. if (unlikely(atomic_read(&modifying_ftrace_code)) &&
  473. ftrace_int3_handler(regs))
  474. return;
  475. #endif
  476. if (poke_int3_handler(regs))
  477. return;
  478. ist_enter(regs);
  479. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  480. #ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
  481. if (kgdb_ll_trap(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
  482. SIGTRAP) == NOTIFY_STOP)
  483. goto exit;
  484. #endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */
  485. #ifdef CONFIG_KPROBES
  486. if (kprobe_int3_handler(regs))
  487. goto exit;
  488. #endif
  489. if (notify_die(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
  490. SIGTRAP) == NOTIFY_STOP)
  491. goto exit;
  492. /*
  493. * Let others (NMI) know that the debug stack is in use
  494. * as we may switch to the interrupt stack.
  495. */
  496. debug_stack_usage_inc();
  497. cond_local_irq_enable(regs);
  498. do_trap(X86_TRAP_BP, SIGTRAP, "int3", regs, error_code, NULL);
  499. cond_local_irq_disable(regs);
  500. debug_stack_usage_dec();
  501. exit:
  502. ist_exit(regs);
  503. }
  504. NOKPROBE_SYMBOL(do_int3);
  505. #ifdef CONFIG_X86_64
  506. /*
  507. * Help handler running on IST stack to switch off the IST stack if the
  508. * interrupted code was in user mode. The actual stack switch is done in
  509. * entry_64.S
  510. */
  511. asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs)
  512. {
  513. struct pt_regs *regs = task_pt_regs(current);
  514. *regs = *eregs;
  515. return regs;
  516. }
  517. NOKPROBE_SYMBOL(sync_regs);
  518. struct bad_iret_stack {
  519. void *error_entry_ret;
  520. struct pt_regs regs;
  521. };
  522. asmlinkage __visible notrace
  523. struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s)
  524. {
  525. /*
  526. * This is called from entry_64.S early in handling a fault
  527. * caused by a bad iret to user mode. To handle the fault
  528. * correctly, we want move our stack frame to task_pt_regs
  529. * and we want to pretend that the exception came from the
  530. * iret target.
  531. */
  532. struct bad_iret_stack *new_stack =
  533. container_of(task_pt_regs(current),
  534. struct bad_iret_stack, regs);
  535. /* Copy the IRET target to the new stack. */
  536. memmove(&new_stack->regs.ip, (void *)s->regs.sp, 5*8);
  537. /* Copy the remainder of the stack from the current stack. */
  538. memmove(new_stack, s, offsetof(struct bad_iret_stack, regs.ip));
  539. BUG_ON(!user_mode(&new_stack->regs));
  540. return new_stack;
  541. }
  542. NOKPROBE_SYMBOL(fixup_bad_iret);
  543. #endif
  544. static bool is_sysenter_singlestep(struct pt_regs *regs)
  545. {
  546. /*
  547. * We don't try for precision here. If we're anywhere in the region of
  548. * code that can be single-stepped in the SYSENTER entry path, then
  549. * assume that this is a useless single-step trap due to SYSENTER
  550. * being invoked with TF set. (We don't know in advance exactly
  551. * which instructions will be hit because BTF could plausibly
  552. * be set.)
  553. */
  554. #ifdef CONFIG_X86_32
  555. return (regs->ip - (unsigned long)__begin_SYSENTER_singlestep_region) <
  556. (unsigned long)__end_SYSENTER_singlestep_region -
  557. (unsigned long)__begin_SYSENTER_singlestep_region;
  558. #elif defined(CONFIG_IA32_EMULATION)
  559. return (regs->ip - (unsigned long)entry_SYSENTER_compat) <
  560. (unsigned long)__end_entry_SYSENTER_compat -
  561. (unsigned long)entry_SYSENTER_compat;
  562. #else
  563. return false;
  564. #endif
  565. }
  566. /*
  567. * Our handling of the processor debug registers is non-trivial.
  568. * We do not clear them on entry and exit from the kernel. Therefore
  569. * it is possible to get a watchpoint trap here from inside the kernel.
  570. * However, the code in ./ptrace.c has ensured that the user can
  571. * only set watchpoints on userspace addresses. Therefore the in-kernel
  572. * watchpoint trap can only occur in code which is reading/writing
  573. * from user space. Such code must not hold kernel locks (since it
  574. * can equally take a page fault), therefore it is safe to call
  575. * force_sig_info even though that claims and releases locks.
  576. *
  577. * Code in ./signal.c ensures that the debug control register
  578. * is restored before we deliver any signal, and therefore that
  579. * user code runs with the correct debug control register even though
  580. * we clear it here.
  581. *
  582. * Being careful here means that we don't have to be as careful in a
  583. * lot of more complicated places (task switching can be a bit lazy
  584. * about restoring all the debug state, and ptrace doesn't have to
  585. * find every occurrence of the TF bit that could be saved away even
  586. * by user code)
  587. *
  588. * May run on IST stack.
  589. */
  590. dotraplinkage void do_debug(struct pt_regs *regs, long error_code)
  591. {
  592. struct task_struct *tsk = current;
  593. int user_icebp = 0;
  594. unsigned long dr6;
  595. int si_code;
  596. ist_enter(regs);
  597. get_debugreg(dr6, 6);
  598. /*
  599. * The Intel SDM says:
  600. *
  601. * Certain debug exceptions may clear bits 0-3. The remaining
  602. * contents of the DR6 register are never cleared by the
  603. * processor. To avoid confusion in identifying debug
  604. * exceptions, debug handlers should clear the register before
  605. * returning to the interrupted task.
  606. *
  607. * Keep it simple: clear DR6 immediately.
  608. */
  609. set_debugreg(0, 6);
  610. /* Filter out all the reserved bits which are preset to 1 */
  611. dr6 &= ~DR6_RESERVED;
  612. /*
  613. * The SDM says "The processor clears the BTF flag when it
  614. * generates a debug exception." Clear TIF_BLOCKSTEP to keep
  615. * TIF_BLOCKSTEP in sync with the hardware BTF flag.
  616. */
  617. clear_tsk_thread_flag(tsk, TIF_BLOCKSTEP);
  618. if (unlikely(!user_mode(regs) && (dr6 & DR_STEP) &&
  619. is_sysenter_singlestep(regs))) {
  620. dr6 &= ~DR_STEP;
  621. if (!dr6)
  622. goto exit;
  623. /*
  624. * else we might have gotten a single-step trap and hit a
  625. * watchpoint at the same time, in which case we should fall
  626. * through and handle the watchpoint.
  627. */
  628. }
  629. /*
  630. * If dr6 has no reason to give us about the origin of this trap,
  631. * then it's very likely the result of an icebp/int01 trap.
  632. * User wants a sigtrap for that.
  633. */
  634. if (!dr6 && user_mode(regs))
  635. user_icebp = 1;
  636. /* Catch kmemcheck conditions! */
  637. if ((dr6 & DR_STEP) && kmemcheck_trap(regs))
  638. goto exit;
  639. /* Store the virtualized DR6 value */
  640. tsk->thread.debugreg6 = dr6;
  641. #ifdef CONFIG_KPROBES
  642. if (kprobe_debug_handler(regs))
  643. goto exit;
  644. #endif
  645. if (notify_die(DIE_DEBUG, "debug", regs, (long)&dr6, error_code,
  646. SIGTRAP) == NOTIFY_STOP)
  647. goto exit;
  648. /*
  649. * Let others (NMI) know that the debug stack is in use
  650. * as we may switch to the interrupt stack.
  651. */
  652. debug_stack_usage_inc();
  653. /* It's safe to allow irq's after DR6 has been saved */
  654. cond_local_irq_enable(regs);
  655. if (v8086_mode(regs)) {
  656. handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code,
  657. X86_TRAP_DB);
  658. cond_local_irq_disable(regs);
  659. debug_stack_usage_dec();
  660. goto exit;
  661. }
  662. if (WARN_ON_ONCE((dr6 & DR_STEP) && !user_mode(regs))) {
  663. /*
  664. * Historical junk that used to handle SYSENTER single-stepping.
  665. * This should be unreachable now. If we survive for a while
  666. * without anyone hitting this warning, we'll turn this into
  667. * an oops.
  668. */
  669. tsk->thread.debugreg6 &= ~DR_STEP;
  670. set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
  671. regs->flags &= ~X86_EFLAGS_TF;
  672. }
  673. si_code = get_si_code(tsk->thread.debugreg6);
  674. if (tsk->thread.debugreg6 & (DR_STEP | DR_TRAP_BITS) || user_icebp)
  675. send_sigtrap(tsk, regs, error_code, si_code);
  676. cond_local_irq_disable(regs);
  677. debug_stack_usage_dec();
  678. exit:
  679. #if defined(CONFIG_X86_32)
  680. /*
  681. * This is the most likely code path that involves non-trivial use
  682. * of the SYSENTER stack. Check that we haven't overrun it.
  683. */
  684. WARN(this_cpu_read(cpu_tss.SYSENTER_stack_canary) != STACK_END_MAGIC,
  685. "Overran or corrupted SYSENTER stack\n");
  686. #endif
  687. ist_exit(regs);
  688. }
  689. NOKPROBE_SYMBOL(do_debug);
  690. /*
  691. * Note that we play around with the 'TS' bit in an attempt to get
  692. * the correct behaviour even in the presence of the asynchronous
  693. * IRQ13 behaviour
  694. */
  695. static void math_error(struct pt_regs *regs, int error_code, int trapnr)
  696. {
  697. struct task_struct *task = current;
  698. struct fpu *fpu = &task->thread.fpu;
  699. siginfo_t info;
  700. char *str = (trapnr == X86_TRAP_MF) ? "fpu exception" :
  701. "simd exception";
  702. if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, SIGFPE) == NOTIFY_STOP)
  703. return;
  704. cond_local_irq_enable(regs);
  705. if (!user_mode(regs)) {
  706. if (!fixup_exception(regs, trapnr)) {
  707. task->thread.error_code = error_code;
  708. task->thread.trap_nr = trapnr;
  709. die(str, regs, error_code);
  710. }
  711. return;
  712. }
  713. /*
  714. * Save the info for the exception handler and clear the error.
  715. */
  716. fpu__save(fpu);
  717. task->thread.trap_nr = trapnr;
  718. task->thread.error_code = error_code;
  719. info.si_signo = SIGFPE;
  720. info.si_errno = 0;
  721. info.si_addr = (void __user *)uprobe_get_trap_addr(regs);
  722. info.si_code = fpu__exception_code(fpu, trapnr);
  723. /* Retry when we get spurious exceptions: */
  724. if (!info.si_code)
  725. return;
  726. force_sig_info(SIGFPE, &info, task);
  727. }
  728. dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code)
  729. {
  730. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  731. math_error(regs, error_code, X86_TRAP_MF);
  732. }
  733. dotraplinkage void
  734. do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
  735. {
  736. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  737. math_error(regs, error_code, X86_TRAP_XF);
  738. }
  739. dotraplinkage void
  740. do_spurious_interrupt_bug(struct pt_regs *regs, long error_code)
  741. {
  742. cond_local_irq_enable(regs);
  743. }
  744. dotraplinkage void
  745. do_device_not_available(struct pt_regs *regs, long error_code)
  746. {
  747. unsigned long cr0;
  748. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  749. #ifdef CONFIG_MATH_EMULATION
  750. if (!boot_cpu_has(X86_FEATURE_FPU) && (read_cr0() & X86_CR0_EM)) {
  751. struct math_emu_info info = { };
  752. cond_local_irq_enable(regs);
  753. info.regs = regs;
  754. math_emulate(&info);
  755. return;
  756. }
  757. #endif
  758. /* This should not happen. */
  759. cr0 = read_cr0();
  760. if (WARN(cr0 & X86_CR0_TS, "CR0.TS was set")) {
  761. /* Try to fix it up and carry on. */
  762. write_cr0(cr0 & ~X86_CR0_TS);
  763. } else {
  764. /*
  765. * Something terrible happened, and we're better off trying
  766. * to kill the task than getting stuck in a never-ending
  767. * loop of #NM faults.
  768. */
  769. die("unexpected #NM exception", regs, error_code);
  770. }
  771. }
  772. NOKPROBE_SYMBOL(do_device_not_available);
  773. #ifdef CONFIG_X86_32
  774. dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code)
  775. {
  776. siginfo_t info;
  777. RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
  778. local_irq_enable();
  779. info.si_signo = SIGILL;
  780. info.si_errno = 0;
  781. info.si_code = ILL_BADSTK;
  782. info.si_addr = NULL;
  783. if (notify_die(DIE_TRAP, "iret exception", regs, error_code,
  784. X86_TRAP_IRET, SIGILL) != NOTIFY_STOP) {
  785. do_trap(X86_TRAP_IRET, SIGILL, "iret exception", regs, error_code,
  786. &info);
  787. }
  788. }
  789. #endif
  790. /* Set of traps needed for early debugging. */
  791. void __init early_trap_init(void)
  792. {
  793. /*
  794. * Don't use IST to set DEBUG_STACK as it doesn't work until TSS
  795. * is ready in cpu_init() <-- trap_init(). Before trap_init(),
  796. * CPU runs at ring 0 so it is impossible to hit an invalid
  797. * stack. Using the original stack works well enough at this
  798. * early stage. DEBUG_STACK will be equipped after cpu_init() in
  799. * trap_init().
  800. *
  801. * We don't need to set trace_idt_table like set_intr_gate(),
  802. * since we don't have trace_debug and it will be reset to
  803. * 'debug' in trap_init() by set_intr_gate_ist().
  804. */
  805. set_intr_gate_notrace(X86_TRAP_DB, debug);
  806. /* int3 can be called from all */
  807. set_system_intr_gate(X86_TRAP_BP, &int3);
  808. #ifdef CONFIG_X86_32
  809. set_intr_gate(X86_TRAP_PF, page_fault);
  810. #endif
  811. load_idt(&idt_descr);
  812. }
  813. void __init early_trap_pf_init(void)
  814. {
  815. #ifdef CONFIG_X86_64
  816. set_intr_gate(X86_TRAP_PF, page_fault);
  817. #endif
  818. }
  819. void __init trap_init(void)
  820. {
  821. int i;
  822. #ifdef CONFIG_EISA
  823. void __iomem *p = early_ioremap(0x0FFFD9, 4);
  824. if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24))
  825. EISA_bus = 1;
  826. early_iounmap(p, 4);
  827. #endif
  828. set_intr_gate(X86_TRAP_DE, divide_error);
  829. set_intr_gate_ist(X86_TRAP_NMI, &nmi, NMI_STACK);
  830. /* int4 can be called from all */
  831. set_system_intr_gate(X86_TRAP_OF, &overflow);
  832. set_intr_gate(X86_TRAP_BR, bounds);
  833. set_intr_gate(X86_TRAP_UD, invalid_op);
  834. set_intr_gate(X86_TRAP_NM, device_not_available);
  835. #ifdef CONFIG_X86_32
  836. set_task_gate(X86_TRAP_DF, GDT_ENTRY_DOUBLEFAULT_TSS);
  837. #else
  838. set_intr_gate_ist(X86_TRAP_DF, &double_fault, DOUBLEFAULT_STACK);
  839. #endif
  840. set_intr_gate(X86_TRAP_OLD_MF, coprocessor_segment_overrun);
  841. set_intr_gate(X86_TRAP_TS, invalid_TSS);
  842. set_intr_gate(X86_TRAP_NP, segment_not_present);
  843. set_intr_gate(X86_TRAP_SS, stack_segment);
  844. set_intr_gate(X86_TRAP_GP, general_protection);
  845. set_intr_gate(X86_TRAP_SPURIOUS, spurious_interrupt_bug);
  846. set_intr_gate(X86_TRAP_MF, coprocessor_error);
  847. set_intr_gate(X86_TRAP_AC, alignment_check);
  848. #ifdef CONFIG_X86_MCE
  849. set_intr_gate_ist(X86_TRAP_MC, &machine_check, MCE_STACK);
  850. #endif
  851. set_intr_gate(X86_TRAP_XF, simd_coprocessor_error);
  852. /* Reserve all the builtin and the syscall vector: */
  853. for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
  854. set_bit(i, used_vectors);
  855. #ifdef CONFIG_IA32_EMULATION
  856. set_system_intr_gate(IA32_SYSCALL_VECTOR, entry_INT80_compat);
  857. set_bit(IA32_SYSCALL_VECTOR, used_vectors);
  858. #endif
  859. #ifdef CONFIG_X86_32
  860. set_system_intr_gate(IA32_SYSCALL_VECTOR, entry_INT80_32);
  861. set_bit(IA32_SYSCALL_VECTOR, used_vectors);
  862. #endif
  863. /*
  864. * Set the IDT descriptor to a fixed read-only location, so that the
  865. * "sidt" instruction will not leak the location of the kernel, and
  866. * to defend the IDT against arbitrary memory write vulnerabilities.
  867. * It will be reloaded in cpu_init() */
  868. __set_fixmap(FIX_RO_IDT, __pa_symbol(idt_table), PAGE_KERNEL_RO);
  869. idt_descr.address = fix_to_virt(FIX_RO_IDT);
  870. /*
  871. * Should be a barrier for any external CPU state:
  872. */
  873. cpu_init();
  874. /*
  875. * X86_TRAP_DB and X86_TRAP_BP have been set
  876. * in early_trap_init(). However, ITS works only after
  877. * cpu_init() loads TSS. See comments in early_trap_init().
  878. */
  879. set_intr_gate_ist(X86_TRAP_DB, &debug, DEBUG_STACK);
  880. /* int3 can be called from all */
  881. set_system_intr_gate_ist(X86_TRAP_BP, &int3, DEBUG_STACK);
  882. x86_init.irqs.trap_init();
  883. #ifdef CONFIG_X86_64
  884. memcpy(&debug_idt_table, &idt_table, IDT_ENTRIES * 16);
  885. set_nmi_gate(X86_TRAP_DB, &debug);
  886. set_nmi_gate(X86_TRAP_BP, &int3);
  887. #endif
  888. }