blob: dcc14477af1f0a5d16e083252389ba1d74173eac [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;
Alan Sterne041c682006-03-27 01:16:30 -080095ATOMIC_NOTIFIER_HEAD(i386die_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97int register_die_notifier(struct notifier_block *nb)
98{
Jan Beulich101f12a2006-03-23 02:59:45 -080099 vmalloc_sync_all();
Alan Sterne041c682006-03-27 01:16:30 -0800100 return atomic_notifier_chain_register(&i386die_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700102EXPORT_SYMBOL(register_die_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Alan Sterne041c682006-03-27 01:16:30 -0800104int unregister_die_notifier(struct notifier_block *nb)
105{
106 return atomic_notifier_chain_unregister(&i386die_chain, nb);
107}
108EXPORT_SYMBOL(unregister_die_notifier);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
111{
112 return p > (void *)tinfo &&
113 p < (void *)tinfo + THREAD_SIZE - 3;
114}
115
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800116/*
117 * Print CONFIG_STACK_BACKTRACE_COLS address/symbol entries per line.
118 */
119static inline int print_addr_and_symbol(unsigned long addr, char *log_lvl,
120 int printed)
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800121{
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800122 if (!printed)
123 printk(log_lvl);
124
125#if CONFIG_STACK_BACKTRACE_COLS == 1
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800126 printk(" [<%08lx>] ", addr);
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800127#else
128 printk(" <%08lx> ", addr);
129#endif
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800130 print_symbol("%s", addr);
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800131
132 printed = (printed + 1) % CONFIG_STACK_BACKTRACE_COLS;
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800133 if (printed)
Chuck Ebbertc44b20d2006-05-20 14:59:52 -0700134 printk(" ");
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800135 else
136 printk("\n");
137
138 return printed;
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static inline unsigned long print_context_stack(struct thread_info *tinfo,
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800142 unsigned long *stack, unsigned long ebp,
143 char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 unsigned long addr;
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800146 int printed = 0; /* nr of entries already printed on current line */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148#ifdef CONFIG_FRAME_POINTER
149 while (valid_stack_ptr(tinfo, (void *)ebp)) {
150 addr = *(unsigned long *)(ebp + 4);
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800151 printed = print_addr_and_symbol(addr, log_lvl, printed);
Ingo Molnarb88d4f12006-06-23 02:04:20 -0700152 /*
153 * break out of recursive entries (such as
154 * end_of_stack_stop_unwind_function):
155 */
156 if (ebp == *(unsigned long *)ebp)
157 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 ebp = *(unsigned long *)ebp;
159 }
160#else
161 while (valid_stack_ptr(tinfo, stack)) {
162 addr = *stack++;
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800163 if (__kernel_text_address(addr))
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800164 printed = print_addr_and_symbol(addr, log_lvl, printed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166#endif
Chuck Ebbert4d7d8c82006-03-23 02:59:30 -0800167 if (printed)
168 printk("\n");
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return ebp;
171}
172
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800173static void show_trace_log_lvl(struct task_struct *task,
174 unsigned long *stack, char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 unsigned long ebp;
177
178 if (!task)
179 task = current;
180
181 if (task == current) {
182 /* Grab ebp right from our regs */
183 asm ("movl %%ebp, %0" : "=r" (ebp) : );
184 } else {
185 /* ebp is the last reg pushed by switch_to */
186 ebp = *(unsigned long *) task->thread.esp;
187 }
188
189 while (1) {
190 struct thread_info *context;
191 context = (struct thread_info *)
192 ((unsigned long)stack & (~(THREAD_SIZE - 1)));
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800193 ebp = print_context_stack(context, stack, ebp, log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 stack = (unsigned long*)context->previous_esp;
195 if (!stack)
196 break;
Jean Delvarecc04ee92006-03-23 02:59:38 -0800197 printk("%s =======================\n", log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199}
200
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800201void show_trace(struct task_struct *task, unsigned long * stack)
202{
203 show_trace_log_lvl(task, stack, "");
204}
205
206static void show_stack_log_lvl(struct task_struct *task, unsigned long *esp,
207 char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 unsigned long *stack;
210 int i;
211
212 if (esp == NULL) {
213 if (task)
214 esp = (unsigned long*)task->thread.esp;
215 else
216 esp = (unsigned long *)&esp;
217 }
218
219 stack = esp;
220 for(i = 0; i < kstack_depth_to_print; i++) {
221 if (kstack_end(stack))
222 break;
Chuck Ebbert75874d52006-03-23 02:59:52 -0800223 if (i && ((i % 8) == 0))
224 printk("\n%s ", log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 printk("%08lx ", *stack++);
226 }
Chuck Ebbert75874d52006-03-23 02:59:52 -0800227 printk("\n%sCall Trace:\n", log_lvl);
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800228 show_trace_log_lvl(task, esp, log_lvl);
229}
230
231void show_stack(struct task_struct *task, unsigned long *esp)
232{
Chuck Ebbert75874d52006-03-23 02:59:52 -0800233 printk(" ");
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800234 show_stack_log_lvl(task, esp, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237/*
238 * The architecture-independent dump_stack generator
239 */
240void dump_stack(void)
241{
242 unsigned long stack;
243
244 show_trace(current, &stack);
245}
246
247EXPORT_SYMBOL(dump_stack);
248
249void show_registers(struct pt_regs *regs)
250{
251 int i;
252 int in_kernel = 1;
253 unsigned long esp;
254 unsigned short ss;
255
256 esp = (unsigned long) (&regs->esp);
Zachary Amsden0998e422005-09-03 15:56:43 -0700257 savesegment(ss, ss);
Jan Beulichdb753bd2006-03-23 02:59:46 -0800258 if (user_mode_vm(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 in_kernel = 0;
260 esp = regs->esp;
261 ss = regs->xss & 0xffff;
262 }
263 print_modules();
Dave Jones9c107802006-01-09 20:51:32 -0800264 printk(KERN_EMERG "CPU: %d\nEIP: %04x:[<%08lx>] %s VLI\n"
Chuck Ebbertb53e8f62006-02-04 23:28:04 -0800265 "EFLAGS: %08lx (%s %.*s) \n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 smp_processor_id(), 0xffff & regs->xcs, regs->eip,
Chuck Ebbertb53e8f62006-02-04 23:28:04 -0800267 print_tainted(), regs->eflags, system_utsname.release,
268 (int)strcspn(system_utsname.version, " "),
269 system_utsname.version);
Dave Jones9c107802006-01-09 20:51:32 -0800270 print_symbol(KERN_EMERG "EIP is at %s\n", regs->eip);
271 printk(KERN_EMERG "eax: %08lx ebx: %08lx ecx: %08lx edx: %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 regs->eax, regs->ebx, regs->ecx, regs->edx);
Dave Jones9c107802006-01-09 20:51:32 -0800273 printk(KERN_EMERG "esi: %08lx edi: %08lx ebp: %08lx esp: %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 regs->esi, regs->edi, regs->ebp, esp);
Dave Jones9c107802006-01-09 20:51:32 -0800275 printk(KERN_EMERG "ds: %04x es: %04x ss: %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 regs->xds & 0xffff, regs->xes & 0xffff, ss);
Chuck Ebbert7e04a112006-06-23 02:04:31 -0700277 printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)",
278 TASK_COMM_LEN, current->comm, current->pid,
279 current_thread_info(), current, current->thread_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /*
281 * When in-kernel, we also print out the stack and code at the
282 * time of the fault..
283 */
284 if (in_kernel) {
Domen Puncer3f3ae342005-06-25 14:58:44 -0700285 u8 __user *eip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Dave Jones9c107802006-01-09 20:51:32 -0800287 printk("\n" KERN_EMERG "Stack: ");
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800288 show_stack_log_lvl(NULL, (unsigned long *)esp, KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Dave Jones9c107802006-01-09 20:51:32 -0800290 printk(KERN_EMERG "Code: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Domen Puncer3f3ae342005-06-25 14:58:44 -0700292 eip = (u8 __user *)regs->eip - 43;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 for (i = 0; i < 64; i++, eip++) {
294 unsigned char c;
295
Domen Puncer3f3ae342005-06-25 14:58:44 -0700296 if (eip < (u8 __user *)PAGE_OFFSET || __get_user(c, eip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 printk(" Bad EIP value.");
298 break;
299 }
Domen Puncer3f3ae342005-06-25 14:58:44 -0700300 if (eip == (u8 __user *)regs->eip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 printk("<%02x> ", c);
302 else
303 printk("%02x ", c);
304 }
305 }
306 printk("\n");
307}
308
309static void handle_BUG(struct pt_regs *regs)
310{
311 unsigned short ud2;
312 unsigned short line;
313 char *file;
314 char c;
315 unsigned long eip;
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 eip = regs->eip;
318
319 if (eip < PAGE_OFFSET)
320 goto no_bug;
Domen Puncer3f3ae342005-06-25 14:58:44 -0700321 if (__get_user(ud2, (unsigned short __user *)eip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 goto no_bug;
323 if (ud2 != 0x0b0f)
324 goto no_bug;
Domen Puncer3f3ae342005-06-25 14:58:44 -0700325 if (__get_user(line, (unsigned short __user *)(eip + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 goto bug;
Domen Puncer3f3ae342005-06-25 14:58:44 -0700327 if (__get_user(file, (char * __user *)(eip + 4)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 (unsigned long)file < PAGE_OFFSET || __get_user(c, file))
329 file = "<bad filename>";
330
Dave Jones9c107802006-01-09 20:51:32 -0800331 printk(KERN_EMERG "------------[ cut here ]------------\n");
332 printk(KERN_EMERG "kernel BUG at %s:%d!\n", file, line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334no_bug:
335 return;
336
337 /* Here we know it was a BUG but file-n-line is unavailable */
338bug:
Dave Jones9c107802006-01-09 20:51:32 -0800339 printk(KERN_EMERG "Kernel BUG\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700342/* This is gone through when something in the kernel
343 * has done something bad and is about to be terminated.
344*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345void die(const char * str, struct pt_regs * regs, long err)
346{
347 static struct {
348 spinlock_t lock;
349 u32 lock_owner;
350 int lock_owner_depth;
351 } die = {
352 .lock = SPIN_LOCK_UNLOCKED,
353 .lock_owner = -1,
354 .lock_owner_depth = 0
355 };
356 static int die_counter;
Jan Beuliche43d6742006-01-06 00:11:48 -0800357 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Andrew Mortondd287792006-03-23 03:00:57 -0800359 oops_enter();
360
Ingo Molnar39c715b2005-06-21 17:14:34 -0700361 if (die.lock_owner != raw_smp_processor_id()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 console_verbose();
Jan Beuliche43d6742006-01-06 00:11:48 -0800363 spin_lock_irqsave(&die.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 die.lock_owner = smp_processor_id();
365 die.lock_owner_depth = 0;
366 bust_spinlocks(1);
367 }
Jan Beuliche43d6742006-01-06 00:11:48 -0800368 else
369 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 if (++die.lock_owner_depth < 3) {
372 int nl = 0;
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700373 unsigned long esp;
374 unsigned short ss;
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 handle_BUG(regs);
Dave Jones9c107802006-01-09 20:51:32 -0800377 printk(KERN_EMERG "%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#ifdef CONFIG_PREEMPT
Dave Jones9c107802006-01-09 20:51:32 -0800379 printk(KERN_EMERG "PREEMPT ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 nl = 1;
381#endif
382#ifdef CONFIG_SMP
Dave Jones9c107802006-01-09 20:51:32 -0800383 if (!nl)
384 printk(KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 printk("SMP ");
386 nl = 1;
387#endif
388#ifdef CONFIG_DEBUG_PAGEALLOC
Dave Jones9c107802006-01-09 20:51:32 -0800389 if (!nl)
390 printk(KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 printk("DEBUG_PAGEALLOC");
392 nl = 1;
393#endif
394 if (nl)
395 printk("\n");
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800396 if (notify_die(DIE_OOPS, str, regs, err,
397 current->thread.trap_no, SIGSEGV) !=
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700398 NOTIFY_STOP) {
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800399 show_registers(regs);
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700400 /* Executive summary in case the oops scrolled away */
401 esp = (unsigned long) (&regs->esp);
402 savesegment(ss, ss);
403 if (user_mode(regs)) {
404 esp = regs->esp;
405 ss = regs->xss & 0xffff;
406 }
407 printk(KERN_EMERG "EIP: [<%08lx>] ", regs->eip);
408 print_symbol("%s", regs->eip);
409 printk(" SS:ESP %04x:%08lx\n", ss, esp);
410 }
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800411 else
412 regs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 } else
Dave Jones9c107802006-01-09 20:51:32 -0800414 printk(KERN_EMERG "Recursive die() failure, output suppressed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 bust_spinlocks(0);
417 die.lock_owner = -1;
Jan Beuliche43d6742006-01-06 00:11:48 -0800418 spin_unlock_irqrestore(&die.lock, flags);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700419
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800420 if (!regs)
421 return;
422
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700423 if (kexec_should_crash(current))
424 crash_kexec(regs);
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (in_interrupt())
427 panic("Fatal exception in interrupt");
428
429 if (panic_on_oops) {
430 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
431 ssleep(5);
432 panic("Fatal exception");
433 }
Andrew Mortondd287792006-03-23 03:00:57 -0800434 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 do_exit(SIGSEGV);
436}
437
438static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err)
439{
Vincent Hanquez717b5942005-06-23 00:08:45 -0700440 if (!user_mode_vm(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 die(str, regs, err);
442}
443
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700444static void __kprobes do_trap(int trapnr, int signr, char *str, int vm86,
445 struct pt_regs * regs, long error_code,
446 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700448 struct task_struct *tsk = current;
449 tsk->thread.error_code = error_code;
450 tsk->thread.trap_no = trapnr;
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (regs->eflags & VM_MASK) {
453 if (vm86)
454 goto vm86_trap;
455 goto trap_signal;
456 }
457
Vincent Hanquez717b5942005-06-23 00:08:45 -0700458 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 goto kernel_trap;
460
461 trap_signal: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (info)
463 force_sig_info(signr, info, tsk);
464 else
465 force_sig(signr, tsk);
466 return;
467 }
468
469 kernel_trap: {
470 if (!fixup_exception(regs))
471 die(str, regs, error_code);
472 return;
473 }
474
475 vm86_trap: {
476 int ret = handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, trapnr);
477 if (ret) goto trap_signal;
478 return;
479 }
480}
481
482#define DO_ERROR(trapnr, signr, str, name) \
483fastcall void do_##name(struct pt_regs * regs, long error_code) \
484{ \
485 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
486 == NOTIFY_STOP) \
487 return; \
488 do_trap(trapnr, signr, str, 0, regs, error_code, NULL); \
489}
490
491#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
492fastcall void do_##name(struct pt_regs * regs, long error_code) \
493{ \
494 siginfo_t info; \
495 info.si_signo = signr; \
496 info.si_errno = 0; \
497 info.si_code = sicode; \
498 info.si_addr = (void __user *)siaddr; \
499 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
500 == NOTIFY_STOP) \
501 return; \
502 do_trap(trapnr, signr, str, 0, regs, error_code, &info); \
503}
504
505#define DO_VM86_ERROR(trapnr, signr, str, name) \
506fastcall void do_##name(struct pt_regs * regs, long error_code) \
507{ \
508 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
509 == NOTIFY_STOP) \
510 return; \
511 do_trap(trapnr, signr, str, 1, regs, error_code, NULL); \
512}
513
514#define DO_VM86_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
515fastcall void do_##name(struct pt_regs * regs, long error_code) \
516{ \
517 siginfo_t info; \
518 info.si_signo = signr; \
519 info.si_errno = 0; \
520 info.si_code = sicode; \
521 info.si_addr = (void __user *)siaddr; \
522 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
523 == NOTIFY_STOP) \
524 return; \
525 do_trap(trapnr, signr, str, 1, regs, error_code, &info); \
526}
527
528DO_VM86_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->eip)
529#ifndef CONFIG_KPROBES
530DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
531#endif
532DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
533DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert631b0342006-01-03 22:36:14 -0500534DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
536DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
537DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
538DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
539DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
Linus Torvaldsa879cbb2005-04-29 09:38:44 -0700540DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700542fastcall void __kprobes do_general_protection(struct pt_regs * regs,
543 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 int cpu = get_cpu();
546 struct tss_struct *tss = &per_cpu(init_tss, cpu);
547 struct thread_struct *thread = &current->thread;
548
549 /*
550 * Perform the lazy TSS's I/O bitmap copy. If the TSS has an
551 * invalid offset set (the LAZY one) and the faulting thread has
552 * a valid I/O bitmap pointer, we copy the I/O bitmap in the TSS
553 * and we set the offset field correctly. Then we let the CPU to
554 * restart the faulting instruction.
555 */
556 if (tss->io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY &&
557 thread->io_bitmap_ptr) {
558 memcpy(tss->io_bitmap, thread->io_bitmap_ptr,
559 thread->io_bitmap_max);
560 /*
561 * If the previously set map was extending to higher ports
562 * than the current one, pad extra space with 0xff (no access).
563 */
564 if (thread->io_bitmap_max < tss->io_bitmap_max)
565 memset((char *) tss->io_bitmap +
566 thread->io_bitmap_max, 0xff,
567 tss->io_bitmap_max - thread->io_bitmap_max);
568 tss->io_bitmap_max = thread->io_bitmap_max;
569 tss->io_bitmap_base = IO_BITMAP_OFFSET;
Bart Oldemand5cd4aa2005-10-30 14:59:29 -0800570 tss->io_bitmap_owner = thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 put_cpu();
572 return;
573 }
574 put_cpu();
575
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700576 current->thread.error_code = error_code;
577 current->thread.trap_no = 13;
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (regs->eflags & VM_MASK)
580 goto gp_in_vm86;
581
Vincent Hanquez717b5942005-06-23 00:08:45 -0700582 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 goto gp_in_kernel;
584
585 current->thread.error_code = error_code;
586 current->thread.trap_no = 13;
587 force_sig(SIGSEGV, current);
588 return;
589
590gp_in_vm86:
591 local_irq_enable();
592 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
593 return;
594
595gp_in_kernel:
596 if (!fixup_exception(regs)) {
597 if (notify_die(DIE_GPF, "general protection fault", regs,
598 error_code, 13, SIGSEGV) == NOTIFY_STOP)
599 return;
600 die("general protection fault", regs, error_code);
601 }
602}
603
604static void mem_parity_error(unsigned char reason, struct pt_regs * regs)
605{
Dave Jones9c107802006-01-09 20:51:32 -0800606 printk(KERN_EMERG "Uhhuh. NMI received. Dazed and confused, but trying "
607 "to continue\n");
608 printk(KERN_EMERG "You probably have a hardware problem with your RAM "
609 "chips\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 /* Clear and disable the memory parity error line. */
612 clear_mem_error(reason);
613}
614
615static void io_check_error(unsigned char reason, struct pt_regs * regs)
616{
617 unsigned long i;
618
Dave Jones9c107802006-01-09 20:51:32 -0800619 printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 show_registers(regs);
621
622 /* Re-enable the IOCK line, wait for a few seconds */
623 reason = (reason & 0xf) | 8;
624 outb(reason, 0x61);
625 i = 2000;
626 while (--i) udelay(1000);
627 reason &= ~8;
628 outb(reason, 0x61);
629}
630
631static void unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
632{
633#ifdef CONFIG_MCA
634 /* Might actually be able to figure out what the guilty party
635 * is. */
636 if( MCA_bus ) {
637 mca_handle_nmi();
638 return;
639 }
640#endif
641 printk("Uhhuh. NMI received for unknown reason %02x on CPU %d.\n",
642 reason, smp_processor_id());
643 printk("Dazed and confused, but trying to continue\n");
644 printk("Do you have a strange power saving mode enabled?\n");
645}
646
647static DEFINE_SPINLOCK(nmi_print_lock);
648
649void die_nmi (struct pt_regs *regs, const char *msg)
650{
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800651 if (notify_die(DIE_NMIWATCHDOG, msg, regs, 0, 2, SIGINT) ==
George Anzinger748f2ed2005-09-03 15:56:48 -0700652 NOTIFY_STOP)
653 return;
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 spin_lock(&nmi_print_lock);
656 /*
657 * We are in trouble anyway, lets at least try
658 * to get a message out.
659 */
660 bust_spinlocks(1);
Dave Jones9c107802006-01-09 20:51:32 -0800661 printk(KERN_EMERG "%s", msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 printk(" on CPU%d, eip %08lx, registers:\n",
663 smp_processor_id(), regs->eip);
664 show_registers(regs);
Dave Jones9c107802006-01-09 20:51:32 -0800665 printk(KERN_EMERG "console shuts up ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 console_silent();
667 spin_unlock(&nmi_print_lock);
668 bust_spinlocks(0);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700669
670 /* If we are in kernel we are probably nested up pretty bad
671 * and might aswell get out now while we still can.
672 */
Jan Beulichdb753bd2006-03-23 02:59:46 -0800673 if (!user_mode_vm(regs)) {
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700674 current->thread.trap_no = 2;
675 crash_kexec(regs);
676 }
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 do_exit(SIGSEGV);
679}
680
681static void default_do_nmi(struct pt_regs * regs)
682{
683 unsigned char reason = 0;
684
685 /* Only the BSP gets external NMIs from the system. */
686 if (!smp_processor_id())
687 reason = get_nmi_reason();
688
689 if (!(reason & 0xc0)) {
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800690 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 == NOTIFY_STOP)
692 return;
693#ifdef CONFIG_X86_LOCAL_APIC
694 /*
695 * Ok, so this is none of the documented NMI sources,
696 * so it must be the NMI watchdog.
697 */
698 if (nmi_watchdog) {
699 nmi_watchdog_tick(regs);
700 return;
701 }
702#endif
703 unknown_nmi_error(reason, regs);
704 return;
705 }
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800706 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return;
708 if (reason & 0x80)
709 mem_parity_error(reason, regs);
710 if (reason & 0x40)
711 io_check_error(reason, regs);
712 /*
713 * Reassert NMI in case it became active meanwhile
714 * as it's edge-triggered.
715 */
716 reassert_nmi();
717}
718
719static int dummy_nmi_callback(struct pt_regs * regs, int cpu)
720{
721 return 0;
722}
723
724static nmi_callback_t nmi_callback = dummy_nmi_callback;
725
726fastcall void do_nmi(struct pt_regs * regs, long error_code)
727{
728 int cpu;
729
730 nmi_enter();
731
732 cpu = smp_processor_id();
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 ++nmi_count(cpu);
735
Paul E. McKenney19306052005-09-06 15:16:35 -0700736 if (!rcu_dereference(nmi_callback)(regs, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 default_do_nmi(regs);
738
739 nmi_exit();
740}
741
742void set_nmi_callback(nmi_callback_t callback)
743{
Jan Beulich101f12a2006-03-23 02:59:45 -0800744 vmalloc_sync_all();
Paul E. McKenney19306052005-09-06 15:16:35 -0700745 rcu_assign_pointer(nmi_callback, callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700747EXPORT_SYMBOL_GPL(set_nmi_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749void unset_nmi_callback(void)
750{
751 nmi_callback = dummy_nmi_callback;
752}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700753EXPORT_SYMBOL_GPL(unset_nmi_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755#ifdef CONFIG_KPROBES
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700756fastcall void __kprobes do_int3(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
759 == NOTIFY_STOP)
Stas Sergeev48c882112005-05-01 08:58:49 -0700760 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* This is an interrupt gate, because kprobes wants interrupts
762 disabled. Normal trap handlers don't. */
763 restore_interrupts(regs);
764 do_trap(3, SIGTRAP, "int3", 1, regs, error_code, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766#endif
767
768/*
769 * Our handling of the processor debug registers is non-trivial.
770 * We do not clear them on entry and exit from the kernel. Therefore
771 * it is possible to get a watchpoint trap here from inside the kernel.
772 * However, the code in ./ptrace.c has ensured that the user can
773 * only set watchpoints on userspace addresses. Therefore the in-kernel
774 * watchpoint trap can only occur in code which is reading/writing
775 * from user space. Such code must not hold kernel locks (since it
776 * can equally take a page fault), therefore it is safe to call
777 * force_sig_info even though that claims and releases locks.
778 *
779 * Code in ./signal.c ensures that the debug control register
780 * is restored before we deliver any signal, and therefore that
781 * user code runs with the correct debug control register even though
782 * we clear it here.
783 *
784 * Being careful here means that we don't have to be as careful in a
785 * lot of more complicated places (task switching can be a bit lazy
786 * about restoring all the debug state, and ptrace doesn't have to
787 * find every occurrence of the TF bit that could be saved away even
788 * by user code)
789 */
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700790fastcall void __kprobes do_debug(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 unsigned int condition;
793 struct task_struct *tsk = current;
794
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700795 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
798 SIGTRAP) == NOTIFY_STOP)
799 return;
800 /* It's safe to allow irq's after DR6 has been saved */
801 if (regs->eflags & X86_EFLAGS_IF)
802 local_irq_enable();
803
804 /* Mask out spurious debug traps due to lazy DR7 setting */
805 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
806 if (!tsk->thread.debugreg[7])
807 goto clear_dr7;
808 }
809
810 if (regs->eflags & VM_MASK)
811 goto debug_vm86;
812
813 /* Save debug status register where ptrace can see it */
814 tsk->thread.debugreg[6] = condition;
815
816 /*
817 * Single-stepping through TF: make sure we ignore any events in
818 * kernel space (but re-enable TF when returning to user mode).
819 */
820 if (condition & DR_STEP) {
821 /*
822 * We already checked v86 mode above, so we can
823 * check for kernel mode by just checking the CPL
824 * of CS.
825 */
Vincent Hanquez717b5942005-06-23 00:08:45 -0700826 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 goto clear_TF_reenable;
828 }
829
830 /* Ok, finally something we can handle */
831 send_sigtrap(tsk, regs, error_code);
832
833 /* Disable additional traps. They'll be re-enabled when
834 * the signal is delivered.
835 */
836clear_dr7:
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700837 set_debugreg(0, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return;
839
840debug_vm86:
841 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1);
842 return;
843
844clear_TF_reenable:
845 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
846 regs->eflags &= ~TF_MASK;
847 return;
848}
849
850/*
851 * Note that we play around with the 'TS' bit in an attempt to get
852 * the correct behaviour even in the presence of the asynchronous
853 * IRQ13 behaviour
854 */
855void math_error(void __user *eip)
856{
857 struct task_struct * task;
858 siginfo_t info;
859 unsigned short cwd, swd;
860
861 /*
862 * Save the info for the exception handler and clear the error.
863 */
864 task = current;
865 save_init_fpu(task);
866 task->thread.trap_no = 16;
867 task->thread.error_code = 0;
868 info.si_signo = SIGFPE;
869 info.si_errno = 0;
870 info.si_code = __SI_FAULT;
871 info.si_addr = eip;
872 /*
873 * (~cwd & swd) will mask out exceptions that are not set to unmasked
874 * status. 0x3f is the exception bits in these regs, 0x200 is the
875 * C1 reg you need in case of a stack fault, 0x040 is the stack
876 * fault bit. We should only be taking one exception at a time,
877 * so if this combination doesn't produce any single exception,
878 * then we have a bad program that isn't syncronizing its FPU usage
879 * and it will suffer the consequences since we won't be able to
880 * fully reproduce the context of the exception
881 */
882 cwd = get_fpu_cwd(task);
883 swd = get_fpu_swd(task);
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400884 switch (swd & ~cwd & 0x3f) {
Chuck Ebbert33333372005-09-13 04:55:41 -0400885 case 0x000: /* No unmasked exception */
886 return;
887 default: /* Multiple exceptions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 break;
889 case 0x001: /* Invalid Op */
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400890 /*
891 * swd & 0x240 == 0x040: Stack Underflow
892 * swd & 0x240 == 0x240: Stack Overflow
893 * User must clear the SF bit (0x40) if set
894 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 info.si_code = FPE_FLTINV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 break;
897 case 0x002: /* Denormalize */
898 case 0x010: /* Underflow */
899 info.si_code = FPE_FLTUND;
900 break;
901 case 0x004: /* Zero Divide */
902 info.si_code = FPE_FLTDIV;
903 break;
904 case 0x008: /* Overflow */
905 info.si_code = FPE_FLTOVF;
906 break;
907 case 0x020: /* Precision */
908 info.si_code = FPE_FLTRES;
909 break;
910 }
911 force_sig_info(SIGFPE, &info, task);
912}
913
914fastcall void do_coprocessor_error(struct pt_regs * regs, long error_code)
915{
916 ignore_fpu_irq = 1;
917 math_error((void __user *)regs->eip);
918}
919
920static void simd_math_error(void __user *eip)
921{
922 struct task_struct * task;
923 siginfo_t info;
924 unsigned short mxcsr;
925
926 /*
927 * Save the info for the exception handler and clear the error.
928 */
929 task = current;
930 save_init_fpu(task);
931 task->thread.trap_no = 19;
932 task->thread.error_code = 0;
933 info.si_signo = SIGFPE;
934 info.si_errno = 0;
935 info.si_code = __SI_FAULT;
936 info.si_addr = eip;
937 /*
938 * The SIMD FPU exceptions are handled a little differently, as there
939 * is only a single status/control register. Thus, to determine which
940 * unmasked exception was caught we must mask the exception mask bits
941 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
942 */
943 mxcsr = get_fpu_mxcsr(task);
944 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
945 case 0x000:
946 default:
947 break;
948 case 0x001: /* Invalid Op */
949 info.si_code = FPE_FLTINV;
950 break;
951 case 0x002: /* Denormalize */
952 case 0x010: /* Underflow */
953 info.si_code = FPE_FLTUND;
954 break;
955 case 0x004: /* Zero Divide */
956 info.si_code = FPE_FLTDIV;
957 break;
958 case 0x008: /* Overflow */
959 info.si_code = FPE_FLTOVF;
960 break;
961 case 0x020: /* Precision */
962 info.si_code = FPE_FLTRES;
963 break;
964 }
965 force_sig_info(SIGFPE, &info, task);
966}
967
968fastcall void do_simd_coprocessor_error(struct pt_regs * regs,
969 long error_code)
970{
971 if (cpu_has_xmm) {
972 /* Handle SIMD FPU exceptions on PIII+ processors. */
973 ignore_fpu_irq = 1;
974 simd_math_error((void __user *)regs->eip);
975 } else {
976 /*
977 * Handle strange cache flush from user space exception
978 * in all other cases. This is undocumented behaviour.
979 */
980 if (regs->eflags & VM_MASK) {
981 handle_vm86_fault((struct kernel_vm86_regs *)regs,
982 error_code);
983 return;
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 current->thread.trap_no = 19;
986 current->thread.error_code = error_code;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700987 die_if_kernel("cache flush denied", regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 force_sig(SIGSEGV, current);
989 }
990}
991
992fastcall void do_spurious_interrupt_bug(struct pt_regs * regs,
993 long error_code)
994{
995#if 0
996 /* No need to warn about this any longer. */
997 printk("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
998#endif
999}
1000
1001fastcall void setup_x86_bogus_stack(unsigned char * stk)
1002{
1003 unsigned long *switch16_ptr, *switch32_ptr;
1004 struct pt_regs *regs;
1005 unsigned long stack_top, stack_bot;
1006 unsigned short iret_frame16_off;
1007 int cpu = smp_processor_id();
1008 /* reserve the space on 32bit stack for the magic switch16 pointer */
1009 memmove(stk, stk + 8, sizeof(struct pt_regs));
1010 switch16_ptr = (unsigned long *)(stk + sizeof(struct pt_regs));
1011 regs = (struct pt_regs *)stk;
1012 /* now the switch32 on 16bit stack */
1013 stack_bot = (unsigned long)&per_cpu(cpu_16bit_stack, cpu);
1014 stack_top = stack_bot + CPU_16BIT_STACK_SIZE;
1015 switch32_ptr = (unsigned long *)(stack_top - 8);
1016 iret_frame16_off = CPU_16BIT_STACK_SIZE - 8 - 20;
1017 /* copy iret frame on 16bit stack */
1018 memcpy((void *)(stack_bot + iret_frame16_off), &regs->eip, 20);
1019 /* fill in the switch pointers */
1020 switch16_ptr[0] = (regs->esp & 0xffff0000) | iret_frame16_off;
1021 switch16_ptr[1] = __ESPFIX_SS;
1022 switch32_ptr[0] = (unsigned long)stk + sizeof(struct pt_regs) +
1023 8 - CPU_16BIT_STACK_SIZE;
1024 switch32_ptr[1] = __KERNEL_DS;
1025}
1026
1027fastcall unsigned char * fixup_x86_bogus_stack(unsigned short sp)
1028{
1029 unsigned long *switch32_ptr;
1030 unsigned char *stack16, *stack32;
1031 unsigned long stack_top, stack_bot;
1032 int len;
1033 int cpu = smp_processor_id();
1034 stack_bot = (unsigned long)&per_cpu(cpu_16bit_stack, cpu);
1035 stack_top = stack_bot + CPU_16BIT_STACK_SIZE;
1036 switch32_ptr = (unsigned long *)(stack_top - 8);
1037 /* copy the data from 16bit stack to 32bit stack */
1038 len = CPU_16BIT_STACK_SIZE - 8 - sp;
1039 stack16 = (unsigned char *)(stack_bot + sp);
1040 stack32 = (unsigned char *)
1041 (switch32_ptr[0] + CPU_16BIT_STACK_SIZE - 8 - len);
1042 memcpy(stack32, stack16, len);
1043 return stack32;
1044}
1045
1046/*
1047 * 'math_state_restore()' saves the current math information in the
1048 * old math state array, and gets the new ones from the current task
1049 *
1050 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1051 * Don't touch unless you *really* know how it works.
1052 *
1053 * Must be called with kernel preemption disabled (in this case,
1054 * local interrupts are disabled at the call-site in entry.S).
1055 */
1056asmlinkage void math_state_restore(struct pt_regs regs)
1057{
1058 struct thread_info *thread = current_thread_info();
1059 struct task_struct *tsk = thread->task;
1060
1061 clts(); /* Allow maths ops (or we recurse) */
1062 if (!tsk_used_math(tsk))
1063 init_fpu(tsk);
1064 restore_fpu(tsk);
1065 thread->status |= TS_USEDFPU; /* So we fnsave on switch_to() */
1066}
1067
1068#ifndef CONFIG_MATH_EMULATION
1069
1070asmlinkage void math_emulate(long arg)
1071{
Dave Jones9c107802006-01-09 20:51:32 -08001072 printk(KERN_EMERG "math-emulation not enabled and no coprocessor found.\n");
1073 printk(KERN_EMERG "killing %s.\n",current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 force_sig(SIGFPE,current);
1075 schedule();
1076}
1077
1078#endif /* CONFIG_MATH_EMULATION */
1079
1080#ifdef CONFIG_X86_F00F_BUG
1081void __init trap_init_f00f_bug(void)
1082{
1083 __set_fixmap(FIX_F00F_IDT, __pa(&idt_table), PAGE_KERNEL_RO);
1084
1085 /*
1086 * Update the IDT descriptor and reload the IDT so that
1087 * it uses the read-only mapped virtual address.
1088 */
1089 idt_descr.address = fix_to_virt(FIX_F00F_IDT);
Zachary Amsden4d37e7e2005-09-03 15:56:38 -07001090 load_idt(&idt_descr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092#endif
1093
1094#define _set_gate(gate_addr,type,dpl,addr,seg) \
1095do { \
1096 int __d0, __d1; \
1097 __asm__ __volatile__ ("movw %%dx,%%ax\n\t" \
1098 "movw %4,%%dx\n\t" \
1099 "movl %%eax,%0\n\t" \
1100 "movl %%edx,%1" \
1101 :"=m" (*((long *) (gate_addr))), \
1102 "=m" (*(1+(long *) (gate_addr))), "=&a" (__d0), "=&d" (__d1) \
1103 :"i" ((short) (0x8000+(dpl<<13)+(type<<8))), \
1104 "3" ((char *) (addr)),"2" ((seg) << 16)); \
1105} while (0)
1106
1107
1108/*
1109 * This needs to use 'idt_table' rather than 'idt', and
1110 * thus use the _nonmapped_ version of the IDT, as the
1111 * Pentium F0 0F bugfix can have resulted in the mapped
1112 * IDT being write-protected.
1113 */
1114void set_intr_gate(unsigned int n, void *addr)
1115{
1116 _set_gate(idt_table+n,14,0,addr,__KERNEL_CS);
1117}
1118
1119/*
1120 * This routine sets up an interrupt gate at directory privilege level 3.
1121 */
1122static inline void set_system_intr_gate(unsigned int n, void *addr)
1123{
1124 _set_gate(idt_table+n, 14, 3, addr, __KERNEL_CS);
1125}
1126
1127static void __init set_trap_gate(unsigned int n, void *addr)
1128{
1129 _set_gate(idt_table+n,15,0,addr,__KERNEL_CS);
1130}
1131
1132static void __init set_system_gate(unsigned int n, void *addr)
1133{
1134 _set_gate(idt_table+n,15,3,addr,__KERNEL_CS);
1135}
1136
1137static void __init set_task_gate(unsigned int n, unsigned int gdt_entry)
1138{
1139 _set_gate(idt_table+n,5,0,0,(gdt_entry<<3));
1140}
1141
1142
1143void __init trap_init(void)
1144{
1145#ifdef CONFIG_EISA
1146 void __iomem *p = ioremap(0x0FFFD9, 4);
1147 if (readl(p) == 'E'+('I'<<8)+('S'<<16)+('A'<<24)) {
1148 EISA_bus = 1;
1149 }
1150 iounmap(p);
1151#endif
1152
1153#ifdef CONFIG_X86_LOCAL_APIC
1154 init_apic_mappings();
1155#endif
1156
1157 set_trap_gate(0,&divide_error);
1158 set_intr_gate(1,&debug);
1159 set_intr_gate(2,&nmi);
Jan Beulicheb05c322006-01-06 00:11:49 -08001160 set_system_intr_gate(3, &int3); /* int3/4 can be called from all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 set_system_gate(4,&overflow);
Jan Beulicheb05c322006-01-06 00:11:49 -08001162 set_trap_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 set_trap_gate(6,&invalid_op);
1164 set_trap_gate(7,&device_not_available);
1165 set_task_gate(8,GDT_ENTRY_DOUBLEFAULT_TSS);
1166 set_trap_gate(9,&coprocessor_segment_overrun);
1167 set_trap_gate(10,&invalid_TSS);
1168 set_trap_gate(11,&segment_not_present);
1169 set_trap_gate(12,&stack_segment);
1170 set_trap_gate(13,&general_protection);
1171 set_intr_gate(14,&page_fault);
1172 set_trap_gate(15,&spurious_interrupt_bug);
1173 set_trap_gate(16,&coprocessor_error);
1174 set_trap_gate(17,&alignment_check);
1175#ifdef CONFIG_X86_MCE
1176 set_trap_gate(18,&machine_check);
1177#endif
1178 set_trap_gate(19,&simd_coprocessor_error);
1179
Jan Beulichd43c6e82006-01-06 00:11:49 -08001180 if (cpu_has_fxsr) {
1181 /*
1182 * Verify that the FXSAVE/FXRSTOR data will be 16-byte aligned.
1183 * Generates a compile-time "error: zero width for bit-field" if
1184 * the alignment is wrong.
1185 */
1186 struct fxsrAlignAssert {
1187 int _:!(offsetof(struct task_struct,
1188 thread.i387.fxsave) & 15);
1189 };
1190
1191 printk(KERN_INFO "Enabling fast FPU save and restore... ");
1192 set_in_cr4(X86_CR4_OSFXSR);
1193 printk("done.\n");
1194 }
1195 if (cpu_has_xmm) {
1196 printk(KERN_INFO "Enabling unmasked SIMD FPU exception "
1197 "support... ");
1198 set_in_cr4(X86_CR4_OSXMMEXCPT);
1199 printk("done.\n");
1200 }
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 set_system_gate(SYSCALL_VECTOR,&system_call);
1203
1204 /*
1205 * Should be a barrier for any external CPU state.
1206 */
1207 cpu_init();
1208
1209 trap_init_hook();
1210}
1211
1212static int __init kstack_setup(char *s)
1213{
1214 kstack_depth_to_print = simple_strtoul(s, NULL, 0);
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001215 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217__setup("kstack=", kstack_setup);