blob: 5fae2d840e642126ebb3a1ae99dbbc661b65827c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
Alexander van Heukeluma8c1be92008-07-02 01:29:44 +02003 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Pentium III FXSR, SSE support
6 * Gareth Hughes <gareth@valinux.com>, May 2000
7 */
8
9/*
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020010 * Handle hardware traps and faults.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Joe Perchesc767a542012-05-21 19:50:07 -070012
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Frederic Weisbecker56dd9472013-02-24 00:23:25 +010015#include <linux/context_tracking.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kallsyms.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010018#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kprobes.h>
Andrew Morton1e2af922006-09-27 01:51:15 -070020#include <linux/uaccess.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010021#include <linux/kdebug.h>
Jason Wesself503b5a2010-05-20 21:04:25 -050022#include <linux/kgdb.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010023#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/ptrace.h>
Oleg Nesterovb02ef202014-05-12 18:24:45 +020026#include <linux/uprobes.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010027#include <linux/string.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010028#include <linux/delay.h>
29#include <linux/errno.h>
30#include <linux/kexec.h>
31#include <linux/sched.h>
32#include <linux/timer.h>
33#include <linux/init.h>
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -080034#include <linux/bug.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010035#include <linux/nmi.h>
36#include <linux/mm.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020037#include <linux/smp.h>
38#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#ifdef CONFIG_EISA
41#include <linux/ioport.h>
42#include <linux/eisa.h>
43#endif
44
Dave Jiangc0d12172007-07-19 01:49:46 -070045#if defined(CONFIG_EDAC)
46#include <linux/edac.h>
47#endif
48
Vegard Nossumf8561292008-04-04 00:53:23 +020049#include <asm/kmemcheck.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010050#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/debugreg.h>
Arun Sharma600634972011-07-26 16:09:06 -070053#include <linux/atomic.h>
Steven Rostedt08d636b2011-08-16 09:57:10 -040054#include <asm/ftrace.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020055#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/desc.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020057#include <asm/fpu/internal.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +090058#include <asm/mce.h>
Kees Cook4eefbe72013-04-10 12:24:22 -070059#include <asm/fixmap.h>
Ingo Molnar1164dd02009-01-28 19:34:09 +010060#include <asm/mach_traps.h>
Jiri Kosina17f41572013-07-23 10:09:28 +020061#include <asm/alternative.h>
Dave Hansena84eeaa2015-06-07 11:37:01 -070062#include <asm/fpu/xstate.h>
Dave Hansene7126cf2015-06-07 11:37:03 -070063#include <asm/trace/mpx.h>
Dave Hansenfe3d1972014-11-14 07:18:29 -080064#include <asm/mpx.h>
Brian Gerstba3e1272015-07-29 01:41:21 -040065#include <asm/vm86.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020066
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020067#ifdef CONFIG_X86_64
Thomas Gleixner428cf902009-08-20 10:35:46 +020068#include <asm/x86_init.h>
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020069#include <asm/pgalloc.h>
70#include <asm/proto.h>
Kees Cook4df05f32013-07-16 11:34:41 -070071
72/* No need to be aligned, but done to keep all IDTs defined the same way. */
73gate_desc debug_idt_table[NR_VECTORS] __page_aligned_bss;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020074#else
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020075#include <asm/processor-flags.h>
Ingo Molnar8e6dafd2009-02-23 00:34:39 +010076#include <asm/setup.h>
Ingo Molnarb2502b42015-06-08 08:42:03 +020077#include <asm/proto.h>
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Kees Cook4df05f32013-07-16 11:34:41 -070080/* Must be page-aligned because the real IDT is used in a fixmap. */
81gate_desc idt_table[NR_VECTORS] __page_aligned_bss;
82
Yinghai Lub77b8812008-12-19 15:23:44 -080083DECLARE_BITMAP(used_vectors, NR_VECTORS);
84EXPORT_SYMBOL_GPL(used_vectors);
85
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +010086static inline void cond_local_irq_enable(struct pt_regs *regs)
Alexander van Heukelum762db432008-09-09 21:55:55 +020087{
88 if (regs->flags & X86_EFLAGS_IF)
89 local_irq_enable();
90}
91
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +010092static inline void cond_local_irq_disable(struct pt_regs *regs)
Thomas Gleixnerbe716612009-01-13 23:36:34 +010093{
94 if (regs->flags & X86_EFLAGS_IF)
95 local_irq_disable();
96}
97
Andy Lutomirski8c840142015-07-03 12:44:32 -070098void ist_enter(struct pt_regs *regs)
Andy Lutomirski95927472014-11-19 17:41:09 -080099{
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700100 if (user_mode(regs)) {
Linus Torvalds57780772015-09-01 08:40:25 -0700101 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Andy Lutomirski95927472014-11-19 17:41:09 -0800102 } else {
103 /*
104 * We might have interrupted pretty much anything. In
105 * fact, if we're a machine check, we can even interrupt
106 * NMI processing. We don't want in_nmi() to return true,
107 * but we need to notify RCU.
108 */
109 rcu_nmi_enter();
Andy Lutomirski95927472014-11-19 17:41:09 -0800110 }
Andy Lutomirskib926e6f2015-01-31 04:53:53 -0800111
112 /*
Andy Lutomirski8c840142015-07-03 12:44:32 -0700113 * We are atomic because we're on the IST stack; or we're on
114 * x86_32, in which case we still shouldn't schedule; or we're
115 * on x86_64 and entered from user mode, in which case we're
116 * still atomic unless ist_begin_non_atomic is called.
Andy Lutomirskib926e6f2015-01-31 04:53:53 -0800117 */
118 preempt_count_add(HARDIRQ_OFFSET);
119
120 /* This code is a bit fragile. Test it. */
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700121 RCU_LOCKDEP_WARN(!rcu_is_watching(), "ist_enter didn't work");
Andy Lutomirski95927472014-11-19 17:41:09 -0800122}
123
Andy Lutomirski8c840142015-07-03 12:44:32 -0700124void ist_exit(struct pt_regs *regs)
Andy Lutomirski95927472014-11-19 17:41:09 -0800125{
126 preempt_count_sub(HARDIRQ_OFFSET);
127
Andy Lutomirski8c840142015-07-03 12:44:32 -0700128 if (!user_mode(regs))
Andy Lutomirski95927472014-11-19 17:41:09 -0800129 rcu_nmi_exit();
130}
131
Andy Lutomirskibced35b2014-11-19 17:59:41 -0800132/**
133 * ist_begin_non_atomic() - begin a non-atomic section in an IST exception
134 * @regs: regs passed to the IST exception handler
135 *
136 * IST exception handlers normally cannot schedule. As a special
137 * exception, if the exception interrupted userspace code (i.e.
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700138 * user_mode(regs) would return true) and the exception was not
Andy Lutomirskibced35b2014-11-19 17:59:41 -0800139 * a double fault, it can be safe to schedule. ist_begin_non_atomic()
140 * begins a non-atomic section within an ist_enter()/ist_exit() region.
141 * Callers are responsible for enabling interrupts themselves inside
Andy Lutomirski8c840142015-07-03 12:44:32 -0700142 * the non-atomic section, and callers must call ist_end_non_atomic()
Andy Lutomirskibced35b2014-11-19 17:59:41 -0800143 * before ist_exit().
144 */
145void ist_begin_non_atomic(struct pt_regs *regs)
146{
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700147 BUG_ON(!user_mode(regs));
Andy Lutomirskibced35b2014-11-19 17:59:41 -0800148
149 /*
150 * Sanity check: we need to be on the normal thread stack. This
151 * will catch asm bugs and any attempt to use ist_preempt_enable
152 * from double_fault.
153 */
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800154 BUG_ON((unsigned long)(current_top_of_stack() -
155 current_stack_pointer()) >= THREAD_SIZE);
Andy Lutomirskibced35b2014-11-19 17:59:41 -0800156
157 preempt_count_sub(HARDIRQ_OFFSET);
158}
159
160/**
161 * ist_end_non_atomic() - begin a non-atomic section in an IST exception
162 *
163 * Ends a non-atomic section started with ist_begin_non_atomic().
164 */
165void ist_end_non_atomic(void)
166{
167 preempt_count_add(HARDIRQ_OFFSET);
168}
169
Masami Hiramatsu93266382014-04-17 17:18:14 +0900170static nokprobe_inline int
Frederic Weisbeckerc416ddf2012-09-25 14:51:19 +0200171do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str,
172 struct pt_regs *regs, long error_code)
173{
Andy Lutomirskid74ef112015-03-18 18:33:35 -0700174 if (v8086_mode(regs)) {
Frederic Weisbeckerc416ddf2012-09-25 14:51:19 +0200175 /*
176 * Traps 0, 1, 3, 4, and 5 should be forwarded to vm86.
177 * On nmi (interrupt 2), do_trap should not be called.
178 */
179 if (trapnr < X86_TRAP_UD) {
180 if (!handle_vm86_trap((struct kernel_vm86_regs *) regs,
181 error_code, trapnr))
182 return 0;
183 }
184 return -1;
185 }
Andy Lutomirskid74ef112015-03-18 18:33:35 -0700186
Ingo Molnar55474c42015-03-29 11:02:34 +0200187 if (!user_mode(regs)) {
Frederic Weisbeckerc416ddf2012-09-25 14:51:19 +0200188 if (!fixup_exception(regs)) {
189 tsk->thread.error_code = error_code;
190 tsk->thread.trap_nr = trapnr;
191 die(str, regs, error_code);
192 }
193 return 0;
194 }
195
196 return -1;
197}
198
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200199static siginfo_t *fill_trap_info(struct pt_regs *regs, int signr, int trapnr,
200 siginfo_t *info)
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200201{
202 unsigned long siaddr;
203 int sicode;
204
205 switch (trapnr) {
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200206 default:
207 return SEND_SIG_PRIV;
208
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200209 case X86_TRAP_DE:
210 sicode = FPE_INTDIV;
Oleg Nesterovb02ef202014-05-12 18:24:45 +0200211 siaddr = uprobe_get_trap_addr(regs);
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200212 break;
213 case X86_TRAP_UD:
214 sicode = ILL_ILLOPN;
Oleg Nesterovb02ef202014-05-12 18:24:45 +0200215 siaddr = uprobe_get_trap_addr(regs);
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200216 break;
217 case X86_TRAP_AC:
218 sicode = BUS_ADRALN;
219 siaddr = 0;
220 break;
221 }
222
223 info->si_signo = signr;
224 info->si_errno = 0;
225 info->si_code = sicode;
226 info->si_addr = (void __user *)siaddr;
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200227 return info;
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200228}
229
Masami Hiramatsu93266382014-04-17 17:18:14 +0900230static void
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200231do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
Ingo Molnarb5964402008-02-26 11:15:50 +0100232 long error_code, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700234 struct task_struct *tsk = current;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Frederic Weisbeckerc416ddf2012-09-25 14:51:19 +0200237 if (!do_trap_no_signal(tsk, trapnr, str, regs, error_code))
238 return;
Ingo Molnarb5964402008-02-26 11:15:50 +0100239 /*
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530240 * We want error_code and trap_nr set for userspace faults and
Ingo Molnarb5964402008-02-26 11:15:50 +0100241 * kernelspace faults which result in die(), but not
242 * kernelspace faults which are fixed up. die() gives the
243 * process no chance to handle the signal and notice the
244 * kernel fault information, so that won't result in polluting
245 * the information about previously queued, but not yet
246 * delivered, faults. See also do_general_protection below.
247 */
248 tsk->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530249 tsk->thread.trap_nr = trapnr;
Ingo Molnarb5964402008-02-26 11:15:50 +0100250
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200251#ifdef CONFIG_X86_64
252 if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
253 printk_ratelimit()) {
Joe Perchesc767a542012-05-21 19:50:07 -0700254 pr_info("%s[%d] trap %s ip:%lx sp:%lx error:%lx",
255 tsk->comm, tsk->pid, str,
256 regs->ip, regs->sp, error_code);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200257 print_vma_addr(" in ", regs->ip);
Joe Perchesc767a542012-05-21 19:50:07 -0700258 pr_cont("\n");
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200259 }
260#endif
261
Oleg Nesterov38cad572014-05-07 16:47:09 +0200262 force_sig_info(signr, info ?: SEND_SIG_PRIV, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900264NOKPROBE_SYMBOL(do_trap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Oleg Nesterovdff07962014-05-07 17:21:34 +0200266static void do_error_trap(struct pt_regs *regs, long error_code, char *str,
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200267 unsigned long trapnr, int signr)
Oleg Nesterovdff07962014-05-07 17:21:34 +0200268{
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200269 siginfo_t info;
Oleg Nesterovdff07962014-05-07 17:21:34 +0200270
Linus Torvalds57780772015-09-01 08:40:25 -0700271 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Andy Lutomirski02fdcd52015-07-03 12:44:24 -0700272
Oleg Nesterovdff07962014-05-07 17:21:34 +0200273 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) !=
274 NOTIFY_STOP) {
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100275 cond_local_irq_enable(regs);
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200276 do_trap(trapnr, signr, str, regs, error_code,
277 fill_trap_info(regs, signr, trapnr, &info));
Oleg Nesterovdff07962014-05-07 17:21:34 +0200278 }
Oleg Nesterovdff07962014-05-07 17:21:34 +0200279}
280
Ingo Molnarb5964402008-02-26 11:15:50 +0100281#define DO_ERROR(trapnr, signr, str, name) \
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200282dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \
Ingo Molnarb5964402008-02-26 11:15:50 +0100283{ \
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200284 do_error_trap(regs, error_code, str, trapnr, signr); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200287DO_ERROR(X86_TRAP_DE, SIGFPE, "divide error", divide_error)
288DO_ERROR(X86_TRAP_OF, SIGSEGV, "overflow", overflow)
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200289DO_ERROR(X86_TRAP_UD, SIGILL, "invalid opcode", invalid_op)
290DO_ERROR(X86_TRAP_OLD_MF, SIGFPE, "coprocessor segment overrun",coprocessor_segment_overrun)
291DO_ERROR(X86_TRAP_TS, SIGSEGV, "invalid TSS", invalid_TSS)
292DO_ERROR(X86_TRAP_NP, SIGBUS, "segment not present", segment_not_present)
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200293DO_ERROR(X86_TRAP_SS, SIGBUS, "stack segment", stack_segment)
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200294DO_ERROR(X86_TRAP_AC, SIGBUS, "alignment check", alignment_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200296#ifdef CONFIG_X86_64
297/* Runs on IST stack */
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200298dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code)
299{
300 static const char str[] = "double fault";
301 struct task_struct *tsk = current;
302
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800303#ifdef CONFIG_X86_ESPFIX64
304 extern unsigned char native_irq_return_iret[];
305
306 /*
307 * If IRET takes a non-IST fault on the espfix64 stack, then we
308 * end up promoting it to a doublefault. In that case, modify
309 * the stack to make it look like we just entered the #GP
310 * handler from user space, similar to bad_iret.
Andy Lutomirski95927472014-11-19 17:41:09 -0800311 *
312 * No need for ist_enter here because we don't use RCU.
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800313 */
314 if (((long)regs->sp >> PGDIR_SHIFT) == ESPFIX_PGD_ENTRY &&
315 regs->cs == __KERNEL_CS &&
316 regs->ip == (unsigned long)native_irq_return_iret)
317 {
318 struct pt_regs *normal_regs = task_pt_regs(current);
319
320 /* Fake a #GP(0) from userspace. */
321 memmove(&normal_regs->ip, (void *)regs->sp, 5*8);
322 normal_regs->orig_ax = 0; /* Missing (lost) #GP error code */
323 regs->ip = (unsigned long)general_protection;
324 regs->sp = (unsigned long)&normal_regs->orig_ax;
Andy Lutomirski95927472014-11-19 17:41:09 -0800325
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800326 return;
327 }
328#endif
329
Andy Lutomirski8c840142015-07-03 12:44:32 -0700330 ist_enter(regs);
Kees Cookc9408262012-03-09 16:07:10 -0800331 notify_die(DIE_TRAP, str, regs, error_code, X86_TRAP_DF, SIGSEGV);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200332
333 tsk->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530334 tsk->thread.trap_nr = X86_TRAP_DF;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200335
Borislav Petkov4d067d82013-05-09 12:02:29 +0200336#ifdef CONFIG_DOUBLEFAULT
337 df_debug(regs, error_code);
338#endif
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100339 /*
340 * This is always a kernel trap and never fixable (and thus must
341 * never return).
342 */
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200343 for (;;)
344 die(str, regs, error_code);
345}
346#endif
347
Dave Hansenfe3d1972014-11-14 07:18:29 -0800348dotraplinkage void do_bounds(struct pt_regs *regs, long error_code)
349{
Dave Hansen1126cb452015-09-02 16:31:29 -0700350 const struct mpx_bndcsr *bndcsr;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800351 siginfo_t *info;
352
Linus Torvalds57780772015-09-01 08:40:25 -0700353 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Dave Hansenfe3d1972014-11-14 07:18:29 -0800354 if (notify_die(DIE_TRAP, "bounds", regs, error_code,
355 X86_TRAP_BR, SIGSEGV) == NOTIFY_STOP)
Andy Lutomirski8c840142015-07-03 12:44:32 -0700356 return;
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100357 cond_local_irq_enable(regs);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800358
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700359 if (!user_mode(regs))
Dave Hansenfe3d1972014-11-14 07:18:29 -0800360 die("bounds", regs, error_code);
361
362 if (!cpu_feature_enabled(X86_FEATURE_MPX)) {
363 /* The exception is not from Intel MPX */
364 goto exit_trap;
365 }
366
367 /*
368 * We need to look at BNDSTATUS to resolve this exception.
Dave Hansena84eeaa2015-06-07 11:37:01 -0700369 * A NULL here might mean that it is in its 'init state',
370 * which is all zeros which indicates MPX was not
371 * responsible for the exception.
Dave Hansenfe3d1972014-11-14 07:18:29 -0800372 */
Dave Hansend91cab72015-09-02 16:31:26 -0700373 bndcsr = get_xsave_field_ptr(XFEATURE_MASK_BNDCSR);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800374 if (!bndcsr)
375 goto exit_trap;
376
Dave Hansene7126cf2015-06-07 11:37:03 -0700377 trace_bounds_exception_mpx(bndcsr);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800378 /*
379 * The error code field of the BNDSTATUS register communicates status
380 * information of a bound range exception #BR or operation involving
381 * bound directory.
382 */
383 switch (bndcsr->bndstatus & MPX_BNDSTA_ERROR_CODE) {
384 case 2: /* Bound directory has invalid entry. */
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700385 if (mpx_handle_bd_fault())
Dave Hansenfe3d1972014-11-14 07:18:29 -0800386 goto exit_trap;
387 break; /* Success, it was handled */
388 case 1: /* Bound violation. */
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700389 info = mpx_generate_siginfo(regs);
Dan Carpentere10abb22014-11-25 20:21:14 +0300390 if (IS_ERR(info)) {
Dave Hansenfe3d1972014-11-14 07:18:29 -0800391 /*
392 * We failed to decode the MPX instruction. Act as if
393 * the exception was not caused by MPX.
394 */
395 goto exit_trap;
396 }
397 /*
398 * Success, we decoded the instruction and retrieved
399 * an 'info' containing the address being accessed
400 * which caused the exception. This information
401 * allows and application to possibly handle the
402 * #BR exception itself.
403 */
404 do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, info);
405 kfree(info);
406 break;
407 case 0: /* No exception caused by Intel MPX operations. */
408 goto exit_trap;
409 default:
410 die("bounds", regs, error_code);
411 }
412
Dave Hansenfe3d1972014-11-14 07:18:29 -0800413 return;
Andy Lutomirski8c840142015-07-03 12:44:32 -0700414
Dave Hansenfe3d1972014-11-14 07:18:29 -0800415exit_trap:
416 /*
417 * This path out is for all the cases where we could not
418 * handle the exception in some way (like allocating a
419 * table or telling userspace about it. We will also end
420 * up here if the kernel has MPX turned off at compile
421 * time..
422 */
423 do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, NULL);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800424}
425
Masami Hiramatsu93266382014-04-17 17:18:14 +0900426dotraplinkage void
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200427do_general_protection(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200429 struct task_struct *tsk;
Ingo Molnarb5964402008-02-26 11:15:50 +0100430
Linus Torvalds57780772015-09-01 08:40:25 -0700431 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100432 cond_local_irq_enable(regs);
Alexander van Heukelumc6df0d72008-09-09 21:56:07 +0200433
Andy Lutomirskid74ef112015-03-18 18:33:35 -0700434 if (v8086_mode(regs)) {
Frederic Weisbeckeref3f6282012-09-24 21:05:52 +0200435 local_irq_enable();
436 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
Andy Lutomirski8c840142015-07-03 12:44:32 -0700437 return;
Frederic Weisbeckeref3f6282012-09-24 21:05:52 +0200438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200440 tsk = current;
Ingo Molnar55474c42015-03-29 11:02:34 +0200441 if (!user_mode(regs)) {
Frederic Weisbeckeref3f6282012-09-24 21:05:52 +0200442 if (fixup_exception(regs))
Andy Lutomirski8c840142015-07-03 12:44:32 -0700443 return;
Frederic Weisbeckeref3f6282012-09-24 21:05:52 +0200444
445 tsk->thread.error_code = error_code;
446 tsk->thread.trap_nr = X86_TRAP_GP;
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200447 if (notify_die(DIE_GPF, "general protection fault", regs, error_code,
448 X86_TRAP_GP, SIGSEGV) != NOTIFY_STOP)
Frederic Weisbeckeref3f6282012-09-24 21:05:52 +0200449 die("general protection fault", regs, error_code);
Andy Lutomirski8c840142015-07-03 12:44:32 -0700450 return;
Frederic Weisbeckeref3f6282012-09-24 21:05:52 +0200451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200453 tsk->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530454 tsk->thread.trap_nr = X86_TRAP_GP;
Ingo Molnarb5964402008-02-26 11:15:50 +0100455
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200456 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
457 printk_ratelimit()) {
Joe Perchesc767a542012-05-21 19:50:07 -0700458 pr_info("%s[%d] general protection ip:%lx sp:%lx error:%lx",
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200459 tsk->comm, task_pid_nr(tsk),
460 regs->ip, regs->sp, error_code);
Andi Kleen03252912008-01-30 13:33:18 +0100461 print_vma_addr(" in ", regs->ip);
Joe Perchesc767a542012-05-21 19:50:07 -0700462 pr_cont("\n");
Andi Kleen03252912008-01-30 13:33:18 +0100463 }
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200464
Oleg Nesterov38cad572014-05-07 16:47:09 +0200465 force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900467NOKPROBE_SYMBOL(do_general_protection);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +0200469/* May run on IST stack. */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900470dotraplinkage void notrace do_int3(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Steven Rostedt08d636b2011-08-16 09:57:10 -0400472#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedta192cd02012-05-30 13:26:37 -0400473 /*
474 * ftrace must be first, everything else may cause a recursive crash.
475 * See note by declaration of modifying_ftrace_code in ftrace.c
476 */
477 if (unlikely(atomic_read(&modifying_ftrace_code)) &&
478 ftrace_int3_handler(regs))
Steven Rostedt08d636b2011-08-16 09:57:10 -0400479 return;
480#endif
Jiri Kosina17f41572013-07-23 10:09:28 +0200481 if (poke_int3_handler(regs))
482 return;
483
Andy Lutomirski8c840142015-07-03 12:44:32 -0700484 ist_enter(regs);
Linus Torvalds57780772015-09-01 08:40:25 -0700485 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Jason Wesself503b5a2010-05-20 21:04:25 -0500486#ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
Kees Cookc9408262012-03-09 16:07:10 -0800487 if (kgdb_ll_trap(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
488 SIGTRAP) == NOTIFY_STOP)
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200489 goto exit;
Jason Wesself503b5a2010-05-20 21:04:25 -0500490#endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */
Srikar Dronamrajucc3a1bf2011-10-25 19:51:59 +0530491
Masami Hiramatsu6f6343f2014-04-17 17:17:33 +0900492#ifdef CONFIG_KPROBES
493 if (kprobe_int3_handler(regs))
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +0000494 goto exit;
Masami Hiramatsu6f6343f2014-04-17 17:17:33 +0900495#endif
496
Kees Cookc9408262012-03-09 16:07:10 -0800497 if (notify_die(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
498 SIGTRAP) == NOTIFY_STOP)
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200499 goto exit;
Ingo Molnarb5964402008-02-26 11:15:50 +0100500
Steven Rostedt42181182011-12-16 11:43:02 -0500501 /*
502 * Let others (NMI) know that the debug stack is in use
503 * as we may switch to the interrupt stack.
504 */
505 debug_stack_usage_inc();
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100506 preempt_disable();
507 cond_local_irq_enable(regs);
Kees Cookc9408262012-03-09 16:07:10 -0800508 do_trap(X86_TRAP_BP, SIGTRAP, "int3", regs, error_code, NULL);
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100509 cond_local_irq_disable(regs);
510 preempt_enable_no_resched();
Steven Rostedt42181182011-12-16 11:43:02 -0500511 debug_stack_usage_dec();
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200512exit:
Andy Lutomirski8c840142015-07-03 12:44:32 -0700513 ist_exit(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900515NOKPROBE_SYMBOL(do_int3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200517#ifdef CONFIG_X86_64
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100518/*
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800519 * Help handler running on IST stack to switch off the IST stack if the
520 * interrupted code was in user mode. The actual stack switch is done in
521 * entry_64.S
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100522 */
Andy Lutomirski7ddc6a22014-11-24 17:39:06 -0800523asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs)
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200524{
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800525 struct pt_regs *regs = task_pt_regs(current);
526 *regs = *eregs;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200527 return regs;
528}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900529NOKPROBE_SYMBOL(sync_regs);
Andy Lutomirskib645af22014-11-22 18:00:33 -0800530
531struct bad_iret_stack {
532 void *error_entry_ret;
533 struct pt_regs regs;
534};
535
Andy Lutomirski7ddc6a22014-11-24 17:39:06 -0800536asmlinkage __visible notrace
Andy Lutomirskib645af22014-11-22 18:00:33 -0800537struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s)
538{
539 /*
540 * This is called from entry_64.S early in handling a fault
541 * caused by a bad iret to user mode. To handle the fault
542 * correctly, we want move our stack frame to task_pt_regs
543 * and we want to pretend that the exception came from the
544 * iret target.
545 */
546 struct bad_iret_stack *new_stack =
547 container_of(task_pt_regs(current),
548 struct bad_iret_stack, regs);
549
550 /* Copy the IRET target to the new stack. */
551 memmove(&new_stack->regs.ip, (void *)s->regs.sp, 5*8);
552
553 /* Copy the remainder of the stack from the current stack. */
554 memmove(new_stack, s, offsetof(struct bad_iret_stack, regs.ip));
555
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700556 BUG_ON(!user_mode(&new_stack->regs));
Andy Lutomirskib645af22014-11-22 18:00:33 -0800557 return new_stack;
558}
Andy Lutomirski7ddc6a22014-11-24 17:39:06 -0800559NOKPROBE_SYMBOL(fixup_bad_iret);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200560#endif
561
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800562static bool is_sysenter_singlestep(struct pt_regs *regs)
563{
564 /*
565 * We don't try for precision here. If we're anywhere in the region of
566 * code that can be single-stepped in the SYSENTER entry path, then
567 * assume that this is a useless single-step trap due to SYSENTER
568 * being invoked with TF set. (We don't know in advance exactly
569 * which instructions will be hit because BTF could plausibly
570 * be set.)
571 */
572#ifdef CONFIG_X86_32
573 return (regs->ip - (unsigned long)__begin_SYSENTER_singlestep_region) <
574 (unsigned long)__end_SYSENTER_singlestep_region -
575 (unsigned long)__begin_SYSENTER_singlestep_region;
576#elif defined(CONFIG_IA32_EMULATION)
577 return (regs->ip - (unsigned long)entry_SYSENTER_compat) <
578 (unsigned long)__end_entry_SYSENTER_compat -
579 (unsigned long)entry_SYSENTER_compat;
580#else
581 return false;
582#endif
583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585/*
586 * Our handling of the processor debug registers is non-trivial.
587 * We do not clear them on entry and exit from the kernel. Therefore
588 * it is possible to get a watchpoint trap here from inside the kernel.
589 * However, the code in ./ptrace.c has ensured that the user can
590 * only set watchpoints on userspace addresses. Therefore the in-kernel
591 * watchpoint trap can only occur in code which is reading/writing
592 * from user space. Such code must not hold kernel locks (since it
593 * can equally take a page fault), therefore it is safe to call
594 * force_sig_info even though that claims and releases locks.
Ingo Molnarb5964402008-02-26 11:15:50 +0100595 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * Code in ./signal.c ensures that the debug control register
597 * is restored before we deliver any signal, and therefore that
598 * user code runs with the correct debug control register even though
599 * we clear it here.
600 *
601 * Being careful here means that we don't have to be as careful in a
602 * lot of more complicated places (task switching can be a bit lazy
603 * about restoring all the debug state, and ptrace doesn't have to
604 * find every occurrence of the TF bit that could be saved away even
605 * by user code)
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +0200606 *
607 * May run on IST stack.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900609dotraplinkage void do_debug(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 struct task_struct *tsk = current;
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200612 int user_icebp = 0;
K.Prasad08d68322009-06-01 23:44:08 +0530613 unsigned long dr6;
Srinivasa Dsda654b72008-09-23 15:23:52 +0530614 int si_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Andy Lutomirski8c840142015-07-03 12:44:32 -0700616 ist_enter(regs);
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +0000617
K.Prasad08d68322009-06-01 23:44:08 +0530618 get_debugreg(dr6, 6);
Andy Lutomirski8bb56432016-03-09 19:00:29 -0800619 /*
620 * The Intel SDM says:
621 *
622 * Certain debug exceptions may clear bits 0-3. The remaining
623 * contents of the DR6 register are never cleared by the
624 * processor. To avoid confusion in identifying debug
625 * exceptions, debug handlers should clear the register before
626 * returning to the interrupted task.
627 *
628 * Keep it simple: clear DR6 immediately.
629 */
630 set_debugreg(0, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
K.Prasad40f92492010-01-28 16:44:01 +0530632 /* Filter out all the reserved bits which are preset to 1 */
633 dr6 &= ~DR6_RESERVED;
634
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200635 /*
Andy Lutomirski81edd9f2016-03-09 19:00:28 -0800636 * The SDM says "The processor clears the BTF flag when it
637 * generates a debug exception." Clear TIF_BLOCKSTEP to keep
638 * TIF_BLOCKSTEP in sync with the hardware BTF flag.
639 */
640 clear_tsk_thread_flag(tsk, TIF_BLOCKSTEP);
641
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800642 if (unlikely(!user_mode(regs) && (dr6 & DR_STEP) &&
643 is_sysenter_singlestep(regs))) {
644 dr6 &= ~DR_STEP;
645 if (!dr6)
646 goto exit;
647 /*
648 * else we might have gotten a single-step trap and hit a
649 * watchpoint at the same time, in which case we should fall
650 * through and handle the watchpoint.
651 */
652 }
653
Andy Lutomirski81edd9f2016-03-09 19:00:28 -0800654 /*
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200655 * If dr6 has no reason to give us about the origin of this trap,
656 * then it's very likely the result of an icebp/int01 trap.
657 * User wants a sigtrap for that.
658 */
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700659 if (!dr6 && user_mode(regs))
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200660 user_icebp = 1;
661
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800662 /* Catch kmemcheck conditions! */
Ingo Molnareadb8a02009-06-17 12:52:15 +0200663 if ((dr6 & DR_STEP) && kmemcheck_trap(regs))
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200664 goto exit;
Vegard Nossumf8561292008-04-04 00:53:23 +0200665
K.Prasad08d68322009-06-01 23:44:08 +0530666 /* Store the virtualized DR6 value */
667 tsk->thread.debugreg6 = dr6;
668
Masami Hiramatsu6f6343f2014-04-17 17:17:33 +0900669#ifdef CONFIG_KPROBES
670 if (kprobe_debug_handler(regs))
671 goto exit;
672#endif
673
Rusty Russell5a802e12013-06-16 14:12:47 +0930674 if (notify_die(DIE_DEBUG, "debug", regs, (long)&dr6, error_code,
K.Prasad62edab92009-06-01 23:47:06 +0530675 SIGTRAP) == NOTIFY_STOP)
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200676 goto exit;
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200677
Steven Rostedt42181182011-12-16 11:43:02 -0500678 /*
679 * Let others (NMI) know that the debug stack is in use
680 * as we may switch to the interrupt stack.
681 */
682 debug_stack_usage_inc();
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /* It's safe to allow irq's after DR6 has been saved */
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100685 preempt_disable();
686 cond_local_irq_enable(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Andy Lutomirskid74ef112015-03-18 18:33:35 -0700688 if (v8086_mode(regs)) {
Kees Cookc9408262012-03-09 16:07:10 -0800689 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code,
690 X86_TRAP_DB);
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100691 cond_local_irq_disable(regs);
692 preempt_enable_no_resched();
Steven Rostedt42181182011-12-16 11:43:02 -0500693 debug_stack_usage_dec();
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200694 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800697 if (WARN_ON_ONCE((dr6 & DR_STEP) && !user_mode(regs))) {
698 /*
699 * Historical junk that used to handle SYSENTER single-stepping.
700 * This should be unreachable now. If we survive for a while
701 * without anyone hitting this warning, we'll turn this into
702 * an oops.
703 */
K.Prasad08d68322009-06-01 23:44:08 +0530704 tsk->thread.debugreg6 &= ~DR_STEP;
705 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
706 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
K.Prasad08d68322009-06-01 23:44:08 +0530708 si_code = get_si_code(tsk->thread.debugreg6);
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200709 if (tsk->thread.debugreg6 & (DR_STEP | DR_TRAP_BITS) || user_icebp)
K.Prasad08d68322009-06-01 23:44:08 +0530710 send_sigtrap(tsk, regs, error_code, si_code);
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100711 cond_local_irq_disable(regs);
712 preempt_enable_no_resched();
Steven Rostedt42181182011-12-16 11:43:02 -0500713 debug_stack_usage_dec();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200715exit:
Andy Lutomirski2a41aa42016-03-09 19:00:33 -0800716#if defined(CONFIG_X86_32)
717 /*
718 * This is the most likely code path that involves non-trivial use
719 * of the SYSENTER stack. Check that we haven't overrun it.
720 */
721 WARN(this_cpu_read(cpu_tss.SYSENTER_stack_canary) != STACK_END_MAGIC,
722 "Overran or corrupted SYSENTER stack\n");
723#endif
Andy Lutomirski8c840142015-07-03 12:44:32 -0700724 ist_exit(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900726NOKPROBE_SYMBOL(do_debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728/*
729 * Note that we play around with the 'TS' bit in an attempt to get
730 * the correct behaviour even in the presence of the asynchronous
731 * IRQ13 behaviour
732 */
Oleg Nesterov5e1b05b2014-05-08 20:34:00 +0200733static void math_error(struct pt_regs *regs, int error_code, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Brian Gerste2e75c92010-03-21 09:00:45 -0400735 struct task_struct *task = current;
Ingo Molnare1cebad2015-04-30 09:29:38 +0200736 struct fpu *fpu = &task->thread.fpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 siginfo_t info;
Kees Cookc9408262012-03-09 16:07:10 -0800738 char *str = (trapnr == X86_TRAP_MF) ? "fpu exception" :
739 "simd exception";
Brian Gerste2e75c92010-03-21 09:00:45 -0400740
741 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, SIGFPE) == NOTIFY_STOP)
742 return;
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100743 cond_local_irq_enable(regs);
Brian Gerste2e75c92010-03-21 09:00:45 -0400744
Ingo Molnare1cebad2015-04-30 09:29:38 +0200745 if (!user_mode(regs)) {
Brian Gerste2e75c92010-03-21 09:00:45 -0400746 if (!fixup_exception(regs)) {
747 task->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530748 task->thread.trap_nr = trapnr;
Brian Gerste2e75c92010-03-21 09:00:45 -0400749 die(str, regs, error_code);
750 }
751 return;
752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /*
755 * Save the info for the exception handler and clear the error.
756 */
Ingo Molnare1cebad2015-04-30 09:29:38 +0200757 fpu__save(fpu);
758
759 task->thread.trap_nr = trapnr;
Brian Gerst9b6dba92010-03-21 09:00:44 -0400760 task->thread.error_code = error_code;
Ingo Molnare1cebad2015-04-30 09:29:38 +0200761 info.si_signo = SIGFPE;
762 info.si_errno = 0;
763 info.si_addr = (void __user *)uprobe_get_trap_addr(regs);
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800764
Ingo Molnare1cebad2015-04-30 09:29:38 +0200765 info.si_code = fpu__exception_code(fpu, trapnr);
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800766
Ingo Molnare1cebad2015-04-30 09:29:38 +0200767 /* Retry when we get spurious exceptions: */
768 if (!info.si_code)
Kees Cookc9408262012-03-09 16:07:10 -0800769 return;
Ingo Molnare1cebad2015-04-30 09:29:38 +0200770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 force_sig_info(SIGFPE, &info, task);
772}
773
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200774dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Linus Torvalds57780772015-09-01 08:40:25 -0700776 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Kees Cookc9408262012-03-09 16:07:10 -0800777 math_error(regs, error_code, X86_TRAP_MF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200780dotraplinkage void
781do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Linus Torvalds57780772015-09-01 08:40:25 -0700783 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Kees Cookc9408262012-03-09 16:07:10 -0800784 math_error(regs, error_code, X86_TRAP_XF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200787dotraplinkage void
788do_spurious_interrupt_bug(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100790 cond_local_irq_enable(regs);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200791}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Masami Hiramatsu93266382014-04-17 17:18:14 +0900793dotraplinkage void
Brian Gerstaa78bcf2009-02-10 09:51:45 -0500794do_device_not_available(struct pt_regs *regs, long error_code)
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200795{
Linus Torvalds57780772015-09-01 08:40:25 -0700796 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700797 BUG_ON(use_eager_fpu());
Suresh Siddha304bced2012-08-24 14:13:02 -0700798
Brian Gersta334fe42010-09-03 21:17:15 -0400799#ifdef CONFIG_MATH_EMULATION
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200800 if (read_cr0() & X86_CR0_EM) {
Tejun Heod3157602009-02-09 22:17:39 +0900801 struct math_emu_info info = { };
802
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100803 cond_local_irq_enable(regs);
Tejun Heod3157602009-02-09 22:17:39 +0900804
Brian Gerstaa78bcf2009-02-10 09:51:45 -0500805 info.regs = regs;
Tejun Heod3157602009-02-09 22:17:39 +0900806 math_emulate(&info);
Brian Gersta334fe42010-09-03 21:17:15 -0400807 return;
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200808 }
Brian Gersta334fe42010-09-03 21:17:15 -0400809#endif
Ingo Molnare1884d62015-05-04 11:49:58 +0200810 fpu__restore(&current->thread.fpu); /* interrupts still off */
Brian Gersta334fe42010-09-03 21:17:15 -0400811#ifdef CONFIG_X86_32
Alexander Kuleshovd99e1bd2016-01-25 20:41:46 +0100812 cond_local_irq_enable(regs);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200813#endif
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200814}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900815NOKPROBE_SYMBOL(do_device_not_available);
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200816
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200817#ifdef CONFIG_X86_32
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200818dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code)
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200819{
820 siginfo_t info;
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200821
Linus Torvalds57780772015-09-01 08:40:25 -0700822 RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU");
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200823 local_irq_enable();
824
825 info.si_signo = SIGILL;
826 info.si_errno = 0;
827 info.si_code = ILL_BADSTK;
Hannes Ederfc6fcdf2009-02-22 01:00:57 +0100828 info.si_addr = NULL;
Kees Cookc9408262012-03-09 16:07:10 -0800829 if (notify_die(DIE_TRAP, "iret exception", regs, error_code,
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200830 X86_TRAP_IRET, SIGILL) != NOTIFY_STOP) {
831 do_trap(X86_TRAP_IRET, SIGILL, "iret exception", regs, error_code,
832 &info);
833 }
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200834}
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200835#endif
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200836
Jan Kiszka29c84392010-05-20 21:04:29 -0500837/* Set of traps needed for early debugging. */
838void __init early_trap_init(void)
839{
Wang Nanb4d83272015-02-26 13:49:39 +0800840 /*
Wang Nan5eca7452015-02-27 12:19:49 +0800841 * Don't use IST to set DEBUG_STACK as it doesn't work until TSS
842 * is ready in cpu_init() <-- trap_init(). Before trap_init(),
843 * CPU runs at ring 0 so it is impossible to hit an invalid
844 * stack. Using the original stack works well enough at this
845 * early stage. DEBUG_STACK will be equipped after cpu_init() in
Wang Nanb4d83272015-02-26 13:49:39 +0800846 * trap_init().
Wang Nan5eca7452015-02-27 12:19:49 +0800847 *
848 * We don't need to set trace_idt_table like set_intr_gate(),
849 * since we don't have trace_debug and it will be reset to
850 * 'debug' in trap_init() by set_intr_gate_ist().
Wang Nanb4d83272015-02-26 13:49:39 +0800851 */
Wang Nan5eca7452015-02-27 12:19:49 +0800852 set_intr_gate_notrace(X86_TRAP_DB, debug);
Jan Kiszka29c84392010-05-20 21:04:29 -0500853 /* int3 can be called from all */
Wang Nan5eca7452015-02-27 12:19:49 +0800854 set_system_intr_gate(X86_TRAP_BP, &int3);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800855#ifdef CONFIG_X86_32
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400856 set_intr_gate(X86_TRAP_PF, page_fault);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800857#endif
Jan Kiszka29c84392010-05-20 21:04:29 -0500858 load_idt(&idt_descr);
859}
860
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800861void __init early_trap_pf_init(void)
862{
863#ifdef CONFIG_X86_64
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400864 set_intr_gate(X86_TRAP_PF, page_fault);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800865#endif
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868void __init trap_init(void)
869{
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200870 int i;
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872#ifdef CONFIG_EISA
Ingo Molnar927222b2008-01-30 13:33:49 +0100873 void __iomem *p = early_ioremap(0x0FFFD9, 4);
Ingo Molnarb5964402008-02-26 11:15:50 +0100874
875 if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 EISA_bus = 1;
Ingo Molnar927222b2008-01-30 13:33:49 +0100877 early_iounmap(p, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878#endif
879
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400880 set_intr_gate(X86_TRAP_DE, divide_error);
Kees Cookc9408262012-03-09 16:07:10 -0800881 set_intr_gate_ist(X86_TRAP_NMI, &nmi, NMI_STACK);
Alexander van Heukelum699d2932008-10-03 22:00:32 +0200882 /* int4 can be called from all */
Kees Cookc9408262012-03-09 16:07:10 -0800883 set_system_intr_gate(X86_TRAP_OF, &overflow);
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400884 set_intr_gate(X86_TRAP_BR, bounds);
885 set_intr_gate(X86_TRAP_UD, invalid_op);
886 set_intr_gate(X86_TRAP_NM, device_not_available);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200887#ifdef CONFIG_X86_32
Kees Cookc9408262012-03-09 16:07:10 -0800888 set_task_gate(X86_TRAP_DF, GDT_ENTRY_DOUBLEFAULT_TSS);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200889#else
Kees Cookc9408262012-03-09 16:07:10 -0800890 set_intr_gate_ist(X86_TRAP_DF, &double_fault, DOUBLEFAULT_STACK);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200891#endif
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400892 set_intr_gate(X86_TRAP_OLD_MF, coprocessor_segment_overrun);
893 set_intr_gate(X86_TRAP_TS, invalid_TSS);
894 set_intr_gate(X86_TRAP_NP, segment_not_present);
Andy Lutomirski6f442be2014-11-22 18:00:32 -0800895 set_intr_gate(X86_TRAP_SS, stack_segment);
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400896 set_intr_gate(X86_TRAP_GP, general_protection);
897 set_intr_gate(X86_TRAP_SPURIOUS, spurious_interrupt_bug);
898 set_intr_gate(X86_TRAP_MF, coprocessor_error);
899 set_intr_gate(X86_TRAP_AC, alignment_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900#ifdef CONFIG_X86_MCE
Kees Cookc9408262012-03-09 16:07:10 -0800901 set_intr_gate_ist(X86_TRAP_MC, &machine_check, MCE_STACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902#endif
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400903 set_intr_gate(X86_TRAP_XF, simd_coprocessor_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800905 /* Reserve all the builtin and the syscall vector: */
906 for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
907 set_bit(i, used_vectors);
908
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200909#ifdef CONFIG_IA32_EMULATION
Ingo Molnar2cd23552015-06-08 08:28:07 +0200910 set_system_intr_gate(IA32_SYSCALL_VECTOR, entry_INT80_compat);
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800911 set_bit(IA32_SYSCALL_VECTOR, used_vectors);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200912#endif
913
914#ifdef CONFIG_X86_32
Andy Lutomirskia798f092016-03-09 13:24:32 -0800915 set_system_intr_gate(IA32_SYSCALL_VECTOR, entry_INT80_32);
Brian Gerst51bb9282015-05-09 11:36:52 -0400916 set_bit(IA32_SYSCALL_VECTOR, used_vectors);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200917#endif
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 /*
Kees Cook4eefbe72013-04-10 12:24:22 -0700920 * Set the IDT descriptor to a fixed read-only location, so that the
921 * "sidt" instruction will not leak the location of the kernel, and
922 * to defend the IDT against arbitrary memory write vulnerabilities.
923 * It will be reloaded in cpu_init() */
924 __set_fixmap(FIX_RO_IDT, __pa_symbol(idt_table), PAGE_KERNEL_RO);
925 idt_descr.address = fix_to_virt(FIX_RO_IDT);
926
927 /*
Ingo Molnarb5964402008-02-26 11:15:50 +0100928 * Should be a barrier for any external CPU state:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
930 cpu_init();
931
Wang Nanb4d83272015-02-26 13:49:39 +0800932 /*
933 * X86_TRAP_DB and X86_TRAP_BP have been set
Wang Nan5eca7452015-02-27 12:19:49 +0800934 * in early_trap_init(). However, ITS works only after
Wang Nanb4d83272015-02-26 13:49:39 +0800935 * cpu_init() loads TSS. See comments in early_trap_init().
936 */
937 set_intr_gate_ist(X86_TRAP_DB, &debug, DEBUG_STACK);
938 /* int3 can be called from all */
939 set_system_intr_gate_ist(X86_TRAP_BP, &int3, DEBUG_STACK);
940
Thomas Gleixner428cf902009-08-20 10:35:46 +0200941 x86_init.irqs.trap_init();
Steven Rostedt228bdaa2011-12-09 03:02:19 -0500942
943#ifdef CONFIG_X86_64
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400944 memcpy(&debug_idt_table, &idt_table, IDT_ENTRIES * 16);
Kees Cookc9408262012-03-09 16:07:10 -0800945 set_nmi_gate(X86_TRAP_DB, &debug);
946 set_nmi_gate(X86_TRAP_BP, &int3);
Steven Rostedt228bdaa2011-12-09 03:02:19 -0500947#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}