blob: 0ebb281aa1788a6482aa480219aba582eebe5567 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86-64/traps.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
6 *
7 * Pentium III FXSR, SSE support
8 * Gareth Hughes <gareth@valinux.com>, May 2000
9 *
10 * $Id: traps.c,v 1.36 2002/03/24 11:09:10 ak Exp $
11 */
12
13/*
14 * 'Traps.c' handles hardware traps and faults after we have saved some
15 * state in 'entry.S'.
16 */
17#include <linux/config.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/string.h>
21#include <linux/errno.h>
22#include <linux/ptrace.h>
23#include <linux/timer.h>
24#include <linux/mm.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/spinlock.h>
28#include <linux/interrupt.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
akpm@osdl.org35faa712005-04-16 15:24:54 -070031#include <linux/nmi.h>
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070032#include <linux/kprobes.h>
Vivek Goyal8bcc5282006-04-18 12:35:13 +020033#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/system.h>
36#include <asm/uaccess.h>
37#include <asm/io.h>
38#include <asm/atomic.h>
39#include <asm/debugreg.h>
40#include <asm/desc.h>
41#include <asm/i387.h>
42#include <asm/kdebug.h>
43#include <asm/processor.h>
44
45#include <asm/smp.h>
46#include <asm/pgalloc.h>
47#include <asm/pda.h>
48#include <asm/proto.h>
49#include <asm/nmi.h>
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051asmlinkage void divide_error(void);
52asmlinkage void debug(void);
53asmlinkage void nmi(void);
54asmlinkage void int3(void);
55asmlinkage void overflow(void);
56asmlinkage void bounds(void);
57asmlinkage void invalid_op(void);
58asmlinkage void device_not_available(void);
59asmlinkage void double_fault(void);
60asmlinkage void coprocessor_segment_overrun(void);
61asmlinkage void invalid_TSS(void);
62asmlinkage void segment_not_present(void);
63asmlinkage void stack_segment(void);
64asmlinkage void general_protection(void);
65asmlinkage void page_fault(void);
66asmlinkage void coprocessor_error(void);
67asmlinkage void simd_coprocessor_error(void);
68asmlinkage void reserved(void);
69asmlinkage void alignment_check(void);
70asmlinkage void machine_check(void);
71asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Alan Sterne041c682006-03-27 01:16:30 -080073ATOMIC_NOTIFIER_HEAD(die_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75int register_die_notifier(struct notifier_block *nb)
76{
Jan Beulich8c914cb2006-03-25 16:29:40 +010077 vmalloc_sync_all();
Alan Sterne041c682006-03-27 01:16:30 -080078 return atomic_notifier_chain_register(&die_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
Alan Sterne041c682006-03-27 01:16:30 -080080EXPORT_SYMBOL(register_die_notifier);
81
82int unregister_die_notifier(struct notifier_block *nb)
83{
84 return atomic_notifier_chain_unregister(&die_chain, nb);
85}
86EXPORT_SYMBOL(unregister_die_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static inline void conditional_sti(struct pt_regs *regs)
89{
90 if (regs->eflags & X86_EFLAGS_IF)
91 local_irq_enable();
92}
93
John Blackwooda65d17c2006-02-12 14:34:58 -080094static inline void preempt_conditional_sti(struct pt_regs *regs)
95{
96 preempt_disable();
97 if (regs->eflags & X86_EFLAGS_IF)
98 local_irq_enable();
99}
100
101static inline void preempt_conditional_cli(struct pt_regs *regs)
102{
103 if (regs->eflags & X86_EFLAGS_IF)
104 local_irq_disable();
105 preempt_enable_no_resched();
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int kstack_depth_to_print = 10;
109
110#ifdef CONFIG_KALLSYMS
111#include <linux/kallsyms.h>
112int printk_address(unsigned long address)
113{
114 unsigned long offset = 0, symsize;
115 const char *symname;
116 char *modname;
117 char *delim = ":";
118 char namebuf[128];
119
120 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
121 if (!symname)
122 return printk("[<%016lx>]", address);
123 if (!modname)
124 modname = delim = "";
125 return printk("<%016lx>{%s%s%s%s%+ld}",
Roberto Nibali2b692a82006-03-25 16:29:55 +0100126 address, delim, modname, delim, symname, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128#else
129int printk_address(unsigned long address)
130{
131 return printk("[<%016lx>]", address);
132}
133#endif
134
Andi Kleen0a658002005-04-16 15:25:17 -0700135static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
136 unsigned *usedp, const char **idp)
137{
Jan Beulichb556b352006-01-11 22:43:00 +0100138 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700139 [DEBUG_STACK - 1] = "#DB",
140 [NMI_STACK - 1] = "NMI",
141 [DOUBLEFAULT_STACK - 1] = "#DF",
142 [STACKFAULT_STACK - 1] = "#SS",
143 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100144#if DEBUG_STKSZ > EXCEPTION_STKSZ
145 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
146#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700147 };
148 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Andi Kleen0a658002005-04-16 15:25:17 -0700150 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
151 unsigned long end;
152
Jan Beulichb556b352006-01-11 22:43:00 +0100153 switch (k + 1) {
154#if DEBUG_STKSZ > EXCEPTION_STKSZ
155 case DEBUG_STACK:
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100156 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
Jan Beulichb556b352006-01-11 22:43:00 +0100157 break;
158#endif
159 default:
160 end = per_cpu(init_tss, cpu).ist[k];
161 break;
162 }
Andi Kleen0a658002005-04-16 15:25:17 -0700163 if (stack >= end)
164 continue;
165 if (stack >= end - EXCEPTION_STKSZ) {
166 if (*usedp & (1U << k))
167 break;
168 *usedp |= 1U << k;
169 *idp = ids[k];
170 return (unsigned long *)end;
171 }
Jan Beulichb556b352006-01-11 22:43:00 +0100172#if DEBUG_STKSZ > EXCEPTION_STKSZ
173 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
174 unsigned j = N_EXCEPTION_STACKS - 1;
175
176 do {
177 ++j;
178 end -= EXCEPTION_STKSZ;
179 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
180 } while (stack < end - EXCEPTION_STKSZ);
181 if (*usedp & (1U << j))
182 break;
183 *usedp |= 1U << j;
184 *idp = ids[j];
185 return (unsigned long *)end;
186 }
187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700190}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/*
193 * x86-64 can have upto three kernel stacks:
194 * process stack
195 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700196 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
198
199void show_trace(unsigned long *stack)
200{
Andi Kleen0a658002005-04-16 15:25:17 -0700201 const unsigned cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100202 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int i;
Andi Kleen0a658002005-04-16 15:25:17 -0700204 unsigned used = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 printk("\nCall Trace:");
Andi Kleen0a658002005-04-16 15:25:17 -0700207
208#define HANDLE_STACK(cond) \
209 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100210 unsigned long addr = *stack++; \
Andi Kleen0a658002005-04-16 15:25:17 -0700211 if (kernel_text_address(addr)) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100212 if (i > 50) { \
213 printk("\n "); \
214 i = 0; \
215 } \
216 else \
217 i += printk(" "); \
Andi Kleen0a658002005-04-16 15:25:17 -0700218 /* \
219 * If the address is either in the text segment of the \
220 * kernel, or in the region which contains vmalloc'ed \
221 * memory, it *may* be the address of a calling \
222 * routine; if so, print it so that someone tracing \
223 * down the cause of the crash will be able to figure \
224 * out the call path that was taken. \
225 */ \
226 i += printk_address(addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700227 } \
228 } while (0)
229
Jan Beulich1b2f6302006-01-11 22:46:45 +0100230 for(i = 11; ; ) {
Andi Kleen0a658002005-04-16 15:25:17 -0700231 const char *id;
232 unsigned long *estack_end;
233 estack_end = in_exception_stack(cpu, (unsigned long)stack,
234 &used, &id);
235
236 if (estack_end) {
Jan Beulich1b2f6302006-01-11 22:46:45 +0100237 i += printk(" <%s>", id);
Andi Kleen0a658002005-04-16 15:25:17 -0700238 HANDLE_STACK (stack < estack_end);
Jan Beulich1b2f6302006-01-11 22:46:45 +0100239 i += printk(" <EOE>");
Andi Kleen0a658002005-04-16 15:25:17 -0700240 stack = (unsigned long *) estack_end[-2];
241 continue;
242 }
243 if (irqstack_end) {
244 unsigned long *irqstack;
245 irqstack = irqstack_end -
246 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
247
248 if (stack >= irqstack && stack < irqstack_end) {
Jan Beulich1b2f6302006-01-11 22:46:45 +0100249 i += printk(" <IRQ>");
Andi Kleen0a658002005-04-16 15:25:17 -0700250 HANDLE_STACK (stack < irqstack_end);
251 stack = (unsigned long *) (irqstack_end[-1]);
252 irqstack_end = NULL;
Jan Beulich1b2f6302006-01-11 22:46:45 +0100253 i += printk(" <EOI>");
Andi Kleen0a658002005-04-16 15:25:17 -0700254 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256 }
Andi Kleen0a658002005-04-16 15:25:17 -0700257 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Andi Kleen0a658002005-04-16 15:25:17 -0700259
260 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
261#undef HANDLE_STACK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 printk("\n");
263}
264
265void show_stack(struct task_struct *tsk, unsigned long * rsp)
266{
267 unsigned long *stack;
268 int i;
269 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100270 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
271 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 // debugging aid: "show_stack(NULL, NULL);" prints the
274 // back trace for this cpu.
275
276 if (rsp == NULL) {
277 if (tsk)
278 rsp = (unsigned long *)tsk->thread.rsp;
279 else
280 rsp = (unsigned long *)&rsp;
281 }
282
283 stack = rsp;
284 for(i=0; i < kstack_depth_to_print; i++) {
285 if (stack >= irqstack && stack <= irqstack_end) {
286 if (stack == irqstack_end) {
287 stack = (unsigned long *) (irqstack_end[-1]);
288 printk(" <EOI> ");
289 }
290 } else {
291 if (((long) stack & (THREAD_SIZE-1)) == 0)
292 break;
293 }
294 if (i && ((i % 4) == 0))
295 printk("\n ");
296 printk("%016lx ", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700297 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299 show_trace((unsigned long *)rsp);
300}
301
302/*
303 * The architecture-independent dump_stack generator
304 */
305void dump_stack(void)
306{
307 unsigned long dummy;
308 show_trace(&dummy);
309}
310
311EXPORT_SYMBOL(dump_stack);
312
313void show_registers(struct pt_regs *regs)
314{
315 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700316 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 unsigned long rsp;
318 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100319 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 rsp = regs->rsp;
322
323 printk("CPU %d ", cpu);
324 __show_regs(regs);
325 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800326 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /*
329 * When in-kernel, we also print out the stack and code at the
330 * time of the fault..
331 */
332 if (in_kernel) {
333
334 printk("Stack: ");
335 show_stack(NULL, (unsigned long*)rsp);
336
337 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100338 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 goto bad;
340
Roberto Nibali2b692a82006-03-25 16:29:55 +0100341 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100343 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344bad:
345 printk(" Bad RIP value.");
346 break;
347 }
348 printk("%02x ", c);
349 }
350 }
351 printk("\n");
352}
353
354void handle_BUG(struct pt_regs *regs)
355{
356 struct bug_frame f;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100357 long len;
358 const char *prefix = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700360 if (user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return;
Stephen Hemminger77a75332006-01-11 22:46:30 +0100362 if (__copy_from_user(&f, (const void __user *) regs->rip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 sizeof(struct bug_frame)))
364 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200365 if (f.filename >= 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
367 return;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100368 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
369 if (len < 0 || len >= PATH_MAX)
Jan Beulich049cdef2005-09-12 18:49:25 +0200370 f.filename = (int)(long)"unmapped filename";
Jan Beulich5f1d1892006-01-11 22:46:48 +0100371 else if (len > 50) {
372 f.filename += len - 50;
373 prefix = "...";
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
Jan Beulich5f1d1892006-01-11 22:46:48 +0100376 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700379#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380void out_of_line_bug(void)
381{
382 BUG();
383}
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386static DEFINE_SPINLOCK(die_lock);
387static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200388static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100390unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Jan Beulich12091402005-09-12 18:49:24 +0200392 int cpu = safe_smp_processor_id();
393 unsigned long flags;
394
395 /* racy, but better than risking deadlock. */
396 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (!spin_trylock(&die_lock)) {
398 if (cpu == die_owner)
399 /* nested oops. should stop eventually */;
400 else
Jan Beulich12091402005-09-12 18:49:24 +0200401 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200403 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200404 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200406 bust_spinlocks(1);
407 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100410void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200413 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200414 die_nest_count--;
415 if (die_nest_count)
416 /* We still own the lock */
417 local_irq_restore(flags);
418 else
419 /* Nest count reaches zero, release the lock. */
420 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (panic_on_oops)
Jan Beulich12091402005-09-12 18:49:24 +0200422 panic("Oops");
423}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100425void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 static int die_counter;
428 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
429#ifdef CONFIG_PREEMPT
430 printk("PREEMPT ");
431#endif
432#ifdef CONFIG_SMP
433 printk("SMP ");
434#endif
435#ifdef CONFIG_DEBUG_PAGEALLOC
436 printk("DEBUG_PAGEALLOC");
437#endif
438 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100439 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 show_registers(regs);
441 /* Executive summary in case the oops scrolled away */
442 printk(KERN_ALERT "RIP ");
443 printk_address(regs->rip);
444 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200445 if (kexec_should_crash(current))
446 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449void die(const char * str, struct pt_regs * regs, long err)
450{
Jan Beulich12091402005-09-12 18:49:24 +0200451 unsigned long flags = oops_begin();
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 handle_BUG(regs);
454 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200455 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 do_exit(SIGSEGV);
457}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100459void __kprobes die_nmi(char *str, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Jan Beulich12091402005-09-12 18:49:24 +0200461 unsigned long flags = oops_begin();
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /*
464 * We are in trouble anyway, lets at least try
465 * to get a message out.
466 */
467 printk(str, safe_smp_processor_id());
468 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200469 if (kexec_should_crash(current))
470 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (panic_on_timeout || panic_on_oops)
472 panic("nmi watchdog");
473 printk("console shuts up ...\n");
Jan Beulich12091402005-09-12 18:49:24 +0200474 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 do_exit(SIGSEGV);
476}
477
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700478static void __kprobes do_trap(int trapnr, int signr, char *str,
479 struct pt_regs * regs, long error_code,
480 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100482 struct task_struct *tsk = current;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 conditional_sti(regs);
485
Jan Beulich6e3f3612006-01-11 22:42:14 +0100486 tsk->thread.error_code = error_code;
487 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Jan Beulich6e3f3612006-01-11 22:42:14 +0100489 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (exception_trace && unhandled_signal(tsk, signr))
491 printk(KERN_INFO
492 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
493 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100494 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (info)
497 force_sig_info(signr, info, tsk);
498 else
499 force_sig(signr, tsk);
500 return;
501 }
502
503
504 /* kernel trap */
505 {
506 const struct exception_table_entry *fixup;
507 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100508 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 regs->rip = fixup->fixup;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100510 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 die(str, regs, error_code);
512 return;
513 }
514}
515
516#define DO_ERROR(trapnr, signr, str, name) \
517asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
518{ \
519 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
520 == NOTIFY_STOP) \
521 return; \
522 do_trap(trapnr, signr, str, regs, error_code, NULL); \
523}
524
525#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
526asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
527{ \
528 siginfo_t info; \
529 info.si_signo = signr; \
530 info.si_errno = 0; \
531 info.si_code = sicode; \
532 info.si_addr = (void __user *)siaddr; \
533 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
534 == NOTIFY_STOP) \
535 return; \
536 do_trap(trapnr, signr, str, regs, error_code, &info); \
537}
538
539DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
540DO_ERROR( 4, SIGSEGV, "overflow", overflow)
541DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100542DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
544DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
545DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
546DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
547DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
548DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700549DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
Jan Beulicheca37c12006-01-11 22:42:17 +0100550
551asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
552{
553 static const char str[] = "double fault";
554 struct task_struct *tsk = current;
555
556 /* Return not checked because double check cannot be ignored */
557 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
558
559 tsk->thread.error_code = error_code;
560 tsk->thread.trap_no = 8;
561
562 /* This is always a kernel trap and never fixable (and thus must
563 never return). */
564 for (;;)
565 die(str, regs, error_code);
566}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700568asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
569 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100571 struct task_struct *tsk = current;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 conditional_sti(regs);
574
Jan Beulich6e3f3612006-01-11 22:42:14 +0100575 tsk->thread.error_code = error_code;
576 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Jan Beulich6e3f3612006-01-11 22:42:14 +0100578 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
580 printk(KERN_INFO
581 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
582 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100583 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 force_sig(SIGSEGV, tsk);
586 return;
587 }
588
589 /* kernel gp */
590 {
591 const struct exception_table_entry *fixup;
592 fixup = search_exception_tables(regs->rip);
593 if (fixup) {
594 regs->rip = fixup->fixup;
595 return;
596 }
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
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100604static __kprobes void
605mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
607 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
608 printk("You probably have a hardware problem with your RAM chips\n");
609
610 /* Clear and disable the memory parity error line. */
611 reason = (reason & 0xf) | 4;
612 outb(reason, 0x61);
613}
614
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100615static __kprobes void
616io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 printk("NMI: IOCK error (debug interrupt?)\n");
619 show_registers(regs);
620
621 /* Re-enable the IOCK line, wait for a few seconds */
622 reason = (reason & 0xf) | 8;
623 outb(reason, 0x61);
624 mdelay(2000);
625 reason &= ~8;
626 outb(reason, 0x61);
627}
628
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100629static __kprobes void
630unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{ printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
632 printk("Dazed and confused, but trying to continue\n");
633 printk("Do you have a strange power saving mode enabled?\n");
634}
635
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700636/* Runs on IST stack. This code must keep interrupts off all the time.
637 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100638asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700641 int cpu;
642
643 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700646 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 reason = get_nmi_reason();
648
649 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100650 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 == NOTIFY_STOP)
652 return;
653#ifdef CONFIG_X86_LOCAL_APIC
654 /*
655 * Ok, so this is none of the documented NMI sources,
656 * so it must be the NMI watchdog.
657 */
658 if (nmi_watchdog > 0) {
659 nmi_watchdog_tick(regs,reason);
660 return;
661 }
662#endif
663 unknown_nmi_error(reason, regs);
664 return;
665 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100666 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return;
668
669 /* AK: following checks seem to be broken on modern chipsets. FIXME */
670
671 if (reason & 0x80)
672 mem_parity_error(reason, regs);
673 if (reason & 0x40)
674 io_check_error(reason, regs);
675}
676
Jan Beulichb556b352006-01-11 22:43:00 +0100677/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700678asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
681 return;
682 }
683 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
684 return;
685}
686
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700687/* Help handler running on IST stack to switch back to user stack
688 for scheduling or signal handling. The actual stack switch is done in
689 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100690asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700692 struct pt_regs *regs = eregs;
693 /* Did already sync */
694 if (eregs == (struct pt_regs *)eregs->rsp)
695 ;
696 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700697 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800698 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700699 /* Exception from kernel and interrupts are enabled. Move to
700 kernel process stack. */
701 else if (eregs->eflags & X86_EFLAGS_IF)
702 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
703 if (eregs != regs)
704 *regs = *eregs;
705 return regs;
706}
707
708/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700709asmlinkage void __kprobes do_debug(struct pt_regs * regs,
710 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700711{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 unsigned long condition;
713 struct task_struct *tsk = current;
714 siginfo_t info;
715
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700716 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700719 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700720 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700721
John Blackwooda65d17c2006-02-12 14:34:58 -0800722 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /* Mask out spurious debug traps due to lazy DR7 setting */
725 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
726 if (!tsk->thread.debugreg7) {
727 goto clear_dr7;
728 }
729 }
730
731 tsk->thread.debugreg6 = condition;
732
733 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700734 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /*
736 * The TF error should be masked out only if the current
737 * process is not traced and if the TRAP flag has been set
738 * previously by a tracing process (condition detected by
739 * the PT_DTRACE flag); remember that the i386 TRAP flag
740 * can be modified by the process itself in user mode,
741 * allowing programs to debug themselves without the ptrace()
742 * interface.
743 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700744 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700746 /*
747 * Was the TF flag set by a debugger? If so, clear it now,
748 * so that register information is correct.
749 */
750 if (tsk->ptrace & PT_DTRACE) {
751 regs->eflags &= ~TF_MASK;
752 tsk->ptrace &= ~PT_DTRACE;
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755
756 /* Ok, finally something we can handle */
757 tsk->thread.trap_no = 1;
758 tsk->thread.error_code = error_code;
759 info.si_signo = SIGTRAP;
760 info.si_errno = 0;
761 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100762 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
763 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700766 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800767 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700768 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770clear_TF_reenable:
771 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800773 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Jan Beulich6e3f3612006-01-11 22:42:14 +0100776static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 const struct exception_table_entry *fixup;
779 fixup = search_exception_tables(regs->rip);
780 if (fixup) {
781 regs->rip = fixup->fixup;
782 return 1;
783 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100784 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700785 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100786 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return 0;
789}
790
791/*
792 * Note that we play around with the 'TS' bit in an attempt to get
793 * the correct behaviour even in the presence of the asynchronous
794 * IRQ13 behaviour
795 */
796asmlinkage void do_coprocessor_error(struct pt_regs *regs)
797{
798 void __user *rip = (void __user *)(regs->rip);
799 struct task_struct * task;
800 siginfo_t info;
801 unsigned short cwd, swd;
802
803 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700804 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100805 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return;
807
808 /*
809 * Save the info for the exception handler and clear the error.
810 */
811 task = current;
812 save_init_fpu(task);
813 task->thread.trap_no = 16;
814 task->thread.error_code = 0;
815 info.si_signo = SIGFPE;
816 info.si_errno = 0;
817 info.si_code = __SI_FAULT;
818 info.si_addr = rip;
819 /*
820 * (~cwd & swd) will mask out exceptions that are not set to unmasked
821 * status. 0x3f is the exception bits in these regs, 0x200 is the
822 * C1 reg you need in case of a stack fault, 0x040 is the stack
823 * fault bit. We should only be taking one exception at a time,
824 * so if this combination doesn't produce any single exception,
825 * then we have a bad program that isn't synchronizing its FPU usage
826 * and it will suffer the consequences since we won't be able to
827 * fully reproduce the context of the exception
828 */
829 cwd = get_fpu_cwd(task);
830 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200831 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 case 0x000:
833 default:
834 break;
835 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200836 /*
837 * swd & 0x240 == 0x040: Stack Underflow
838 * swd & 0x240 == 0x240: Stack Overflow
839 * User must clear the SF bit (0x40) if set
840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 info.si_code = FPE_FLTINV;
842 break;
843 case 0x002: /* Denormalize */
844 case 0x010: /* Underflow */
845 info.si_code = FPE_FLTUND;
846 break;
847 case 0x004: /* Zero Divide */
848 info.si_code = FPE_FLTDIV;
849 break;
850 case 0x008: /* Overflow */
851 info.si_code = FPE_FLTOVF;
852 break;
853 case 0x020: /* Precision */
854 info.si_code = FPE_FLTRES;
855 break;
856 }
857 force_sig_info(SIGFPE, &info, task);
858}
859
860asmlinkage void bad_intr(void)
861{
862 printk("bad interrupt");
863}
864
865asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
866{
867 void __user *rip = (void __user *)(regs->rip);
868 struct task_struct * task;
869 siginfo_t info;
870 unsigned short mxcsr;
871
872 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700873 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100874 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return;
876
877 /*
878 * Save the info for the exception handler and clear the error.
879 */
880 task = current;
881 save_init_fpu(task);
882 task->thread.trap_no = 19;
883 task->thread.error_code = 0;
884 info.si_signo = SIGFPE;
885 info.si_errno = 0;
886 info.si_code = __SI_FAULT;
887 info.si_addr = rip;
888 /*
889 * The SIMD FPU exceptions are handled a little differently, as there
890 * is only a single status/control register. Thus, to determine which
891 * unmasked exception was caught we must mask the exception mask bits
892 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
893 */
894 mxcsr = get_fpu_mxcsr(task);
895 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
896 case 0x000:
897 default:
898 break;
899 case 0x001: /* Invalid Op */
900 info.si_code = FPE_FLTINV;
901 break;
902 case 0x002: /* Denormalize */
903 case 0x010: /* Underflow */
904 info.si_code = FPE_FLTUND;
905 break;
906 case 0x004: /* Zero Divide */
907 info.si_code = FPE_FLTDIV;
908 break;
909 case 0x008: /* Overflow */
910 info.si_code = FPE_FLTOVF;
911 break;
912 case 0x020: /* Precision */
913 info.si_code = FPE_FLTRES;
914 break;
915 }
916 force_sig_info(SIGFPE, &info, task);
917}
918
919asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
920{
921}
922
923asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
924{
925}
926
Jacob Shin89b831e2005-11-05 17:25:53 +0100927asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
928{
929}
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931/*
932 * 'math_state_restore()' saves the current math information in the
933 * old math state array, and gets the new ones from the current task
934 *
935 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
936 * Don't touch unless you *really* know how it works.
937 */
938asmlinkage void math_state_restore(void)
939{
940 struct task_struct *me = current;
941 clts(); /* Allow maths ops (or we recurse) */
942
943 if (!used_math())
944 init_fpu(me);
945 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -0800946 task_thread_info(me)->status |= TS_USEDFPU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949void __init trap_init(void)
950{
951 set_intr_gate(0,&divide_error);
952 set_intr_gate_ist(1,&debug,DEBUG_STACK);
953 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +0100954 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +0100955 set_system_gate(4,&overflow); /* int4 can be called from all */
956 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 set_intr_gate(6,&invalid_op);
958 set_intr_gate(7,&device_not_available);
959 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
960 set_intr_gate(9,&coprocessor_segment_overrun);
961 set_intr_gate(10,&invalid_TSS);
962 set_intr_gate(11,&segment_not_present);
963 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
964 set_intr_gate(13,&general_protection);
965 set_intr_gate(14,&page_fault);
966 set_intr_gate(15,&spurious_interrupt_bug);
967 set_intr_gate(16,&coprocessor_error);
968 set_intr_gate(17,&alignment_check);
969#ifdef CONFIG_X86_MCE
970 set_intr_gate_ist(18,&machine_check, MCE_STACK);
971#endif
972 set_intr_gate(19,&simd_coprocessor_error);
973
974#ifdef CONFIG_IA32_EMULATION
975 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
976#endif
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /*
979 * Should be a barrier for any external CPU state.
980 */
981 cpu_init();
982}
983
984
985/* Actual parsing is done early in setup.c. */
986static int __init oops_dummy(char *s)
987{
988 panic_on_oops = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800989 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991__setup("oops=", oops_dummy);
992
993static int __init kstack_setup(char *s)
994{
995 kstack_depth_to_print = simple_strtoul(s,NULL,0);
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800996 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998__setup("kstack=", kstack_setup);
999