x86/traps: Kill DO_ERROR_INFO()
[cascardo/linux.git] / arch / x86 / kernel / traps.c
1 /*
2  *  Copyright (C) 1991, 1992  Linus Torvalds
3  *  Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
4  *
5  *  Pentium III FXSR, SSE support
6  *      Gareth Hughes <gareth@valinux.com>, May 2000
7  */
8
9 /*
10  * Handle hardware traps and faults.
11  */
12
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
15 #include <linux/context_tracking.h>
16 #include <linux/interrupt.h>
17 #include <linux/kallsyms.h>
18 #include <linux/spinlock.h>
19 #include <linux/kprobes.h>
20 #include <linux/uaccess.h>
21 #include <linux/kdebug.h>
22 #include <linux/kgdb.h>
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/ptrace.h>
26 #include <linux/string.h>
27 #include <linux/delay.h>
28 #include <linux/errno.h>
29 #include <linux/kexec.h>
30 #include <linux/sched.h>
31 #include <linux/timer.h>
32 #include <linux/init.h>
33 #include <linux/bug.h>
34 #include <linux/nmi.h>
35 #include <linux/mm.h>
36 #include <linux/smp.h>
37 #include <linux/io.h>
38
39 #ifdef CONFIG_EISA
40 #include <linux/ioport.h>
41 #include <linux/eisa.h>
42 #endif
43
44 #if defined(CONFIG_EDAC)
45 #include <linux/edac.h>
46 #endif
47
48 #include <asm/kmemcheck.h>
49 #include <asm/stacktrace.h>
50 #include <asm/processor.h>
51 #include <asm/debugreg.h>
52 #include <linux/atomic.h>
53 #include <asm/ftrace.h>
54 #include <asm/traps.h>
55 #include <asm/desc.h>
56 #include <asm/i387.h>
57 #include <asm/fpu-internal.h>
58 #include <asm/mce.h>
59 #include <asm/fixmap.h>
60 #include <asm/mach_traps.h>
61 #include <asm/alternative.h>
62
63 #ifdef CONFIG_X86_64
64 #include <asm/x86_init.h>
65 #include <asm/pgalloc.h>
66 #include <asm/proto.h>
67
68 /* No need to be aligned, but done to keep all IDTs defined the same way. */
69 gate_desc debug_idt_table[NR_VECTORS] __page_aligned_bss;
70 #else
71 #include <asm/processor-flags.h>
72 #include <asm/setup.h>
73
74 asmlinkage int system_call(void);
75 #endif
76
77 /* Must be page-aligned because the real IDT is used in a fixmap. */
78 gate_desc idt_table[NR_VECTORS] __page_aligned_bss;
79
80 DECLARE_BITMAP(used_vectors, NR_VECTORS);
81 EXPORT_SYMBOL_GPL(used_vectors);
82
83 static inline void conditional_sti(struct pt_regs *regs)
84 {
85         if (regs->flags & X86_EFLAGS_IF)
86                 local_irq_enable();
87 }
88
89 static inline void preempt_conditional_sti(struct pt_regs *regs)
90 {
91         preempt_count_inc();
92         if (regs->flags & X86_EFLAGS_IF)
93                 local_irq_enable();
94 }
95
96 static inline void conditional_cli(struct pt_regs *regs)
97 {
98         if (regs->flags & X86_EFLAGS_IF)
99                 local_irq_disable();
100 }
101
102 static inline void preempt_conditional_cli(struct pt_regs *regs)
103 {
104         if (regs->flags & X86_EFLAGS_IF)
105                 local_irq_disable();
106         preempt_count_dec();
107 }
108
109 static int __kprobes
110 do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str,
111                   struct pt_regs *regs, long error_code)
112 {
113 #ifdef CONFIG_X86_32
114         if (regs->flags & X86_VM_MASK) {
115                 /*
116                  * Traps 0, 1, 3, 4, and 5 should be forwarded to vm86.
117                  * On nmi (interrupt 2), do_trap should not be called.
118                  */
119                 if (trapnr < X86_TRAP_UD) {
120                         if (!handle_vm86_trap((struct kernel_vm86_regs *) regs,
121                                                 error_code, trapnr))
122                                 return 0;
123                 }
124                 return -1;
125         }
126 #endif
127         if (!user_mode(regs)) {
128                 if (!fixup_exception(regs)) {
129                         tsk->thread.error_code = error_code;
130                         tsk->thread.trap_nr = trapnr;
131                         die(str, regs, error_code);
132                 }
133                 return 0;
134         }
135
136         return -1;
137 }
138
139 static siginfo_t *fill_trap_info(struct pt_regs *regs, int signr, int trapnr,
140                                 siginfo_t *info)
141 {
142         unsigned long siaddr;
143         int sicode;
144
145         switch (trapnr) {
146         default:
147                 return SEND_SIG_PRIV;
148
149         case X86_TRAP_DE:
150                 sicode = FPE_INTDIV;
151                 siaddr = regs->ip;
152                 break;
153         case X86_TRAP_UD:
154                 sicode = ILL_ILLOPN;
155                 siaddr = regs->ip;
156                 break;
157         case X86_TRAP_AC:
158                 sicode = BUS_ADRALN;
159                 siaddr = 0;
160                 break;
161         }
162
163         info->si_signo = signr;
164         info->si_errno = 0;
165         info->si_code = sicode;
166         info->si_addr = (void __user *)siaddr;
167         return info;
168 }
169
170 static void __kprobes
171 do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
172         long error_code, siginfo_t *info)
173 {
174         struct task_struct *tsk = current;
175
176
177         if (!do_trap_no_signal(tsk, trapnr, str, regs, error_code))
178                 return;
179         /*
180          * We want error_code and trap_nr set for userspace faults and
181          * kernelspace faults which result in die(), but not
182          * kernelspace faults which are fixed up.  die() gives the
183          * process no chance to handle the signal and notice the
184          * kernel fault information, so that won't result in polluting
185          * the information about previously queued, but not yet
186          * delivered, faults.  See also do_general_protection below.
187          */
188         tsk->thread.error_code = error_code;
189         tsk->thread.trap_nr = trapnr;
190
191 #ifdef CONFIG_X86_64
192         if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
193             printk_ratelimit()) {
194                 pr_info("%s[%d] trap %s ip:%lx sp:%lx error:%lx",
195                         tsk->comm, tsk->pid, str,
196                         regs->ip, regs->sp, error_code);
197                 print_vma_addr(" in ", regs->ip);
198                 pr_cont("\n");
199         }
200 #endif
201
202         force_sig_info(signr, info ?: SEND_SIG_PRIV, tsk);
203 }
204
205 static void do_error_trap(struct pt_regs *regs, long error_code, char *str,
206                           unsigned long trapnr, int signr)
207 {
208         enum ctx_state prev_state = exception_enter();
209         siginfo_t info;
210
211         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) !=
212                         NOTIFY_STOP) {
213                 conditional_sti(regs);
214                 do_trap(trapnr, signr, str, regs, error_code,
215                         fill_trap_info(regs, signr, trapnr, &info));
216         }
217
218         exception_exit(prev_state);
219 }
220
221 #define DO_ERROR(trapnr, signr, str, name)                              \
222 dotraplinkage void do_##name(struct pt_regs *regs, long error_code)     \
223 {                                                                       \
224         do_error_trap(regs, error_code, str, trapnr, signr);            \
225 }
226
227 DO_ERROR(X86_TRAP_DE,     SIGFPE,  "divide error",              divide_error)
228 DO_ERROR(X86_TRAP_OF,     SIGSEGV, "overflow",                  overflow)
229 DO_ERROR(X86_TRAP_BR,     SIGSEGV, "bounds",                    bounds)
230 DO_ERROR(X86_TRAP_UD,     SIGILL,  "invalid opcode",            invalid_op)
231 DO_ERROR(X86_TRAP_OLD_MF, SIGFPE,  "coprocessor segment overrun",coprocessor_segment_overrun)
232 DO_ERROR(X86_TRAP_TS,     SIGSEGV, "invalid TSS",               invalid_TSS)
233 DO_ERROR(X86_TRAP_NP,     SIGBUS,  "segment not present",       segment_not_present)
234 #ifdef CONFIG_X86_32
235 DO_ERROR(X86_TRAP_SS,     SIGBUS,  "stack segment",             stack_segment)
236 #endif
237 DO_ERROR(X86_TRAP_AC,     SIGBUS,  "alignment check",           alignment_check)
238
239 #ifdef CONFIG_X86_64
240 /* Runs on IST stack */
241 dotraplinkage void do_stack_segment(struct pt_regs *regs, long error_code)
242 {
243         enum ctx_state prev_state;
244
245         prev_state = exception_enter();
246         if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
247                        X86_TRAP_SS, SIGBUS) != NOTIFY_STOP) {
248                 preempt_conditional_sti(regs);
249                 do_trap(X86_TRAP_SS, SIGBUS, "stack segment", regs, error_code, NULL);
250                 preempt_conditional_cli(regs);
251         }
252         exception_exit(prev_state);
253 }
254
255 dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code)
256 {
257         static const char str[] = "double fault";
258         struct task_struct *tsk = current;
259
260         exception_enter();
261         /* Return not checked because double check cannot be ignored */
262         notify_die(DIE_TRAP, str, regs, error_code, X86_TRAP_DF, SIGSEGV);
263
264         tsk->thread.error_code = error_code;
265         tsk->thread.trap_nr = X86_TRAP_DF;
266
267 #ifdef CONFIG_DOUBLEFAULT
268         df_debug(regs, error_code);
269 #endif
270         /*
271          * This is always a kernel trap and never fixable (and thus must
272          * never return).
273          */
274         for (;;)
275                 die(str, regs, error_code);
276 }
277 #endif
278
279 dotraplinkage void __kprobes
280 do_general_protection(struct pt_regs *regs, long error_code)
281 {
282         struct task_struct *tsk;
283         enum ctx_state prev_state;
284
285         prev_state = exception_enter();
286         conditional_sti(regs);
287
288 #ifdef CONFIG_X86_32
289         if (regs->flags & X86_VM_MASK) {
290                 local_irq_enable();
291                 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
292                 goto exit;
293         }
294 #endif
295
296         tsk = current;
297         if (!user_mode(regs)) {
298                 if (fixup_exception(regs))
299                         goto exit;
300
301                 tsk->thread.error_code = error_code;
302                 tsk->thread.trap_nr = X86_TRAP_GP;
303                 if (notify_die(DIE_GPF, "general protection fault", regs, error_code,
304                                X86_TRAP_GP, SIGSEGV) != NOTIFY_STOP)
305                         die("general protection fault", regs, error_code);
306                 goto exit;
307         }
308
309         tsk->thread.error_code = error_code;
310         tsk->thread.trap_nr = X86_TRAP_GP;
311
312         if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
313                         printk_ratelimit()) {
314                 pr_info("%s[%d] general protection ip:%lx sp:%lx error:%lx",
315                         tsk->comm, task_pid_nr(tsk),
316                         regs->ip, regs->sp, error_code);
317                 print_vma_addr(" in ", regs->ip);
318                 pr_cont("\n");
319         }
320
321         force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk);
322 exit:
323         exception_exit(prev_state);
324 }
325
326 /* May run on IST stack. */
327 dotraplinkage void __kprobes notrace do_int3(struct pt_regs *regs, long error_code)
328 {
329         enum ctx_state prev_state;
330
331 #ifdef CONFIG_DYNAMIC_FTRACE
332         /*
333          * ftrace must be first, everything else may cause a recursive crash.
334          * See note by declaration of modifying_ftrace_code in ftrace.c
335          */
336         if (unlikely(atomic_read(&modifying_ftrace_code)) &&
337             ftrace_int3_handler(regs))
338                 return;
339 #endif
340         if (poke_int3_handler(regs))
341                 return;
342
343         prev_state = exception_enter();
344 #ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
345         if (kgdb_ll_trap(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
346                                 SIGTRAP) == NOTIFY_STOP)
347                 goto exit;
348 #endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */
349
350         if (notify_die(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
351                         SIGTRAP) == NOTIFY_STOP)
352                 goto exit;
353
354         /*
355          * Let others (NMI) know that the debug stack is in use
356          * as we may switch to the interrupt stack.
357          */
358         debug_stack_usage_inc();
359         preempt_conditional_sti(regs);
360         do_trap(X86_TRAP_BP, SIGTRAP, "int3", regs, error_code, NULL);
361         preempt_conditional_cli(regs);
362         debug_stack_usage_dec();
363 exit:
364         exception_exit(prev_state);
365 }
366
367 #ifdef CONFIG_X86_64
368 /*
369  * Help handler running on IST stack to switch back to user stack
370  * for scheduling or signal handling. The actual stack switch is done in
371  * entry.S
372  */
373 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
374 {
375         struct pt_regs *regs = eregs;
376         /* Did already sync */
377         if (eregs == (struct pt_regs *)eregs->sp)
378                 ;
379         /* Exception from user space */
380         else if (user_mode(eregs))
381                 regs = task_pt_regs(current);
382         /*
383          * Exception from kernel and interrupts are enabled. Move to
384          * kernel process stack.
385          */
386         else if (eregs->flags & X86_EFLAGS_IF)
387                 regs = (struct pt_regs *)(eregs->sp -= sizeof(struct pt_regs));
388         if (eregs != regs)
389                 *regs = *eregs;
390         return regs;
391 }
392 #endif
393
394 /*
395  * Our handling of the processor debug registers is non-trivial.
396  * We do not clear them on entry and exit from the kernel. Therefore
397  * it is possible to get a watchpoint trap here from inside the kernel.
398  * However, the code in ./ptrace.c has ensured that the user can
399  * only set watchpoints on userspace addresses. Therefore the in-kernel
400  * watchpoint trap can only occur in code which is reading/writing
401  * from user space. Such code must not hold kernel locks (since it
402  * can equally take a page fault), therefore it is safe to call
403  * force_sig_info even though that claims and releases locks.
404  *
405  * Code in ./signal.c ensures that the debug control register
406  * is restored before we deliver any signal, and therefore that
407  * user code runs with the correct debug control register even though
408  * we clear it here.
409  *
410  * Being careful here means that we don't have to be as careful in a
411  * lot of more complicated places (task switching can be a bit lazy
412  * about restoring all the debug state, and ptrace doesn't have to
413  * find every occurrence of the TF bit that could be saved away even
414  * by user code)
415  *
416  * May run on IST stack.
417  */
418 dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code)
419 {
420         struct task_struct *tsk = current;
421         enum ctx_state prev_state;
422         int user_icebp = 0;
423         unsigned long dr6;
424         int si_code;
425
426         prev_state = exception_enter();
427
428         get_debugreg(dr6, 6);
429
430         /* Filter out all the reserved bits which are preset to 1 */
431         dr6 &= ~DR6_RESERVED;
432
433         /*
434          * If dr6 has no reason to give us about the origin of this trap,
435          * then it's very likely the result of an icebp/int01 trap.
436          * User wants a sigtrap for that.
437          */
438         if (!dr6 && user_mode(regs))
439                 user_icebp = 1;
440
441         /* Catch kmemcheck conditions first of all! */
442         if ((dr6 & DR_STEP) && kmemcheck_trap(regs))
443                 goto exit;
444
445         /* DR6 may or may not be cleared by the CPU */
446         set_debugreg(0, 6);
447
448         /*
449          * The processor cleared BTF, so don't mark that we need it set.
450          */
451         clear_tsk_thread_flag(tsk, TIF_BLOCKSTEP);
452
453         /* Store the virtualized DR6 value */
454         tsk->thread.debugreg6 = dr6;
455
456         if (notify_die(DIE_DEBUG, "debug", regs, (long)&dr6, error_code,
457                                                         SIGTRAP) == NOTIFY_STOP)
458                 goto exit;
459
460         /*
461          * Let others (NMI) know that the debug stack is in use
462          * as we may switch to the interrupt stack.
463          */
464         debug_stack_usage_inc();
465
466         /* It's safe to allow irq's after DR6 has been saved */
467         preempt_conditional_sti(regs);
468
469         if (regs->flags & X86_VM_MASK) {
470                 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code,
471                                         X86_TRAP_DB);
472                 preempt_conditional_cli(regs);
473                 debug_stack_usage_dec();
474                 goto exit;
475         }
476
477         /*
478          * Single-stepping through system calls: ignore any exceptions in
479          * kernel space, but re-enable TF when returning to user mode.
480          *
481          * We already checked v86 mode above, so we can check for kernel mode
482          * by just checking the CPL of CS.
483          */
484         if ((dr6 & DR_STEP) && !user_mode(regs)) {
485                 tsk->thread.debugreg6 &= ~DR_STEP;
486                 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
487                 regs->flags &= ~X86_EFLAGS_TF;
488         }
489         si_code = get_si_code(tsk->thread.debugreg6);
490         if (tsk->thread.debugreg6 & (DR_STEP | DR_TRAP_BITS) || user_icebp)
491                 send_sigtrap(tsk, regs, error_code, si_code);
492         preempt_conditional_cli(regs);
493         debug_stack_usage_dec();
494
495 exit:
496         exception_exit(prev_state);
497 }
498
499 /*
500  * Note that we play around with the 'TS' bit in an attempt to get
501  * the correct behaviour even in the presence of the asynchronous
502  * IRQ13 behaviour
503  */
504 static void math_error(struct pt_regs *regs, int error_code, int trapnr)
505 {
506         struct task_struct *task = current;
507         siginfo_t info;
508         unsigned short err;
509         char *str = (trapnr == X86_TRAP_MF) ? "fpu exception" :
510                                                 "simd exception";
511
512         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, SIGFPE) == NOTIFY_STOP)
513                 return;
514         conditional_sti(regs);
515
516         if (!user_mode_vm(regs))
517         {
518                 if (!fixup_exception(regs)) {
519                         task->thread.error_code = error_code;
520                         task->thread.trap_nr = trapnr;
521                         die(str, regs, error_code);
522                 }
523                 return;
524         }
525
526         /*
527          * Save the info for the exception handler and clear the error.
528          */
529         save_init_fpu(task);
530         task->thread.trap_nr = trapnr;
531         task->thread.error_code = error_code;
532         info.si_signo = SIGFPE;
533         info.si_errno = 0;
534         info.si_addr = (void __user *)regs->ip;
535         if (trapnr == X86_TRAP_MF) {
536                 unsigned short cwd, swd;
537                 /*
538                  * (~cwd & swd) will mask out exceptions that are not set to unmasked
539                  * status.  0x3f is the exception bits in these regs, 0x200 is the
540                  * C1 reg you need in case of a stack fault, 0x040 is the stack
541                  * fault bit.  We should only be taking one exception at a time,
542                  * so if this combination doesn't produce any single exception,
543                  * then we have a bad program that isn't synchronizing its FPU usage
544                  * and it will suffer the consequences since we won't be able to
545                  * fully reproduce the context of the exception
546                  */
547                 cwd = get_fpu_cwd(task);
548                 swd = get_fpu_swd(task);
549
550                 err = swd & ~cwd;
551         } else {
552                 /*
553                  * The SIMD FPU exceptions are handled a little differently, as there
554                  * is only a single status/control register.  Thus, to determine which
555                  * unmasked exception was caught we must mask the exception mask bits
556                  * at 0x1f80, and then use these to mask the exception bits at 0x3f.
557                  */
558                 unsigned short mxcsr = get_fpu_mxcsr(task);
559                 err = ~(mxcsr >> 7) & mxcsr;
560         }
561
562         if (err & 0x001) {      /* Invalid op */
563                 /*
564                  * swd & 0x240 == 0x040: Stack Underflow
565                  * swd & 0x240 == 0x240: Stack Overflow
566                  * User must clear the SF bit (0x40) if set
567                  */
568                 info.si_code = FPE_FLTINV;
569         } else if (err & 0x004) { /* Divide by Zero */
570                 info.si_code = FPE_FLTDIV;
571         } else if (err & 0x008) { /* Overflow */
572                 info.si_code = FPE_FLTOVF;
573         } else if (err & 0x012) { /* Denormal, Underflow */
574                 info.si_code = FPE_FLTUND;
575         } else if (err & 0x020) { /* Precision */
576                 info.si_code = FPE_FLTRES;
577         } else {
578                 /*
579                  * If we're using IRQ 13, or supposedly even some trap
580                  * X86_TRAP_MF implementations, it's possible
581                  * we get a spurious trap, which is not an error.
582                  */
583                 return;
584         }
585         force_sig_info(SIGFPE, &info, task);
586 }
587
588 dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code)
589 {
590         enum ctx_state prev_state;
591
592         prev_state = exception_enter();
593         math_error(regs, error_code, X86_TRAP_MF);
594         exception_exit(prev_state);
595 }
596
597 dotraplinkage void
598 do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
599 {
600         enum ctx_state prev_state;
601
602         prev_state = exception_enter();
603         math_error(regs, error_code, X86_TRAP_XF);
604         exception_exit(prev_state);
605 }
606
607 dotraplinkage void
608 do_spurious_interrupt_bug(struct pt_regs *regs, long error_code)
609 {
610         conditional_sti(regs);
611 #if 0
612         /* No need to warn about this any longer. */
613         pr_info("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
614 #endif
615 }
616
617 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
618 {
619 }
620
621 asmlinkage void __attribute__((weak)) smp_threshold_interrupt(void)
622 {
623 }
624
625 /*
626  * 'math_state_restore()' saves the current math information in the
627  * old math state array, and gets the new ones from the current task
628  *
629  * Careful.. There are problems with IBM-designed IRQ13 behaviour.
630  * Don't touch unless you *really* know how it works.
631  *
632  * Must be called with kernel preemption disabled (eg with local
633  * local interrupts as in the case of do_device_not_available).
634  */
635 void math_state_restore(void)
636 {
637         struct task_struct *tsk = current;
638
639         if (!tsk_used_math(tsk)) {
640                 local_irq_enable();
641                 /*
642                  * does a slab alloc which can sleep
643                  */
644                 if (init_fpu(tsk)) {
645                         /*
646                          * ran out of memory!
647                          */
648                         do_group_exit(SIGKILL);
649                         return;
650                 }
651                 local_irq_disable();
652         }
653
654         __thread_fpu_begin(tsk);
655
656         /*
657          * Paranoid restore. send a SIGSEGV if we fail to restore the state.
658          */
659         if (unlikely(restore_fpu_checking(tsk))) {
660                 drop_init_fpu(tsk);
661                 force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk);
662                 return;
663         }
664
665         tsk->thread.fpu_counter++;
666 }
667 EXPORT_SYMBOL_GPL(math_state_restore);
668
669 dotraplinkage void __kprobes
670 do_device_not_available(struct pt_regs *regs, long error_code)
671 {
672         enum ctx_state prev_state;
673
674         prev_state = exception_enter();
675         BUG_ON(use_eager_fpu());
676
677 #ifdef CONFIG_MATH_EMULATION
678         if (read_cr0() & X86_CR0_EM) {
679                 struct math_emu_info info = { };
680
681                 conditional_sti(regs);
682
683                 info.regs = regs;
684                 math_emulate(&info);
685                 exception_exit(prev_state);
686                 return;
687         }
688 #endif
689         math_state_restore(); /* interrupts still off */
690 #ifdef CONFIG_X86_32
691         conditional_sti(regs);
692 #endif
693         exception_exit(prev_state);
694 }
695
696 #ifdef CONFIG_X86_32
697 dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code)
698 {
699         siginfo_t info;
700         enum ctx_state prev_state;
701
702         prev_state = exception_enter();
703         local_irq_enable();
704
705         info.si_signo = SIGILL;
706         info.si_errno = 0;
707         info.si_code = ILL_BADSTK;
708         info.si_addr = NULL;
709         if (notify_die(DIE_TRAP, "iret exception", regs, error_code,
710                         X86_TRAP_IRET, SIGILL) != NOTIFY_STOP) {
711                 do_trap(X86_TRAP_IRET, SIGILL, "iret exception", regs, error_code,
712                         &info);
713         }
714         exception_exit(prev_state);
715 }
716 #endif
717
718 /* Set of traps needed for early debugging. */
719 void __init early_trap_init(void)
720 {
721         set_intr_gate_ist(X86_TRAP_DB, &debug, DEBUG_STACK);
722         /* int3 can be called from all */
723         set_system_intr_gate_ist(X86_TRAP_BP, &int3, DEBUG_STACK);
724 #ifdef CONFIG_X86_32
725         set_intr_gate(X86_TRAP_PF, page_fault);
726 #endif
727         load_idt(&idt_descr);
728 }
729
730 void __init early_trap_pf_init(void)
731 {
732 #ifdef CONFIG_X86_64
733         set_intr_gate(X86_TRAP_PF, page_fault);
734 #endif
735 }
736
737 void __init trap_init(void)
738 {
739         int i;
740
741 #ifdef CONFIG_EISA
742         void __iomem *p = early_ioremap(0x0FFFD9, 4);
743
744         if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24))
745                 EISA_bus = 1;
746         early_iounmap(p, 4);
747 #endif
748
749         set_intr_gate(X86_TRAP_DE, divide_error);
750         set_intr_gate_ist(X86_TRAP_NMI, &nmi, NMI_STACK);
751         /* int4 can be called from all */
752         set_system_intr_gate(X86_TRAP_OF, &overflow);
753         set_intr_gate(X86_TRAP_BR, bounds);
754         set_intr_gate(X86_TRAP_UD, invalid_op);
755         set_intr_gate(X86_TRAP_NM, device_not_available);
756 #ifdef CONFIG_X86_32
757         set_task_gate(X86_TRAP_DF, GDT_ENTRY_DOUBLEFAULT_TSS);
758 #else
759         set_intr_gate_ist(X86_TRAP_DF, &double_fault, DOUBLEFAULT_STACK);
760 #endif
761         set_intr_gate(X86_TRAP_OLD_MF, coprocessor_segment_overrun);
762         set_intr_gate(X86_TRAP_TS, invalid_TSS);
763         set_intr_gate(X86_TRAP_NP, segment_not_present);
764         set_intr_gate_ist(X86_TRAP_SS, &stack_segment, STACKFAULT_STACK);
765         set_intr_gate(X86_TRAP_GP, general_protection);
766         set_intr_gate(X86_TRAP_SPURIOUS, spurious_interrupt_bug);
767         set_intr_gate(X86_TRAP_MF, coprocessor_error);
768         set_intr_gate(X86_TRAP_AC, alignment_check);
769 #ifdef CONFIG_X86_MCE
770         set_intr_gate_ist(X86_TRAP_MC, &machine_check, MCE_STACK);
771 #endif
772         set_intr_gate(X86_TRAP_XF, simd_coprocessor_error);
773
774         /* Reserve all the builtin and the syscall vector: */
775         for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
776                 set_bit(i, used_vectors);
777
778 #ifdef CONFIG_IA32_EMULATION
779         set_system_intr_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
780         set_bit(IA32_SYSCALL_VECTOR, used_vectors);
781 #endif
782
783 #ifdef CONFIG_X86_32
784         set_system_trap_gate(SYSCALL_VECTOR, &system_call);
785         set_bit(SYSCALL_VECTOR, used_vectors);
786 #endif
787
788         /*
789          * Set the IDT descriptor to a fixed read-only location, so that the
790          * "sidt" instruction will not leak the location of the kernel, and
791          * to defend the IDT against arbitrary memory write vulnerabilities.
792          * It will be reloaded in cpu_init() */
793         __set_fixmap(FIX_RO_IDT, __pa_symbol(idt_table), PAGE_KERNEL_RO);
794         idt_descr.address = fix_to_virt(FIX_RO_IDT);
795
796         /*
797          * Should be a barrier for any external CPU state:
798          */
799         cpu_init();
800
801         x86_init.irqs.trap_init();
802
803 #ifdef CONFIG_X86_64
804         memcpy(&debug_idt_table, &idt_table, IDT_ENTRIES * 16);
805         set_nmi_gate(X86_TRAP_DB, &debug);
806         set_nmi_gate(X86_TRAP_BP, &int3);
807 #endif
808 }