traps: i386: make do_trap more like x86_64
[deliverable/linux.git] / 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("Call Trace:\n");
344 dump_trace(task, regs, stack, bp, &print_trace_ops, log_lvl);
345 }
346
347 void show_trace(struct task_struct *task, struct pt_regs *regs,
348 unsigned long *stack, unsigned long bp)
349 {
350 show_trace_log_lvl(task, regs, stack, bp, "");
351 }
352
353 static void
354 show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
355 unsigned long *sp, unsigned long bp, char *log_lvl)
356 {
357 unsigned long *stack;
358 int i;
359 const int cpu = smp_processor_id();
360 unsigned long *irqstack_end =
361 (unsigned long *) (cpu_pda(cpu)->irqstackptr);
362 unsigned long *irqstack =
363 (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
364
365 /*
366 * debugging aid: "show_stack(NULL, NULL);" prints the
367 * back trace for this cpu.
368 */
369
370 if (sp == NULL) {
371 if (task)
372 sp = (unsigned long *)task->thread.sp;
373 else
374 sp = (unsigned long *)&sp;
375 }
376
377 stack = sp;
378 for (i = 0; i < kstack_depth_to_print; i++) {
379 if (stack >= irqstack && stack <= irqstack_end) {
380 if (stack == irqstack_end) {
381 stack = (unsigned long *) (irqstack_end[-1]);
382 printk(" <EOI> ");
383 }
384 } else {
385 if (((long) stack & (THREAD_SIZE-1)) == 0)
386 break;
387 }
388 if (i && ((i % 4) == 0))
389 printk("\n");
390 printk(" %016lx", *stack++);
391 touch_nmi_watchdog();
392 }
393 printk("\n");
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
451 printk(KERN_EMERG "Code: ");
452
453 ip = (u8 *)regs->ip - code_prologue;
454 if (ip < (u8 *)PAGE_OFFSET || probe_kernel_address(ip, c)) {
455 /* try starting at RIP */
456 ip = (u8 *)regs->ip;
457 code_len = code_len - code_prologue + 1;
458 }
459 for (i = 0; i < code_len; i++, ip++) {
460 if (ip < (u8 *)PAGE_OFFSET ||
461 probe_kernel_address(ip, c)) {
462 printk(" Bad RIP value.");
463 break;
464 }
465 if (ip == (u8 *)regs->ip)
466 printk("<%02x> ", c);
467 else
468 printk("%02x ", c);
469 }
470 }
471 printk("\n");
472 }
473
474 int is_valid_bugaddr(unsigned long ip)
475 {
476 unsigned short ud2;
477
478 if (__copy_from_user(&ud2, (const void __user *) ip, sizeof(ud2)))
479 return 0;
480
481 return ud2 == 0x0b0f;
482 }
483
484 static raw_spinlock_t die_lock = __RAW_SPIN_LOCK_UNLOCKED;
485 static int die_owner = -1;
486 static unsigned int die_nest_count;
487
488 unsigned __kprobes long oops_begin(void)
489 {
490 int cpu;
491 unsigned long flags;
492
493 oops_enter();
494
495 /* racy, but better than risking deadlock. */
496 raw_local_irq_save(flags);
497 cpu = smp_processor_id();
498 if (!__raw_spin_trylock(&die_lock)) {
499 if (cpu == die_owner)
500 /* nested oops. should stop eventually */;
501 else
502 __raw_spin_lock(&die_lock);
503 }
504 die_nest_count++;
505 die_owner = cpu;
506 console_verbose();
507 bust_spinlocks(1);
508 return flags;
509 }
510
511 void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
512 {
513 die_owner = -1;
514 bust_spinlocks(0);
515 die_nest_count--;
516 if (!die_nest_count)
517 /* Nest count reaches zero, release the lock. */
518 __raw_spin_unlock(&die_lock);
519 raw_local_irq_restore(flags);
520 if (!regs) {
521 oops_exit();
522 return;
523 }
524 if (panic_on_oops)
525 panic("Fatal exception");
526 oops_exit();
527 do_exit(signr);
528 }
529
530 int __kprobes __die(const char *str, struct pt_regs *regs, long err)
531 {
532 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff, ++die_counter);
533 #ifdef CONFIG_PREEMPT
534 printk("PREEMPT ");
535 #endif
536 #ifdef CONFIG_SMP
537 printk("SMP ");
538 #endif
539 #ifdef CONFIG_DEBUG_PAGEALLOC
540 printk("DEBUG_PAGEALLOC");
541 #endif
542 printk("\n");
543 if (notify_die(DIE_OOPS, str, regs, err,
544 current->thread.trap_no, SIGSEGV) == NOTIFY_STOP)
545 return 1;
546
547 show_registers(regs);
548 add_taint(TAINT_DIE);
549 /* Executive summary in case the oops scrolled away */
550 printk(KERN_ALERT "RIP ");
551 printk_address(regs->ip, 1);
552 printk(" RSP <%016lx>\n", regs->sp);
553 if (kexec_should_crash(current))
554 crash_kexec(regs);
555 return 0;
556 }
557
558 void die(const char *str, struct pt_regs *regs, long err)
559 {
560 unsigned long flags = oops_begin();
561
562 if (!user_mode(regs))
563 report_bug(regs->ip, regs);
564
565 if (__die(str, regs, err))
566 regs = NULL;
567 oops_end(flags, regs, SIGSEGV);
568 }
569
570 notrace __kprobes void
571 die_nmi(char *str, struct pt_regs *regs, int do_panic)
572 {
573 unsigned long flags;
574
575 if (notify_die(DIE_NMIWATCHDOG, str, regs, 0, 2, SIGINT) == NOTIFY_STOP)
576 return;
577
578 flags = oops_begin();
579 /*
580 * We are in trouble anyway, lets at least try
581 * to get a message out.
582 */
583 printk(KERN_EMERG "%s", str);
584 printk(" on CPU%d, ip %08lx, registers:\n",
585 smp_processor_id(), regs->ip);
586 show_registers(regs);
587 if (kexec_should_crash(current))
588 crash_kexec(regs);
589 if (do_panic || panic_on_oops)
590 panic("Non maskable interrupt");
591 oops_end(flags, NULL, SIGBUS);
592 nmi_exit();
593 local_irq_enable();
594 do_exit(SIGBUS);
595 }
596
597 static void __kprobes
598 do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
599 long error_code, siginfo_t *info)
600 {
601 struct task_struct *tsk = current;
602
603 if (!user_mode(regs))
604 goto kernel_trap;
605
606 /*
607 * We want error_code and trap_no set for userspace faults and
608 * kernelspace faults which result in die(), but not
609 * kernelspace faults which are fixed up. die() gives the
610 * process no chance to handle the signal and notice the
611 * kernel fault information, so that won't result in polluting
612 * the information about previously queued, but not yet
613 * delivered, faults. See also do_general_protection below.
614 */
615 tsk->thread.error_code = error_code;
616 tsk->thread.trap_no = trapnr;
617
618 if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
619 printk_ratelimit()) {
620 printk(KERN_INFO
621 "%s[%d] trap %s ip:%lx sp:%lx error:%lx",
622 tsk->comm, tsk->pid, str,
623 regs->ip, regs->sp, error_code);
624 print_vma_addr(" in ", regs->ip);
625 printk("\n");
626 }
627
628 if (info)
629 force_sig_info(signr, info, tsk);
630 else
631 force_sig(signr, tsk);
632 return;
633
634 kernel_trap:
635 if (!fixup_exception(regs)) {
636 tsk->thread.error_code = error_code;
637 tsk->thread.trap_no = trapnr;
638 die(str, regs, error_code);
639 }
640 return;
641 }
642
643 #define DO_ERROR(trapnr, signr, str, name) \
644 asmlinkage void do_##name(struct pt_regs *regs, long error_code) \
645 { \
646 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
647 == NOTIFY_STOP) \
648 return; \
649 conditional_sti(regs); \
650 do_trap(trapnr, signr, str, regs, error_code, NULL); \
651 }
652
653 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
654 asmlinkage void do_##name(struct pt_regs *regs, long error_code) \
655 { \
656 siginfo_t info; \
657 info.si_signo = signr; \
658 info.si_errno = 0; \
659 info.si_code = sicode; \
660 info.si_addr = (void __user *)siaddr; \
661 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
662 == NOTIFY_STOP) \
663 return; \
664 conditional_sti(regs); \
665 do_trap(trapnr, signr, str, regs, error_code, &info); \
666 }
667
668 DO_ERROR_INFO(0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip)
669 DO_ERROR(4, SIGSEGV, "overflow", overflow)
670 DO_ERROR(5, SIGSEGV, "bounds", bounds)
671 DO_ERROR_INFO(6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip)
672 DO_ERROR(9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
673 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
674 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
675 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
676
677 /* Runs on IST stack */
678 asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
679 {
680 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
681 12, SIGBUS) == NOTIFY_STOP)
682 return;
683 preempt_conditional_sti(regs);
684 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
685 preempt_conditional_cli(regs);
686 }
687
688 asmlinkage void do_double_fault(struct pt_regs *regs, long error_code)
689 {
690 static const char str[] = "double fault";
691 struct task_struct *tsk = current;
692
693 /* Return not checked because double check cannot be ignored */
694 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
695
696 tsk->thread.error_code = error_code;
697 tsk->thread.trap_no = 8;
698
699 /* This is always a kernel trap and never fixable (and thus must
700 never return). */
701 for (;;)
702 die(str, regs, error_code);
703 }
704
705 asmlinkage void __kprobes
706 do_general_protection(struct pt_regs *regs, long error_code)
707 {
708 struct task_struct *tsk;
709
710 conditional_sti(regs);
711
712 tsk = current;
713 if (!user_mode(regs))
714 goto gp_in_kernel;
715
716 tsk->thread.error_code = error_code;
717 tsk->thread.trap_no = 13;
718
719 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
720 printk_ratelimit()) {
721 printk(KERN_INFO
722 "%s[%d] general protection ip:%lx sp:%lx error:%lx",
723 tsk->comm, tsk->pid,
724 regs->ip, regs->sp, error_code);
725 print_vma_addr(" in ", regs->ip);
726 printk("\n");
727 }
728
729 force_sig(SIGSEGV, tsk);
730 return;
731
732 gp_in_kernel:
733 if (fixup_exception(regs))
734 return;
735
736 tsk->thread.error_code = error_code;
737 tsk->thread.trap_no = 13;
738 if (notify_die(DIE_GPF, "general protection fault", regs,
739 error_code, 13, SIGSEGV) == NOTIFY_STOP)
740 return;
741 die("general protection fault", regs, error_code);
742 }
743
744 static notrace __kprobes void
745 mem_parity_error(unsigned char reason, struct pt_regs *regs)
746 {
747 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
748 reason);
749 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
750
751 #if defined(CONFIG_EDAC)
752 if (edac_handler_set()) {
753 edac_atomic_assert_error();
754 return;
755 }
756 #endif
757
758 if (panic_on_unrecovered_nmi)
759 panic("NMI: Not continuing");
760
761 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
762
763 /* Clear and disable the memory parity error line. */
764 reason = (reason & 0xf) | 4;
765 outb(reason, 0x61);
766 }
767
768 static notrace __kprobes void
769 io_check_error(unsigned char reason, struct pt_regs *regs)
770 {
771 printk("NMI: IOCK error (debug interrupt?)\n");
772 show_registers(regs);
773
774 /* Re-enable the IOCK line, wait for a few seconds */
775 reason = (reason & 0xf) | 8;
776 outb(reason, 0x61);
777 mdelay(2000);
778 reason &= ~8;
779 outb(reason, 0x61);
780 }
781
782 static notrace __kprobes void
783 unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
784 {
785 if (notify_die(DIE_NMIUNKNOWN, "nmi", regs, reason, 2, SIGINT) ==
786 NOTIFY_STOP)
787 return;
788 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
789 reason);
790 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
791
792 if (panic_on_unrecovered_nmi)
793 panic("NMI: Not continuing");
794
795 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
796 }
797
798 /* Runs on IST stack. This code must keep interrupts off all the time.
799 Nested NMIs are prevented by the CPU. */
800 asmlinkage notrace __kprobes void default_do_nmi(struct pt_regs *regs)
801 {
802 unsigned char reason = 0;
803 int cpu;
804
805 cpu = smp_processor_id();
806
807 /* Only the BSP gets external NMIs from the system. */
808 if (!cpu)
809 reason = get_nmi_reason();
810
811 if (!(reason & 0xc0)) {
812 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
813 == NOTIFY_STOP)
814 return;
815 /*
816 * Ok, so this is none of the documented NMI sources,
817 * so it must be the NMI watchdog.
818 */
819 if (nmi_watchdog_tick(regs, reason))
820 return;
821 if (!do_nmi_callback(regs, cpu))
822 unknown_nmi_error(reason, regs);
823
824 return;
825 }
826 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
827 return;
828
829 /* AK: following checks seem to be broken on modern chipsets. FIXME */
830 if (reason & 0x80)
831 mem_parity_error(reason, regs);
832 if (reason & 0x40)
833 io_check_error(reason, regs);
834 }
835
836 asmlinkage notrace __kprobes void
837 do_nmi(struct pt_regs *regs, long error_code)
838 {
839 nmi_enter();
840
841 add_pda(__nmi_count, 1);
842
843 if (!ignore_nmis)
844 default_do_nmi(regs);
845
846 nmi_exit();
847 }
848
849 void stop_nmi(void)
850 {
851 acpi_nmi_disable();
852 ignore_nmis++;
853 }
854
855 void restart_nmi(void)
856 {
857 ignore_nmis--;
858 acpi_nmi_enable();
859 }
860
861 /* runs on IST stack. */
862 asmlinkage void __kprobes do_int3(struct pt_regs *regs, long error_code)
863 {
864 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
865 == NOTIFY_STOP)
866 return;
867
868 preempt_conditional_sti(regs);
869 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
870 preempt_conditional_cli(regs);
871 }
872
873 /* Help handler running on IST stack to switch back to user stack
874 for scheduling or signal handling. The actual stack switch is done in
875 entry.S */
876 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
877 {
878 struct pt_regs *regs = eregs;
879 /* Did already sync */
880 if (eregs == (struct pt_regs *)eregs->sp)
881 ;
882 /* Exception from user space */
883 else if (user_mode(eregs))
884 regs = task_pt_regs(current);
885 /* Exception from kernel and interrupts are enabled. Move to
886 kernel process stack. */
887 else if (eregs->flags & X86_EFLAGS_IF)
888 regs = (struct pt_regs *)(eregs->sp -= sizeof(struct pt_regs));
889 if (eregs != regs)
890 *regs = *eregs;
891 return regs;
892 }
893
894 /* runs on IST stack. */
895 asmlinkage void __kprobes do_debug(struct pt_regs *regs,
896 unsigned long error_code)
897 {
898 struct task_struct *tsk = current;
899 unsigned long condition;
900 siginfo_t info;
901
902 get_debugreg(condition, 6);
903
904 /*
905 * The processor cleared BTF, so don't mark that we need it set.
906 */
907 clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR);
908 tsk->thread.debugctlmsr = 0;
909
910 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
911 SIGTRAP) == NOTIFY_STOP)
912 return;
913
914 preempt_conditional_sti(regs);
915
916 /* Mask out spurious debug traps due to lazy DR7 setting */
917 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
918 if (!tsk->thread.debugreg7)
919 goto clear_dr7;
920 }
921
922 tsk->thread.debugreg6 = condition;
923
924 /*
925 * Single-stepping through TF: make sure we ignore any events in
926 * kernel space (but re-enable TF when returning to user mode).
927 */
928 if (condition & DR_STEP) {
929 if (!user_mode(regs))
930 goto clear_TF_reenable;
931 }
932
933 /* Ok, finally something we can handle */
934 tsk->thread.trap_no = 1;
935 tsk->thread.error_code = error_code;
936 info.si_signo = SIGTRAP;
937 info.si_errno = 0;
938 info.si_code = get_si_code(condition);
939 info.si_addr = user_mode(regs) ? (void __user *)regs->ip : NULL;
940 force_sig_info(SIGTRAP, &info, tsk);
941
942 clear_dr7:
943 set_debugreg(0, 7);
944 preempt_conditional_cli(regs);
945 return;
946
947 clear_TF_reenable:
948 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
949 regs->flags &= ~X86_EFLAGS_TF;
950 preempt_conditional_cli(regs);
951 return;
952 }
953
954 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
955 {
956 if (fixup_exception(regs))
957 return 1;
958
959 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
960 /* Illegal floating point operation in the kernel */
961 current->thread.trap_no = trapnr;
962 die(str, regs, 0);
963 return 0;
964 }
965
966 /*
967 * Note that we play around with the 'TS' bit in an attempt to get
968 * the correct behaviour even in the presence of the asynchronous
969 * IRQ13 behaviour
970 */
971 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
972 {
973 void __user *ip = (void __user *)(regs->ip);
974 struct task_struct *task;
975 siginfo_t info;
976 unsigned short cwd, swd;
977
978 conditional_sti(regs);
979 if (!user_mode(regs) &&
980 kernel_math_error(regs, "kernel x87 math error", 16))
981 return;
982
983 /*
984 * Save the info for the exception handler and clear the error.
985 */
986 task = current;
987 save_init_fpu(task);
988 task->thread.trap_no = 16;
989 task->thread.error_code = 0;
990 info.si_signo = SIGFPE;
991 info.si_errno = 0;
992 info.si_code = __SI_FAULT;
993 info.si_addr = ip;
994 /*
995 * (~cwd & swd) will mask out exceptions that are not set to unmasked
996 * status. 0x3f is the exception bits in these regs, 0x200 is the
997 * C1 reg you need in case of a stack fault, 0x040 is the stack
998 * fault bit. We should only be taking one exception at a time,
999 * so if this combination doesn't produce any single exception,
1000 * then we have a bad program that isn't synchronizing its FPU usage
1001 * and it will suffer the consequences since we won't be able to
1002 * fully reproduce the context of the exception
1003 */
1004 cwd = get_fpu_cwd(task);
1005 swd = get_fpu_swd(task);
1006 switch (swd & ~cwd & 0x3f) {
1007 case 0x000: /* No unmasked exception */
1008 default: /* Multiple exceptions */
1009 break;
1010 case 0x001: /* Invalid Op */
1011 /*
1012 * swd & 0x240 == 0x040: Stack Underflow
1013 * swd & 0x240 == 0x240: Stack Overflow
1014 * User must clear the SF bit (0x40) if set
1015 */
1016 info.si_code = FPE_FLTINV;
1017 break;
1018 case 0x002: /* Denormalize */
1019 case 0x010: /* Underflow */
1020 info.si_code = FPE_FLTUND;
1021 break;
1022 case 0x004: /* Zero Divide */
1023 info.si_code = FPE_FLTDIV;
1024 break;
1025 case 0x008: /* Overflow */
1026 info.si_code = FPE_FLTOVF;
1027 break;
1028 case 0x020: /* Precision */
1029 info.si_code = FPE_FLTRES;
1030 break;
1031 }
1032 force_sig_info(SIGFPE, &info, task);
1033 }
1034
1035 asmlinkage void bad_intr(void)
1036 {
1037 printk("bad interrupt");
1038 }
1039
1040 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
1041 {
1042 void __user *ip = (void __user *)(regs->ip);
1043 struct task_struct *task;
1044 siginfo_t info;
1045 unsigned short mxcsr;
1046
1047 conditional_sti(regs);
1048 if (!user_mode(regs) &&
1049 kernel_math_error(regs, "kernel simd math error", 19))
1050 return;
1051
1052 /*
1053 * Save the info for the exception handler and clear the error.
1054 */
1055 task = current;
1056 save_init_fpu(task);
1057 task->thread.trap_no = 19;
1058 task->thread.error_code = 0;
1059 info.si_signo = SIGFPE;
1060 info.si_errno = 0;
1061 info.si_code = __SI_FAULT;
1062 info.si_addr = ip;
1063 /*
1064 * The SIMD FPU exceptions are handled a little differently, as there
1065 * is only a single status/control register. Thus, to determine which
1066 * unmasked exception was caught we must mask the exception mask bits
1067 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1068 */
1069 mxcsr = get_fpu_mxcsr(task);
1070 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1071 case 0x000:
1072 default:
1073 break;
1074 case 0x001: /* Invalid Op */
1075 info.si_code = FPE_FLTINV;
1076 break;
1077 case 0x002: /* Denormalize */
1078 case 0x010: /* Underflow */
1079 info.si_code = FPE_FLTUND;
1080 break;
1081 case 0x004: /* Zero Divide */
1082 info.si_code = FPE_FLTDIV;
1083 break;
1084 case 0x008: /* Overflow */
1085 info.si_code = FPE_FLTOVF;
1086 break;
1087 case 0x020: /* Precision */
1088 info.si_code = FPE_FLTRES;
1089 break;
1090 }
1091 force_sig_info(SIGFPE, &info, task);
1092 }
1093
1094 asmlinkage void do_spurious_interrupt_bug(struct pt_regs *regs)
1095 {
1096 }
1097
1098 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1099 {
1100 }
1101
1102 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1103 {
1104 }
1105
1106 /*
1107 * 'math_state_restore()' saves the current math information in the
1108 * old math state array, and gets the new ones from the current task
1109 *
1110 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1111 * Don't touch unless you *really* know how it works.
1112 */
1113 asmlinkage void math_state_restore(void)
1114 {
1115 struct task_struct *me = current;
1116
1117 if (!used_math()) {
1118 local_irq_enable();
1119 /*
1120 * does a slab alloc which can sleep
1121 */
1122 if (init_fpu(me)) {
1123 /*
1124 * ran out of memory!
1125 */
1126 do_group_exit(SIGKILL);
1127 return;
1128 }
1129 local_irq_disable();
1130 }
1131
1132 clts(); /* Allow maths ops (or we recurse) */
1133 /*
1134 * Paranoid restore. send a SIGSEGV if we fail to restore the state.
1135 */
1136 if (unlikely(restore_fpu_checking(me))) {
1137 stts();
1138 force_sig(SIGSEGV, me);
1139 return;
1140 }
1141 task_thread_info(me)->status |= TS_USEDFPU;
1142 me->fpu_counter++;
1143 }
1144 EXPORT_SYMBOL_GPL(math_state_restore);
1145
1146 void __init trap_init(void)
1147 {
1148 set_intr_gate(0, &divide_error);
1149 set_intr_gate_ist(1, &debug, DEBUG_STACK);
1150 set_intr_gate_ist(2, &nmi, NMI_STACK);
1151 /* int3 can be called from all */
1152 set_system_gate_ist(3, &int3, DEBUG_STACK);
1153 /* int4 can be called from all */
1154 set_system_gate(4, &overflow);
1155 set_intr_gate(5, &bounds);
1156 set_intr_gate(6, &invalid_op);
1157 set_intr_gate(7, &device_not_available);
1158 set_intr_gate_ist(8, &double_fault, DOUBLEFAULT_STACK);
1159 set_intr_gate(9, &coprocessor_segment_overrun);
1160 set_intr_gate(10, &invalid_TSS);
1161 set_intr_gate(11, &segment_not_present);
1162 set_intr_gate_ist(12, &stack_segment, STACKFAULT_STACK);
1163 set_intr_gate(13, &general_protection);
1164 set_intr_gate(14, &page_fault);
1165 set_intr_gate(15, &spurious_interrupt_bug);
1166 set_intr_gate(16, &coprocessor_error);
1167 set_intr_gate(17, &alignment_check);
1168 #ifdef CONFIG_X86_MCE
1169 set_intr_gate_ist(18, &machine_check, MCE_STACK);
1170 #endif
1171 set_intr_gate(19, &simd_coprocessor_error);
1172
1173 #ifdef CONFIG_IA32_EMULATION
1174 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1175 #endif
1176 /*
1177 * Should be a barrier for any external CPU state:
1178 */
1179 cpu_init();
1180 }
1181
1182 static int __init oops_setup(char *s)
1183 {
1184 if (!s)
1185 return -EINVAL;
1186 if (!strcmp(s, "panic"))
1187 panic_on_oops = 1;
1188 return 0;
1189 }
1190 early_param("oops", oops_setup);
1191
1192 static int __init kstack_setup(char *s)
1193 {
1194 if (!s)
1195 return -EINVAL;
1196 kstack_depth_to_print = simple_strtoul(s, NULL, 0);
1197 return 0;
1198 }
1199 early_param("kstack", kstack_setup);
1200
1201 static int __init code_bytes_setup(char *s)
1202 {
1203 code_bytes = simple_strtoul(s, NULL, 0);
1204 if (code_bytes > 8192)
1205 code_bytes = 8192;
1206
1207 return 1;
1208 }
1209 __setup("code_bytes=", code_bytes_setup);
This page took 0.0750459999999999 seconds and 5 git commands to generate.