Merge master.kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog
[pandora-kernel.git] / arch / x86_64 / kernel / traps.c
1 /*
2  *  linux/arch/x86-64/traps.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  *  Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
6  *
7  *  Pentium III FXSR, SSE support
8  *      Gareth Hughes <gareth@valinux.com>, May 2000
9  */
10
11 /*
12  * 'Traps.c' handles hardware traps and faults after we have saved some
13  * state in 'entry.S'.
14  */
15 #include <linux/config.h>
16 #include <linux/sched.h>
17 #include <linux/kernel.h>
18 #include <linux/string.h>
19 #include <linux/errno.h>
20 #include <linux/ptrace.h>
21 #include <linux/timer.h>
22 #include <linux/mm.h>
23 #include <linux/init.h>
24 #include <linux/delay.h>
25 #include <linux/spinlock.h>
26 #include <linux/interrupt.h>
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/nmi.h>
30 #include <linux/kprobes.h>
31 #include <linux/kexec.h>
32 #include <linux/unwind.h>
33
34 #include <asm/system.h>
35 #include <asm/uaccess.h>
36 #include <asm/io.h>
37 #include <asm/atomic.h>
38 #include <asm/debugreg.h>
39 #include <asm/desc.h>
40 #include <asm/i387.h>
41 #include <asm/kdebug.h>
42 #include <asm/processor.h>
43 #include <asm/unwind.h>
44 #include <asm/smp.h>
45 #include <asm/pgalloc.h>
46 #include <asm/pda.h>
47 #include <asm/proto.h>
48 #include <asm/nmi.h>
49
50 asmlinkage void divide_error(void);
51 asmlinkage void debug(void);
52 asmlinkage void nmi(void);
53 asmlinkage void int3(void);
54 asmlinkage void overflow(void);
55 asmlinkage void bounds(void);
56 asmlinkage void invalid_op(void);
57 asmlinkage void device_not_available(void);
58 asmlinkage void double_fault(void);
59 asmlinkage void coprocessor_segment_overrun(void);
60 asmlinkage void invalid_TSS(void);
61 asmlinkage void segment_not_present(void);
62 asmlinkage void stack_segment(void);
63 asmlinkage void general_protection(void);
64 asmlinkage void page_fault(void);
65 asmlinkage void coprocessor_error(void);
66 asmlinkage void simd_coprocessor_error(void);
67 asmlinkage void reserved(void);
68 asmlinkage void alignment_check(void);
69 asmlinkage void machine_check(void);
70 asmlinkage void spurious_interrupt_bug(void);
71
72 ATOMIC_NOTIFIER_HEAD(die_chain);
73 EXPORT_SYMBOL(die_chain);
74
75 int register_die_notifier(struct notifier_block *nb)
76 {
77         vmalloc_sync_all();
78         return atomic_notifier_chain_register(&die_chain, nb);
79 }
80 EXPORT_SYMBOL(register_die_notifier);
81
82 int unregister_die_notifier(struct notifier_block *nb)
83 {
84         return atomic_notifier_chain_unregister(&die_chain, nb);
85 }
86 EXPORT_SYMBOL(unregister_die_notifier);
87
88 static inline void conditional_sti(struct pt_regs *regs)
89 {
90         if (regs->eflags & X86_EFLAGS_IF)
91                 local_irq_enable();
92 }
93
94 static inline void preempt_conditional_sti(struct pt_regs *regs)
95 {
96         preempt_disable();
97         if (regs->eflags & X86_EFLAGS_IF)
98                 local_irq_enable();
99 }
100
101 static inline void preempt_conditional_cli(struct pt_regs *regs)
102 {
103         if (regs->eflags & X86_EFLAGS_IF)
104                 local_irq_disable();
105         /* Make sure to not schedule here because we could be running
106            on an exception stack. */
107         preempt_enable_no_resched();
108 }
109
110 static int kstack_depth_to_print = 12;
111 static int call_trace = 1;
112
113 #ifdef CONFIG_KALLSYMS
114 #include <linux/kallsyms.h> 
115 int printk_address(unsigned long address)
116
117         unsigned long offset = 0, symsize;
118         const char *symname;
119         char *modname;
120         char *delim = ":"; 
121         char namebuf[128];
122
123         symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf); 
124         if (!symname) 
125                 return printk("[<%016lx>]", address);
126         if (!modname) 
127                 modname = delim = "";           
128         return printk("<%016lx>{%s%s%s%s%+ld}",
129                       address, delim, modname, delim, symname, offset); 
130
131 #else
132 int printk_address(unsigned long address)
133
134         return printk("[<%016lx>]", address);
135
136 #endif
137
138 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
139                                         unsigned *usedp, const char **idp)
140 {
141         static char ids[][8] = {
142                 [DEBUG_STACK - 1] = "#DB",
143                 [NMI_STACK - 1] = "NMI",
144                 [DOUBLEFAULT_STACK - 1] = "#DF",
145                 [STACKFAULT_STACK - 1] = "#SS",
146                 [MCE_STACK - 1] = "#MC",
147 #if DEBUG_STKSZ > EXCEPTION_STKSZ
148                 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
149 #endif
150         };
151         unsigned k;
152
153         for (k = 0; k < N_EXCEPTION_STACKS; k++) {
154                 unsigned long end;
155
156                 switch (k + 1) {
157 #if DEBUG_STKSZ > EXCEPTION_STKSZ
158                 case DEBUG_STACK:
159                         end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
160                         break;
161 #endif
162                 default:
163                         end = per_cpu(init_tss, cpu).ist[k];
164                         break;
165                 }
166                 if (stack >= end)
167                         continue;
168                 if (stack >= end - EXCEPTION_STKSZ) {
169                         if (*usedp & (1U << k))
170                                 break;
171                         *usedp |= 1U << k;
172                         *idp = ids[k];
173                         return (unsigned long *)end;
174                 }
175 #if DEBUG_STKSZ > EXCEPTION_STKSZ
176                 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
177                         unsigned j = N_EXCEPTION_STACKS - 1;
178
179                         do {
180                                 ++j;
181                                 end -= EXCEPTION_STKSZ;
182                                 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
183                         } while (stack < end - EXCEPTION_STKSZ);
184                         if (*usedp & (1U << j))
185                                 break;
186                         *usedp |= 1U << j;
187                         *idp = ids[j];
188                         return (unsigned long *)end;
189                 }
190 #endif
191         }
192         return NULL;
193 }
194
195 static int show_trace_unwind(struct unwind_frame_info *info, void *context)
196 {
197         int i = 11, n = 0;
198
199         while (unwind(info) == 0 && UNW_PC(info)) {
200                 ++n;
201                 if (i > 50) {
202                         printk("\n       ");
203                         i = 7;
204                 } else
205                         i += printk(" ");
206                 i += printk_address(UNW_PC(info));
207                 if (arch_unw_user_mode(info))
208                         break;
209         }
210         printk("\n");
211         return n;
212 }
213
214 /*
215  * x86-64 can have upto three kernel stacks: 
216  * process stack
217  * interrupt stack
218  * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
219  */
220
221 void show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * stack)
222 {
223         const unsigned cpu = safe_smp_processor_id();
224         unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
225         int i = 11;
226         unsigned used = 0;
227
228         printk("\nCall Trace:");
229
230         if (!tsk)
231                 tsk = current;
232
233         if (call_trace >= 0) {
234                 int unw_ret = 0;
235                 struct unwind_frame_info info;
236
237                 if (regs) {
238                         if (unwind_init_frame_info(&info, tsk, regs) == 0)
239                                 unw_ret = show_trace_unwind(&info, NULL);
240                 } else if (tsk == current)
241                         unw_ret = unwind_init_running(&info, show_trace_unwind, NULL);
242                 else {
243                         if (unwind_init_blocked(&info, tsk) == 0)
244                                 unw_ret = show_trace_unwind(&info, NULL);
245                 }
246                 if (unw_ret > 0) {
247                         if (call_trace > 0)
248                                 return;
249                         printk("Legacy call trace:");
250                         i = 18;
251                 }
252         }
253
254 #define HANDLE_STACK(cond) \
255         do while (cond) { \
256                 unsigned long addr = *stack++; \
257                 if (kernel_text_address(addr)) { \
258                         if (i > 50) { \
259                                 printk("\n       "); \
260                                 i = 0; \
261                         } \
262                         else \
263                                 i += printk(" "); \
264                         /* \
265                          * If the address is either in the text segment of the \
266                          * kernel, or in the region which contains vmalloc'ed \
267                          * memory, it *may* be the address of a calling \
268                          * routine; if so, print it so that someone tracing \
269                          * down the cause of the crash will be able to figure \
270                          * out the call path that was taken. \
271                          */ \
272                         i += printk_address(addr); \
273                 } \
274         } while (0)
275
276         for(; ; ) {
277                 const char *id;
278                 unsigned long *estack_end;
279                 estack_end = in_exception_stack(cpu, (unsigned long)stack,
280                                                 &used, &id);
281
282                 if (estack_end) {
283                         i += printk(" <%s>", id);
284                         HANDLE_STACK (stack < estack_end);
285                         i += printk(" <EOE>");
286                         stack = (unsigned long *) estack_end[-2];
287                         continue;
288                 }
289                 if (irqstack_end) {
290                         unsigned long *irqstack;
291                         irqstack = irqstack_end -
292                                 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
293
294                         if (stack >= irqstack && stack < irqstack_end) {
295                                 i += printk(" <IRQ>");
296                                 HANDLE_STACK (stack < irqstack_end);
297                                 stack = (unsigned long *) (irqstack_end[-1]);
298                                 irqstack_end = NULL;
299                                 i += printk(" <EOI>");
300                                 continue;
301                         }
302                 }
303                 break;
304         }
305
306         HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
307 #undef HANDLE_STACK
308         printk("\n");
309 }
310
311 static void _show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long * rsp)
312 {
313         unsigned long *stack;
314         int i;
315         const int cpu = safe_smp_processor_id();
316         unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
317         unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
318
319         // debugging aid: "show_stack(NULL, NULL);" prints the
320         // back trace for this cpu.
321
322         if (rsp == NULL) {
323                 if (tsk)
324                         rsp = (unsigned long *)tsk->thread.rsp;
325                 else
326                         rsp = (unsigned long *)&rsp;
327         }
328
329         stack = rsp;
330         for(i=0; i < kstack_depth_to_print; i++) {
331                 if (stack >= irqstack && stack <= irqstack_end) {
332                         if (stack == irqstack_end) {
333                                 stack = (unsigned long *) (irqstack_end[-1]);
334                                 printk(" <EOI> ");
335                         }
336                 } else {
337                 if (((long) stack & (THREAD_SIZE-1)) == 0)
338                         break;
339                 }
340                 if (i && ((i % 4) == 0))
341                         printk("\n       ");
342                 printk("%016lx ", *stack++);
343                 touch_nmi_watchdog();
344         }
345         show_trace(tsk, regs, rsp);
346 }
347
348 void show_stack(struct task_struct *tsk, unsigned long * rsp)
349 {
350         _show_stack(tsk, NULL, rsp);
351 }
352
353 /*
354  * The architecture-independent dump_stack generator
355  */
356 void dump_stack(void)
357 {
358         unsigned long dummy;
359         show_trace(NULL, NULL, &dummy);
360 }
361
362 EXPORT_SYMBOL(dump_stack);
363
364 void show_registers(struct pt_regs *regs)
365 {
366         int i;
367         int in_kernel = !user_mode(regs);
368         unsigned long rsp;
369         const int cpu = safe_smp_processor_id(); 
370         struct task_struct *cur = cpu_pda(cpu)->pcurrent;
371
372                 rsp = regs->rsp;
373
374         printk("CPU %d ", cpu);
375         __show_regs(regs);
376         printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
377                 cur->comm, cur->pid, task_thread_info(cur), cur);
378
379         /*
380          * When in-kernel, we also print out the stack and code at the
381          * time of the fault..
382          */
383         if (in_kernel) {
384
385                 printk("Stack: ");
386                 _show_stack(NULL, regs, (unsigned long*)rsp);
387
388                 printk("\nCode: ");
389                 if (regs->rip < PAGE_OFFSET)
390                         goto bad;
391
392                 for (i=0; i<20; i++) {
393                         unsigned char c;
394                         if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
395 bad:
396                                 printk(" Bad RIP value.");
397                                 break;
398                         }
399                         printk("%02x ", c);
400                 }
401         }
402         printk("\n");
403 }       
404
405 void handle_BUG(struct pt_regs *regs)
406
407         struct bug_frame f;
408         long len;
409         const char *prefix = "";
410
411         if (user_mode(regs))
412                 return; 
413         if (__copy_from_user(&f, (const void __user *) regs->rip,
414                              sizeof(struct bug_frame)))
415                 return; 
416         if (f.filename >= 0 ||
417             f.ud2[0] != 0x0f || f.ud2[1] != 0x0b) 
418                 return;
419         len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
420         if (len < 0 || len >= PATH_MAX)
421                 f.filename = (int)(long)"unmapped filename";
422         else if (len > 50) {
423                 f.filename += len - 50;
424                 prefix = "...";
425         }
426         printk("----------- [cut here ] --------- [please bite here ] ---------\n");
427         printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
428
429
430 #ifdef CONFIG_BUG
431 void out_of_line_bug(void)
432
433         BUG(); 
434
435 EXPORT_SYMBOL(out_of_line_bug);
436 #endif
437
438 static DEFINE_SPINLOCK(die_lock);
439 static int die_owner = -1;
440 static unsigned int die_nest_count;
441
442 unsigned __kprobes long oops_begin(void)
443 {
444         int cpu = safe_smp_processor_id();
445         unsigned long flags;
446
447         /* racy, but better than risking deadlock. */
448         local_irq_save(flags);
449         if (!spin_trylock(&die_lock)) { 
450                 if (cpu == die_owner) 
451                         /* nested oops. should stop eventually */;
452                 else
453                         spin_lock(&die_lock);
454         }
455         die_nest_count++;
456         die_owner = cpu;
457         console_verbose();
458         bust_spinlocks(1);
459         return flags;
460 }
461
462 void __kprobes oops_end(unsigned long flags)
463
464         die_owner = -1;
465         bust_spinlocks(0);
466         die_nest_count--;
467         if (die_nest_count)
468                 /* We still own the lock */
469                 local_irq_restore(flags);
470         else
471                 /* Nest count reaches zero, release the lock. */
472                 spin_unlock_irqrestore(&die_lock, flags);
473         if (panic_on_oops)
474                 panic("Oops");
475 }
476
477 void __kprobes __die(const char * str, struct pt_regs * regs, long err)
478 {
479         static int die_counter;
480         printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
481 #ifdef CONFIG_PREEMPT
482         printk("PREEMPT ");
483 #endif
484 #ifdef CONFIG_SMP
485         printk("SMP ");
486 #endif
487 #ifdef CONFIG_DEBUG_PAGEALLOC
488         printk("DEBUG_PAGEALLOC");
489 #endif
490         printk("\n");
491         notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
492         show_registers(regs);
493         /* Executive summary in case the oops scrolled away */
494         printk(KERN_ALERT "RIP ");
495         printk_address(regs->rip); 
496         printk(" RSP <%016lx>\n", regs->rsp); 
497         if (kexec_should_crash(current))
498                 crash_kexec(regs);
499 }
500
501 void die(const char * str, struct pt_regs * regs, long err)
502 {
503         unsigned long flags = oops_begin();
504
505         handle_BUG(regs);
506         __die(str, regs, err);
507         oops_end(flags);
508         do_exit(SIGSEGV); 
509 }
510
511 void __kprobes die_nmi(char *str, struct pt_regs *regs)
512 {
513         unsigned long flags = oops_begin();
514
515         /*
516          * We are in trouble anyway, lets at least try
517          * to get a message out.
518          */
519         printk(str, safe_smp_processor_id());
520         show_registers(regs);
521         if (kexec_should_crash(current))
522                 crash_kexec(regs);
523         if (panic_on_timeout || panic_on_oops)
524                 panic("nmi watchdog");
525         printk("console shuts up ...\n");
526         oops_end(flags);
527         nmi_exit();
528         local_irq_enable();
529         do_exit(SIGSEGV);
530 }
531
532 static void __kprobes do_trap(int trapnr, int signr, char *str,
533                               struct pt_regs * regs, long error_code,
534                               siginfo_t *info)
535 {
536         struct task_struct *tsk = current;
537
538         tsk->thread.error_code = error_code;
539         tsk->thread.trap_no = trapnr;
540
541         if (user_mode(regs)) {
542                 if (exception_trace && unhandled_signal(tsk, signr))
543                         printk(KERN_INFO
544                                "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
545                                tsk->comm, tsk->pid, str,
546                                regs->rip, regs->rsp, error_code); 
547
548                 if (info)
549                         force_sig_info(signr, info, tsk);
550                 else
551                         force_sig(signr, tsk);
552                 return;
553         }
554
555
556         /* kernel trap */ 
557         {            
558                 const struct exception_table_entry *fixup;
559                 fixup = search_exception_tables(regs->rip);
560                 if (fixup)
561                         regs->rip = fixup->fixup;
562                 else    
563                         die(str, regs, error_code);
564                 return;
565         }
566 }
567
568 #define DO_ERROR(trapnr, signr, str, name) \
569 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
570 { \
571         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
572                                                         == NOTIFY_STOP) \
573                 return; \
574         conditional_sti(regs);                                          \
575         do_trap(trapnr, signr, str, regs, error_code, NULL); \
576 }
577
578 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
579 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
580 { \
581         siginfo_t info; \
582         info.si_signo = signr; \
583         info.si_errno = 0; \
584         info.si_code = sicode; \
585         info.si_addr = (void __user *)siaddr; \
586         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
587                                                         == NOTIFY_STOP) \
588                 return; \
589         conditional_sti(regs);                                          \
590         do_trap(trapnr, signr, str, regs, error_code, &info); \
591 }
592
593 DO_ERROR_INFO( 0, SIGFPE,  "divide error", divide_error, FPE_INTDIV, regs->rip)
594 DO_ERROR( 4, SIGSEGV, "overflow", overflow)
595 DO_ERROR( 5, SIGSEGV, "bounds", bounds)
596 DO_ERROR_INFO( 6, SIGILL,  "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
597 DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
598 DO_ERROR( 9, SIGFPE,  "coprocessor segment overrun", coprocessor_segment_overrun)
599 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
600 DO_ERROR(11, SIGBUS,  "segment not present", segment_not_present)
601 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
602 DO_ERROR(18, SIGSEGV, "reserved", reserved)
603
604 /* Runs on IST stack */
605 asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
606 {
607         if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
608                         12, SIGBUS) == NOTIFY_STOP)
609                 return;
610         preempt_conditional_sti(regs);
611         do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
612         preempt_conditional_cli(regs);
613 }
614
615 asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
616 {
617         static const char str[] = "double fault";
618         struct task_struct *tsk = current;
619
620         /* Return not checked because double check cannot be ignored */
621         notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
622
623         tsk->thread.error_code = error_code;
624         tsk->thread.trap_no = 8;
625
626         /* This is always a kernel trap and never fixable (and thus must
627            never return). */
628         for (;;)
629                 die(str, regs, error_code);
630 }
631
632 asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
633                                                 long error_code)
634 {
635         struct task_struct *tsk = current;
636
637         conditional_sti(regs);
638
639         tsk->thread.error_code = error_code;
640         tsk->thread.trap_no = 13;
641
642         if (user_mode(regs)) {
643                 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
644                         printk(KERN_INFO
645                        "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
646                                tsk->comm, tsk->pid,
647                                regs->rip, regs->rsp, error_code); 
648
649                 force_sig(SIGSEGV, tsk);
650                 return;
651         } 
652
653         /* kernel gp */
654         {
655                 const struct exception_table_entry *fixup;
656                 fixup = search_exception_tables(regs->rip);
657                 if (fixup) {
658                         regs->rip = fixup->fixup;
659                         return;
660                 }
661                 if (notify_die(DIE_GPF, "general protection fault", regs,
662                                         error_code, 13, SIGSEGV) == NOTIFY_STOP)
663                         return;
664                 die("general protection fault", regs, error_code);
665         }
666 }
667
668 static __kprobes void
669 mem_parity_error(unsigned char reason, struct pt_regs * regs)
670 {
671         printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
672         printk("You probably have a hardware problem with your RAM chips\n");
673
674         /* Clear and disable the memory parity error line. */
675         reason = (reason & 0xf) | 4;
676         outb(reason, 0x61);
677 }
678
679 static __kprobes void
680 io_check_error(unsigned char reason, struct pt_regs * regs)
681 {
682         printk("NMI: IOCK error (debug interrupt?)\n");
683         show_registers(regs);
684
685         /* Re-enable the IOCK line, wait for a few seconds */
686         reason = (reason & 0xf) | 8;
687         outb(reason, 0x61);
688         mdelay(2000);
689         reason &= ~8;
690         outb(reason, 0x61);
691 }
692
693 static __kprobes void
694 unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
695 {       printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
696         printk("Dazed and confused, but trying to continue\n");
697         printk("Do you have a strange power saving mode enabled?\n");
698 }
699
700 /* Runs on IST stack. This code must keep interrupts off all the time.
701    Nested NMIs are prevented by the CPU. */
702 asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
703 {
704         unsigned char reason = 0;
705         int cpu;
706
707         cpu = smp_processor_id();
708
709         /* Only the BSP gets external NMIs from the system.  */
710         if (!cpu)
711                 reason = get_nmi_reason();
712
713         if (!(reason & 0xc0)) {
714                 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
715                                                                 == NOTIFY_STOP)
716                         return;
717 #ifdef CONFIG_X86_LOCAL_APIC
718                 /*
719                  * Ok, so this is none of the documented NMI sources,
720                  * so it must be the NMI watchdog.
721                  */
722                 if (nmi_watchdog > 0) {
723                         nmi_watchdog_tick(regs,reason);
724                         return;
725                 }
726 #endif
727                 unknown_nmi_error(reason, regs);
728                 return;
729         }
730         if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
731                 return; 
732
733         /* AK: following checks seem to be broken on modern chipsets. FIXME */
734
735         if (reason & 0x80)
736                 mem_parity_error(reason, regs);
737         if (reason & 0x40)
738                 io_check_error(reason, regs);
739 }
740
741 /* runs on IST stack. */
742 asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
743 {
744         if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
745                 return;
746         }
747         preempt_conditional_sti(regs);
748         do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
749         preempt_conditional_cli(regs);
750 }
751
752 /* Help handler running on IST stack to switch back to user stack
753    for scheduling or signal handling. The actual stack switch is done in
754    entry.S */
755 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
756 {
757         struct pt_regs *regs = eregs;
758         /* Did already sync */
759         if (eregs == (struct pt_regs *)eregs->rsp)
760                 ;
761         /* Exception from user space */
762         else if (user_mode(eregs))
763                 regs = task_pt_regs(current);
764         /* Exception from kernel and interrupts are enabled. Move to
765            kernel process stack. */
766         else if (eregs->eflags & X86_EFLAGS_IF)
767                 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
768         if (eregs != regs)
769                 *regs = *eregs;
770         return regs;
771 }
772
773 /* runs on IST stack. */
774 asmlinkage void __kprobes do_debug(struct pt_regs * regs,
775                                    unsigned long error_code)
776 {
777         unsigned long condition;
778         struct task_struct *tsk = current;
779         siginfo_t info;
780
781         get_debugreg(condition, 6);
782
783         if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
784                                                 SIGTRAP) == NOTIFY_STOP)
785                 return;
786
787         preempt_conditional_sti(regs);
788
789         /* Mask out spurious debug traps due to lazy DR7 setting */
790         if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
791                 if (!tsk->thread.debugreg7) { 
792                         goto clear_dr7;
793                 }
794         }
795
796         tsk->thread.debugreg6 = condition;
797
798         /* Mask out spurious TF errors due to lazy TF clearing */
799         if (condition & DR_STEP) {
800                 /*
801                  * The TF error should be masked out only if the current
802                  * process is not traced and if the TRAP flag has been set
803                  * previously by a tracing process (condition detected by
804                  * the PT_DTRACE flag); remember that the i386 TRAP flag
805                  * can be modified by the process itself in user mode,
806                  * allowing programs to debug themselves without the ptrace()
807                  * interface.
808                  */
809                 if (!user_mode(regs))
810                        goto clear_TF_reenable;
811                 /*
812                  * Was the TF flag set by a debugger? If so, clear it now,
813                  * so that register information is correct.
814                  */
815                 if (tsk->ptrace & PT_DTRACE) {
816                         regs->eflags &= ~TF_MASK;
817                         tsk->ptrace &= ~PT_DTRACE;
818                 }
819         }
820
821         /* Ok, finally something we can handle */
822         tsk->thread.trap_no = 1;
823         tsk->thread.error_code = error_code;
824         info.si_signo = SIGTRAP;
825         info.si_errno = 0;
826         info.si_code = TRAP_BRKPT;
827         info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
828         force_sig_info(SIGTRAP, &info, tsk);
829
830 clear_dr7:
831         set_debugreg(0UL, 7);
832         preempt_conditional_cli(regs);
833         return;
834
835 clear_TF_reenable:
836         set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
837         regs->eflags &= ~TF_MASK;
838         preempt_conditional_cli(regs);
839 }
840
841 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
842 {
843         const struct exception_table_entry *fixup;
844         fixup = search_exception_tables(regs->rip);
845         if (fixup) {
846                 regs->rip = fixup->fixup;
847                 return 1;
848         }
849         notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
850         /* Illegal floating point operation in the kernel */
851         current->thread.trap_no = trapnr;
852         die(str, regs, 0);
853         return 0;
854 }
855
856 /*
857  * Note that we play around with the 'TS' bit in an attempt to get
858  * the correct behaviour even in the presence of the asynchronous
859  * IRQ13 behaviour
860  */
861 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
862 {
863         void __user *rip = (void __user *)(regs->rip);
864         struct task_struct * task;
865         siginfo_t info;
866         unsigned short cwd, swd;
867
868         conditional_sti(regs);
869         if (!user_mode(regs) &&
870             kernel_math_error(regs, "kernel x87 math error", 16))
871                 return;
872
873         /*
874          * Save the info for the exception handler and clear the error.
875          */
876         task = current;
877         save_init_fpu(task);
878         task->thread.trap_no = 16;
879         task->thread.error_code = 0;
880         info.si_signo = SIGFPE;
881         info.si_errno = 0;
882         info.si_code = __SI_FAULT;
883         info.si_addr = rip;
884         /*
885          * (~cwd & swd) will mask out exceptions that are not set to unmasked
886          * status.  0x3f is the exception bits in these regs, 0x200 is the
887          * C1 reg you need in case of a stack fault, 0x040 is the stack
888          * fault bit.  We should only be taking one exception at a time,
889          * so if this combination doesn't produce any single exception,
890          * then we have a bad program that isn't synchronizing its FPU usage
891          * and it will suffer the consequences since we won't be able to
892          * fully reproduce the context of the exception
893          */
894         cwd = get_fpu_cwd(task);
895         swd = get_fpu_swd(task);
896         switch (swd & ~cwd & 0x3f) {
897                 case 0x000:
898                 default:
899                         break;
900                 case 0x001: /* Invalid Op */
901                         /*
902                          * swd & 0x240 == 0x040: Stack Underflow
903                          * swd & 0x240 == 0x240: Stack Overflow
904                          * User must clear the SF bit (0x40) if set
905                          */
906                         info.si_code = FPE_FLTINV;
907                         break;
908                 case 0x002: /* Denormalize */
909                 case 0x010: /* Underflow */
910                         info.si_code = FPE_FLTUND;
911                         break;
912                 case 0x004: /* Zero Divide */
913                         info.si_code = FPE_FLTDIV;
914                         break;
915                 case 0x008: /* Overflow */
916                         info.si_code = FPE_FLTOVF;
917                         break;
918                 case 0x020: /* Precision */
919                         info.si_code = FPE_FLTRES;
920                         break;
921         }
922         force_sig_info(SIGFPE, &info, task);
923 }
924
925 asmlinkage void bad_intr(void)
926 {
927         printk("bad interrupt"); 
928 }
929
930 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
931 {
932         void __user *rip = (void __user *)(regs->rip);
933         struct task_struct * task;
934         siginfo_t info;
935         unsigned short mxcsr;
936
937         conditional_sti(regs);
938         if (!user_mode(regs) &&
939                 kernel_math_error(regs, "kernel simd math error", 19))
940                 return;
941
942         /*
943          * Save the info for the exception handler and clear the error.
944          */
945         task = current;
946         save_init_fpu(task);
947         task->thread.trap_no = 19;
948         task->thread.error_code = 0;
949         info.si_signo = SIGFPE;
950         info.si_errno = 0;
951         info.si_code = __SI_FAULT;
952         info.si_addr = rip;
953         /*
954          * The SIMD FPU exceptions are handled a little differently, as there
955          * is only a single status/control register.  Thus, to determine which
956          * unmasked exception was caught we must mask the exception mask bits
957          * at 0x1f80, and then use these to mask the exception bits at 0x3f.
958          */
959         mxcsr = get_fpu_mxcsr(task);
960         switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
961                 case 0x000:
962                 default:
963                         break;
964                 case 0x001: /* Invalid Op */
965                         info.si_code = FPE_FLTINV;
966                         break;
967                 case 0x002: /* Denormalize */
968                 case 0x010: /* Underflow */
969                         info.si_code = FPE_FLTUND;
970                         break;
971                 case 0x004: /* Zero Divide */
972                         info.si_code = FPE_FLTDIV;
973                         break;
974                 case 0x008: /* Overflow */
975                         info.si_code = FPE_FLTOVF;
976                         break;
977                 case 0x020: /* Precision */
978                         info.si_code = FPE_FLTRES;
979                         break;
980         }
981         force_sig_info(SIGFPE, &info, task);
982 }
983
984 asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
985 {
986 }
987
988 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
989 {
990 }
991
992 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
993 {
994 }
995
996 /*
997  *  'math_state_restore()' saves the current math information in the
998  * old math state array, and gets the new ones from the current task
999  *
1000  * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1001  * Don't touch unless you *really* know how it works.
1002  */
1003 asmlinkage void math_state_restore(void)
1004 {
1005         struct task_struct *me = current;
1006         clts();                 /* Allow maths ops (or we recurse) */
1007
1008         if (!used_math())
1009                 init_fpu(me);
1010         restore_fpu_checking(&me->thread.i387.fxsave);
1011         task_thread_info(me)->status |= TS_USEDFPU;
1012 }
1013
1014 void __init trap_init(void)
1015 {
1016         set_intr_gate(0,&divide_error);
1017         set_intr_gate_ist(1,&debug,DEBUG_STACK);
1018         set_intr_gate_ist(2,&nmi,NMI_STACK);
1019         set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
1020         set_system_gate(4,&overflow);   /* int4 can be called from all */
1021         set_intr_gate(5,&bounds);
1022         set_intr_gate(6,&invalid_op);
1023         set_intr_gate(7,&device_not_available);
1024         set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1025         set_intr_gate(9,&coprocessor_segment_overrun);
1026         set_intr_gate(10,&invalid_TSS);
1027         set_intr_gate(11,&segment_not_present);
1028         set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1029         set_intr_gate(13,&general_protection);
1030         set_intr_gate(14,&page_fault);
1031         set_intr_gate(15,&spurious_interrupt_bug);
1032         set_intr_gate(16,&coprocessor_error);
1033         set_intr_gate(17,&alignment_check);
1034 #ifdef CONFIG_X86_MCE
1035         set_intr_gate_ist(18,&machine_check, MCE_STACK); 
1036 #endif
1037         set_intr_gate(19,&simd_coprocessor_error);
1038
1039 #ifdef CONFIG_IA32_EMULATION
1040         set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1041 #endif
1042        
1043         /*
1044          * Should be a barrier for any external CPU state.
1045          */
1046         cpu_init();
1047 }
1048
1049
1050 /* Actual parsing is done early in setup.c. */
1051 static int __init oops_dummy(char *s)
1052
1053         panic_on_oops = 1;
1054         return 1;
1055
1056 __setup("oops=", oops_dummy); 
1057
1058 static int __init kstack_setup(char *s)
1059 {
1060         kstack_depth_to_print = simple_strtoul(s,NULL,0);
1061         return 1;
1062 }
1063 __setup("kstack=", kstack_setup);
1064
1065 static int __init call_trace_setup(char *s)
1066 {
1067         if (strcmp(s, "old") == 0)
1068                 call_trace = -1;
1069         else if (strcmp(s, "both") == 0)
1070                 call_trace = 0;
1071         else if (strcmp(s, "new") == 0)
1072                 call_trace = 1;
1073         return 1;
1074 }
1075 __setup("call_trace=", call_trace_setup);