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