blob: 28f3e5ffc55ddce45e19570fed420c090acfdb6f [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>
57#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080058#include <asm/fpu-internal.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +090059#include <asm/mce.h>
Kees Cook4eefbe72013-04-10 12:24:22 -070060#include <asm/fixmap.h>
Ingo Molnar1164dd02009-01-28 19:34:09 +010061#include <asm/mach_traps.h>
Jiri Kosina17f41572013-07-23 10:09:28 +020062#include <asm/alternative.h>
Dave Hansenfe3d1972014-11-14 07:18:29 -080063#include <asm/mpx.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020064
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020065#ifdef CONFIG_X86_64
Thomas Gleixner428cf902009-08-20 10:35:46 +020066#include <asm/x86_init.h>
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020067#include <asm/pgalloc.h>
68#include <asm/proto.h>
Kees Cook4df05f32013-07-16 11:34:41 -070069
70/* No need to be aligned, but done to keep all IDTs defined the same way. */
71gate_desc debug_idt_table[NR_VECTORS] __page_aligned_bss;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020072#else
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020073#include <asm/processor-flags.h>
Ingo Molnar8e6dafd2009-02-23 00:34:39 +010074#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076asmlinkage int system_call(void);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020077#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Kees Cook4df05f32013-07-16 11:34:41 -070079/* Must be page-aligned because the real IDT is used in a fixmap. */
80gate_desc idt_table[NR_VECTORS] __page_aligned_bss;
81
Yinghai Lub77b8812008-12-19 15:23:44 -080082DECLARE_BITMAP(used_vectors, NR_VECTORS);
83EXPORT_SYMBOL_GPL(used_vectors);
84
Alexander van Heukelum762db432008-09-09 21:55:55 +020085static inline void conditional_sti(struct pt_regs *regs)
86{
87 if (regs->flags & X86_EFLAGS_IF)
88 local_irq_enable();
89}
90
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +020091static inline void preempt_conditional_sti(struct pt_regs *regs)
92{
Peter Zijlstrabdb43802013-09-10 12:15:23 +020093 preempt_count_inc();
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +020094 if (regs->flags & X86_EFLAGS_IF)
95 local_irq_enable();
96}
97
Thomas Gleixnerbe716612009-01-13 23:36:34 +010098static inline void conditional_cli(struct pt_regs *regs)
99{
100 if (regs->flags & X86_EFLAGS_IF)
101 local_irq_disable();
102}
103
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200104static inline void preempt_conditional_cli(struct pt_regs *regs)
105{
106 if (regs->flags & X86_EFLAGS_IF)
107 local_irq_disable();
Peter Zijlstrabdb43802013-09-10 12:15:23 +0200108 preempt_count_dec();
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200109}
110
Masami Hiramatsu93266382014-04-17 17:18:14 +0900111static nokprobe_inline int
Frederic Weisbeckerc416ddf2012-09-25 14:51:19 +0200112do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str,
113 struct pt_regs *regs, long error_code)
114{
115#ifdef CONFIG_X86_32
116 if (regs->flags & X86_VM_MASK) {
117 /*
118 * Traps 0, 1, 3, 4, and 5 should be forwarded to vm86.
119 * On nmi (interrupt 2), do_trap should not be called.
120 */
121 if (trapnr < X86_TRAP_UD) {
122 if (!handle_vm86_trap((struct kernel_vm86_regs *) regs,
123 error_code, trapnr))
124 return 0;
125 }
126 return -1;
127 }
128#endif
129 if (!user_mode(regs)) {
130 if (!fixup_exception(regs)) {
131 tsk->thread.error_code = error_code;
132 tsk->thread.trap_nr = trapnr;
133 die(str, regs, error_code);
134 }
135 return 0;
136 }
137
138 return -1;
139}
140
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200141static siginfo_t *fill_trap_info(struct pt_regs *regs, int signr, int trapnr,
142 siginfo_t *info)
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200143{
144 unsigned long siaddr;
145 int sicode;
146
147 switch (trapnr) {
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200148 default:
149 return SEND_SIG_PRIV;
150
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200151 case X86_TRAP_DE:
152 sicode = FPE_INTDIV;
Oleg Nesterovb02ef202014-05-12 18:24:45 +0200153 siaddr = uprobe_get_trap_addr(regs);
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200154 break;
155 case X86_TRAP_UD:
156 sicode = ILL_ILLOPN;
Oleg Nesterovb02ef202014-05-12 18:24:45 +0200157 siaddr = uprobe_get_trap_addr(regs);
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200158 break;
159 case X86_TRAP_AC:
160 sicode = BUS_ADRALN;
161 siaddr = 0;
162 break;
163 }
164
165 info->si_signo = signr;
166 info->si_errno = 0;
167 info->si_code = sicode;
168 info->si_addr = (void __user *)siaddr;
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200169 return info;
Oleg Nesterov958d3d72014-05-07 17:59:39 +0200170}
171
Masami Hiramatsu93266382014-04-17 17:18:14 +0900172static void
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200173do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
Ingo Molnarb5964402008-02-26 11:15:50 +0100174 long error_code, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700176 struct task_struct *tsk = current;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Frederic Weisbeckerc416ddf2012-09-25 14:51:19 +0200179 if (!do_trap_no_signal(tsk, trapnr, str, regs, error_code))
180 return;
Ingo Molnarb5964402008-02-26 11:15:50 +0100181 /*
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530182 * We want error_code and trap_nr set for userspace faults and
Ingo Molnarb5964402008-02-26 11:15:50 +0100183 * kernelspace faults which result in die(), but not
184 * kernelspace faults which are fixed up. die() gives the
185 * process no chance to handle the signal and notice the
186 * kernel fault information, so that won't result in polluting
187 * the information about previously queued, but not yet
188 * delivered, faults. See also do_general_protection below.
189 */
190 tsk->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530191 tsk->thread.trap_nr = trapnr;
Ingo Molnarb5964402008-02-26 11:15:50 +0100192
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200193#ifdef CONFIG_X86_64
194 if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
195 printk_ratelimit()) {
Joe Perchesc767a542012-05-21 19:50:07 -0700196 pr_info("%s[%d] trap %s ip:%lx sp:%lx error:%lx",
197 tsk->comm, tsk->pid, str,
198 regs->ip, regs->sp, error_code);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200199 print_vma_addr(" in ", regs->ip);
Joe Perchesc767a542012-05-21 19:50:07 -0700200 pr_cont("\n");
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200201 }
202#endif
203
Oleg Nesterov38cad572014-05-07 16:47:09 +0200204 force_sig_info(signr, info ?: SEND_SIG_PRIV, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900206NOKPROBE_SYMBOL(do_trap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Oleg Nesterovdff07962014-05-07 17:21:34 +0200208static void do_error_trap(struct pt_regs *regs, long error_code, char *str,
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200209 unsigned long trapnr, int signr)
Oleg Nesterovdff07962014-05-07 17:21:34 +0200210{
211 enum ctx_state prev_state = exception_enter();
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200212 siginfo_t info;
Oleg Nesterovdff07962014-05-07 17:21:34 +0200213
214 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) !=
215 NOTIFY_STOP) {
216 conditional_sti(regs);
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200217 do_trap(trapnr, signr, str, regs, error_code,
218 fill_trap_info(regs, signr, trapnr, &info));
Oleg Nesterovdff07962014-05-07 17:21:34 +0200219 }
220
221 exception_exit(prev_state);
222}
223
Ingo Molnarb5964402008-02-26 11:15:50 +0100224#define DO_ERROR(trapnr, signr, str, name) \
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200225dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \
Ingo Molnarb5964402008-02-26 11:15:50 +0100226{ \
Oleg Nesterov1c326c42014-05-08 20:04:11 +0200227 do_error_trap(regs, error_code, str, trapnr, signr); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200230DO_ERROR(X86_TRAP_DE, SIGFPE, "divide error", divide_error)
231DO_ERROR(X86_TRAP_OF, SIGSEGV, "overflow", overflow)
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200232DO_ERROR(X86_TRAP_UD, SIGILL, "invalid opcode", invalid_op)
233DO_ERROR(X86_TRAP_OLD_MF, SIGFPE, "coprocessor segment overrun",coprocessor_segment_overrun)
234DO_ERROR(X86_TRAP_TS, SIGSEGV, "invalid TSS", invalid_TSS)
235DO_ERROR(X86_TRAP_NP, SIGBUS, "segment not present", segment_not_present)
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200236DO_ERROR(X86_TRAP_SS, SIGBUS, "stack segment", stack_segment)
Oleg Nesterov0eb14832014-05-08 20:12:24 +0200237DO_ERROR(X86_TRAP_AC, SIGBUS, "alignment check", alignment_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200239#ifdef CONFIG_X86_64
240/* Runs on IST stack */
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200241dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code)
242{
243 static const char str[] = "double fault";
244 struct task_struct *tsk = current;
245
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800246#ifdef CONFIG_X86_ESPFIX64
247 extern unsigned char native_irq_return_iret[];
248
249 /*
250 * If IRET takes a non-IST fault on the espfix64 stack, then we
251 * end up promoting it to a doublefault. In that case, modify
252 * the stack to make it look like we just entered the #GP
253 * handler from user space, similar to bad_iret.
254 */
255 if (((long)regs->sp >> PGDIR_SHIFT) == ESPFIX_PGD_ENTRY &&
256 regs->cs == __KERNEL_CS &&
257 regs->ip == (unsigned long)native_irq_return_iret)
258 {
259 struct pt_regs *normal_regs = task_pt_regs(current);
260
261 /* Fake a #GP(0) from userspace. */
262 memmove(&normal_regs->ip, (void *)regs->sp, 5*8);
263 normal_regs->orig_ax = 0; /* Missing (lost) #GP error code */
264 regs->ip = (unsigned long)general_protection;
265 regs->sp = (unsigned long)&normal_regs->orig_ax;
266 return;
267 }
268#endif
269
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100270 exception_enter();
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200271 /* Return not checked because double check cannot be ignored */
Kees Cookc9408262012-03-09 16:07:10 -0800272 notify_die(DIE_TRAP, str, regs, error_code, X86_TRAP_DF, SIGSEGV);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200273
274 tsk->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530275 tsk->thread.trap_nr = X86_TRAP_DF;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200276
Borislav Petkov4d067d82013-05-09 12:02:29 +0200277#ifdef CONFIG_DOUBLEFAULT
278 df_debug(regs, error_code);
279#endif
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100280 /*
281 * This is always a kernel trap and never fixable (and thus must
282 * never return).
283 */
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200284 for (;;)
285 die(str, regs, error_code);
286}
287#endif
288
Dave Hansenfe3d1972014-11-14 07:18:29 -0800289dotraplinkage void do_bounds(struct pt_regs *regs, long error_code)
290{
291 struct task_struct *tsk = current;
292 struct xsave_struct *xsave_buf;
293 enum ctx_state prev_state;
294 struct bndcsr *bndcsr;
295 siginfo_t *info;
296
297 prev_state = exception_enter();
298 if (notify_die(DIE_TRAP, "bounds", regs, error_code,
299 X86_TRAP_BR, SIGSEGV) == NOTIFY_STOP)
300 goto exit;
301 conditional_sti(regs);
302
303 if (!user_mode(regs))
304 die("bounds", regs, error_code);
305
306 if (!cpu_feature_enabled(X86_FEATURE_MPX)) {
307 /* The exception is not from Intel MPX */
308 goto exit_trap;
309 }
310
311 /*
312 * We need to look at BNDSTATUS to resolve this exception.
313 * It is not directly accessible, though, so we need to
314 * do an xsave and then pull it out of the xsave buffer.
315 */
316 fpu_save_init(&tsk->thread.fpu);
317 xsave_buf = &(tsk->thread.fpu.state->xsave);
318 bndcsr = get_xsave_addr(xsave_buf, XSTATE_BNDCSR);
319 if (!bndcsr)
320 goto exit_trap;
321
322 /*
323 * The error code field of the BNDSTATUS register communicates status
324 * information of a bound range exception #BR or operation involving
325 * bound directory.
326 */
327 switch (bndcsr->bndstatus & MPX_BNDSTA_ERROR_CODE) {
328 case 2: /* Bound directory has invalid entry. */
329 if (mpx_handle_bd_fault(xsave_buf))
330 goto exit_trap;
331 break; /* Success, it was handled */
332 case 1: /* Bound violation. */
333 info = mpx_generate_siginfo(regs, xsave_buf);
Dan Carpentere10abb22014-11-25 20:21:14 +0300334 if (IS_ERR(info)) {
Dave Hansenfe3d1972014-11-14 07:18:29 -0800335 /*
336 * We failed to decode the MPX instruction. Act as if
337 * the exception was not caused by MPX.
338 */
339 goto exit_trap;
340 }
341 /*
342 * Success, we decoded the instruction and retrieved
343 * an 'info' containing the address being accessed
344 * which caused the exception. This information
345 * allows and application to possibly handle the
346 * #BR exception itself.
347 */
348 do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, info);
349 kfree(info);
350 break;
351 case 0: /* No exception caused by Intel MPX operations. */
352 goto exit_trap;
353 default:
354 die("bounds", regs, error_code);
355 }
356
357exit:
358 exception_exit(prev_state);
359 return;
360exit_trap:
361 /*
362 * This path out is for all the cases where we could not
363 * handle the exception in some way (like allocating a
364 * table or telling userspace about it. We will also end
365 * up here if the kernel has MPX turned off at compile
366 * time..
367 */
368 do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, NULL);
369 exception_exit(prev_state);
370}
371
Masami Hiramatsu93266382014-04-17 17:18:14 +0900372dotraplinkage void
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200373do_general_protection(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200375 struct task_struct *tsk;
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100376 enum ctx_state prev_state;
Ingo Molnarb5964402008-02-26 11:15:50 +0100377
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100378 prev_state = exception_enter();
Alexander van Heukelumc6df0d72008-09-09 21:56:07 +0200379 conditional_sti(regs);
380
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200381#ifdef CONFIG_X86_32
Frederic Weisbeckeref3f62882012-09-24 21:05:52 +0200382 if (regs->flags & X86_VM_MASK) {
383 local_irq_enable();
384 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200385 goto exit;
Frederic Weisbeckeref3f62882012-09-24 21:05:52 +0200386 }
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200387#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200389 tsk = current;
Frederic Weisbeckeref3f62882012-09-24 21:05:52 +0200390 if (!user_mode(regs)) {
391 if (fixup_exception(regs))
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200392 goto exit;
Frederic Weisbeckeref3f62882012-09-24 21:05:52 +0200393
394 tsk->thread.error_code = error_code;
395 tsk->thread.trap_nr = X86_TRAP_GP;
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200396 if (notify_die(DIE_GPF, "general protection fault", regs, error_code,
397 X86_TRAP_GP, SIGSEGV) != NOTIFY_STOP)
Frederic Weisbeckeref3f62882012-09-24 21:05:52 +0200398 die("general protection fault", regs, error_code);
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200399 goto exit;
Frederic Weisbeckeref3f62882012-09-24 21:05:52 +0200400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200402 tsk->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530403 tsk->thread.trap_nr = X86_TRAP_GP;
Ingo Molnarb5964402008-02-26 11:15:50 +0100404
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200405 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
406 printk_ratelimit()) {
Joe Perchesc767a542012-05-21 19:50:07 -0700407 pr_info("%s[%d] general protection ip:%lx sp:%lx error:%lx",
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200408 tsk->comm, task_pid_nr(tsk),
409 regs->ip, regs->sp, error_code);
Andi Kleen03252912008-01-30 13:33:18 +0100410 print_vma_addr(" in ", regs->ip);
Joe Perchesc767a542012-05-21 19:50:07 -0700411 pr_cont("\n");
Andi Kleen03252912008-01-30 13:33:18 +0100412 }
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200413
Oleg Nesterov38cad572014-05-07 16:47:09 +0200414 force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk);
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200415exit:
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100416 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900418NOKPROBE_SYMBOL(do_general_protection);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +0200420/* May run on IST stack. */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900421dotraplinkage void notrace do_int3(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100423 enum ctx_state prev_state;
424
Steven Rostedt08d636b2011-08-16 09:57:10 -0400425#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedta192cd02012-05-30 13:26:37 -0400426 /*
427 * ftrace must be first, everything else may cause a recursive crash.
428 * See note by declaration of modifying_ftrace_code in ftrace.c
429 */
430 if (unlikely(atomic_read(&modifying_ftrace_code)) &&
431 ftrace_int3_handler(regs))
Steven Rostedt08d636b2011-08-16 09:57:10 -0400432 return;
433#endif
Jiri Kosina17f41572013-07-23 10:09:28 +0200434 if (poke_int3_handler(regs))
435 return;
436
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +0000437 prev_state = exception_enter();
Jason Wesself503b5a2010-05-20 21:04:25 -0500438#ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
Kees Cookc9408262012-03-09 16:07:10 -0800439 if (kgdb_ll_trap(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
440 SIGTRAP) == NOTIFY_STOP)
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200441 goto exit;
Jason Wesself503b5a2010-05-20 21:04:25 -0500442#endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */
Srikar Dronamrajucc3a1bf2011-10-25 19:51:59 +0530443
Masami Hiramatsu6f6343f2014-04-17 17:17:33 +0900444#ifdef CONFIG_KPROBES
445 if (kprobe_int3_handler(regs))
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +0000446 goto exit;
Masami Hiramatsu6f6343f2014-04-17 17:17:33 +0900447#endif
448
Kees Cookc9408262012-03-09 16:07:10 -0800449 if (notify_die(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
450 SIGTRAP) == NOTIFY_STOP)
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200451 goto exit;
Ingo Molnarb5964402008-02-26 11:15:50 +0100452
Steven Rostedt42181182011-12-16 11:43:02 -0500453 /*
454 * Let others (NMI) know that the debug stack is in use
455 * as we may switch to the interrupt stack.
456 */
457 debug_stack_usage_inc();
Alexander van Heukelum4915a352008-10-03 22:00:34 +0200458 preempt_conditional_sti(regs);
Kees Cookc9408262012-03-09 16:07:10 -0800459 do_trap(X86_TRAP_BP, SIGTRAP, "int3", regs, error_code, NULL);
Alexander van Heukelum4915a352008-10-03 22:00:34 +0200460 preempt_conditional_cli(regs);
Steven Rostedt42181182011-12-16 11:43:02 -0500461 debug_stack_usage_dec();
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200462exit:
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100463 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900465NOKPROBE_SYMBOL(do_int3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200467#ifdef CONFIG_X86_64
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100468/*
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800469 * Help handler running on IST stack to switch off the IST stack if the
470 * interrupted code was in user mode. The actual stack switch is done in
471 * entry_64.S
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100472 */
Andy Lutomirski7ddc6a22014-11-24 17:39:06 -0800473asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs)
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200474{
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800475 struct pt_regs *regs = task_pt_regs(current);
476 *regs = *eregs;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200477 return regs;
478}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900479NOKPROBE_SYMBOL(sync_regs);
Andy Lutomirskib645af22014-11-22 18:00:33 -0800480
481struct bad_iret_stack {
482 void *error_entry_ret;
483 struct pt_regs regs;
484};
485
Andy Lutomirski7ddc6a22014-11-24 17:39:06 -0800486asmlinkage __visible notrace
Andy Lutomirskib645af22014-11-22 18:00:33 -0800487struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s)
488{
489 /*
490 * This is called from entry_64.S early in handling a fault
491 * caused by a bad iret to user mode. To handle the fault
492 * correctly, we want move our stack frame to task_pt_regs
493 * and we want to pretend that the exception came from the
494 * iret target.
495 */
496 struct bad_iret_stack *new_stack =
497 container_of(task_pt_regs(current),
498 struct bad_iret_stack, regs);
499
500 /* Copy the IRET target to the new stack. */
501 memmove(&new_stack->regs.ip, (void *)s->regs.sp, 5*8);
502
503 /* Copy the remainder of the stack from the current stack. */
504 memmove(new_stack, s, offsetof(struct bad_iret_stack, regs.ip));
505
506 BUG_ON(!user_mode_vm(&new_stack->regs));
507 return new_stack;
508}
Andy Lutomirski7ddc6a22014-11-24 17:39:06 -0800509NOKPROBE_SYMBOL(fixup_bad_iret);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200510#endif
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/*
513 * Our handling of the processor debug registers is non-trivial.
514 * We do not clear them on entry and exit from the kernel. Therefore
515 * it is possible to get a watchpoint trap here from inside the kernel.
516 * However, the code in ./ptrace.c has ensured that the user can
517 * only set watchpoints on userspace addresses. Therefore the in-kernel
518 * watchpoint trap can only occur in code which is reading/writing
519 * from user space. Such code must not hold kernel locks (since it
520 * can equally take a page fault), therefore it is safe to call
521 * force_sig_info even though that claims and releases locks.
Ingo Molnarb5964402008-02-26 11:15:50 +0100522 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * Code in ./signal.c ensures that the debug control register
524 * is restored before we deliver any signal, and therefore that
525 * user code runs with the correct debug control register even though
526 * we clear it here.
527 *
528 * Being careful here means that we don't have to be as careful in a
529 * lot of more complicated places (task switching can be a bit lazy
530 * about restoring all the debug state, and ptrace doesn't have to
531 * find every occurrence of the TF bit that could be saved away even
532 * by user code)
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +0200533 *
534 * May run on IST stack.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900536dotraplinkage void do_debug(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct task_struct *tsk = current;
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100539 enum ctx_state prev_state;
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200540 int user_icebp = 0;
K.Prasad08d68322009-06-01 23:44:08 +0530541 unsigned long dr6;
Srinivasa Dsda654b72008-09-23 15:23:52 +0530542 int si_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +0000544 prev_state = exception_enter();
545
K.Prasad08d68322009-06-01 23:44:08 +0530546 get_debugreg(dr6, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
K.Prasad40f92492010-01-28 16:44:01 +0530548 /* Filter out all the reserved bits which are preset to 1 */
549 dr6 &= ~DR6_RESERVED;
550
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200551 /*
552 * If dr6 has no reason to give us about the origin of this trap,
553 * then it's very likely the result of an icebp/int01 trap.
554 * User wants a sigtrap for that.
555 */
556 if (!dr6 && user_mode(regs))
557 user_icebp = 1;
558
Vegard Nossumf8561292008-04-04 00:53:23 +0200559 /* Catch kmemcheck conditions first of all! */
Ingo Molnareadb8a02009-06-17 12:52:15 +0200560 if ((dr6 & DR_STEP) && kmemcheck_trap(regs))
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200561 goto exit;
Vegard Nossumf8561292008-04-04 00:53:23 +0200562
K.Prasad08d68322009-06-01 23:44:08 +0530563 /* DR6 may or may not be cleared by the CPU */
564 set_debugreg(0, 6);
Roland McGrath10faa812008-01-30 13:30:54 +0100565
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100566 /*
567 * The processor cleared BTF, so don't mark that we need it set.
568 */
569 clear_tsk_thread_flag(tsk, TIF_BLOCKSTEP);
570
K.Prasad08d68322009-06-01 23:44:08 +0530571 /* Store the virtualized DR6 value */
572 tsk->thread.debugreg6 = dr6;
573
Masami Hiramatsu6f6343f2014-04-17 17:17:33 +0900574#ifdef CONFIG_KPROBES
575 if (kprobe_debug_handler(regs))
576 goto exit;
577#endif
578
Rusty Russell5a802e12013-06-16 14:12:47 +0930579 if (notify_die(DIE_DEBUG, "debug", regs, (long)&dr6, error_code,
K.Prasad62edab92009-06-01 23:47:06 +0530580 SIGTRAP) == NOTIFY_STOP)
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200581 goto exit;
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200582
Steven Rostedt42181182011-12-16 11:43:02 -0500583 /*
584 * Let others (NMI) know that the debug stack is in use
585 * as we may switch to the interrupt stack.
586 */
587 debug_stack_usage_inc();
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /* It's safe to allow irq's after DR6 has been saved */
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200590 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
K.Prasad08d68322009-06-01 23:44:08 +0530592 if (regs->flags & X86_VM_MASK) {
Kees Cookc9408262012-03-09 16:07:10 -0800593 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code,
594 X86_TRAP_DB);
Bart Oldeman65542872010-09-23 13:16:58 -0400595 preempt_conditional_cli(regs);
Steven Rostedt42181182011-12-16 11:43:02 -0500596 debug_stack_usage_dec();
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200597 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /*
K.Prasad08d68322009-06-01 23:44:08 +0530601 * Single-stepping through system calls: ignore any exceptions in
602 * kernel space, but re-enable TF when returning to user mode.
603 *
604 * We already checked v86 mode above, so we can check for kernel mode
605 * by just checking the CPL of CS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
K.Prasad08d68322009-06-01 23:44:08 +0530607 if ((dr6 & DR_STEP) && !user_mode(regs)) {
608 tsk->thread.debugreg6 &= ~DR_STEP;
609 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
610 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
K.Prasad08d68322009-06-01 23:44:08 +0530612 si_code = get_si_code(tsk->thread.debugreg6);
Frederic Weisbeckera1e80fa2010-06-30 15:09:06 +0200613 if (tsk->thread.debugreg6 & (DR_STEP | DR_TRAP_BITS) || user_icebp)
K.Prasad08d68322009-06-01 23:44:08 +0530614 send_sigtrap(tsk, regs, error_code, si_code);
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200615 preempt_conditional_cli(regs);
Steven Rostedt42181182011-12-16 11:43:02 -0500616 debug_stack_usage_dec();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200618exit:
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100619 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900621NOKPROBE_SYMBOL(do_debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623/*
624 * Note that we play around with the 'TS' bit in an attempt to get
625 * the correct behaviour even in the presence of the asynchronous
626 * IRQ13 behaviour
627 */
Oleg Nesterov5e1b05b2014-05-08 20:34:00 +0200628static void math_error(struct pt_regs *regs, int error_code, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Brian Gerste2e75c912010-03-21 09:00:45 -0400630 struct task_struct *task = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 siginfo_t info;
Brian Gerst9b6dba92010-03-21 09:00:44 -0400632 unsigned short err;
Kees Cookc9408262012-03-09 16:07:10 -0800633 char *str = (trapnr == X86_TRAP_MF) ? "fpu exception" :
634 "simd exception";
Brian Gerste2e75c912010-03-21 09:00:45 -0400635
636 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, SIGFPE) == NOTIFY_STOP)
637 return;
638 conditional_sti(regs);
639
640 if (!user_mode_vm(regs))
641 {
642 if (!fixup_exception(regs)) {
643 task->thread.error_code = error_code;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530644 task->thread.trap_nr = trapnr;
Brian Gerste2e75c912010-03-21 09:00:45 -0400645 die(str, regs, error_code);
646 }
647 return;
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /*
651 * Save the info for the exception handler and clear the error.
652 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 save_init_fpu(task);
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530654 task->thread.trap_nr = trapnr;
Brian Gerst9b6dba92010-03-21 09:00:44 -0400655 task->thread.error_code = error_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 info.si_signo = SIGFPE;
657 info.si_errno = 0;
Oleg Nesterovb02ef202014-05-12 18:24:45 +0200658 info.si_addr = (void __user *)uprobe_get_trap_addr(regs);
Kees Cookc9408262012-03-09 16:07:10 -0800659 if (trapnr == X86_TRAP_MF) {
Brian Gerst9b6dba92010-03-21 09:00:44 -0400660 unsigned short cwd, swd;
661 /*
662 * (~cwd & swd) will mask out exceptions that are not set to unmasked
663 * status. 0x3f is the exception bits in these regs, 0x200 is the
664 * C1 reg you need in case of a stack fault, 0x040 is the stack
665 * fault bit. We should only be taking one exception at a time,
666 * so if this combination doesn't produce any single exception,
667 * then we have a bad program that isn't synchronizing its FPU usage
668 * and it will suffer the consequences since we won't be able to
669 * fully reproduce the context of the exception
670 */
671 cwd = get_fpu_cwd(task);
672 swd = get_fpu_swd(task);
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800673
Brian Gerst9b6dba92010-03-21 09:00:44 -0400674 err = swd & ~cwd;
675 } else {
676 /*
677 * The SIMD FPU exceptions are handled a little differently, as there
678 * is only a single status/control register. Thus, to determine which
679 * unmasked exception was caught we must mask the exception mask bits
680 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
681 */
682 unsigned short mxcsr = get_fpu_mxcsr(task);
683 err = ~(mxcsr >> 7) & mxcsr;
684 }
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800685
686 if (err & 0x001) { /* Invalid op */
Ingo Molnarb5964402008-02-26 11:15:50 +0100687 /*
688 * swd & 0x240 == 0x040: Stack Underflow
689 * swd & 0x240 == 0x240: Stack Overflow
690 * User must clear the SF bit (0x40) if set
691 */
692 info.si_code = FPE_FLTINV;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800693 } else if (err & 0x004) { /* Divide by Zero */
Ingo Molnarb5964402008-02-26 11:15:50 +0100694 info.si_code = FPE_FLTDIV;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800695 } else if (err & 0x008) { /* Overflow */
Ingo Molnarb5964402008-02-26 11:15:50 +0100696 info.si_code = FPE_FLTOVF;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800697 } else if (err & 0x012) { /* Denormal, Underflow */
698 info.si_code = FPE_FLTUND;
699 } else if (err & 0x020) { /* Precision */
Ingo Molnarb5964402008-02-26 11:15:50 +0100700 info.si_code = FPE_FLTRES;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800701 } else {
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100702 /*
Kees Cookc9408262012-03-09 16:07:10 -0800703 * If we're using IRQ 13, or supposedly even some trap
704 * X86_TRAP_MF implementations, it's possible
705 * we get a spurious trap, which is not an error.
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100706 */
Kees Cookc9408262012-03-09 16:07:10 -0800707 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 force_sig_info(SIGFPE, &info, task);
710}
711
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200712dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100714 enum ctx_state prev_state;
715
716 prev_state = exception_enter();
Kees Cookc9408262012-03-09 16:07:10 -0800717 math_error(regs, error_code, X86_TRAP_MF);
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100718 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200721dotraplinkage void
722do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100724 enum ctx_state prev_state;
725
726 prev_state = exception_enter();
Kees Cookc9408262012-03-09 16:07:10 -0800727 math_error(regs, error_code, X86_TRAP_XF);
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100728 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200731dotraplinkage void
732do_spurious_interrupt_bug(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Alexander van Heukelumcf819782008-09-09 21:56:08 +0200734 conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735#if 0
736 /* No need to warn about this any longer. */
Joe Perchesc767a542012-05-21 19:50:07 -0700737 pr_info("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#endif
739}
740
Andi Kleen2605fc22014-05-02 00:44:37 +0200741asmlinkage __visible void __attribute__((weak)) smp_thermal_interrupt(void)
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200742{
743}
744
Andi Kleen2605fc22014-05-02 00:44:37 +0200745asmlinkage __visible void __attribute__((weak)) smp_threshold_interrupt(void)
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200746{
747}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749/*
Linus Torvalds34ddc812012-02-18 12:56:35 -0800750 * 'math_state_restore()' saves the current math information in the
751 * old math state array, and gets the new ones from the current task
752 *
753 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
754 * Don't touch unless you *really* know how it works.
755 *
756 * Must be called with kernel preemption disabled (eg with local
757 * local interrupts as in the case of do_device_not_available).
758 */
759void math_state_restore(void)
760{
761 struct task_struct *tsk = current;
762
763 if (!tsk_used_math(tsk)) {
764 local_irq_enable();
765 /*
766 * does a slab alloc which can sleep
767 */
768 if (init_fpu(tsk)) {
769 /*
770 * ran out of memory!
771 */
772 do_group_exit(SIGKILL);
773 return;
774 }
775 local_irq_disable();
776 }
777
778 __thread_fpu_begin(tsk);
Suresh Siddha304bced2012-08-24 14:13:02 -0700779
Linus Torvalds80ab6f12012-02-19 11:48:44 -0800780 /*
781 * Paranoid restore. send a SIGSEGV if we fail to restore the state.
782 */
783 if (unlikely(restore_fpu_checking(tsk))) {
Suresh Siddha304bced2012-08-24 14:13:02 -0700784 drop_init_fpu(tsk);
Oleg Nesterov38cad572014-05-07 16:47:09 +0200785 force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk);
Linus Torvalds80ab6f12012-02-19 11:48:44 -0800786 return;
787 }
Linus Torvaldsb3b08702012-02-16 15:45:23 -0800788
Vineet Guptac375f152013-11-12 15:08:46 -0800789 tsk->thread.fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
Rusty Russell5992b6d2007-07-19 01:49:21 -0700791EXPORT_SYMBOL_GPL(math_state_restore);
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{
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100796 enum ctx_state prev_state;
797
798 prev_state = exception_enter();
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700799 BUG_ON(use_eager_fpu());
Suresh Siddha304bced2012-08-24 14:13:02 -0700800
Brian Gersta334fe42010-09-03 21:17:15 -0400801#ifdef CONFIG_MATH_EMULATION
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200802 if (read_cr0() & X86_CR0_EM) {
Tejun Heod3157602009-02-09 22:17:39 +0900803 struct math_emu_info info = { };
804
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200805 conditional_sti(regs);
Tejun Heod3157602009-02-09 22:17:39 +0900806
Brian Gerstaa78bcf2009-02-10 09:51:45 -0500807 info.regs = regs;
Tejun Heod3157602009-02-09 22:17:39 +0900808 math_emulate(&info);
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100809 exception_exit(prev_state);
Brian Gersta334fe42010-09-03 21:17:15 -0400810 return;
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200811 }
Brian Gersta334fe42010-09-03 21:17:15 -0400812#endif
813 math_state_restore(); /* interrupts still off */
814#ifdef CONFIG_X86_32
815 conditional_sti(regs);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200816#endif
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100817 exception_exit(prev_state);
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200818}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900819NOKPROBE_SYMBOL(do_device_not_available);
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200820
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200821#ifdef CONFIG_X86_32
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200822dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code)
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200823{
824 siginfo_t info;
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100825 enum ctx_state prev_state;
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200826
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100827 prev_state = exception_enter();
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200828 local_irq_enable();
829
830 info.si_signo = SIGILL;
831 info.si_errno = 0;
832 info.si_code = ILL_BADSTK;
Hannes Ederfc6fcdf2009-02-22 01:00:57 +0100833 info.si_addr = NULL;
Kees Cookc9408262012-03-09 16:07:10 -0800834 if (notify_die(DIE_TRAP, "iret exception", regs, error_code,
Frederic Weisbecker6ba3c972012-07-11 20:26:35 +0200835 X86_TRAP_IRET, SIGILL) != NOTIFY_STOP) {
836 do_trap(X86_TRAP_IRET, SIGILL, "iret exception", regs, error_code,
837 &info);
838 }
Frederic Weisbecker6c1e0252013-02-24 01:19:14 +0100839 exception_exit(prev_state);
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200840}
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200841#endif
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200842
Jan Kiszka29c84392010-05-20 21:04:29 -0500843/* Set of traps needed for early debugging. */
844void __init early_trap_init(void)
845{
Kees Cookc9408262012-03-09 16:07:10 -0800846 set_intr_gate_ist(X86_TRAP_DB, &debug, DEBUG_STACK);
Jan Kiszka29c84392010-05-20 21:04:29 -0500847 /* int3 can be called from all */
Kees Cookc9408262012-03-09 16:07:10 -0800848 set_system_intr_gate_ist(X86_TRAP_BP, &int3, DEBUG_STACK);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800849#ifdef CONFIG_X86_32
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400850 set_intr_gate(X86_TRAP_PF, page_fault);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800851#endif
Jan Kiszka29c84392010-05-20 21:04:29 -0500852 load_idt(&idt_descr);
853}
854
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800855void __init early_trap_pf_init(void)
856{
857#ifdef CONFIG_X86_64
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400858 set_intr_gate(X86_TRAP_PF, page_fault);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800859#endif
860}
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862void __init trap_init(void)
863{
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200864 int i;
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866#ifdef CONFIG_EISA
Ingo Molnar927222b2008-01-30 13:33:49 +0100867 void __iomem *p = early_ioremap(0x0FFFD9, 4);
Ingo Molnarb5964402008-02-26 11:15:50 +0100868
869 if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 EISA_bus = 1;
Ingo Molnar927222b2008-01-30 13:33:49 +0100871 early_iounmap(p, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872#endif
873
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400874 set_intr_gate(X86_TRAP_DE, divide_error);
Kees Cookc9408262012-03-09 16:07:10 -0800875 set_intr_gate_ist(X86_TRAP_NMI, &nmi, NMI_STACK);
Alexander van Heukelum699d2932008-10-03 22:00:32 +0200876 /* int4 can be called from all */
Kees Cookc9408262012-03-09 16:07:10 -0800877 set_system_intr_gate(X86_TRAP_OF, &overflow);
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400878 set_intr_gate(X86_TRAP_BR, bounds);
879 set_intr_gate(X86_TRAP_UD, invalid_op);
880 set_intr_gate(X86_TRAP_NM, device_not_available);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200881#ifdef CONFIG_X86_32
Kees Cookc9408262012-03-09 16:07:10 -0800882 set_task_gate(X86_TRAP_DF, GDT_ENTRY_DOUBLEFAULT_TSS);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200883#else
Kees Cookc9408262012-03-09 16:07:10 -0800884 set_intr_gate_ist(X86_TRAP_DF, &double_fault, DOUBLEFAULT_STACK);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200885#endif
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400886 set_intr_gate(X86_TRAP_OLD_MF, coprocessor_segment_overrun);
887 set_intr_gate(X86_TRAP_TS, invalid_TSS);
888 set_intr_gate(X86_TRAP_NP, segment_not_present);
Andy Lutomirski6f442be2014-11-22 18:00:32 -0800889 set_intr_gate(X86_TRAP_SS, stack_segment);
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400890 set_intr_gate(X86_TRAP_GP, general_protection);
891 set_intr_gate(X86_TRAP_SPURIOUS, spurious_interrupt_bug);
892 set_intr_gate(X86_TRAP_MF, coprocessor_error);
893 set_intr_gate(X86_TRAP_AC, alignment_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894#ifdef CONFIG_X86_MCE
Kees Cookc9408262012-03-09 16:07:10 -0800895 set_intr_gate_ist(X86_TRAP_MC, &machine_check, MCE_STACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896#endif
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400897 set_intr_gate(X86_TRAP_XF, simd_coprocessor_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800899 /* Reserve all the builtin and the syscall vector: */
900 for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
901 set_bit(i, used_vectors);
902
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200903#ifdef CONFIG_IA32_EMULATION
904 set_system_intr_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800905 set_bit(IA32_SYSCALL_VECTOR, used_vectors);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200906#endif
907
908#ifdef CONFIG_X86_32
Alexander van Heukelum699d2932008-10-03 22:00:32 +0200909 set_system_trap_gate(SYSCALL_VECTOR, &system_call);
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200910 set_bit(SYSCALL_VECTOR, used_vectors);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200911#endif
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /*
Kees Cook4eefbe72013-04-10 12:24:22 -0700914 * Set the IDT descriptor to a fixed read-only location, so that the
915 * "sidt" instruction will not leak the location of the kernel, and
916 * to defend the IDT against arbitrary memory write vulnerabilities.
917 * It will be reloaded in cpu_init() */
918 __set_fixmap(FIX_RO_IDT, __pa_symbol(idt_table), PAGE_KERNEL_RO);
919 idt_descr.address = fix_to_virt(FIX_RO_IDT);
920
921 /*
Ingo Molnarb5964402008-02-26 11:15:50 +0100922 * Should be a barrier for any external CPU state:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 */
924 cpu_init();
925
Thomas Gleixner428cf902009-08-20 10:35:46 +0200926 x86_init.irqs.trap_init();
Steven Rostedt228bdaa2011-12-09 03:02:19 -0500927
928#ifdef CONFIG_X86_64
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400929 memcpy(&debug_idt_table, &idt_table, IDT_ENTRIES * 16);
Kees Cookc9408262012-03-09 16:07:10 -0800930 set_nmi_gate(X86_TRAP_DB, &debug);
931 set_nmi_gate(X86_TRAP_BP, &int3);
Steven Rostedt228bdaa2011-12-09 03:02:19 -0500932#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}