blob: b814dbdcc91e58b06c140ff1a099f223c2212768 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Alexander Nyberg6e274d12005-06-25 14:58:26 -070030#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#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}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700107EXPORT_SYMBOL(register_die_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
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
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800115static void print_addr_and_symbol(unsigned long addr, char *log_lvl)
116{
117 printk(log_lvl);
118 printk(" [<%08lx>] ", addr);
119 print_symbol("%s", addr);
120 printk("\n");
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static inline unsigned long print_context_stack(struct thread_info *tinfo,
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800124 unsigned long *stack, unsigned long ebp,
125 char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 unsigned long addr;
128
129#ifdef CONFIG_FRAME_POINTER
130 while (valid_stack_ptr(tinfo, (void *)ebp)) {
131 addr = *(unsigned long *)(ebp + 4);
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800132 print_addr_and_symbol(addr, log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 ebp = *(unsigned long *)ebp;
134 }
135#else
136 while (valid_stack_ptr(tinfo, stack)) {
137 addr = *stack++;
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800138 if (__kernel_text_address(addr))
139 print_addr_and_symbol(addr, log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141#endif
142 return ebp;
143}
144
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800145static void show_trace_log_lvl(struct task_struct *task,
146 unsigned long *stack, char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 unsigned long ebp;
149
150 if (!task)
151 task = current;
152
153 if (task == current) {
154 /* Grab ebp right from our regs */
155 asm ("movl %%ebp, %0" : "=r" (ebp) : );
156 } else {
157 /* ebp is the last reg pushed by switch_to */
158 ebp = *(unsigned long *) task->thread.esp;
159 }
160
161 while (1) {
162 struct thread_info *context;
163 context = (struct thread_info *)
164 ((unsigned long)stack & (~(THREAD_SIZE - 1)));
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800165 ebp = print_context_stack(context, stack, ebp, log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 stack = (unsigned long*)context->previous_esp;
167 if (!stack)
168 break;
Hugh Dickins165a2c12006-02-04 23:27:51 -0800169 printk(log_lvl);
170 printk(" =======================\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172}
173
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800174void show_trace(struct task_struct *task, unsigned long * stack)
175{
176 show_trace_log_lvl(task, stack, "");
177}
178
179static void show_stack_log_lvl(struct task_struct *task, unsigned long *esp,
180 char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 unsigned long *stack;
183 int i;
184
185 if (esp == NULL) {
186 if (task)
187 esp = (unsigned long*)task->thread.esp;
188 else
189 esp = (unsigned long *)&esp;
190 }
191
192 stack = esp;
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800193 printk(log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 for(i = 0; i < kstack_depth_to_print; i++) {
195 if (kstack_end(stack))
196 break;
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800197 if (i && ((i % 8) == 0)) {
198 printk("\n");
199 printk(log_lvl);
200 printk(" ");
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 printk("%08lx ", *stack++);
203 }
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800204 printk("\n");
205 printk(log_lvl);
206 printk("Call Trace:\n");
207 show_trace_log_lvl(task, esp, log_lvl);
208}
209
210void show_stack(struct task_struct *task, unsigned long *esp)
211{
212 show_stack_log_lvl(task, esp, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215/*
216 * The architecture-independent dump_stack generator
217 */
218void dump_stack(void)
219{
220 unsigned long stack;
221
222 show_trace(current, &stack);
223}
224
225EXPORT_SYMBOL(dump_stack);
226
227void show_registers(struct pt_regs *regs)
228{
229 int i;
230 int in_kernel = 1;
231 unsigned long esp;
232 unsigned short ss;
233
234 esp = (unsigned long) (&regs->esp);
Zachary Amsden0998e422005-09-03 15:56:43 -0700235 savesegment(ss, ss);
Vincent Hanquez717b5942005-06-23 00:08:45 -0700236 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 in_kernel = 0;
238 esp = regs->esp;
239 ss = regs->xss & 0xffff;
240 }
241 print_modules();
Dave Jones9c107802006-01-09 20:51:32 -0800242 printk(KERN_EMERG "CPU: %d\nEIP: %04x:[<%08lx>] %s VLI\n"
Chuck Ebbertb53e8f62006-02-04 23:28:04 -0800243 "EFLAGS: %08lx (%s %.*s) \n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 smp_processor_id(), 0xffff & regs->xcs, regs->eip,
Chuck Ebbertb53e8f62006-02-04 23:28:04 -0800245 print_tainted(), regs->eflags, system_utsname.release,
246 (int)strcspn(system_utsname.version, " "),
247 system_utsname.version);
Dave Jones9c107802006-01-09 20:51:32 -0800248 print_symbol(KERN_EMERG "EIP is at %s\n", regs->eip);
249 printk(KERN_EMERG "eax: %08lx ebx: %08lx ecx: %08lx edx: %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 regs->eax, regs->ebx, regs->ecx, regs->edx);
Dave Jones9c107802006-01-09 20:51:32 -0800251 printk(KERN_EMERG "esi: %08lx edi: %08lx ebp: %08lx esp: %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 regs->esi, regs->edi, regs->ebp, esp);
Dave Jones9c107802006-01-09 20:51:32 -0800253 printk(KERN_EMERG "ds: %04x es: %04x ss: %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 regs->xds & 0xffff, regs->xes & 0xffff, ss);
Dave Jones9c107802006-01-09 20:51:32 -0800255 printk(KERN_EMERG "Process %s (pid: %d, threadinfo=%p task=%p)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 current->comm, current->pid, current_thread_info(), current);
257 /*
258 * When in-kernel, we also print out the stack and code at the
259 * time of the fault..
260 */
261 if (in_kernel) {
Domen Puncer3f3ae342005-06-25 14:58:44 -0700262 u8 __user *eip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Dave Jones9c107802006-01-09 20:51:32 -0800264 printk("\n" KERN_EMERG "Stack: ");
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800265 show_stack_log_lvl(NULL, (unsigned long *)esp, KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Dave Jones9c107802006-01-09 20:51:32 -0800267 printk(KERN_EMERG "Code: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Domen Puncer3f3ae342005-06-25 14:58:44 -0700269 eip = (u8 __user *)regs->eip - 43;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 for (i = 0; i < 64; i++, eip++) {
271 unsigned char c;
272
Domen Puncer3f3ae342005-06-25 14:58:44 -0700273 if (eip < (u8 __user *)PAGE_OFFSET || __get_user(c, eip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 printk(" Bad EIP value.");
275 break;
276 }
Domen Puncer3f3ae342005-06-25 14:58:44 -0700277 if (eip == (u8 __user *)regs->eip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 printk("<%02x> ", c);
279 else
280 printk("%02x ", c);
281 }
282 }
283 printk("\n");
284}
285
286static void handle_BUG(struct pt_regs *regs)
287{
288 unsigned short ud2;
289 unsigned short line;
290 char *file;
291 char c;
292 unsigned long eip;
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 eip = regs->eip;
295
296 if (eip < PAGE_OFFSET)
297 goto no_bug;
Domen Puncer3f3ae342005-06-25 14:58:44 -0700298 if (__get_user(ud2, (unsigned short __user *)eip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 goto no_bug;
300 if (ud2 != 0x0b0f)
301 goto no_bug;
Domen Puncer3f3ae342005-06-25 14:58:44 -0700302 if (__get_user(line, (unsigned short __user *)(eip + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 goto bug;
Domen Puncer3f3ae342005-06-25 14:58:44 -0700304 if (__get_user(file, (char * __user *)(eip + 4)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 (unsigned long)file < PAGE_OFFSET || __get_user(c, file))
306 file = "<bad filename>";
307
Dave Jones9c107802006-01-09 20:51:32 -0800308 printk(KERN_EMERG "------------[ cut here ]------------\n");
309 printk(KERN_EMERG "kernel BUG at %s:%d!\n", file, line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311no_bug:
312 return;
313
314 /* Here we know it was a BUG but file-n-line is unavailable */
315bug:
Dave Jones9c107802006-01-09 20:51:32 -0800316 printk(KERN_EMERG "Kernel BUG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700319/* This is gone through when something in the kernel
320 * has done something bad and is about to be terminated.
321*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322void die(const char * str, struct pt_regs * regs, long err)
323{
324 static struct {
325 spinlock_t lock;
326 u32 lock_owner;
327 int lock_owner_depth;
328 } die = {
329 .lock = SPIN_LOCK_UNLOCKED,
330 .lock_owner = -1,
331 .lock_owner_depth = 0
332 };
333 static int die_counter;
Jan Beuliche43d6742006-01-06 00:11:48 -0800334 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Ingo Molnar39c715b2005-06-21 17:14:34 -0700336 if (die.lock_owner != raw_smp_processor_id()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 console_verbose();
Jan Beuliche43d6742006-01-06 00:11:48 -0800338 spin_lock_irqsave(&die.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 die.lock_owner = smp_processor_id();
340 die.lock_owner_depth = 0;
341 bust_spinlocks(1);
342 }
Jan Beuliche43d6742006-01-06 00:11:48 -0800343 else
344 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 if (++die.lock_owner_depth < 3) {
347 int nl = 0;
348 handle_BUG(regs);
Dave Jones9c107802006-01-09 20:51:32 -0800349 printk(KERN_EMERG "%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#ifdef CONFIG_PREEMPT
Dave Jones9c107802006-01-09 20:51:32 -0800351 printk(KERN_EMERG "PREEMPT ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 nl = 1;
353#endif
354#ifdef CONFIG_SMP
Dave Jones9c107802006-01-09 20:51:32 -0800355 if (!nl)
356 printk(KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 printk("SMP ");
358 nl = 1;
359#endif
360#ifdef CONFIG_DEBUG_PAGEALLOC
Dave Jones9c107802006-01-09 20:51:32 -0800361 if (!nl)
362 printk(KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 printk("DEBUG_PAGEALLOC");
364 nl = 1;
365#endif
366 if (nl)
367 printk("\n");
368 notify_die(DIE_OOPS, (char *)str, regs, err, 255, SIGSEGV);
369 show_registers(regs);
370 } else
Dave Jones9c107802006-01-09 20:51:32 -0800371 printk(KERN_EMERG "Recursive die() failure, output suppressed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 bust_spinlocks(0);
374 die.lock_owner = -1;
Jan Beuliche43d6742006-01-06 00:11:48 -0800375 spin_unlock_irqrestore(&die.lock, flags);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700376
377 if (kexec_should_crash(current))
378 crash_kexec(regs);
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (in_interrupt())
381 panic("Fatal exception in interrupt");
382
383 if (panic_on_oops) {
384 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
385 ssleep(5);
386 panic("Fatal exception");
387 }
388 do_exit(SIGSEGV);
389}
390
391static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err)
392{
Vincent Hanquez717b5942005-06-23 00:08:45 -0700393 if (!user_mode_vm(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 die(str, regs, err);
395}
396
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700397static void __kprobes do_trap(int trapnr, int signr, char *str, int vm86,
398 struct pt_regs * regs, long error_code,
399 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700401 struct task_struct *tsk = current;
402 tsk->thread.error_code = error_code;
403 tsk->thread.trap_no = trapnr;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (regs->eflags & VM_MASK) {
406 if (vm86)
407 goto vm86_trap;
408 goto trap_signal;
409 }
410
Vincent Hanquez717b5942005-06-23 00:08:45 -0700411 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 goto kernel_trap;
413
414 trap_signal: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (info)
416 force_sig_info(signr, info, tsk);
417 else
418 force_sig(signr, tsk);
419 return;
420 }
421
422 kernel_trap: {
423 if (!fixup_exception(regs))
424 die(str, regs, error_code);
425 return;
426 }
427
428 vm86_trap: {
429 int ret = handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, trapnr);
430 if (ret) goto trap_signal;
431 return;
432 }
433}
434
435#define DO_ERROR(trapnr, signr, str, name) \
436fastcall void do_##name(struct pt_regs * regs, long error_code) \
437{ \
438 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
439 == NOTIFY_STOP) \
440 return; \
441 do_trap(trapnr, signr, str, 0, regs, error_code, NULL); \
442}
443
444#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
445fastcall void do_##name(struct pt_regs * regs, long error_code) \
446{ \
447 siginfo_t info; \
448 info.si_signo = signr; \
449 info.si_errno = 0; \
450 info.si_code = sicode; \
451 info.si_addr = (void __user *)siaddr; \
452 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
453 == NOTIFY_STOP) \
454 return; \
455 do_trap(trapnr, signr, str, 0, regs, error_code, &info); \
456}
457
458#define DO_VM86_ERROR(trapnr, signr, str, name) \
459fastcall void do_##name(struct pt_regs * regs, long error_code) \
460{ \
461 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
462 == NOTIFY_STOP) \
463 return; \
464 do_trap(trapnr, signr, str, 1, regs, error_code, NULL); \
465}
466
467#define DO_VM86_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
468fastcall void do_##name(struct pt_regs * regs, long error_code) \
469{ \
470 siginfo_t info; \
471 info.si_signo = signr; \
472 info.si_errno = 0; \
473 info.si_code = sicode; \
474 info.si_addr = (void __user *)siaddr; \
475 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
476 == NOTIFY_STOP) \
477 return; \
478 do_trap(trapnr, signr, str, 1, regs, error_code, &info); \
479}
480
481DO_VM86_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->eip)
482#ifndef CONFIG_KPROBES
483DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
484#endif
485DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
486DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert631b0342006-01-03 22:36:14 -0500487DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
489DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
490DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
491DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
492DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
Linus Torvaldsa879cbb2005-04-29 09:38:44 -0700493DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700495fastcall void __kprobes do_general_protection(struct pt_regs * regs,
496 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 int cpu = get_cpu();
499 struct tss_struct *tss = &per_cpu(init_tss, cpu);
500 struct thread_struct *thread = &current->thread;
501
502 /*
503 * Perform the lazy TSS's I/O bitmap copy. If the TSS has an
504 * invalid offset set (the LAZY one) and the faulting thread has
505 * a valid I/O bitmap pointer, we copy the I/O bitmap in the TSS
506 * and we set the offset field correctly. Then we let the CPU to
507 * restart the faulting instruction.
508 */
509 if (tss->io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY &&
510 thread->io_bitmap_ptr) {
511 memcpy(tss->io_bitmap, thread->io_bitmap_ptr,
512 thread->io_bitmap_max);
513 /*
514 * If the previously set map was extending to higher ports
515 * than the current one, pad extra space with 0xff (no access).
516 */
517 if (thread->io_bitmap_max < tss->io_bitmap_max)
518 memset((char *) tss->io_bitmap +
519 thread->io_bitmap_max, 0xff,
520 tss->io_bitmap_max - thread->io_bitmap_max);
521 tss->io_bitmap_max = thread->io_bitmap_max;
522 tss->io_bitmap_base = IO_BITMAP_OFFSET;
Bart Oldemand5cd4aa2005-10-30 14:59:29 -0800523 tss->io_bitmap_owner = thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 put_cpu();
525 return;
526 }
527 put_cpu();
528
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700529 current->thread.error_code = error_code;
530 current->thread.trap_no = 13;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (regs->eflags & VM_MASK)
533 goto gp_in_vm86;
534
Vincent Hanquez717b5942005-06-23 00:08:45 -0700535 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto gp_in_kernel;
537
538 current->thread.error_code = error_code;
539 current->thread.trap_no = 13;
540 force_sig(SIGSEGV, current);
541 return;
542
543gp_in_vm86:
544 local_irq_enable();
545 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
546 return;
547
548gp_in_kernel:
549 if (!fixup_exception(regs)) {
550 if (notify_die(DIE_GPF, "general protection fault", regs,
551 error_code, 13, SIGSEGV) == NOTIFY_STOP)
552 return;
553 die("general protection fault", regs, error_code);
554 }
555}
556
557static void mem_parity_error(unsigned char reason, struct pt_regs * regs)
558{
Dave Jones9c107802006-01-09 20:51:32 -0800559 printk(KERN_EMERG "Uhhuh. NMI received. Dazed and confused, but trying "
560 "to continue\n");
561 printk(KERN_EMERG "You probably have a hardware problem with your RAM "
562 "chips\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 /* Clear and disable the memory parity error line. */
565 clear_mem_error(reason);
566}
567
568static void io_check_error(unsigned char reason, struct pt_regs * regs)
569{
570 unsigned long i;
571
Dave Jones9c107802006-01-09 20:51:32 -0800572 printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 show_registers(regs);
574
575 /* Re-enable the IOCK line, wait for a few seconds */
576 reason = (reason & 0xf) | 8;
577 outb(reason, 0x61);
578 i = 2000;
579 while (--i) udelay(1000);
580 reason &= ~8;
581 outb(reason, 0x61);
582}
583
584static void unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
585{
586#ifdef CONFIG_MCA
587 /* Might actually be able to figure out what the guilty party
588 * is. */
589 if( MCA_bus ) {
590 mca_handle_nmi();
591 return;
592 }
593#endif
594 printk("Uhhuh. NMI received for unknown reason %02x on CPU %d.\n",
595 reason, smp_processor_id());
596 printk("Dazed and confused, but trying to continue\n");
597 printk("Do you have a strange power saving mode enabled?\n");
598}
599
600static DEFINE_SPINLOCK(nmi_print_lock);
601
602void die_nmi (struct pt_regs *regs, const char *msg)
603{
George Anzinger748f2ed2005-09-03 15:56:48 -0700604 if (notify_die(DIE_NMIWATCHDOG, msg, regs, 0, 0, SIGINT) ==
605 NOTIFY_STOP)
606 return;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 spin_lock(&nmi_print_lock);
609 /*
610 * We are in trouble anyway, lets at least try
611 * to get a message out.
612 */
613 bust_spinlocks(1);
Dave Jones9c107802006-01-09 20:51:32 -0800614 printk(KERN_EMERG "%s", msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 printk(" on CPU%d, eip %08lx, registers:\n",
616 smp_processor_id(), regs->eip);
617 show_registers(regs);
Dave Jones9c107802006-01-09 20:51:32 -0800618 printk(KERN_EMERG "console shuts up ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 console_silent();
620 spin_unlock(&nmi_print_lock);
621 bust_spinlocks(0);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700622
623 /* If we are in kernel we are probably nested up pretty bad
624 * and might aswell get out now while we still can.
625 */
626 if (!user_mode(regs)) {
627 current->thread.trap_no = 2;
628 crash_kexec(regs);
629 }
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 do_exit(SIGSEGV);
632}
633
634static void default_do_nmi(struct pt_regs * regs)
635{
636 unsigned char reason = 0;
637
638 /* Only the BSP gets external NMIs from the system. */
639 if (!smp_processor_id())
640 reason = get_nmi_reason();
641
642 if (!(reason & 0xc0)) {
643 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 0, SIGINT)
644 == NOTIFY_STOP)
645 return;
646#ifdef CONFIG_X86_LOCAL_APIC
647 /*
648 * Ok, so this is none of the documented NMI sources,
649 * so it must be the NMI watchdog.
650 */
651 if (nmi_watchdog) {
652 nmi_watchdog_tick(regs);
653 return;
654 }
655#endif
656 unknown_nmi_error(reason, regs);
657 return;
658 }
659 if (notify_die(DIE_NMI, "nmi", regs, reason, 0, SIGINT) == NOTIFY_STOP)
660 return;
661 if (reason & 0x80)
662 mem_parity_error(reason, regs);
663 if (reason & 0x40)
664 io_check_error(reason, regs);
665 /*
666 * Reassert NMI in case it became active meanwhile
667 * as it's edge-triggered.
668 */
669 reassert_nmi();
670}
671
672static int dummy_nmi_callback(struct pt_regs * regs, int cpu)
673{
674 return 0;
675}
676
677static nmi_callback_t nmi_callback = dummy_nmi_callback;
678
679fastcall void do_nmi(struct pt_regs * regs, long error_code)
680{
681 int cpu;
682
683 nmi_enter();
684
685 cpu = smp_processor_id();
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 ++nmi_count(cpu);
688
Paul E. McKenney19306052005-09-06 15:16:35 -0700689 if (!rcu_dereference(nmi_callback)(regs, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 default_do_nmi(regs);
691
692 nmi_exit();
693}
694
695void set_nmi_callback(nmi_callback_t callback)
696{
Paul E. McKenney19306052005-09-06 15:16:35 -0700697 rcu_assign_pointer(nmi_callback, callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700699EXPORT_SYMBOL_GPL(set_nmi_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701void unset_nmi_callback(void)
702{
703 nmi_callback = dummy_nmi_callback;
704}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700705EXPORT_SYMBOL_GPL(unset_nmi_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707#ifdef CONFIG_KPROBES
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700708fastcall void __kprobes do_int3(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
711 == NOTIFY_STOP)
Stas Sergeev48c882112005-05-01 08:58:49 -0700712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* This is an interrupt gate, because kprobes wants interrupts
714 disabled. Normal trap handlers don't. */
715 restore_interrupts(regs);
716 do_trap(3, SIGTRAP, "int3", 1, regs, error_code, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718#endif
719
720/*
721 * Our handling of the processor debug registers is non-trivial.
722 * We do not clear them on entry and exit from the kernel. Therefore
723 * it is possible to get a watchpoint trap here from inside the kernel.
724 * However, the code in ./ptrace.c has ensured that the user can
725 * only set watchpoints on userspace addresses. Therefore the in-kernel
726 * watchpoint trap can only occur in code which is reading/writing
727 * from user space. Such code must not hold kernel locks (since it
728 * can equally take a page fault), therefore it is safe to call
729 * force_sig_info even though that claims and releases locks.
730 *
731 * Code in ./signal.c ensures that the debug control register
732 * is restored before we deliver any signal, and therefore that
733 * user code runs with the correct debug control register even though
734 * we clear it here.
735 *
736 * Being careful here means that we don't have to be as careful in a
737 * lot of more complicated places (task switching can be a bit lazy
738 * about restoring all the debug state, and ptrace doesn't have to
739 * find every occurrence of the TF bit that could be saved away even
740 * by user code)
741 */
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700742fastcall void __kprobes do_debug(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 unsigned int condition;
745 struct task_struct *tsk = current;
746
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700747 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
750 SIGTRAP) == NOTIFY_STOP)
751 return;
752 /* It's safe to allow irq's after DR6 has been saved */
753 if (regs->eflags & X86_EFLAGS_IF)
754 local_irq_enable();
755
756 /* Mask out spurious debug traps due to lazy DR7 setting */
757 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
758 if (!tsk->thread.debugreg[7])
759 goto clear_dr7;
760 }
761
762 if (regs->eflags & VM_MASK)
763 goto debug_vm86;
764
765 /* Save debug status register where ptrace can see it */
766 tsk->thread.debugreg[6] = condition;
767
768 /*
769 * Single-stepping through TF: make sure we ignore any events in
770 * kernel space (but re-enable TF when returning to user mode).
771 */
772 if (condition & DR_STEP) {
773 /*
774 * We already checked v86 mode above, so we can
775 * check for kernel mode by just checking the CPL
776 * of CS.
777 */
Vincent Hanquez717b5942005-06-23 00:08:45 -0700778 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 goto clear_TF_reenable;
780 }
781
782 /* Ok, finally something we can handle */
783 send_sigtrap(tsk, regs, error_code);
784
785 /* Disable additional traps. They'll be re-enabled when
786 * the signal is delivered.
787 */
788clear_dr7:
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700789 set_debugreg(0, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return;
791
792debug_vm86:
793 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1);
794 return;
795
796clear_TF_reenable:
797 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
798 regs->eflags &= ~TF_MASK;
799 return;
800}
801
802/*
803 * Note that we play around with the 'TS' bit in an attempt to get
804 * the correct behaviour even in the presence of the asynchronous
805 * IRQ13 behaviour
806 */
807void math_error(void __user *eip)
808{
809 struct task_struct * task;
810 siginfo_t info;
811 unsigned short cwd, swd;
812
813 /*
814 * Save the info for the exception handler and clear the error.
815 */
816 task = current;
817 save_init_fpu(task);
818 task->thread.trap_no = 16;
819 task->thread.error_code = 0;
820 info.si_signo = SIGFPE;
821 info.si_errno = 0;
822 info.si_code = __SI_FAULT;
823 info.si_addr = eip;
824 /*
825 * (~cwd & swd) will mask out exceptions that are not set to unmasked
826 * status. 0x3f is the exception bits in these regs, 0x200 is the
827 * C1 reg you need in case of a stack fault, 0x040 is the stack
828 * fault bit. We should only be taking one exception at a time,
829 * so if this combination doesn't produce any single exception,
830 * then we have a bad program that isn't syncronizing its FPU usage
831 * and it will suffer the consequences since we won't be able to
832 * fully reproduce the context of the exception
833 */
834 cwd = get_fpu_cwd(task);
835 swd = get_fpu_swd(task);
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400836 switch (swd & ~cwd & 0x3f) {
Chuck Ebbert33333372005-09-13 04:55:41 -0400837 case 0x000: /* No unmasked exception */
838 return;
839 default: /* Multiple exceptions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 break;
841 case 0x001: /* Invalid Op */
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400842 /*
843 * swd & 0x240 == 0x040: Stack Underflow
844 * swd & 0x240 == 0x240: Stack Overflow
845 * User must clear the SF bit (0x40) if set
846 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 info.si_code = FPE_FLTINV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 break;
849 case 0x002: /* Denormalize */
850 case 0x010: /* Underflow */
851 info.si_code = FPE_FLTUND;
852 break;
853 case 0x004: /* Zero Divide */
854 info.si_code = FPE_FLTDIV;
855 break;
856 case 0x008: /* Overflow */
857 info.si_code = FPE_FLTOVF;
858 break;
859 case 0x020: /* Precision */
860 info.si_code = FPE_FLTRES;
861 break;
862 }
863 force_sig_info(SIGFPE, &info, task);
864}
865
866fastcall void do_coprocessor_error(struct pt_regs * regs, long error_code)
867{
868 ignore_fpu_irq = 1;
869 math_error((void __user *)regs->eip);
870}
871
872static void simd_math_error(void __user *eip)
873{
874 struct task_struct * task;
875 siginfo_t info;
876 unsigned short mxcsr;
877
878 /*
879 * Save the info for the exception handler and clear the error.
880 */
881 task = current;
882 save_init_fpu(task);
883 task->thread.trap_no = 19;
884 task->thread.error_code = 0;
885 info.si_signo = SIGFPE;
886 info.si_errno = 0;
887 info.si_code = __SI_FAULT;
888 info.si_addr = eip;
889 /*
890 * The SIMD FPU exceptions are handled a little differently, as there
891 * is only a single status/control register. Thus, to determine which
892 * unmasked exception was caught we must mask the exception mask bits
893 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
894 */
895 mxcsr = get_fpu_mxcsr(task);
896 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
897 case 0x000:
898 default:
899 break;
900 case 0x001: /* Invalid Op */
901 info.si_code = FPE_FLTINV;
902 break;
903 case 0x002: /* Denormalize */
904 case 0x010: /* Underflow */
905 info.si_code = FPE_FLTUND;
906 break;
907 case 0x004: /* Zero Divide */
908 info.si_code = FPE_FLTDIV;
909 break;
910 case 0x008: /* Overflow */
911 info.si_code = FPE_FLTOVF;
912 break;
913 case 0x020: /* Precision */
914 info.si_code = FPE_FLTRES;
915 break;
916 }
917 force_sig_info(SIGFPE, &info, task);
918}
919
920fastcall void do_simd_coprocessor_error(struct pt_regs * regs,
921 long error_code)
922{
923 if (cpu_has_xmm) {
924 /* Handle SIMD FPU exceptions on PIII+ processors. */
925 ignore_fpu_irq = 1;
926 simd_math_error((void __user *)regs->eip);
927 } else {
928 /*
929 * Handle strange cache flush from user space exception
930 * in all other cases. This is undocumented behaviour.
931 */
932 if (regs->eflags & VM_MASK) {
933 handle_vm86_fault((struct kernel_vm86_regs *)regs,
934 error_code);
935 return;
936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 current->thread.trap_no = 19;
938 current->thread.error_code = error_code;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700939 die_if_kernel("cache flush denied", regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 force_sig(SIGSEGV, current);
941 }
942}
943
944fastcall void do_spurious_interrupt_bug(struct pt_regs * regs,
945 long error_code)
946{
947#if 0
948 /* No need to warn about this any longer. */
949 printk("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
950#endif
951}
952
953fastcall void setup_x86_bogus_stack(unsigned char * stk)
954{
955 unsigned long *switch16_ptr, *switch32_ptr;
956 struct pt_regs *regs;
957 unsigned long stack_top, stack_bot;
958 unsigned short iret_frame16_off;
959 int cpu = smp_processor_id();
960 /* reserve the space on 32bit stack for the magic switch16 pointer */
961 memmove(stk, stk + 8, sizeof(struct pt_regs));
962 switch16_ptr = (unsigned long *)(stk + sizeof(struct pt_regs));
963 regs = (struct pt_regs *)stk;
964 /* now the switch32 on 16bit stack */
965 stack_bot = (unsigned long)&per_cpu(cpu_16bit_stack, cpu);
966 stack_top = stack_bot + CPU_16BIT_STACK_SIZE;
967 switch32_ptr = (unsigned long *)(stack_top - 8);
968 iret_frame16_off = CPU_16BIT_STACK_SIZE - 8 - 20;
969 /* copy iret frame on 16bit stack */
970 memcpy((void *)(stack_bot + iret_frame16_off), &regs->eip, 20);
971 /* fill in the switch pointers */
972 switch16_ptr[0] = (regs->esp & 0xffff0000) | iret_frame16_off;
973 switch16_ptr[1] = __ESPFIX_SS;
974 switch32_ptr[0] = (unsigned long)stk + sizeof(struct pt_regs) +
975 8 - CPU_16BIT_STACK_SIZE;
976 switch32_ptr[1] = __KERNEL_DS;
977}
978
979fastcall unsigned char * fixup_x86_bogus_stack(unsigned short sp)
980{
981 unsigned long *switch32_ptr;
982 unsigned char *stack16, *stack32;
983 unsigned long stack_top, stack_bot;
984 int len;
985 int cpu = smp_processor_id();
986 stack_bot = (unsigned long)&per_cpu(cpu_16bit_stack, cpu);
987 stack_top = stack_bot + CPU_16BIT_STACK_SIZE;
988 switch32_ptr = (unsigned long *)(stack_top - 8);
989 /* copy the data from 16bit stack to 32bit stack */
990 len = CPU_16BIT_STACK_SIZE - 8 - sp;
991 stack16 = (unsigned char *)(stack_bot + sp);
992 stack32 = (unsigned char *)
993 (switch32_ptr[0] + CPU_16BIT_STACK_SIZE - 8 - len);
994 memcpy(stack32, stack16, len);
995 return stack32;
996}
997
998/*
999 * 'math_state_restore()' saves the current math information in the
1000 * old math state array, and gets the new ones from the current task
1001 *
1002 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1003 * Don't touch unless you *really* know how it works.
1004 *
1005 * Must be called with kernel preemption disabled (in this case,
1006 * local interrupts are disabled at the call-site in entry.S).
1007 */
1008asmlinkage void math_state_restore(struct pt_regs regs)
1009{
1010 struct thread_info *thread = current_thread_info();
1011 struct task_struct *tsk = thread->task;
1012
1013 clts(); /* Allow maths ops (or we recurse) */
1014 if (!tsk_used_math(tsk))
1015 init_fpu(tsk);
1016 restore_fpu(tsk);
1017 thread->status |= TS_USEDFPU; /* So we fnsave on switch_to() */
1018}
1019
1020#ifndef CONFIG_MATH_EMULATION
1021
1022asmlinkage void math_emulate(long arg)
1023{
Dave Jones9c107802006-01-09 20:51:32 -08001024 printk(KERN_EMERG "math-emulation not enabled and no coprocessor found.\n");
1025 printk(KERN_EMERG "killing %s.\n",current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 force_sig(SIGFPE,current);
1027 schedule();
1028}
1029
1030#endif /* CONFIG_MATH_EMULATION */
1031
1032#ifdef CONFIG_X86_F00F_BUG
1033void __init trap_init_f00f_bug(void)
1034{
1035 __set_fixmap(FIX_F00F_IDT, __pa(&idt_table), PAGE_KERNEL_RO);
1036
1037 /*
1038 * Update the IDT descriptor and reload the IDT so that
1039 * it uses the read-only mapped virtual address.
1040 */
1041 idt_descr.address = fix_to_virt(FIX_F00F_IDT);
Zachary Amsden4d37e7e2005-09-03 15:56:38 -07001042 load_idt(&idt_descr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044#endif
1045
1046#define _set_gate(gate_addr,type,dpl,addr,seg) \
1047do { \
1048 int __d0, __d1; \
1049 __asm__ __volatile__ ("movw %%dx,%%ax\n\t" \
1050 "movw %4,%%dx\n\t" \
1051 "movl %%eax,%0\n\t" \
1052 "movl %%edx,%1" \
1053 :"=m" (*((long *) (gate_addr))), \
1054 "=m" (*(1+(long *) (gate_addr))), "=&a" (__d0), "=&d" (__d1) \
1055 :"i" ((short) (0x8000+(dpl<<13)+(type<<8))), \
1056 "3" ((char *) (addr)),"2" ((seg) << 16)); \
1057} while (0)
1058
1059
1060/*
1061 * This needs to use 'idt_table' rather than 'idt', and
1062 * thus use the _nonmapped_ version of the IDT, as the
1063 * Pentium F0 0F bugfix can have resulted in the mapped
1064 * IDT being write-protected.
1065 */
1066void set_intr_gate(unsigned int n, void *addr)
1067{
1068 _set_gate(idt_table+n,14,0,addr,__KERNEL_CS);
1069}
1070
1071/*
1072 * This routine sets up an interrupt gate at directory privilege level 3.
1073 */
1074static inline void set_system_intr_gate(unsigned int n, void *addr)
1075{
1076 _set_gate(idt_table+n, 14, 3, addr, __KERNEL_CS);
1077}
1078
1079static void __init set_trap_gate(unsigned int n, void *addr)
1080{
1081 _set_gate(idt_table+n,15,0,addr,__KERNEL_CS);
1082}
1083
1084static void __init set_system_gate(unsigned int n, void *addr)
1085{
1086 _set_gate(idt_table+n,15,3,addr,__KERNEL_CS);
1087}
1088
1089static void __init set_task_gate(unsigned int n, unsigned int gdt_entry)
1090{
1091 _set_gate(idt_table+n,5,0,0,(gdt_entry<<3));
1092}
1093
1094
1095void __init trap_init(void)
1096{
1097#ifdef CONFIG_EISA
1098 void __iomem *p = ioremap(0x0FFFD9, 4);
1099 if (readl(p) == 'E'+('I'<<8)+('S'<<16)+('A'<<24)) {
1100 EISA_bus = 1;
1101 }
1102 iounmap(p);
1103#endif
1104
1105#ifdef CONFIG_X86_LOCAL_APIC
1106 init_apic_mappings();
1107#endif
1108
1109 set_trap_gate(0,&divide_error);
1110 set_intr_gate(1,&debug);
1111 set_intr_gate(2,&nmi);
Jan Beulicheb05c322006-01-06 00:11:49 -08001112 set_system_intr_gate(3, &int3); /* int3/4 can be called from all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 set_system_gate(4,&overflow);
Jan Beulicheb05c322006-01-06 00:11:49 -08001114 set_trap_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 set_trap_gate(6,&invalid_op);
1116 set_trap_gate(7,&device_not_available);
1117 set_task_gate(8,GDT_ENTRY_DOUBLEFAULT_TSS);
1118 set_trap_gate(9,&coprocessor_segment_overrun);
1119 set_trap_gate(10,&invalid_TSS);
1120 set_trap_gate(11,&segment_not_present);
1121 set_trap_gate(12,&stack_segment);
1122 set_trap_gate(13,&general_protection);
1123 set_intr_gate(14,&page_fault);
1124 set_trap_gate(15,&spurious_interrupt_bug);
1125 set_trap_gate(16,&coprocessor_error);
1126 set_trap_gate(17,&alignment_check);
1127#ifdef CONFIG_X86_MCE
1128 set_trap_gate(18,&machine_check);
1129#endif
1130 set_trap_gate(19,&simd_coprocessor_error);
1131
Jan Beulichd43c6e82006-01-06 00:11:49 -08001132 if (cpu_has_fxsr) {
1133 /*
1134 * Verify that the FXSAVE/FXRSTOR data will be 16-byte aligned.
1135 * Generates a compile-time "error: zero width for bit-field" if
1136 * the alignment is wrong.
1137 */
1138 struct fxsrAlignAssert {
1139 int _:!(offsetof(struct task_struct,
1140 thread.i387.fxsave) & 15);
1141 };
1142
1143 printk(KERN_INFO "Enabling fast FPU save and restore... ");
1144 set_in_cr4(X86_CR4_OSFXSR);
1145 printk("done.\n");
1146 }
1147 if (cpu_has_xmm) {
1148 printk(KERN_INFO "Enabling unmasked SIMD FPU exception "
1149 "support... ");
1150 set_in_cr4(X86_CR4_OSXMMEXCPT);
1151 printk("done.\n");
1152 }
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 set_system_gate(SYSCALL_VECTOR,&system_call);
1155
1156 /*
1157 * Should be a barrier for any external CPU state.
1158 */
1159 cpu_init();
1160
1161 trap_init_hook();
1162}
1163
1164static int __init kstack_setup(char *s)
1165{
1166 kstack_depth_to_print = simple_strtoul(s, NULL, 0);
1167 return 0;
1168}
1169__setup("kstack=", kstack_setup);