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