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