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