Merge branch 'upstream' of git://electric-eye.fr.zoreil.com/home/romieu/linux-2.6...
[pandora-kernel.git] / arch / i386 / kernel / traps.c
1 /*
2  *  linux/arch/i386/traps.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  *
6  *  Pentium III FXSR, SSE support
7  *      Gareth Hughes <gareth@valinux.com>, May 2000
8  */
9
10 /*
11  * 'Traps.c' handles hardware traps and faults after we have saved some
12  * state in 'asm.s'.
13  */
14 #include <linux/sched.h>
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/errno.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/highmem.h>
25 #include <linux/kallsyms.h>
26 #include <linux/ptrace.h>
27 #include <linux/utsname.h>
28 #include <linux/kprobes.h>
29 #include <linux/kexec.h>
30 #include <linux/unwind.h>
31
32 #ifdef CONFIG_EISA
33 #include <linux/ioport.h>
34 #include <linux/eisa.h>
35 #endif
36
37 #ifdef CONFIG_MCA
38 #include <linux/mca.h>
39 #endif
40
41 #include <asm/processor.h>
42 #include <asm/system.h>
43 #include <asm/uaccess.h>
44 #include <asm/io.h>
45 #include <asm/atomic.h>
46 #include <asm/debugreg.h>
47 #include <asm/desc.h>
48 #include <asm/i387.h>
49 #include <asm/nmi.h>
50 #include <asm/unwind.h>
51 #include <asm/smp.h>
52 #include <asm/arch_hooks.h>
53 #include <asm/kdebug.h>
54
55 #include <linux/module.h>
56
57 #include "mach_traps.h"
58
59 asmlinkage int system_call(void);
60
61 struct desc_struct default_ldt[] = { { 0, 0 }, { 0, 0 }, { 0, 0 },
62                 { 0, 0 }, { 0, 0 } };
63
64 /* Do we ignore FPU interrupts ? */
65 char ignore_fpu_irq = 0;
66
67 /*
68  * The IDT has to be page-aligned to simplify the Pentium
69  * F0 0F bug workaround.. We have a special link segment
70  * for this.
71  */
72 struct desc_struct idt_table[256] __attribute__((__section__(".data.idt"))) = { {0, 0}, };
73
74 asmlinkage void divide_error(void);
75 asmlinkage void debug(void);
76 asmlinkage void nmi(void);
77 asmlinkage void int3(void);
78 asmlinkage void overflow(void);
79 asmlinkage void bounds(void);
80 asmlinkage void invalid_op(void);
81 asmlinkage void device_not_available(void);
82 asmlinkage void coprocessor_segment_overrun(void);
83 asmlinkage void invalid_TSS(void);
84 asmlinkage void segment_not_present(void);
85 asmlinkage void stack_segment(void);
86 asmlinkage void general_protection(void);
87 asmlinkage void page_fault(void);
88 asmlinkage void coprocessor_error(void);
89 asmlinkage void simd_coprocessor_error(void);
90 asmlinkage void alignment_check(void);
91 asmlinkage void spurious_interrupt_bug(void);
92 asmlinkage void machine_check(void);
93
94 static int kstack_depth_to_print = 24;
95 static int call_trace = 1;
96 ATOMIC_NOTIFIER_HEAD(i386die_chain);
97
98 int register_die_notifier(struct notifier_block *nb)
99 {
100         vmalloc_sync_all();
101         return atomic_notifier_chain_register(&i386die_chain, nb);
102 }
103 EXPORT_SYMBOL(register_die_notifier); /* used modular by kdb */
104
105 int unregister_die_notifier(struct notifier_block *nb)
106 {
107         return atomic_notifier_chain_unregister(&i386die_chain, nb);
108 }
109 EXPORT_SYMBOL(unregister_die_notifier); /* used modular by kdb */
110
111 static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
112 {
113         return  p > (void *)tinfo &&
114                 p < (void *)tinfo + THREAD_SIZE - 3;
115 }
116
117 /*
118  * Print one address/symbol entries per line.
119  */
120 static inline void print_addr_and_symbol(unsigned long addr, char *log_lvl)
121 {
122         printk(" [<%08lx>] ", addr);
123
124         print_symbol("%s\n", addr);
125 }
126
127 static inline unsigned long print_context_stack(struct thread_info *tinfo,
128                                 unsigned long *stack, unsigned long ebp,
129                                 char *log_lvl)
130 {
131         unsigned long addr;
132
133 #ifdef  CONFIG_FRAME_POINTER
134         while (valid_stack_ptr(tinfo, (void *)ebp)) {
135                 addr = *(unsigned long *)(ebp + 4);
136                 print_addr_and_symbol(addr, log_lvl);
137                 /*
138                  * break out of recursive entries (such as
139                  * end_of_stack_stop_unwind_function):
140                  */
141                 if (ebp == *(unsigned long *)ebp)
142                         break;
143                 ebp = *(unsigned long *)ebp;
144         }
145 #else
146         while (valid_stack_ptr(tinfo, stack)) {
147                 addr = *stack++;
148                 if (__kernel_text_address(addr))
149                         print_addr_and_symbol(addr, log_lvl);
150         }
151 #endif
152         return ebp;
153 }
154
155 static asmlinkage int
156 show_trace_unwind(struct unwind_frame_info *info, void *log_lvl)
157 {
158         int n = 0;
159
160         while (unwind(info) == 0 && UNW_PC(info)) {
161                 n++;
162                 print_addr_and_symbol(UNW_PC(info), log_lvl);
163                 if (arch_unw_user_mode(info))
164                         break;
165         }
166         return n;
167 }
168
169 static void show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
170                                unsigned long *stack, char *log_lvl)
171 {
172         unsigned long ebp;
173
174         if (!task)
175                 task = current;
176
177         if (call_trace >= 0) {
178                 int unw_ret = 0;
179                 struct unwind_frame_info info;
180
181                 if (regs) {
182                         if (unwind_init_frame_info(&info, task, regs) == 0)
183                                 unw_ret = show_trace_unwind(&info, log_lvl);
184                 } else if (task == current)
185                         unw_ret = unwind_init_running(&info, show_trace_unwind, log_lvl);
186                 else {
187                         if (unwind_init_blocked(&info, task) == 0)
188                                 unw_ret = show_trace_unwind(&info, log_lvl);
189                 }
190                 if (unw_ret > 0 && !arch_unw_user_mode(&info)) {
191 #ifdef CONFIG_STACK_UNWIND
192                         print_symbol("DWARF2 unwinder stuck at %s\n",
193                                      UNW_PC(info.regs));
194                         if (call_trace == 1) {
195                                 printk("Leftover inexact backtrace:\n");
196                                 if (UNW_SP(info.regs))
197                                         stack = (void *)UNW_SP(info.regs);
198                         } else if (call_trace > 1)
199                                 return;
200                         else
201                                 printk("Full inexact backtrace again:\n");
202 #else
203                         printk("Inexact backtrace:\n");
204 #endif
205                 }
206         }
207
208         if (task == current) {
209                 /* Grab ebp right from our regs */
210                 asm ("movl %%ebp, %0" : "=r" (ebp) : );
211         } else {
212                 /* ebp is the last reg pushed by switch_to */
213                 ebp = *(unsigned long *) task->thread.esp;
214         }
215
216         while (1) {
217                 struct thread_info *context;
218                 context = (struct thread_info *)
219                         ((unsigned long)stack & (~(THREAD_SIZE - 1)));
220                 ebp = print_context_stack(context, stack, ebp, log_lvl);
221                 stack = (unsigned long*)context->previous_esp;
222                 if (!stack)
223                         break;
224                 printk("%s =======================\n", log_lvl);
225         }
226 }
227
228 void show_trace(struct task_struct *task, struct pt_regs *regs, unsigned long * stack)
229 {
230         show_trace_log_lvl(task, regs, stack, "");
231 }
232
233 static void show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
234                                unsigned long *esp, char *log_lvl)
235 {
236         unsigned long *stack;
237         int i;
238
239         if (esp == NULL) {
240                 if (task)
241                         esp = (unsigned long*)task->thread.esp;
242                 else
243                         esp = (unsigned long *)&esp;
244         }
245
246         stack = esp;
247         for(i = 0; i < kstack_depth_to_print; i++) {
248                 if (kstack_end(stack))
249                         break;
250                 if (i && ((i % 8) == 0))
251                         printk("\n%s       ", log_lvl);
252                 printk("%08lx ", *stack++);
253         }
254         printk("\n%sCall Trace:\n", log_lvl);
255         show_trace_log_lvl(task, regs, esp, log_lvl);
256 }
257
258 void show_stack(struct task_struct *task, unsigned long *esp)
259 {
260         printk("       ");
261         show_stack_log_lvl(task, NULL, esp, "");
262 }
263
264 /*
265  * The architecture-independent dump_stack generator
266  */
267 void dump_stack(void)
268 {
269         unsigned long stack;
270
271         show_trace(current, NULL, &stack);
272 }
273
274 EXPORT_SYMBOL(dump_stack);
275
276 void show_registers(struct pt_regs *regs)
277 {
278         int i;
279         int in_kernel = 1;
280         unsigned long esp;
281         unsigned short ss;
282
283         esp = (unsigned long) (&regs->esp);
284         savesegment(ss, ss);
285         if (user_mode_vm(regs)) {
286                 in_kernel = 0;
287                 esp = regs->esp;
288                 ss = regs->xss & 0xffff;
289         }
290         print_modules();
291         printk(KERN_EMERG "CPU:    %d\nEIP:    %04x:[<%08lx>]    %s VLI\n"
292                         "EFLAGS: %08lx   (%s %.*s) \n",
293                 smp_processor_id(), 0xffff & regs->xcs, regs->eip,
294                 print_tainted(), regs->eflags, system_utsname.release,
295                 (int)strcspn(system_utsname.version, " "),
296                 system_utsname.version);
297         print_symbol(KERN_EMERG "EIP is at %s\n", regs->eip);
298         printk(KERN_EMERG "eax: %08lx   ebx: %08lx   ecx: %08lx   edx: %08lx\n",
299                 regs->eax, regs->ebx, regs->ecx, regs->edx);
300         printk(KERN_EMERG "esi: %08lx   edi: %08lx   ebp: %08lx   esp: %08lx\n",
301                 regs->esi, regs->edi, regs->ebp, esp);
302         printk(KERN_EMERG "ds: %04x   es: %04x   ss: %04x\n",
303                 regs->xds & 0xffff, regs->xes & 0xffff, ss);
304         printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)",
305                 TASK_COMM_LEN, current->comm, current->pid,
306                 current_thread_info(), current, current->thread_info);
307         /*
308          * When in-kernel, we also print out the stack and code at the
309          * time of the fault..
310          */
311         if (in_kernel) {
312                 u8 __user *eip;
313
314                 printk("\n" KERN_EMERG "Stack: ");
315                 show_stack_log_lvl(NULL, regs, (unsigned long *)esp, KERN_EMERG);
316
317                 printk(KERN_EMERG "Code: ");
318
319                 eip = (u8 __user *)regs->eip - 43;
320                 for (i = 0; i < 64; i++, eip++) {
321                         unsigned char c;
322
323                         if (eip < (u8 __user *)PAGE_OFFSET || __get_user(c, eip)) {
324                                 printk(" Bad EIP value.");
325                                 break;
326                         }
327                         if (eip == (u8 __user *)regs->eip)
328                                 printk("<%02x> ", c);
329                         else
330                                 printk("%02x ", c);
331                 }
332         }
333         printk("\n");
334 }       
335
336 static void handle_BUG(struct pt_regs *regs)
337 {
338         unsigned long eip = regs->eip;
339         unsigned short ud2;
340
341         if (eip < PAGE_OFFSET)
342                 return;
343         if (__get_user(ud2, (unsigned short __user *)eip))
344                 return;
345         if (ud2 != 0x0b0f)
346                 return;
347
348         printk(KERN_EMERG "------------[ cut here ]------------\n");
349
350 #ifdef CONFIG_DEBUG_BUGVERBOSE
351         do {
352                 unsigned short line;
353                 char *file;
354                 char c;
355
356                 if (__get_user(line, (unsigned short __user *)(eip + 2)))
357                         break;
358                 if (__get_user(file, (char * __user *)(eip + 4)) ||
359                     (unsigned long)file < PAGE_OFFSET || __get_user(c, file))
360                         file = "<bad filename>";
361
362                 printk(KERN_EMERG "kernel BUG at %s:%d!\n", file, line);
363                 return;
364         } while (0);
365 #endif
366         printk(KERN_EMERG "Kernel BUG at [verbose debug info unavailable]\n");
367 }
368
369 /* This is gone through when something in the kernel
370  * has done something bad and is about to be terminated.
371 */
372 void die(const char * str, struct pt_regs * regs, long err)
373 {
374         static struct {
375                 spinlock_t lock;
376                 u32 lock_owner;
377                 int lock_owner_depth;
378         } die = {
379                 .lock =                 SPIN_LOCK_UNLOCKED,
380                 .lock_owner =           -1,
381                 .lock_owner_depth =     0
382         };
383         static int die_counter;
384         unsigned long flags;
385
386         oops_enter();
387
388         if (die.lock_owner != raw_smp_processor_id()) {
389                 console_verbose();
390                 spin_lock_irqsave(&die.lock, flags);
391                 die.lock_owner = smp_processor_id();
392                 die.lock_owner_depth = 0;
393                 bust_spinlocks(1);
394         }
395         else
396                 local_save_flags(flags);
397
398         if (++die.lock_owner_depth < 3) {
399                 int nl = 0;
400                 unsigned long esp;
401                 unsigned short ss;
402
403                 handle_BUG(regs);
404                 printk(KERN_EMERG "%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
405 #ifdef CONFIG_PREEMPT
406                 printk(KERN_EMERG "PREEMPT ");
407                 nl = 1;
408 #endif
409 #ifdef CONFIG_SMP
410                 if (!nl)
411                         printk(KERN_EMERG);
412                 printk("SMP ");
413                 nl = 1;
414 #endif
415 #ifdef CONFIG_DEBUG_PAGEALLOC
416                 if (!nl)
417                         printk(KERN_EMERG);
418                 printk("DEBUG_PAGEALLOC");
419                 nl = 1;
420 #endif
421                 if (nl)
422                         printk("\n");
423                 if (notify_die(DIE_OOPS, str, regs, err,
424                                         current->thread.trap_no, SIGSEGV) !=
425                                 NOTIFY_STOP) {
426                         show_registers(regs);
427                         /* Executive summary in case the oops scrolled away */
428                         esp = (unsigned long) (&regs->esp);
429                         savesegment(ss, ss);
430                         if (user_mode(regs)) {
431                                 esp = regs->esp;
432                                 ss = regs->xss & 0xffff;
433                         }
434                         printk(KERN_EMERG "EIP: [<%08lx>] ", regs->eip);
435                         print_symbol("%s", regs->eip);
436                         printk(" SS:ESP %04x:%08lx\n", ss, esp);
437                 }
438                 else
439                         regs = NULL;
440         } else
441                 printk(KERN_EMERG "Recursive die() failure, output suppressed\n");
442
443         bust_spinlocks(0);
444         die.lock_owner = -1;
445         spin_unlock_irqrestore(&die.lock, flags);
446
447         if (!regs)
448                 return;
449
450         if (kexec_should_crash(current))
451                 crash_kexec(regs);
452
453         if (in_interrupt())
454                 panic("Fatal exception in interrupt");
455
456         if (panic_on_oops) {
457                 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
458                 ssleep(5);
459                 panic("Fatal exception");
460         }
461         oops_exit();
462         do_exit(SIGSEGV);
463 }
464
465 static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err)
466 {
467         if (!user_mode_vm(regs))
468                 die(str, regs, err);
469 }
470
471 static void __kprobes do_trap(int trapnr, int signr, char *str, int vm86,
472                               struct pt_regs * regs, long error_code,
473                               siginfo_t *info)
474 {
475         struct task_struct *tsk = current;
476         tsk->thread.error_code = error_code;
477         tsk->thread.trap_no = trapnr;
478
479         if (regs->eflags & VM_MASK) {
480                 if (vm86)
481                         goto vm86_trap;
482                 goto trap_signal;
483         }
484
485         if (!user_mode(regs))
486                 goto kernel_trap;
487
488         trap_signal: {
489                 if (info)
490                         force_sig_info(signr, info, tsk);
491                 else
492                         force_sig(signr, tsk);
493                 return;
494         }
495
496         kernel_trap: {
497                 if (!fixup_exception(regs))
498                         die(str, regs, error_code);
499                 return;
500         }
501
502         vm86_trap: {
503                 int ret = handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, trapnr);
504                 if (ret) goto trap_signal;
505                 return;
506         }
507 }
508
509 #define DO_ERROR(trapnr, signr, str, name) \
510 fastcall void do_##name(struct pt_regs * regs, long error_code) \
511 { \
512         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
513                                                 == NOTIFY_STOP) \
514                 return; \
515         do_trap(trapnr, signr, str, 0, regs, error_code, NULL); \
516 }
517
518 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
519 fastcall void do_##name(struct pt_regs * regs, long error_code) \
520 { \
521         siginfo_t info; \
522         info.si_signo = signr; \
523         info.si_errno = 0; \
524         info.si_code = sicode; \
525         info.si_addr = (void __user *)siaddr; \
526         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
527                                                 == NOTIFY_STOP) \
528                 return; \
529         do_trap(trapnr, signr, str, 0, regs, error_code, &info); \
530 }
531
532 #define DO_VM86_ERROR(trapnr, signr, str, name) \
533 fastcall void do_##name(struct pt_regs * regs, long error_code) \
534 { \
535         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
536                                                 == NOTIFY_STOP) \
537                 return; \
538         do_trap(trapnr, signr, str, 1, regs, error_code, NULL); \
539 }
540
541 #define DO_VM86_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
542 fastcall void do_##name(struct pt_regs * regs, long error_code) \
543 { \
544         siginfo_t info; \
545         info.si_signo = signr; \
546         info.si_errno = 0; \
547         info.si_code = sicode; \
548         info.si_addr = (void __user *)siaddr; \
549         if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
550                                                 == NOTIFY_STOP) \
551                 return; \
552         do_trap(trapnr, signr, str, 1, regs, error_code, &info); \
553 }
554
555 DO_VM86_ERROR_INFO( 0, SIGFPE,  "divide error", divide_error, FPE_INTDIV, regs->eip)
556 #ifndef CONFIG_KPROBES
557 DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
558 #endif
559 DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
560 DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
561 DO_ERROR_INFO( 6, SIGILL,  "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip)
562 DO_ERROR( 9, SIGFPE,  "coprocessor segment overrun", coprocessor_segment_overrun)
563 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
564 DO_ERROR(11, SIGBUS,  "segment not present", segment_not_present)
565 DO_ERROR(12, SIGBUS,  "stack segment", stack_segment)
566 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
567 DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0)
568
569 fastcall void __kprobes do_general_protection(struct pt_regs * regs,
570                                               long error_code)
571 {
572         int cpu = get_cpu();
573         struct tss_struct *tss = &per_cpu(init_tss, cpu);
574         struct thread_struct *thread = &current->thread;
575
576         /*
577          * Perform the lazy TSS's I/O bitmap copy. If the TSS has an
578          * invalid offset set (the LAZY one) and the faulting thread has
579          * a valid I/O bitmap pointer, we copy the I/O bitmap in the TSS
580          * and we set the offset field correctly. Then we let the CPU to
581          * restart the faulting instruction.
582          */
583         if (tss->io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY &&
584             thread->io_bitmap_ptr) {
585                 memcpy(tss->io_bitmap, thread->io_bitmap_ptr,
586                        thread->io_bitmap_max);
587                 /*
588                  * If the previously set map was extending to higher ports
589                  * than the current one, pad extra space with 0xff (no access).
590                  */
591                 if (thread->io_bitmap_max < tss->io_bitmap_max)
592                         memset((char *) tss->io_bitmap +
593                                 thread->io_bitmap_max, 0xff,
594                                 tss->io_bitmap_max - thread->io_bitmap_max);
595                 tss->io_bitmap_max = thread->io_bitmap_max;
596                 tss->io_bitmap_base = IO_BITMAP_OFFSET;
597                 tss->io_bitmap_owner = thread;
598                 put_cpu();
599                 return;
600         }
601         put_cpu();
602
603         current->thread.error_code = error_code;
604         current->thread.trap_no = 13;
605
606         if (regs->eflags & VM_MASK)
607                 goto gp_in_vm86;
608
609         if (!user_mode(regs))
610                 goto gp_in_kernel;
611
612         current->thread.error_code = error_code;
613         current->thread.trap_no = 13;
614         force_sig(SIGSEGV, current);
615         return;
616
617 gp_in_vm86:
618         local_irq_enable();
619         handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
620         return;
621
622 gp_in_kernel:
623         if (!fixup_exception(regs)) {
624                 if (notify_die(DIE_GPF, "general protection fault", regs,
625                                 error_code, 13, SIGSEGV) == NOTIFY_STOP)
626                         return;
627                 die("general protection fault", regs, error_code);
628         }
629 }
630
631 static void mem_parity_error(unsigned char reason, struct pt_regs * regs)
632 {
633         printk(KERN_EMERG "Uhhuh. NMI received. Dazed and confused, but trying "
634                         "to continue\n");
635         printk(KERN_EMERG "You probably have a hardware problem with your RAM "
636                         "chips\n");
637
638         /* Clear and disable the memory parity error line. */
639         clear_mem_error(reason);
640 }
641
642 static void io_check_error(unsigned char reason, struct pt_regs * regs)
643 {
644         unsigned long i;
645
646         printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n");
647         show_registers(regs);
648
649         /* Re-enable the IOCK line, wait for a few seconds */
650         reason = (reason & 0xf) | 8;
651         outb(reason, 0x61);
652         i = 2000;
653         while (--i) udelay(1000);
654         reason &= ~8;
655         outb(reason, 0x61);
656 }
657
658 static void unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
659 {
660 #ifdef CONFIG_MCA
661         /* Might actually be able to figure out what the guilty party
662         * is. */
663         if( MCA_bus ) {
664                 mca_handle_nmi();
665                 return;
666         }
667 #endif
668         printk("Uhhuh. NMI received for unknown reason %02x on CPU %d.\n",
669                 reason, smp_processor_id());
670         printk("Dazed and confused, but trying to continue\n");
671         printk("Do you have a strange power saving mode enabled?\n");
672 }
673
674 static DEFINE_SPINLOCK(nmi_print_lock);
675
676 void die_nmi (struct pt_regs *regs, const char *msg)
677 {
678         if (notify_die(DIE_NMIWATCHDOG, msg, regs, 0, 2, SIGINT) ==
679             NOTIFY_STOP)
680                 return;
681
682         spin_lock(&nmi_print_lock);
683         /*
684         * We are in trouble anyway, lets at least try
685         * to get a message out.
686         */
687         bust_spinlocks(1);
688         printk(KERN_EMERG "%s", msg);
689         printk(" on CPU%d, eip %08lx, registers:\n",
690                 smp_processor_id(), regs->eip);
691         show_registers(regs);
692         printk(KERN_EMERG "console shuts up ...\n");
693         console_silent();
694         spin_unlock(&nmi_print_lock);
695         bust_spinlocks(0);
696
697         /* If we are in kernel we are probably nested up pretty bad
698          * and might aswell get out now while we still can.
699         */
700         if (!user_mode_vm(regs)) {
701                 current->thread.trap_no = 2;
702                 crash_kexec(regs);
703         }
704
705         do_exit(SIGSEGV);
706 }
707
708 static void default_do_nmi(struct pt_regs * regs)
709 {
710         unsigned char reason = 0;
711
712         /* Only the BSP gets external NMIs from the system.  */
713         if (!smp_processor_id())
714                 reason = get_nmi_reason();
715  
716         if (!(reason & 0xc0)) {
717                 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
718                                                         == NOTIFY_STOP)
719                         return;
720 #ifdef CONFIG_X86_LOCAL_APIC
721                 /*
722                  * Ok, so this is none of the documented NMI sources,
723                  * so it must be the NMI watchdog.
724                  */
725                 if (nmi_watchdog) {
726                         nmi_watchdog_tick(regs);
727                         return;
728                 }
729 #endif
730                 unknown_nmi_error(reason, regs);
731                 return;
732         }
733         if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
734                 return;
735         if (reason & 0x80)
736                 mem_parity_error(reason, regs);
737         if (reason & 0x40)
738                 io_check_error(reason, regs);
739         /*
740          * Reassert NMI in case it became active meanwhile
741          * as it's edge-triggered.
742          */
743         reassert_nmi();
744 }
745
746 static int dummy_nmi_callback(struct pt_regs * regs, int cpu)
747 {
748         return 0;
749 }
750  
751 static nmi_callback_t nmi_callback = dummy_nmi_callback;
752  
753 fastcall void do_nmi(struct pt_regs * regs, long error_code)
754 {
755         int cpu;
756
757         nmi_enter();
758
759         cpu = smp_processor_id();
760
761         ++nmi_count(cpu);
762
763         if (!rcu_dereference(nmi_callback)(regs, cpu))
764                 default_do_nmi(regs);
765
766         nmi_exit();
767 }
768
769 void set_nmi_callback(nmi_callback_t callback)
770 {
771         vmalloc_sync_all();
772         rcu_assign_pointer(nmi_callback, callback);
773 }
774 EXPORT_SYMBOL_GPL(set_nmi_callback);
775
776 void unset_nmi_callback(void)
777 {
778         nmi_callback = dummy_nmi_callback;
779 }
780 EXPORT_SYMBOL_GPL(unset_nmi_callback);
781
782 #ifdef CONFIG_KPROBES
783 fastcall void __kprobes do_int3(struct pt_regs *regs, long error_code)
784 {
785         if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
786                         == NOTIFY_STOP)
787                 return;
788         /* This is an interrupt gate, because kprobes wants interrupts
789         disabled.  Normal trap handlers don't. */
790         restore_interrupts(regs);
791         do_trap(3, SIGTRAP, "int3", 1, regs, error_code, NULL);
792 }
793 #endif
794
795 /*
796  * Our handling of the processor debug registers is non-trivial.
797  * We do not clear them on entry and exit from the kernel. Therefore
798  * it is possible to get a watchpoint trap here from inside the kernel.
799  * However, the code in ./ptrace.c has ensured that the user can
800  * only set watchpoints on userspace addresses. Therefore the in-kernel
801  * watchpoint trap can only occur in code which is reading/writing
802  * from user space. Such code must not hold kernel locks (since it
803  * can equally take a page fault), therefore it is safe to call
804  * force_sig_info even though that claims and releases locks.
805  * 
806  * Code in ./signal.c ensures that the debug control register
807  * is restored before we deliver any signal, and therefore that
808  * user code runs with the correct debug control register even though
809  * we clear it here.
810  *
811  * Being careful here means that we don't have to be as careful in a
812  * lot of more complicated places (task switching can be a bit lazy
813  * about restoring all the debug state, and ptrace doesn't have to
814  * find every occurrence of the TF bit that could be saved away even
815  * by user code)
816  */
817 fastcall void __kprobes do_debug(struct pt_regs * regs, long error_code)
818 {
819         unsigned int condition;
820         struct task_struct *tsk = current;
821
822         get_debugreg(condition, 6);
823
824         if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
825                                         SIGTRAP) == NOTIFY_STOP)
826                 return;
827         /* It's safe to allow irq's after DR6 has been saved */
828         if (regs->eflags & X86_EFLAGS_IF)
829                 local_irq_enable();
830
831         /* Mask out spurious debug traps due to lazy DR7 setting */
832         if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
833                 if (!tsk->thread.debugreg[7])
834                         goto clear_dr7;
835         }
836
837         if (regs->eflags & VM_MASK)
838                 goto debug_vm86;
839
840         /* Save debug status register where ptrace can see it */
841         tsk->thread.debugreg[6] = condition;
842
843         /*
844          * Single-stepping through TF: make sure we ignore any events in
845          * kernel space (but re-enable TF when returning to user mode).
846          */
847         if (condition & DR_STEP) {
848                 /*
849                  * We already checked v86 mode above, so we can
850                  * check for kernel mode by just checking the CPL
851                  * of CS.
852                  */
853                 if (!user_mode(regs))
854                         goto clear_TF_reenable;
855         }
856
857         /* Ok, finally something we can handle */
858         send_sigtrap(tsk, regs, error_code);
859
860         /* Disable additional traps. They'll be re-enabled when
861          * the signal is delivered.
862          */
863 clear_dr7:
864         set_debugreg(0, 7);
865         return;
866
867 debug_vm86:
868         handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1);
869         return;
870
871 clear_TF_reenable:
872         set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
873         regs->eflags &= ~TF_MASK;
874         return;
875 }
876
877 /*
878  * Note that we play around with the 'TS' bit in an attempt to get
879  * the correct behaviour even in the presence of the asynchronous
880  * IRQ13 behaviour
881  */
882 void math_error(void __user *eip)
883 {
884         struct task_struct * task;
885         siginfo_t info;
886         unsigned short cwd, swd;
887
888         /*
889          * Save the info for the exception handler and clear the error.
890          */
891         task = current;
892         save_init_fpu(task);
893         task->thread.trap_no = 16;
894         task->thread.error_code = 0;
895         info.si_signo = SIGFPE;
896         info.si_errno = 0;
897         info.si_code = __SI_FAULT;
898         info.si_addr = eip;
899         /*
900          * (~cwd & swd) will mask out exceptions that are not set to unmasked
901          * status.  0x3f is the exception bits in these regs, 0x200 is the
902          * C1 reg you need in case of a stack fault, 0x040 is the stack
903          * fault bit.  We should only be taking one exception at a time,
904          * so if this combination doesn't produce any single exception,
905          * then we have a bad program that isn't syncronizing its FPU usage
906          * and it will suffer the consequences since we won't be able to
907          * fully reproduce the context of the exception
908          */
909         cwd = get_fpu_cwd(task);
910         swd = get_fpu_swd(task);
911         switch (swd & ~cwd & 0x3f) {
912                 case 0x000: /* No unmasked exception */
913                         return;
914                 default:    /* Multiple exceptions */
915                         break;
916                 case 0x001: /* Invalid Op */
917                         /*
918                          * swd & 0x240 == 0x040: Stack Underflow
919                          * swd & 0x240 == 0x240: Stack Overflow
920                          * User must clear the SF bit (0x40) if set
921                          */
922                         info.si_code = FPE_FLTINV;
923                         break;
924                 case 0x002: /* Denormalize */
925                 case 0x010: /* Underflow */
926                         info.si_code = FPE_FLTUND;
927                         break;
928                 case 0x004: /* Zero Divide */
929                         info.si_code = FPE_FLTDIV;
930                         break;
931                 case 0x008: /* Overflow */
932                         info.si_code = FPE_FLTOVF;
933                         break;
934                 case 0x020: /* Precision */
935                         info.si_code = FPE_FLTRES;
936                         break;
937         }
938         force_sig_info(SIGFPE, &info, task);
939 }
940
941 fastcall void do_coprocessor_error(struct pt_regs * regs, long error_code)
942 {
943         ignore_fpu_irq = 1;
944         math_error((void __user *)regs->eip);
945 }
946
947 static void simd_math_error(void __user *eip)
948 {
949         struct task_struct * task;
950         siginfo_t info;
951         unsigned short mxcsr;
952
953         /*
954          * Save the info for the exception handler and clear the error.
955          */
956         task = current;
957         save_init_fpu(task);
958         task->thread.trap_no = 19;
959         task->thread.error_code = 0;
960         info.si_signo = SIGFPE;
961         info.si_errno = 0;
962         info.si_code = __SI_FAULT;
963         info.si_addr = eip;
964         /*
965          * The SIMD FPU exceptions are handled a little differently, as there
966          * is only a single status/control register.  Thus, to determine which
967          * unmasked exception was caught we must mask the exception mask bits
968          * at 0x1f80, and then use these to mask the exception bits at 0x3f.
969          */
970         mxcsr = get_fpu_mxcsr(task);
971         switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
972                 case 0x000:
973                 default:
974                         break;
975                 case 0x001: /* Invalid Op */
976                         info.si_code = FPE_FLTINV;
977                         break;
978                 case 0x002: /* Denormalize */
979                 case 0x010: /* Underflow */
980                         info.si_code = FPE_FLTUND;
981                         break;
982                 case 0x004: /* Zero Divide */
983                         info.si_code = FPE_FLTDIV;
984                         break;
985                 case 0x008: /* Overflow */
986                         info.si_code = FPE_FLTOVF;
987                         break;
988                 case 0x020: /* Precision */
989                         info.si_code = FPE_FLTRES;
990                         break;
991         }
992         force_sig_info(SIGFPE, &info, task);
993 }
994
995 fastcall void do_simd_coprocessor_error(struct pt_regs * regs,
996                                           long error_code)
997 {
998         if (cpu_has_xmm) {
999                 /* Handle SIMD FPU exceptions on PIII+ processors. */
1000                 ignore_fpu_irq = 1;
1001                 simd_math_error((void __user *)regs->eip);
1002         } else {
1003                 /*
1004                  * Handle strange cache flush from user space exception
1005                  * in all other cases.  This is undocumented behaviour.
1006                  */
1007                 if (regs->eflags & VM_MASK) {
1008                         handle_vm86_fault((struct kernel_vm86_regs *)regs,
1009                                           error_code);
1010                         return;
1011                 }
1012                 current->thread.trap_no = 19;
1013                 current->thread.error_code = error_code;
1014                 die_if_kernel("cache flush denied", regs, error_code);
1015                 force_sig(SIGSEGV, current);
1016         }
1017 }
1018
1019 fastcall void do_spurious_interrupt_bug(struct pt_regs * regs,
1020                                           long error_code)
1021 {
1022 #if 0
1023         /* No need to warn about this any longer. */
1024         printk("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
1025 #endif
1026 }
1027
1028 fastcall void setup_x86_bogus_stack(unsigned char * stk)
1029 {
1030         unsigned long *switch16_ptr, *switch32_ptr;
1031         struct pt_regs *regs;
1032         unsigned long stack_top, stack_bot;
1033         unsigned short iret_frame16_off;
1034         int cpu = smp_processor_id();
1035         /* reserve the space on 32bit stack for the magic switch16 pointer */
1036         memmove(stk, stk + 8, sizeof(struct pt_regs));
1037         switch16_ptr = (unsigned long *)(stk + sizeof(struct pt_regs));
1038         regs = (struct pt_regs *)stk;
1039         /* now the switch32 on 16bit stack */
1040         stack_bot = (unsigned long)&per_cpu(cpu_16bit_stack, cpu);
1041         stack_top = stack_bot + CPU_16BIT_STACK_SIZE;
1042         switch32_ptr = (unsigned long *)(stack_top - 8);
1043         iret_frame16_off = CPU_16BIT_STACK_SIZE - 8 - 20;
1044         /* copy iret frame on 16bit stack */
1045         memcpy((void *)(stack_bot + iret_frame16_off), &regs->eip, 20);
1046         /* fill in the switch pointers */
1047         switch16_ptr[0] = (regs->esp & 0xffff0000) | iret_frame16_off;
1048         switch16_ptr[1] = __ESPFIX_SS;
1049         switch32_ptr[0] = (unsigned long)stk + sizeof(struct pt_regs) +
1050                 8 - CPU_16BIT_STACK_SIZE;
1051         switch32_ptr[1] = __KERNEL_DS;
1052 }
1053
1054 fastcall unsigned char * fixup_x86_bogus_stack(unsigned short sp)
1055 {
1056         unsigned long *switch32_ptr;
1057         unsigned char *stack16, *stack32;
1058         unsigned long stack_top, stack_bot;
1059         int len;
1060         int cpu = smp_processor_id();
1061         stack_bot = (unsigned long)&per_cpu(cpu_16bit_stack, cpu);
1062         stack_top = stack_bot + CPU_16BIT_STACK_SIZE;
1063         switch32_ptr = (unsigned long *)(stack_top - 8);
1064         /* copy the data from 16bit stack to 32bit stack */
1065         len = CPU_16BIT_STACK_SIZE - 8 - sp;
1066         stack16 = (unsigned char *)(stack_bot + sp);
1067         stack32 = (unsigned char *)
1068                 (switch32_ptr[0] + CPU_16BIT_STACK_SIZE - 8 - len);
1069         memcpy(stack32, stack16, len);
1070         return stack32;
1071 }
1072
1073 /*
1074  *  'math_state_restore()' saves the current math information in the
1075  * old math state array, and gets the new ones from the current task
1076  *
1077  * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1078  * Don't touch unless you *really* know how it works.
1079  *
1080  * Must be called with kernel preemption disabled (in this case,
1081  * local interrupts are disabled at the call-site in entry.S).
1082  */
1083 asmlinkage void math_state_restore(struct pt_regs regs)
1084 {
1085         struct thread_info *thread = current_thread_info();
1086         struct task_struct *tsk = thread->task;
1087
1088         clts();         /* Allow maths ops (or we recurse) */
1089         if (!tsk_used_math(tsk))
1090                 init_fpu(tsk);
1091         restore_fpu(tsk);
1092         thread->status |= TS_USEDFPU;   /* So we fnsave on switch_to() */
1093 }
1094
1095 #ifndef CONFIG_MATH_EMULATION
1096
1097 asmlinkage void math_emulate(long arg)
1098 {
1099         printk(KERN_EMERG "math-emulation not enabled and no coprocessor found.\n");
1100         printk(KERN_EMERG "killing %s.\n",current->comm);
1101         force_sig(SIGFPE,current);
1102         schedule();
1103 }
1104
1105 #endif /* CONFIG_MATH_EMULATION */
1106
1107 #ifdef CONFIG_X86_F00F_BUG
1108 void __init trap_init_f00f_bug(void)
1109 {
1110         __set_fixmap(FIX_F00F_IDT, __pa(&idt_table), PAGE_KERNEL_RO);
1111
1112         /*
1113          * Update the IDT descriptor and reload the IDT so that
1114          * it uses the read-only mapped virtual address.
1115          */
1116         idt_descr.address = fix_to_virt(FIX_F00F_IDT);
1117         load_idt(&idt_descr);
1118 }
1119 #endif
1120
1121 #define _set_gate(gate_addr,type,dpl,addr,seg) \
1122 do { \
1123   int __d0, __d1; \
1124   __asm__ __volatile__ ("movw %%dx,%%ax\n\t" \
1125         "movw %4,%%dx\n\t" \
1126         "movl %%eax,%0\n\t" \
1127         "movl %%edx,%1" \
1128         :"=m" (*((long *) (gate_addr))), \
1129          "=m" (*(1+(long *) (gate_addr))), "=&a" (__d0), "=&d" (__d1) \
1130         :"i" ((short) (0x8000+(dpl<<13)+(type<<8))), \
1131          "3" ((char *) (addr)),"2" ((seg) << 16)); \
1132 } while (0)
1133
1134
1135 /*
1136  * This needs to use 'idt_table' rather than 'idt', and
1137  * thus use the _nonmapped_ version of the IDT, as the
1138  * Pentium F0 0F bugfix can have resulted in the mapped
1139  * IDT being write-protected.
1140  */
1141 void set_intr_gate(unsigned int n, void *addr)
1142 {
1143         _set_gate(idt_table+n,14,0,addr,__KERNEL_CS);
1144 }
1145
1146 /*
1147  * This routine sets up an interrupt gate at directory privilege level 3.
1148  */
1149 static inline void set_system_intr_gate(unsigned int n, void *addr)
1150 {
1151         _set_gate(idt_table+n, 14, 3, addr, __KERNEL_CS);
1152 }
1153
1154 static void __init set_trap_gate(unsigned int n, void *addr)
1155 {
1156         _set_gate(idt_table+n,15,0,addr,__KERNEL_CS);
1157 }
1158
1159 static void __init set_system_gate(unsigned int n, void *addr)
1160 {
1161         _set_gate(idt_table+n,15,3,addr,__KERNEL_CS);
1162 }
1163
1164 static void __init set_task_gate(unsigned int n, unsigned int gdt_entry)
1165 {
1166         _set_gate(idt_table+n,5,0,0,(gdt_entry<<3));
1167 }
1168
1169
1170 void __init trap_init(void)
1171 {
1172 #ifdef CONFIG_EISA
1173         void __iomem *p = ioremap(0x0FFFD9, 4);
1174         if (readl(p) == 'E'+('I'<<8)+('S'<<16)+('A'<<24)) {
1175                 EISA_bus = 1;
1176         }
1177         iounmap(p);
1178 #endif
1179
1180 #ifdef CONFIG_X86_LOCAL_APIC
1181         init_apic_mappings();
1182 #endif
1183
1184         set_trap_gate(0,&divide_error);
1185         set_intr_gate(1,&debug);
1186         set_intr_gate(2,&nmi);
1187         set_system_intr_gate(3, &int3); /* int3/4 can be called from all */
1188         set_system_gate(4,&overflow);
1189         set_trap_gate(5,&bounds);
1190         set_trap_gate(6,&invalid_op);
1191         set_trap_gate(7,&device_not_available);
1192         set_task_gate(8,GDT_ENTRY_DOUBLEFAULT_TSS);
1193         set_trap_gate(9,&coprocessor_segment_overrun);
1194         set_trap_gate(10,&invalid_TSS);
1195         set_trap_gate(11,&segment_not_present);
1196         set_trap_gate(12,&stack_segment);
1197         set_trap_gate(13,&general_protection);
1198         set_intr_gate(14,&page_fault);
1199         set_trap_gate(15,&spurious_interrupt_bug);
1200         set_trap_gate(16,&coprocessor_error);
1201         set_trap_gate(17,&alignment_check);
1202 #ifdef CONFIG_X86_MCE
1203         set_trap_gate(18,&machine_check);
1204 #endif
1205         set_trap_gate(19,&simd_coprocessor_error);
1206
1207         if (cpu_has_fxsr) {
1208                 /*
1209                  * Verify that the FXSAVE/FXRSTOR data will be 16-byte aligned.
1210                  * Generates a compile-time "error: zero width for bit-field" if
1211                  * the alignment is wrong.
1212                  */
1213                 struct fxsrAlignAssert {
1214                         int _:!(offsetof(struct task_struct,
1215                                         thread.i387.fxsave) & 15);
1216                 };
1217
1218                 printk(KERN_INFO "Enabling fast FPU save and restore... ");
1219                 set_in_cr4(X86_CR4_OSFXSR);
1220                 printk("done.\n");
1221         }
1222         if (cpu_has_xmm) {
1223                 printk(KERN_INFO "Enabling unmasked SIMD FPU exception "
1224                                 "support... ");
1225                 set_in_cr4(X86_CR4_OSXMMEXCPT);
1226                 printk("done.\n");
1227         }
1228
1229         set_system_gate(SYSCALL_VECTOR,&system_call);
1230
1231         /*
1232          * Should be a barrier for any external CPU state.
1233          */
1234         cpu_init();
1235
1236         trap_init_hook();
1237 }
1238
1239 static int __init kstack_setup(char *s)
1240 {
1241         kstack_depth_to_print = simple_strtoul(s, NULL, 0);
1242         return 1;
1243 }
1244 __setup("kstack=", kstack_setup);
1245
1246 static int __init call_trace_setup(char *s)
1247 {
1248         if (strcmp(s, "old") == 0)
1249                 call_trace = -1;
1250         else if (strcmp(s, "both") == 0)
1251                 call_trace = 0;
1252         else if (strcmp(s, "new") == 0)
1253                 call_trace = 1;
1254         return 1;
1255 }
1256 __setup("call_trace=", call_trace_setup);