Merge branch 'linus' into x86/cleanups
[safe/jmp/linux-2.6] / arch / x86 / kernel / traps_64.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  * 'Traps.c' handles hardware traps and faults after we have saved some
11  * state in 'entry.S'.
12  */
13 #include <linux/moduleparam.h>
14 #include <linux/interrupt.h>
15 #include <linux/kallsyms.h>
16 #include <linux/spinlock.h>
17 #include <linux/kprobes.h>
18 #include <linux/uaccess.h>
19 #include <linux/utsname.h>
20 #include <linux/kdebug.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/ptrace.h>
24 #include <linux/string.h>
25 #include <linux/unwind.h>
26 #include <linux/delay.h>
27 #include <linux/errno.h>
28 #include <linux/kexec.h>
29 #include <linux/sched.h>
30 #include <linux/timer.h>
31 #include <linux/init.h>
32 #include <linux/bug.h>
33 #include <linux/nmi.h>
34 #include <linux/mm.h>
35 #include <linux/smp.h>
36 #include <linux/io.h>
37
38 #if defined(CONFIG_EDAC)
39 #include <linux/edac.h>
40 #endif
41
42 #include <asm/stacktrace.h>
43 #include <asm/processor.h>
44 #include <asm/debugreg.h>
45 #include <asm/atomic.h>
46 #include <asm/system.h>
47 #include <asm/unwind.h>
48 #include <asm/desc.h>
49 #include <asm/i387.h>
50 #include <asm/pgalloc.h>
51 #include <asm/proto.h>
52 #include <asm/pda.h>
53 #include <asm/traps.h>
54
55 #include <mach_traps.h>
56
57 int panic_on_unrecovered_nmi;
58 int kstack_depth_to_print = 12;
59 static unsigned int code_bytes = 64;
60 static int ignore_nmis;
61 static int die_counter;
62
63 static inline void conditional_sti(struct pt_regs *regs)
64 {
65         if (regs->flags & X86_EFLAGS_IF)
66                 local_irq_enable();
67 }
68
69 static inline void preempt_conditional_sti(struct pt_regs *regs)
70 {
71         inc_preempt_count();
72         if (regs->flags & X86_EFLAGS_IF)
73                 local_irq_enable();
74 }
75
76 static inline void preempt_conditional_cli(struct pt_regs *regs)
77 {
78         if (regs->flags & X86_EFLAGS_IF)
79                 local_irq_disable();
80         /* Make sure to not schedule here because we could be running
81            on an exception stack. */
82         dec_preempt_count();
83 }
84
85 void printk_address(unsigned long address, int reliable)
86 {
87         printk(" [<%016lx>] %s%pS\n",
88                         address, reliable ?     "" : "? ", (void *) address);
89 }
90
91 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
92                                         unsigned *usedp, char **idp)
93 {
94         static char ids[][8] = {
95                 [DEBUG_STACK - 1] = "#DB",
96                 [NMI_STACK - 1] = "NMI",
97                 [DOUBLEFAULT_STACK - 1] = "#DF",
98                 [STACKFAULT_STACK - 1] = "#SS",
99                 [MCE_STACK - 1] = "#MC",
100 #if DEBUG_STKSZ > EXCEPTION_STKSZ
101                 [N_EXCEPTION_STACKS ...
102                         N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
103 #endif
104         };
105         unsigned k;
106
107         /*
108          * Iterate over all exception stacks, and figure out whether
109          * 'stack' is in one of them:
110          */
111         for (k = 0; k < N_EXCEPTION_STACKS; k++) {
112                 unsigned long end = per_cpu(orig_ist, cpu).ist[k];
113                 /*
114                  * Is 'stack' above this exception frame's end?
115                  * If yes then skip to the next frame.
116                  */
117                 if (stack >= end)
118                         continue;
119                 /*
120                  * Is 'stack' above this exception frame's start address?
121                  * If yes then we found the right frame.
122                  */
123                 if (stack >= end - EXCEPTION_STKSZ) {
124                         /*
125                          * Make sure we only iterate through an exception
126                          * stack once. If it comes up for the second time
127                          * then there's something wrong going on - just
128                          * break out and return NULL:
129                          */
130                         if (*usedp & (1U << k))
131                                 break;
132                         *usedp |= 1U << k;
133                         *idp = ids[k];
134                         return (unsigned long *)end;
135                 }
136                 /*
137                  * If this is a debug stack, and if it has a larger size than
138                  * the usual exception stacks, then 'stack' might still
139                  * be within the lower portion of the debug stack:
140                  */
141 #if DEBUG_STKSZ > EXCEPTION_STKSZ
142                 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
143                         unsigned j = N_EXCEPTION_STACKS - 1;
144
145                         /*
146                          * Black magic. A large debug stack is composed of
147                          * multiple exception stack entries, which we
148                          * iterate through now. Dont look:
149                          */
150                         do {
151                                 ++j;
152                                 end -= EXCEPTION_STKSZ;
153                                 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
154                         } while (stack < end - EXCEPTION_STKSZ);
155                         if (*usedp & (1U << j))
156                                 break;
157                         *usedp |= 1U << j;
158                         *idp = ids[j];
159                         return (unsigned long *)end;
160                 }
161 #endif
162         }
163         return NULL;
164 }
165
166 /*
167  * x86-64 can have up to three kernel stacks:
168  * process stack
169  * interrupt stack
170  * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
171  */
172
173 static inline int valid_stack_ptr(struct thread_info *tinfo,
174                         void *p, unsigned int size, void *end)
175 {
176         void *t = tinfo;
177         if (end) {
178                 if (p < end && p >= (end-THREAD_SIZE))
179                         return 1;
180                 else
181                         return 0;
182         }
183         return p > t && p < t + THREAD_SIZE - size;
184 }
185
186 /* The form of the top of the frame on the stack */
187 struct stack_frame {
188         struct stack_frame *next_frame;
189         unsigned long return_address;
190 };
191
192 static inline unsigned long
193 print_context_stack(struct thread_info *tinfo,
194                 unsigned long *stack, unsigned long bp,
195                 const struct stacktrace_ops *ops, void *data,
196                 unsigned long *end)
197 {
198         struct stack_frame *frame = (struct stack_frame *)bp;
199
200         while (valid_stack_ptr(tinfo, stack, sizeof(*stack), end)) {
201                 unsigned long addr;
202
203                 addr = *stack;
204                 if (__kernel_text_address(addr)) {
205                         if ((unsigned long) stack == bp + 8) {
206                                 ops->address(data, addr, 1);
207                                 frame = frame->next_frame;
208                                 bp = (unsigned long) frame;
209                         } else {
210                                 ops->address(data, addr, bp == 0);
211                         }
212                 }
213                 stack++;
214         }
215         return bp;
216 }
217
218 void dump_trace(struct task_struct *task, struct pt_regs *regs,
219                 unsigned long *stack, unsigned long bp,
220                 const struct stacktrace_ops *ops, void *data)
221 {
222         const unsigned cpu = get_cpu();
223         unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
224         unsigned used = 0;
225         struct thread_info *tinfo;
226
227         if (!task)
228                 task = current;
229
230         if (!stack) {
231                 unsigned long dummy;
232                 stack = &dummy;
233                 if (task && task != current)
234                         stack = (unsigned long *)task->thread.sp;
235         }
236
237 #ifdef CONFIG_FRAME_POINTER
238         if (!bp) {
239                 if (task == current) {
240                         /* Grab bp right from our regs */
241                         asm("movq %%rbp, %0" : "=r" (bp) : );
242                 } else {
243                         /* bp is the last reg pushed by switch_to */
244                         bp = *(unsigned long *) task->thread.sp;
245                 }
246         }
247 #endif
248
249         /*
250          * Print function call entries in all stacks, starting at the
251          * current stack address. If the stacks consist of nested
252          * exceptions
253          */
254         tinfo = task_thread_info(task);
255         for (;;) {
256                 char *id;
257                 unsigned long *estack_end;
258                 estack_end = in_exception_stack(cpu, (unsigned long)stack,
259                                                 &used, &id);
260
261                 if (estack_end) {
262                         if (ops->stack(data, id) < 0)
263                                 break;
264
265                         bp = print_context_stack(tinfo, stack, bp, ops,
266                                                         data, estack_end);
267                         ops->stack(data, "<EOE>");
268                         /*
269                          * We link to the next stack via the
270                          * second-to-last pointer (index -2 to end) in the
271                          * exception stack:
272                          */
273                         stack = (unsigned long *) estack_end[-2];
274                         continue;
275                 }
276                 if (irqstack_end) {
277                         unsigned long *irqstack;
278                         irqstack = irqstack_end -
279                                 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
280
281                         if (stack >= irqstack && stack < irqstack_end) {
282                                 if (ops->stack(data, "IRQ") < 0)
283                                         break;
284                                 bp = print_context_stack(tinfo, stack, bp,
285                                                 ops, data, irqstack_end);
286                                 /*
287                                  * We link to the next stack (which would be
288                                  * the process stack normally) the last
289                                  * pointer (index -1 to end) in the IRQ stack:
290                                  */
291                                 stack = (unsigned long *) (irqstack_end[-1]);
292                                 irqstack_end = NULL;
293                                 ops->stack(data, "EOI");
294                                 continue;
295                         }
296                 }
297                 break;
298         }
299
300         /*
301          * This handles the process stack:
302          */
303         bp = print_context_stack(tinfo, stack, bp, ops, data, NULL);
304         put_cpu();
305 }
306 EXPORT_SYMBOL(dump_trace);
307
308 static void
309 print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
310 {
311         print_symbol(msg, symbol);
312         printk("\n");
313 }
314
315 static void print_trace_warning(void *data, char *msg)
316 {
317         printk("%s\n", msg);
318 }
319
320 static int print_trace_stack(void *data, char *name)
321 {
322         printk(" <%s> ", name);
323         return 0;
324 }
325
326 static void print_trace_address(void *data, unsigned long addr, int reliable)
327 {
328         touch_nmi_watchdog();
329         printk_address(addr, reliable);
330 }
331
332 static const struct stacktrace_ops print_trace_ops = {
333         .warning = print_trace_warning,
334         .warning_symbol = print_trace_warning_symbol,
335         .stack = print_trace_stack,
336         .address = print_trace_address,
337 };
338
339 static void
340 show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
341                 unsigned long *stack, unsigned long bp, char *log_lvl)
342 {
343         printk("\nCall Trace:\n");
344         dump_trace(task, regs, stack, bp, &print_trace_ops, log_lvl);
345         printk("\n");
346 }
347
348 void show_trace(struct task_struct *task, struct pt_regs *regs,
349                 unsigned long *stack, unsigned long bp)
350 {
351         show_trace_log_lvl(task, regs, stack, bp, "");
352 }
353
354 static void
355 show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
356                 unsigned long *sp, unsigned long bp, char *log_lvl)
357 {
358         unsigned long *stack;
359         int i;
360         const int cpu = smp_processor_id();
361         unsigned long *irqstack_end =
362                 (unsigned long *) (cpu_pda(cpu)->irqstackptr);
363         unsigned long *irqstack =
364                 (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
365
366         /*
367          * debugging aid: "show_stack(NULL, NULL);" prints the
368          * back trace for this cpu.
369          */
370
371         if (sp == NULL) {
372                 if (task)
373                         sp = (unsigned long *)task->thread.sp;
374                 else
375                         sp = (unsigned long *)&sp;
376         }
377
378         stack = sp;
379         for (i = 0; i < kstack_depth_to_print; i++) {
380                 if (stack >= irqstack && stack <= irqstack_end) {
381                         if (stack == irqstack_end) {
382                                 stack = (unsigned long *) (irqstack_end[-1]);
383                                 printk(" <EOI> ");
384                         }
385                 } else {
386                 if (((long) stack & (THREAD_SIZE-1)) == 0)
387                         break;
388                 }
389                 if (i && ((i % 4) == 0))
390                         printk("\n");
391                 printk(" %016lx", *stack++);
392                 touch_nmi_watchdog();
393         }
394         show_trace_log_lvl(task, regs, sp, bp, log_lvl);
395 }
396
397 void show_stack(struct task_struct *task, unsigned long *sp)
398 {
399         show_stack_log_lvl(task, NULL, sp, 0, "");
400 }
401
402 /*
403  * The architecture-independent dump_stack generator
404  */
405 void dump_stack(void)
406 {
407         unsigned long bp = 0;
408         unsigned long stack;
409
410 #ifdef CONFIG_FRAME_POINTER
411         if (!bp)
412                 asm("movq %%rbp, %0" : "=r" (bp) : );
413 #endif
414
415         printk("Pid: %d, comm: %.20s %s %s %.*s\n",
416                 current->pid, current->comm, print_tainted(),
417                 init_utsname()->release,
418                 (int)strcspn(init_utsname()->version, " "),
419                 init_utsname()->version);
420         show_trace(NULL, NULL, &stack, bp);
421 }
422 EXPORT_SYMBOL(dump_stack);
423
424 void show_registers(struct pt_regs *regs)
425 {
426         int i;
427         unsigned long sp;
428         const int cpu = smp_processor_id();
429         struct task_struct *cur = cpu_pda(cpu)->pcurrent;
430
431         sp = regs->sp;
432         printk("CPU %d ", cpu);
433         __show_regs(regs);
434         printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
435                 cur->comm, cur->pid, task_thread_info(cur), cur);
436
437         /*
438          * When in-kernel, we also print out the stack and code at the
439          * time of the fault..
440          */
441         if (!user_mode(regs)) {
442                 unsigned int code_prologue = code_bytes * 43 / 64;
443                 unsigned int code_len = code_bytes;
444                 unsigned char c;
445                 u8 *ip;
446
447                 printk("Stack: ");
448                 show_stack_log_lvl(NULL, regs, (unsigned long *)sp,
449                                 regs->bp, "");
450                 printk("\n");
451
452                 printk(KERN_EMERG "Code: ");
453
454                 ip = (u8 *)regs->ip - code_prologue;
455                 if (ip < (u8 *)PAGE_OFFSET || probe_kernel_address(ip, c)) {
456                         /* try starting at RIP */
457                         ip = (u8 *)regs->ip;
458                         code_len = code_len - code_prologue + 1;
459                 }
460                 for (i = 0; i < code_len; i++, ip++) {
461                         if (ip < (u8 *)PAGE_OFFSET ||
462                                         probe_kernel_address(ip, c)) {
463                                 printk(" Bad RIP value.");
464                                 break;
465                         }
466                         if (ip == (u8 *)regs->ip)
467                                 printk("<%02x> ", c);
468                         else
469                                 printk("%02x ", c);
470                 }
471         }
472         printk("\n");
473 }
474
475 int is_valid_bugaddr(unsigned long ip)
476 {
477         unsigned short ud2;
478
479         if (__copy_from_user(&ud2, (const void __user *) ip, sizeof(ud2)))
480                 return 0;
481
482         return ud2 == 0x0b0f;
483 }
484
485 static raw_spinlock_t die_lock = __RAW_SPIN_LOCK_UNLOCKED;
486 static int die_owner = -1;
487 static unsigned int die_nest_count;
488
489 unsigned __kprobes long oops_begin(void)
490 {
491         int cpu;
492         unsigned long flags;
493
494         oops_enter();
495
496         /* racy, but better than risking deadlock. */
497         raw_local_irq_save(flags);
498         cpu = smp_processor_id();
499         if (!__raw_spin_trylock(&die_lock)) {
500                 if (cpu == die_owner)
501                         /* nested oops. should stop eventually */;
502                 else
503                         __raw_spin_lock(&die_lock);
504         }
505         die_nest_count++;
506         die_owner = cpu;
507         console_verbose();
508         bust_spinlocks(1);
509         return flags;
510 }
511
512 void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
513 {
514         die_owner = -1;
515         bust_spinlocks(0);
516         die_nest_count--;
517         if (!die_nest_count)
518                 /* Nest count reaches zero, release the lock. */
519                 __raw_spin_unlock(&die_lock);
520         raw_local_irq_restore(flags);
521         if (!regs) {
522                 oops_exit();
523                 return;
524         }
525         if (panic_on_oops)
526                 panic("Fatal exception");
527         oops_exit();
528         do_exit(signr);
529 }
530
531 int __kprobes __die(const char *str, struct pt_regs *regs, long err)
532 {
533         printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff, ++die_counter);
534 #ifdef CONFIG_PREEMPT
535         printk("PREEMPT ");
536 #endif
537 #ifdef CONFIG_SMP
538         printk("SMP ");
539 #endif
540 #ifdef CONFIG_DEBUG_PAGEALLOC
541         printk("DEBUG_PAGEALLOC");
542 #endif
543         printk("\n");
544         if (notify_die(DIE_OOPS, str, regs, err,
545                         current->thread.trap_no, SIGSEGV) == NOTIFY_STOP)
546                 return 1;
547
548         show_registers(regs);
549         add_taint(TAINT_DIE);
550         /* Executive summary in case the oops scrolled away */
551         printk(KERN_ALERT "RIP ");
552         printk_address(regs->ip, 1);
553         printk(" RSP <%016lx>\n", regs->sp);
554         if (kexec_should_crash(current))
555                 crash_kexec(regs);
556         return 0;
557 }
558
559 void die(const char *str, struct pt_regs *regs, long err)
560 {
561         unsigned long flags = oops_begin();
562
563         if (!user_mode(regs))
564                 report_bug(regs->ip, regs);
565
566         if (__die(str, regs, err))
567                 regs = NULL;
568         oops_end(flags, regs, SIGSEGV);
569 }
570
571 notrace __kprobes void
572 die_nmi(char *str, struct pt_regs *regs, int do_panic)
573 {
574         unsigned long flags;
575
576         if (notify_die(DIE_NMIWATCHDOG, str, regs, 0, 2, SIGINT) == NOTIFY_STOP)
577                 return;
578
579         flags = oops_begin();
580         /*
581          * We are in trouble anyway, lets at least try
582          * to get a message out.
583          */
584         printk(KERN_EMERG "%s", str);
585         printk(" on CPU%d, ip %08lx, registers:\n",
586                 smp_processor_id(), regs->ip);
587         show_registers(regs);
588         if (kexec_should_crash(current))
589                 crash_kexec(regs);
590         if (do_panic || panic_on_oops)
591                 panic("Non maskable interrupt");
592         oops_end(flags, NULL, SIGBUS);
593         nmi_exit();
594         local_irq_enable();
595         do_exit(SIGBUS);
596 }
597
598 static void __kprobes
599 do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
600         long error_code, siginfo_t *info)
601 {
602         struct task_struct *tsk = current;
603
604         if (!user_mode(regs))
605                 goto kernel_trap;
606
607         /*
608          * We want error_code and trap_no set for userspace faults and
609          * kernelspace faults which result in die(), but not
610          * kernelspace faults which are fixed up.  die() gives the
611          * process no chance to handle the signal and notice the
612          * kernel fault information, so that won't result in polluting
613          * the information about previously queued, but not yet
614          * delivered, faults.  See also do_general_protection below.
615          */
616         tsk->thread.error_code = error_code;
617         tsk->thread.trap_no = trapnr;
618
619         if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
620             printk_ratelimit()) {
621                 printk(KERN_INFO
622                        "%s[%d] trap %s ip:%lx sp:%lx error:%lx",
623                        tsk->comm, tsk->pid, str,
624                        regs->ip, regs->sp, error_code);
625                 print_vma_addr(" in ", regs->ip);
626                 printk("\n");
627         }
628
629         if (info)
630                 force_sig_info(signr, info, tsk);
631         else
632                 force_sig(signr, tsk);
633         return;
634
635 kernel_trap:
636         if (!fixup_exception(regs)) {
637                 tsk->thread.error_code = error_code;
638                 tsk->thread.trap_no = trapnr;
639                 die(str, regs, error_code);
640         }
641         return;
642 }
643
644 #define DO_ERROR(trapnr, signr, str, name) \
645 asmlinkage void do_##name(struct pt_regs *regs, long error_code)        \
646 {                                                                       \
647         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr)  \
648                                                         == NOTIFY_STOP) \
649                 return;                                                 \
650         conditional_sti(regs);                                          \
651         do_trap(trapnr, signr, str, regs, error_code, NULL);            \
652 }
653
654 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr)         \
655 asmlinkage void do_##name(struct pt_regs *regs, long error_code)        \
656 {                                                                       \
657         siginfo_t info;                                                 \
658         info.si_signo = signr;                                          \
659         info.si_errno = 0;                                              \
660         info.si_code = sicode;                                          \
661         info.si_addr = (void __user *)siaddr;                           \
662         trace_hardirqs_fixup();                                         \
663         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr)  \
664                                                         == NOTIFY_STOP) \
665                 return;                                                 \
666         conditional_sti(regs);                                          \
667         do_trap(trapnr, signr, str, regs, error_code, &info);           \
668 }
669
670 DO_ERROR_INFO(0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip)
671 DO_ERROR(4, SIGSEGV, "overflow", overflow)
672 DO_ERROR(5, SIGSEGV, "bounds", bounds)
673 DO_ERROR_INFO(6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip)
674 DO_ERROR(9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
675 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
676 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
677 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
678
679 /* Runs on IST stack */
680 asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
681 {
682         if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
683                         12, SIGBUS) == NOTIFY_STOP)
684                 return;
685         preempt_conditional_sti(regs);
686         do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
687         preempt_conditional_cli(regs);
688 }
689
690 asmlinkage void do_double_fault(struct pt_regs *regs, long error_code)
691 {
692         static const char str[] = "double fault";
693         struct task_struct *tsk = current;
694
695         /* Return not checked because double check cannot be ignored */
696         notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
697
698         tsk->thread.error_code = error_code;
699         tsk->thread.trap_no = 8;
700
701         /* This is always a kernel trap and never fixable (and thus must
702            never return). */
703         for (;;)
704                 die(str, regs, error_code);
705 }
706
707 asmlinkage void __kprobes
708 do_general_protection(struct pt_regs *regs, long error_code)
709 {
710         struct task_struct *tsk;
711
712         conditional_sti(regs);
713
714         tsk = current;
715         if (!user_mode(regs))
716                 goto gp_in_kernel;
717
718         tsk->thread.error_code = error_code;
719         tsk->thread.trap_no = 13;
720
721         if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
722                         printk_ratelimit()) {
723                 printk(KERN_INFO
724                         "%s[%d] general protection ip:%lx sp:%lx error:%lx",
725                         tsk->comm, tsk->pid,
726                         regs->ip, regs->sp, error_code);
727                 print_vma_addr(" in ", regs->ip);
728                 printk("\n");
729         }
730
731         force_sig(SIGSEGV, tsk);
732         return;
733
734 gp_in_kernel:
735         if (fixup_exception(regs))
736                 return;
737
738         tsk->thread.error_code = error_code;
739         tsk->thread.trap_no = 13;
740         if (notify_die(DIE_GPF, "general protection fault", regs,
741                                 error_code, 13, SIGSEGV) == NOTIFY_STOP)
742                 return;
743         die("general protection fault", regs, error_code);
744 }
745
746 static notrace __kprobes void
747 mem_parity_error(unsigned char reason, struct pt_regs *regs)
748 {
749         printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
750                 reason);
751         printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
752
753 #if defined(CONFIG_EDAC)
754         if (edac_handler_set()) {
755                 edac_atomic_assert_error();
756                 return;
757         }
758 #endif
759
760         if (panic_on_unrecovered_nmi)
761                 panic("NMI: Not continuing");
762
763         printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
764
765         /* Clear and disable the memory parity error line. */
766         reason = (reason & 0xf) | 4;
767         outb(reason, 0x61);
768 }
769
770 static notrace __kprobes void
771 io_check_error(unsigned char reason, struct pt_regs *regs)
772 {
773         printk("NMI: IOCK error (debug interrupt?)\n");
774         show_registers(regs);
775
776         /* Re-enable the IOCK line, wait for a few seconds */
777         reason = (reason & 0xf) | 8;
778         outb(reason, 0x61);
779         mdelay(2000);
780         reason &= ~8;
781         outb(reason, 0x61);
782 }
783
784 static notrace __kprobes void
785 unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
786 {
787         if (notify_die(DIE_NMIUNKNOWN, "nmi", regs, reason, 2, SIGINT) ==
788                         NOTIFY_STOP)
789                 return;
790         printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
791                 reason);
792         printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
793
794         if (panic_on_unrecovered_nmi)
795                 panic("NMI: Not continuing");
796
797         printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
798 }
799
800 /* Runs on IST stack. This code must keep interrupts off all the time.
801    Nested NMIs are prevented by the CPU. */
802 asmlinkage notrace __kprobes void default_do_nmi(struct pt_regs *regs)
803 {
804         unsigned char reason = 0;
805         int cpu;
806
807         cpu = smp_processor_id();
808
809         /* Only the BSP gets external NMIs from the system. */
810         if (!cpu)
811                 reason = get_nmi_reason();
812
813         if (!(reason & 0xc0)) {
814                 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
815                                                                 == NOTIFY_STOP)
816                         return;
817                 /*
818                  * Ok, so this is none of the documented NMI sources,
819                  * so it must be the NMI watchdog.
820                  */
821                 if (nmi_watchdog_tick(regs, reason))
822                         return;
823                 if (!do_nmi_callback(regs, cpu))
824                         unknown_nmi_error(reason, regs);
825
826                 return;
827         }
828         if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
829                 return;
830
831         /* AK: following checks seem to be broken on modern chipsets. FIXME */
832         if (reason & 0x80)
833                 mem_parity_error(reason, regs);
834         if (reason & 0x40)
835                 io_check_error(reason, regs);
836 }
837
838 asmlinkage notrace __kprobes void
839 do_nmi(struct pt_regs *regs, long error_code)
840 {
841         nmi_enter();
842
843         add_pda(__nmi_count, 1);
844
845         if (!ignore_nmis)
846                 default_do_nmi(regs);
847
848         nmi_exit();
849 }
850
851 void stop_nmi(void)
852 {
853         acpi_nmi_disable();
854         ignore_nmis++;
855 }
856
857 void restart_nmi(void)
858 {
859         ignore_nmis--;
860         acpi_nmi_enable();
861 }
862
863 /* runs on IST stack. */
864 asmlinkage void __kprobes do_int3(struct pt_regs *regs, long error_code)
865 {
866         trace_hardirqs_fixup();
867
868         if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
869                         == NOTIFY_STOP)
870                 return;
871
872         preempt_conditional_sti(regs);
873         do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
874         preempt_conditional_cli(regs);
875 }
876
877 /* Help handler running on IST stack to switch back to user stack
878    for scheduling or signal handling. The actual stack switch is done in
879    entry.S */
880 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
881 {
882         struct pt_regs *regs = eregs;
883         /* Did already sync */
884         if (eregs == (struct pt_regs *)eregs->sp)
885                 ;
886         /* Exception from user space */
887         else if (user_mode(eregs))
888                 regs = task_pt_regs(current);
889         /* Exception from kernel and interrupts are enabled. Move to
890            kernel process stack. */
891         else if (eregs->flags & X86_EFLAGS_IF)
892                 regs = (struct pt_regs *)(eregs->sp -= sizeof(struct pt_regs));
893         if (eregs != regs)
894                 *regs = *eregs;
895         return regs;
896 }
897
898 /* runs on IST stack. */
899 asmlinkage void __kprobes do_debug(struct pt_regs *regs,
900                                    unsigned long error_code)
901 {
902         struct task_struct *tsk = current;
903         unsigned long condition;
904         siginfo_t info;
905
906         trace_hardirqs_fixup();
907
908         get_debugreg(condition, 6);
909
910         /*
911          * The processor cleared BTF, so don't mark that we need it set.
912          */
913         clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR);
914         tsk->thread.debugctlmsr = 0;
915
916         if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
917                                                 SIGTRAP) == NOTIFY_STOP)
918                 return;
919
920         preempt_conditional_sti(regs);
921
922         /* Mask out spurious debug traps due to lazy DR7 setting */
923         if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
924                 if (!tsk->thread.debugreg7)
925                         goto clear_dr7;
926         }
927
928         tsk->thread.debugreg6 = condition;
929
930         /*
931          * Single-stepping through TF: make sure we ignore any events in
932          * kernel space (but re-enable TF when returning to user mode).
933          */
934         if (condition & DR_STEP) {
935                 if (!user_mode(regs))
936                         goto clear_TF_reenable;
937         }
938
939         /* Ok, finally something we can handle */
940         tsk->thread.trap_no = 1;
941         tsk->thread.error_code = error_code;
942         info.si_signo = SIGTRAP;
943         info.si_errno = 0;
944         info.si_code = TRAP_BRKPT;
945         info.si_addr = user_mode(regs) ? (void __user *)regs->ip : NULL;
946         force_sig_info(SIGTRAP, &info, tsk);
947
948 clear_dr7:
949         set_debugreg(0, 7);
950         preempt_conditional_cli(regs);
951         return;
952
953 clear_TF_reenable:
954         set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
955         regs->flags &= ~X86_EFLAGS_TF;
956         preempt_conditional_cli(regs);
957         return;
958 }
959
960 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
961 {
962         if (fixup_exception(regs))
963                 return 1;
964
965         notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
966         /* Illegal floating point operation in the kernel */
967         current->thread.trap_no = trapnr;
968         die(str, regs, 0);
969         return 0;
970 }
971
972 /*
973  * Note that we play around with the 'TS' bit in an attempt to get
974  * the correct behaviour even in the presence of the asynchronous
975  * IRQ13 behaviour
976  */
977 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
978 {
979         void __user *ip = (void __user *)(regs->ip);
980         struct task_struct *task;
981         siginfo_t info;
982         unsigned short cwd, swd;
983
984         conditional_sti(regs);
985         if (!user_mode(regs) &&
986             kernel_math_error(regs, "kernel x87 math error", 16))
987                 return;
988
989         /*
990          * Save the info for the exception handler and clear the error.
991          */
992         task = current;
993         save_init_fpu(task);
994         task->thread.trap_no = 16;
995         task->thread.error_code = 0;
996         info.si_signo = SIGFPE;
997         info.si_errno = 0;
998         info.si_code = __SI_FAULT;
999         info.si_addr = ip;
1000         /*
1001          * (~cwd & swd) will mask out exceptions that are not set to unmasked
1002          * status.  0x3f is the exception bits in these regs, 0x200 is the
1003          * C1 reg you need in case of a stack fault, 0x040 is the stack
1004          * fault bit.  We should only be taking one exception at a time,
1005          * so if this combination doesn't produce any single exception,
1006          * then we have a bad program that isn't synchronizing its FPU usage
1007          * and it will suffer the consequences since we won't be able to
1008          * fully reproduce the context of the exception
1009          */
1010         cwd = get_fpu_cwd(task);
1011         swd = get_fpu_swd(task);
1012         switch (swd & ~cwd & 0x3f) {
1013         case 0x000: /* No unmasked exception */
1014         default: /* Multiple exceptions */
1015                 break;
1016         case 0x001: /* Invalid Op */
1017                 /*
1018                  * swd & 0x240 == 0x040: Stack Underflow
1019                  * swd & 0x240 == 0x240: Stack Overflow
1020                  * User must clear the SF bit (0x40) if set
1021                  */
1022                 info.si_code = FPE_FLTINV;
1023                 break;
1024         case 0x002: /* Denormalize */
1025         case 0x010: /* Underflow */
1026                 info.si_code = FPE_FLTUND;
1027                 break;
1028         case 0x004: /* Zero Divide */
1029                 info.si_code = FPE_FLTDIV;
1030                 break;
1031         case 0x008: /* Overflow */
1032                 info.si_code = FPE_FLTOVF;
1033                 break;
1034         case 0x020: /* Precision */
1035                 info.si_code = FPE_FLTRES;
1036                 break;
1037         }
1038         force_sig_info(SIGFPE, &info, task);
1039 }
1040
1041 asmlinkage void bad_intr(void)
1042 {
1043         printk("bad interrupt");
1044 }
1045
1046 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
1047 {
1048         void __user *ip = (void __user *)(regs->ip);
1049         struct task_struct *task;
1050         siginfo_t info;
1051         unsigned short mxcsr;
1052
1053         conditional_sti(regs);
1054         if (!user_mode(regs) &&
1055                         kernel_math_error(regs, "kernel simd math error", 19))
1056                 return;
1057
1058         /*
1059          * Save the info for the exception handler and clear the error.
1060          */
1061         task = current;
1062         save_init_fpu(task);
1063         task->thread.trap_no = 19;
1064         task->thread.error_code = 0;
1065         info.si_signo = SIGFPE;
1066         info.si_errno = 0;
1067         info.si_code = __SI_FAULT;
1068         info.si_addr = ip;
1069         /*
1070          * The SIMD FPU exceptions are handled a little differently, as there
1071          * is only a single status/control register.  Thus, to determine which
1072          * unmasked exception was caught we must mask the exception mask bits
1073          * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1074          */
1075         mxcsr = get_fpu_mxcsr(task);
1076         switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1077         case 0x000:
1078         default:
1079                 break;
1080         case 0x001: /* Invalid Op */
1081                 info.si_code = FPE_FLTINV;
1082                 break;
1083         case 0x002: /* Denormalize */
1084         case 0x010: /* Underflow */
1085                 info.si_code = FPE_FLTUND;
1086                 break;
1087         case 0x004: /* Zero Divide */
1088                 info.si_code = FPE_FLTDIV;
1089                 break;
1090         case 0x008: /* Overflow */
1091                 info.si_code = FPE_FLTOVF;
1092                 break;
1093         case 0x020: /* Precision */
1094                 info.si_code = FPE_FLTRES;
1095                 break;
1096         }
1097         force_sig_info(SIGFPE, &info, task);
1098 }
1099
1100 asmlinkage void do_spurious_interrupt_bug(struct pt_regs *regs)
1101 {
1102 }
1103
1104 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1105 {
1106 }
1107
1108 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1109 {
1110 }
1111
1112 /*
1113  * 'math_state_restore()' saves the current math information in the
1114  * old math state array, and gets the new ones from the current task
1115  *
1116  * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1117  * Don't touch unless you *really* know how it works.
1118  */
1119 asmlinkage void math_state_restore(void)
1120 {
1121         struct task_struct *me = current;
1122
1123         if (!used_math()) {
1124                 local_irq_enable();
1125                 /*
1126                  * does a slab alloc which can sleep
1127                  */
1128                 if (init_fpu(me)) {
1129                         /*
1130                          * ran out of memory!
1131                          */
1132                         do_group_exit(SIGKILL);
1133                         return;
1134                 }
1135                 local_irq_disable();
1136         }
1137
1138         clts();                         /* Allow maths ops (or we recurse) */
1139         /*
1140          * Paranoid restore. send a SIGSEGV if we fail to restore the state.
1141          */
1142         if (unlikely(restore_fpu_checking(&me->thread.xstate->fxsave))) {
1143                 stts();
1144                 force_sig(SIGSEGV, me);
1145                 return;
1146         }
1147         task_thread_info(me)->status |= TS_USEDFPU;
1148         me->fpu_counter++;
1149 }
1150 EXPORT_SYMBOL_GPL(math_state_restore);
1151
1152 void __init trap_init(void)
1153 {
1154         set_intr_gate(0, &divide_error);
1155         set_intr_gate_ist(1, &debug, DEBUG_STACK);
1156         set_intr_gate_ist(2, &nmi, NMI_STACK);
1157         /* int3 can be called from all */
1158         set_system_gate_ist(3, &int3, DEBUG_STACK);
1159         /* int4 can be called from all */
1160         set_system_gate(4, &overflow);
1161         set_intr_gate(5, &bounds);
1162         set_intr_gate(6, &invalid_op);
1163         set_intr_gate(7, &device_not_available);
1164         set_intr_gate_ist(8, &double_fault, DOUBLEFAULT_STACK);
1165         set_intr_gate(9, &coprocessor_segment_overrun);
1166         set_intr_gate(10, &invalid_TSS);
1167         set_intr_gate(11, &segment_not_present);
1168         set_intr_gate_ist(12, &stack_segment, STACKFAULT_STACK);
1169         set_intr_gate(13, &general_protection);
1170         set_intr_gate(14, &page_fault);
1171         set_intr_gate(15, &spurious_interrupt_bug);
1172         set_intr_gate(16, &coprocessor_error);
1173         set_intr_gate(17, &alignment_check);
1174 #ifdef CONFIG_X86_MCE
1175         set_intr_gate_ist(18, &machine_check, MCE_STACK);
1176 #endif
1177         set_intr_gate(19, &simd_coprocessor_error);
1178
1179 #ifdef CONFIG_IA32_EMULATION
1180         set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1181 #endif
1182         /*
1183          * initialize the per thread extended state:
1184          */
1185         init_thread_xstate();
1186         /*
1187          * Should be a barrier for any external CPU state:
1188          */
1189         cpu_init();
1190 }
1191
1192 static int __init oops_setup(char *s)
1193 {
1194         if (!s)
1195                 return -EINVAL;
1196         if (!strcmp(s, "panic"))
1197                 panic_on_oops = 1;
1198         return 0;
1199 }
1200 early_param("oops", oops_setup);
1201
1202 static int __init kstack_setup(char *s)
1203 {
1204         if (!s)
1205                 return -EINVAL;
1206         kstack_depth_to_print = simple_strtoul(s, NULL, 0);
1207         return 0;
1208 }
1209 early_param("kstack", kstack_setup);
1210
1211 static int __init code_bytes_setup(char *s)
1212 {
1213         code_bytes = simple_strtoul(s, NULL, 0);
1214         if (code_bytes > 8192)
1215                 code_bytes = 8192;
1216
1217         return 1;
1218 }
1219 __setup("code_bytes=", code_bytes_setup);