[S390] Remove Kerntypes leftovers
[deliverable/linux.git] / arch / s390 / kernel / traps.c
CommitLineData
1da177e4
LT
1/*
2 * arch/s390/kernel/traps.c
3 *
4 * S390 version
5 * Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
7 * Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
8 *
9 * Derived from "arch/i386/kernel/traps.c"
10 * Copyright (C) 1991, 1992 Linus Torvalds
11 */
12
13/*
14 * 'Traps.c' handles hardware traps and faults after we have saved some
15 * state in 'asm.s'.
16 */
1da177e4
LT
17#include <linux/sched.h>
18#include <linux/kernel.h>
19#include <linux/string.h>
20#include <linux/errno.h>
73b7d40f 21#include <linux/ptrace.h>
1da177e4
LT
22#include <linux/timer.h>
23#include <linux/mm.h>
24#include <linux/smp.h>
1da177e4
LT
25#include <linux/init.h>
26#include <linux/interrupt.h>
df5f8314 27#include <linux/seq_file.h>
1da177e4
LT
28#include <linux/delay.h>
29#include <linux/module.h>
1eeb66a1 30#include <linux/kdebug.h>
1da177e4 31#include <linux/kallsyms.h>
5d3f229f 32#include <linux/reboot.h>
4ba069b8 33#include <linux/kprobes.h>
c0007f1a 34#include <linux/bug.h>
5c699714 35#include <linux/utsname.h>
1da177e4
LT
36#include <asm/system.h>
37#include <asm/uaccess.h>
38#include <asm/io.h>
60063497 39#include <linux/atomic.h>
1da177e4
LT
40#include <asm/mathemu.h>
41#include <asm/cpcmd.h>
1da177e4
LT
42#include <asm/lowcore.h>
43#include <asm/debug.h>
a806170e 44#include "entry.h"
1da177e4 45
fdb204d1 46void (*pgm_check_table[128])(struct pt_regs *, long, unsigned long);
1da177e4 47
ab3c68ee 48int show_unhandled_signals;
1da177e4 49
1da177e4
LT
50#define stack_pointer ({ void **sp; asm("la %0,0(15)" : "=&d" (sp)); sp; })
51
347a8dc3 52#ifndef CONFIG_64BIT
d7fd5f1e 53#define LONG "%08lx "
1da177e4
LT
54#define FOURLONG "%08lx %08lx %08lx %08lx\n"
55static int kstack_depth_to_print = 12;
347a8dc3 56#else /* CONFIG_64BIT */
d7fd5f1e 57#define LONG "%016lx "
1da177e4
LT
58#define FOURLONG "%016lx %016lx %016lx %016lx\n"
59static int kstack_depth_to_print = 20;
347a8dc3 60#endif /* CONFIG_64BIT */
1da177e4
LT
61
62/*
63 * For show_trace we have tree different stack to consider:
64 * - the panic stack which is used if the kernel stack has overflown
65 * - the asynchronous interrupt stack (cpu related)
66 * - the synchronous kernel stack (process related)
67 * The stack trace can start at any of the three stack and can potentially
68 * touch all of them. The order is: panic stack, async stack, sync stack.
69 */
70static unsigned long
71__show_trace(unsigned long sp, unsigned long low, unsigned long high)
72{
73 struct stack_frame *sf;
74 struct pt_regs *regs;
75
76 while (1) {
77 sp = sp & PSW_ADDR_INSN;
78 if (sp < low || sp > high - sizeof(*sf))
79 return sp;
80 sf = (struct stack_frame *) sp;
81 printk("([<%016lx>] ", sf->gprs[8] & PSW_ADDR_INSN);
82 print_symbol("%s)\n", sf->gprs[8] & PSW_ADDR_INSN);
83 /* Follow the backchain. */
84 while (1) {
85 low = sp;
86 sp = sf->back_chain & PSW_ADDR_INSN;
87 if (!sp)
88 break;
89 if (sp <= low || sp > high - sizeof(*sf))
90 return sp;
91 sf = (struct stack_frame *) sp;
92 printk(" [<%016lx>] ", sf->gprs[8] & PSW_ADDR_INSN);
93 print_symbol("%s\n", sf->gprs[8] & PSW_ADDR_INSN);
94 }
95 /* Zero backchain detected, check for interrupt frame. */
96 sp = (unsigned long) (sf + 1);
97 if (sp <= low || sp > high - sizeof(*regs))
98 return sp;
99 regs = (struct pt_regs *) sp;
100 printk(" [<%016lx>] ", regs->psw.addr & PSW_ADDR_INSN);
101 print_symbol("%s\n", regs->psw.addr & PSW_ADDR_INSN);
102 low = sp;
103 sp = regs->gprs[15];
104 }
105}
106
4e83be7b 107static void show_trace(struct task_struct *task, unsigned long *stack)
1da177e4
LT
108{
109 register unsigned long __r15 asm ("15");
110 unsigned long sp;
111
112 sp = (unsigned long) stack;
113 if (!sp)
114 sp = task ? task->thread.ksp : __r15;
115 printk("Call Trace:\n");
116#ifdef CONFIG_CHECK_STACK
117 sp = __show_trace(sp, S390_lowcore.panic_stack - 4096,
118 S390_lowcore.panic_stack);
119#endif
120 sp = __show_trace(sp, S390_lowcore.async_stack - ASYNC_SIZE,
121 S390_lowcore.async_stack);
122 if (task)
30af7120
AV
123 __show_trace(sp, (unsigned long) task_stack_page(task),
124 (unsigned long) task_stack_page(task) + THREAD_SIZE);
1da177e4
LT
125 else
126 __show_trace(sp, S390_lowcore.thread_info,
127 S390_lowcore.thread_info + THREAD_SIZE);
236257ee
HC
128 if (!task)
129 task = current;
130 debug_show_held_locks(task);
1da177e4
LT
131}
132
133void show_stack(struct task_struct *task, unsigned long *sp)
134{
135 register unsigned long * __r15 asm ("15");
136 unsigned long *stack;
137 int i;
138
1da177e4 139 if (!sp)
73805343
HC
140 stack = task ? (unsigned long *) task->thread.ksp : __r15;
141 else
142 stack = sp;
1da177e4 143
1da177e4
LT
144 for (i = 0; i < kstack_depth_to_print; i++) {
145 if (((addr_t) stack & (THREAD_SIZE-1)) == 0)
146 break;
147 if (i && ((i * sizeof (long) % 32) == 0))
148 printk("\n ");
d7fd5f1e 149 printk(LONG, *stack++);
1da177e4
LT
150 }
151 printk("\n");
152 show_trace(task, sp);
153}
154
4e83be7b 155static void show_last_breaking_event(struct pt_regs *regs)
9e74a6b8 156{
4e83be7b 157#ifdef CONFIG_64BIT
9e74a6b8
CB
158 printk("Last Breaking-Event-Address:\n");
159 printk(" [<%016lx>] ", regs->args[0] & PSW_ADDR_INSN);
160 print_symbol("%s\n", regs->args[0] & PSW_ADDR_INSN);
9e74a6b8 161#endif
4e83be7b 162}
9e74a6b8 163
1da177e4
LT
164/*
165 * The architecture-independent dump_stack generator
166 */
167void dump_stack(void)
168{
5c699714
HC
169 printk("CPU: %d %s %s %.*s\n",
170 task_thread_info(current)->cpu, print_tainted(),
171 init_utsname()->release,
172 (int)strcspn(init_utsname()->version, " "),
173 init_utsname()->version);
174 printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
175 current->comm, current->pid, current,
176 (void *) current->thread.ksp);
d2c993d8 177 show_stack(NULL, NULL);
1da177e4 178}
1da177e4
LT
179EXPORT_SYMBOL(dump_stack);
180
bb11e3bd
MS
181static inline int mask_bits(struct pt_regs *regs, unsigned long bits)
182{
183 return (regs->psw.mask & bits) / ((~bits + 1) & bits);
184}
185
1da177e4
LT
186void show_registers(struct pt_regs *regs)
187{
1da177e4 188 char *mode;
1da177e4
LT
189
190 mode = (regs->psw.mask & PSW_MASK_PSTATE) ? "User" : "Krnl";
191 printk("%s PSW : %p %p",
192 mode, (void *) regs->psw.mask,
193 (void *) regs->psw.addr);
194 print_symbol(" (%s)\n", regs->psw.addr & PSW_ADDR_INSN);
bb11e3bd
MS
195 printk(" R:%x T:%x IO:%x EX:%x Key:%x M:%x W:%x "
196 "P:%x AS:%x CC:%x PM:%x", mask_bits(regs, PSW_MASK_PER),
197 mask_bits(regs, PSW_MASK_DAT), mask_bits(regs, PSW_MASK_IO),
198 mask_bits(regs, PSW_MASK_EXT), mask_bits(regs, PSW_MASK_KEY),
199 mask_bits(regs, PSW_MASK_MCHECK), mask_bits(regs, PSW_MASK_WAIT),
200 mask_bits(regs, PSW_MASK_PSTATE), mask_bits(regs, PSW_MASK_ASC),
201 mask_bits(regs, PSW_MASK_CC), mask_bits(regs, PSW_MASK_PM));
202#ifdef CONFIG_64BIT
b50511e4 203 printk(" EA:%x", mask_bits(regs, PSW_MASK_EA | PSW_MASK_BA));
bb11e3bd
MS
204#endif
205 printk("\n%s GPRS: " FOURLONG, mode,
1da177e4
LT
206 regs->gprs[0], regs->gprs[1], regs->gprs[2], regs->gprs[3]);
207 printk(" " FOURLONG,
208 regs->gprs[4], regs->gprs[5], regs->gprs[6], regs->gprs[7]);
209 printk(" " FOURLONG,
210 regs->gprs[8], regs->gprs[9], regs->gprs[10], regs->gprs[11]);
211 printk(" " FOURLONG,
212 regs->gprs[12], regs->gprs[13], regs->gprs[14], regs->gprs[15]);
213
bb11e3bd 214 show_code(regs);
1da177e4
LT
215}
216
4e83be7b
HC
217void show_regs(struct pt_regs *regs)
218{
219 print_modules();
220 printk("CPU: %d %s %s %.*s\n",
221 task_thread_info(current)->cpu, print_tainted(),
222 init_utsname()->release,
223 (int)strcspn(init_utsname()->version, " "),
224 init_utsname()->version);
225 printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
226 current->comm, current->pid, current,
227 (void *) current->thread.ksp);
228 show_registers(regs);
229 /* Show stack backtrace if pt_regs is from kernel mode */
230 if (!(regs->psw.mask & PSW_MASK_PSTATE))
231 show_trace(NULL, (unsigned long *) regs->gprs[15]);
232 show_last_breaking_event(regs);
233}
234
2b67fc46 235static DEFINE_SPINLOCK(die_lock);
1da177e4
LT
236
237void die(const char * str, struct pt_regs * regs, long err)
238{
239 static int die_counter;
240
bca0fb86 241 oops_enter();
1da177e4
LT
242 debug_stop_all();
243 console_verbose();
244 spin_lock_irq(&die_lock);
245 bust_spinlocks(1);
5c699714
HC
246 printk("%s: %04lx [#%d] ", str, err & 0xffff, ++die_counter);
247#ifdef CONFIG_PREEMPT
248 printk("PREEMPT ");
249#endif
250#ifdef CONFIG_SMP
2485579b
HC
251 printk("SMP ");
252#endif
253#ifdef CONFIG_DEBUG_PAGEALLOC
254 printk("DEBUG_PAGEALLOC");
5c699714
HC
255#endif
256 printk("\n");
06770a6e 257 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
bca0fb86 258 show_regs(regs);
1da177e4 259 bust_spinlocks(0);
bcdcd8e7 260 add_taint(TAINT_DIE);
bca0fb86 261 spin_unlock_irq(&die_lock);
1da177e4
LT
262 if (in_interrupt())
263 panic("Fatal exception in interrupt");
264 if (panic_on_oops)
265 panic("Fatal exception: panic_on_oops");
bca0fb86
HC
266 oops_exit();
267 do_exit(SIGSEGV);
1da177e4
LT
268}
269
ab3c68ee
HC
270static void inline report_user_fault(struct pt_regs *regs, long int_code,
271 int signr)
1da177e4 272{
ab3c68ee 273 if ((task_pid_nr(current) > 1) && !show_unhandled_signals)
1da177e4 274 return;
ab3c68ee
HC
275 if (!unhandled_signal(current, signr))
276 return;
277 if (!printk_ratelimit())
278 return;
279 printk("User process fault: interruption code 0x%lX ", int_code);
280 print_vma_addr("in ", regs->psw.addr & PSW_ADDR_INSN);
281 printk("\n");
1da177e4 282 show_regs(regs);
1da177e4
LT
283}
284
c0007f1a
HC
285int is_valid_bugaddr(unsigned long addr)
286{
287 return 1;
288}
289
1e54622e
MS
290static inline void __kprobes do_trap(long pgm_int_code, int signr, char *str,
291 struct pt_regs *regs, siginfo_t *info)
1da177e4 292{
1e54622e
MS
293 if (notify_die(DIE_TRAP, str, regs, pgm_int_code,
294 pgm_int_code, signr) == NOTIFY_STOP)
4ba069b8
MG
295 return;
296
1da177e4
LT
297 if (regs->psw.mask & PSW_MASK_PSTATE) {
298 struct task_struct *tsk = current;
299
1e54622e 300 tsk->thread.trap_no = pgm_int_code & 0xffff;
1da177e4 301 force_sig_info(signr, info, tsk);
1e54622e 302 report_user_fault(regs, pgm_int_code, signr);
1da177e4
LT
303 } else {
304 const struct exception_table_entry *fixup;
305 fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
306 if (fixup)
307 regs->psw.addr = fixup->fixup | PSW_ADDR_AMODE;
c0007f1a
HC
308 else {
309 enum bug_trap_type btt;
310
608e2619 311 btt = report_bug(regs->psw.addr & PSW_ADDR_INSN, regs);
c0007f1a
HC
312 if (btt == BUG_TRAP_TYPE_WARN)
313 return;
1e54622e 314 die(str, regs, pgm_int_code);
c0007f1a 315 }
1da177e4
LT
316 }
317}
318
1e54622e
MS
319static inline void __user *get_psw_address(struct pt_regs *regs,
320 long pgm_int_code)
1da177e4 321{
1e54622e
MS
322 return (void __user *)
323 ((regs->psw.addr - (pgm_int_code >> 16)) & PSW_ADDR_INSN);
1da177e4
LT
324}
325
5e9a2692 326void __kprobes do_per_trap(struct pt_regs *regs)
1da177e4 327{
73b7d40f
MS
328 siginfo_t info;
329
5e9a2692 330 if (notify_die(DIE_SSTEP, "sstep", regs, 0, 0, SIGTRAP) == NOTIFY_STOP)
4ba069b8 331 return;
73b7d40f
MS
332 if (!current->ptrace)
333 return;
334 info.si_signo = SIGTRAP;
335 info.si_errno = 0;
336 info.si_code = TRAP_HWBKPT;
3c52e49d
MS
337 info.si_addr =
338 (void __force __user *) current->thread.per_event.address;
73b7d40f 339 force_sig_info(SIGTRAP, &info, current);
1da177e4
LT
340}
341
1e54622e
MS
342static void default_trap_handler(struct pt_regs *regs, long pgm_int_code,
343 unsigned long trans_exc_code)
1da177e4
LT
344{
345 if (regs->psw.mask & PSW_MASK_PSTATE) {
1e54622e 346 report_user_fault(regs, pgm_int_code, SIGSEGV);
6ea50968 347 do_exit(SIGSEGV);
1da177e4 348 } else
1e54622e 349 die("Unknown program exception", regs, pgm_int_code);
1da177e4
LT
350}
351
1e54622e
MS
352#define DO_ERROR_INFO(name, signr, sicode, str) \
353static void name(struct pt_regs *regs, long pgm_int_code, \
354 unsigned long trans_exc_code) \
1da177e4
LT
355{ \
356 siginfo_t info; \
357 info.si_signo = signr; \
358 info.si_errno = 0; \
359 info.si_code = sicode; \
1e54622e
MS
360 info.si_addr = get_psw_address(regs, pgm_int_code); \
361 do_trap(pgm_int_code, signr, str, regs, &info); \
1da177e4
LT
362}
363
1e54622e
MS
364DO_ERROR_INFO(addressing_exception, SIGILL, ILL_ILLADR,
365 "addressing exception")
366DO_ERROR_INFO(execute_exception, SIGILL, ILL_ILLOPN,
367 "execute exception")
368DO_ERROR_INFO(divide_exception, SIGFPE, FPE_INTDIV,
369 "fixpoint divide exception")
370DO_ERROR_INFO(overflow_exception, SIGFPE, FPE_INTOVF,
371 "fixpoint overflow exception")
372DO_ERROR_INFO(hfp_overflow_exception, SIGFPE, FPE_FLTOVF,
373 "HFP overflow exception")
374DO_ERROR_INFO(hfp_underflow_exception, SIGFPE, FPE_FLTUND,
375 "HFP underflow exception")
376DO_ERROR_INFO(hfp_significance_exception, SIGFPE, FPE_FLTRES,
377 "HFP significance exception")
378DO_ERROR_INFO(hfp_divide_exception, SIGFPE, FPE_FLTDIV,
379 "HFP divide exception")
380DO_ERROR_INFO(hfp_sqrt_exception, SIGFPE, FPE_FLTINV,
381 "HFP square root exception")
382DO_ERROR_INFO(operand_exception, SIGILL, ILL_ILLOPN,
383 "operand exception")
384DO_ERROR_INFO(privileged_op, SIGILL, ILL_PRVOPC,
385 "privileged operation")
386DO_ERROR_INFO(special_op_exception, SIGILL, ILL_ILLOPN,
387 "special operation exception")
388DO_ERROR_INFO(translation_exception, SIGILL, ILL_ILLOPN,
389 "translation exception")
390
391static inline void do_fp_trap(struct pt_regs *regs, void __user *location,
392 int fpc, long pgm_int_code)
1da177e4
LT
393{
394 siginfo_t si;
395
396 si.si_signo = SIGFPE;
397 si.si_errno = 0;
398 si.si_addr = location;
399 si.si_code = 0;
400 /* FPC[2] is Data Exception Code */
401 if ((fpc & 0x00000300) == 0) {
402 /* bits 6 and 7 of DXC are 0 iff IEEE exception */
403 if (fpc & 0x8000) /* invalid fp operation */
404 si.si_code = FPE_FLTINV;
405 else if (fpc & 0x4000) /* div by 0 */
406 si.si_code = FPE_FLTDIV;
407 else if (fpc & 0x2000) /* overflow */
408 si.si_code = FPE_FLTOVF;
409 else if (fpc & 0x1000) /* underflow */
410 si.si_code = FPE_FLTUND;
411 else if (fpc & 0x0800) /* inexact */
412 si.si_code = FPE_FLTRES;
413 }
1e54622e 414 do_trap(pgm_int_code, SIGFPE,
1da177e4
LT
415 "floating point exception", regs, &si);
416}
417
860dba45
MS
418static void __kprobes illegal_op(struct pt_regs *regs, long pgm_int_code,
419 unsigned long trans_exc_code)
1da177e4
LT
420{
421 siginfo_t info;
422 __u8 opcode[6];
d2c993d8 423 __u16 __user *location;
1da177e4
LT
424 int signal = 0;
425
1e54622e 426 location = get_psw_address(regs, pgm_int_code);
1da177e4
LT
427
428 if (regs->psw.mask & PSW_MASK_PSTATE) {
12bae235
HC
429 if (get_user(*((__u16 *) opcode), (__u16 __user *) location))
430 return;
1da177e4 431 if (*((__u16 *) opcode) == S390_BREAKPOINT_U16) {
73b7d40f
MS
432 if (current->ptrace) {
433 info.si_signo = SIGTRAP;
434 info.si_errno = 0;
435 info.si_code = TRAP_BRKPT;
436 info.si_addr = location;
437 force_sig_info(SIGTRAP, &info, current);
438 } else
1da177e4
LT
439 signal = SIGILL;
440#ifdef CONFIG_MATHEMU
441 } else if (opcode[0] == 0xb3) {
12bae235
HC
442 if (get_user(*((__u16 *) (opcode+2)), location+1))
443 return;
1da177e4
LT
444 signal = math_emu_b3(opcode, regs);
445 } else if (opcode[0] == 0xed) {
12bae235
HC
446 if (get_user(*((__u32 *) (opcode+2)),
447 (__u32 __user *)(location+1)))
448 return;
1da177e4
LT
449 signal = math_emu_ed(opcode, regs);
450 } else if (*((__u16 *) opcode) == 0xb299) {
12bae235
HC
451 if (get_user(*((__u16 *) (opcode+2)), location+1))
452 return;
1da177e4
LT
453 signal = math_emu_srnm(opcode, regs);
454 } else if (*((__u16 *) opcode) == 0xb29c) {
12bae235
HC
455 if (get_user(*((__u16 *) (opcode+2)), location+1))
456 return;
1da177e4
LT
457 signal = math_emu_stfpc(opcode, regs);
458 } else if (*((__u16 *) opcode) == 0xb29d) {
12bae235
HC
459 if (get_user(*((__u16 *) (opcode+2)), location+1))
460 return;
1da177e4
LT
461 signal = math_emu_lfpc(opcode, regs);
462#endif
463 } else
464 signal = SIGILL;
35df8d53
HC
465 } else {
466 /*
467 * If we get an illegal op in kernel mode, send it through the
468 * kprobes notifier. If kprobes doesn't pick it up, SIGILL
469 */
1e54622e 470 if (notify_die(DIE_BPT, "bpt", regs, pgm_int_code,
35df8d53
HC
471 3, SIGTRAP) != NOTIFY_STOP)
472 signal = SIGILL;
473 }
1da177e4
LT
474
475#ifdef CONFIG_MATHEMU
476 if (signal == SIGFPE)
477 do_fp_trap(regs, location,
1e54622e 478 current->thread.fp_regs.fpc, pgm_int_code);
1da177e4
LT
479 else if (signal == SIGSEGV) {
480 info.si_signo = signal;
481 info.si_errno = 0;
482 info.si_code = SEGV_MAPERR;
5a42b81f 483 info.si_addr = (void __user *) location;
1e54622e 484 do_trap(pgm_int_code, signal,
1da177e4
LT
485 "user address fault", regs, &info);
486 } else
487#endif
488 if (signal) {
489 info.si_signo = signal;
490 info.si_errno = 0;
491 info.si_code = ILL_ILLOPC;
793af244 492 info.si_addr = (void __user *) location;
1e54622e 493 do_trap(pgm_int_code, signal,
1da177e4
LT
494 "illegal operation", regs, &info);
495 }
496}
497
498
499#ifdef CONFIG_MATHEMU
fdb204d1
MS
500void specification_exception(struct pt_regs *regs, long pgm_int_code,
501 unsigned long trans_exc_code)
1da177e4
LT
502{
503 __u8 opcode[6];
5a42b81f 504 __u16 __user *location = NULL;
1da177e4
LT
505 int signal = 0;
506
1e54622e 507 location = (__u16 __user *) get_psw_address(regs, pgm_int_code);
1da177e4
LT
508
509 if (regs->psw.mask & PSW_MASK_PSTATE) {
510 get_user(*((__u16 *) opcode), location);
511 switch (opcode[0]) {
512 case 0x28: /* LDR Rx,Ry */
513 signal = math_emu_ldr(opcode);
514 break;
515 case 0x38: /* LER Rx,Ry */
516 signal = math_emu_ler(opcode);
517 break;
518 case 0x60: /* STD R,D(X,B) */
519 get_user(*((__u16 *) (opcode+2)), location+1);
520 signal = math_emu_std(opcode, regs);
521 break;
522 case 0x68: /* LD R,D(X,B) */
523 get_user(*((__u16 *) (opcode+2)), location+1);
524 signal = math_emu_ld(opcode, regs);
525 break;
526 case 0x70: /* STE R,D(X,B) */
527 get_user(*((__u16 *) (opcode+2)), location+1);
528 signal = math_emu_ste(opcode, regs);
529 break;
530 case 0x78: /* LE R,D(X,B) */
531 get_user(*((__u16 *) (opcode+2)), location+1);
532 signal = math_emu_le(opcode, regs);
533 break;
534 default:
535 signal = SIGILL;
536 break;
537 }
538 } else
539 signal = SIGILL;
540
541 if (signal == SIGFPE)
542 do_fp_trap(regs, location,
1e54622e 543 current->thread.fp_regs.fpc, pgm_int_code);
1da177e4
LT
544 else if (signal) {
545 siginfo_t info;
546 info.si_signo = signal;
547 info.si_errno = 0;
548 info.si_code = ILL_ILLOPN;
549 info.si_addr = location;
1e54622e 550 do_trap(pgm_int_code, signal,
1da177e4
LT
551 "specification exception", regs, &info);
552 }
553}
554#else
1e54622e
MS
555DO_ERROR_INFO(specification_exception, SIGILL, ILL_ILLOPN,
556 "specification exception");
1da177e4
LT
557#endif
558
1e54622e
MS
559static void data_exception(struct pt_regs *regs, long pgm_int_code,
560 unsigned long trans_exc_code)
1da177e4 561{
d2c993d8 562 __u16 __user *location;
1da177e4
LT
563 int signal = 0;
564
1e54622e 565 location = get_psw_address(regs, pgm_int_code);
1da177e4
LT
566
567 if (MACHINE_HAS_IEEE)
94c12cc7 568 asm volatile("stfpc %0" : "=m" (current->thread.fp_regs.fpc));
1da177e4
LT
569
570#ifdef CONFIG_MATHEMU
571 else if (regs->psw.mask & PSW_MASK_PSTATE) {
572 __u8 opcode[6];
573 get_user(*((__u16 *) opcode), location);
574 switch (opcode[0]) {
575 case 0x28: /* LDR Rx,Ry */
576 signal = math_emu_ldr(opcode);
577 break;
578 case 0x38: /* LER Rx,Ry */
579 signal = math_emu_ler(opcode);
580 break;
581 case 0x60: /* STD R,D(X,B) */
582 get_user(*((__u16 *) (opcode+2)), location+1);
583 signal = math_emu_std(opcode, regs);
584 break;
585 case 0x68: /* LD R,D(X,B) */
586 get_user(*((__u16 *) (opcode+2)), location+1);
587 signal = math_emu_ld(opcode, regs);
588 break;
589 case 0x70: /* STE R,D(X,B) */
590 get_user(*((__u16 *) (opcode+2)), location+1);
591 signal = math_emu_ste(opcode, regs);
592 break;
593 case 0x78: /* LE R,D(X,B) */
594 get_user(*((__u16 *) (opcode+2)), location+1);
595 signal = math_emu_le(opcode, regs);
596 break;
597 case 0xb3:
598 get_user(*((__u16 *) (opcode+2)), location+1);
599 signal = math_emu_b3(opcode, regs);
600 break;
601 case 0xed:
602 get_user(*((__u32 *) (opcode+2)),
5a42b81f 603 (__u32 __user *)(location+1));
1da177e4
LT
604 signal = math_emu_ed(opcode, regs);
605 break;
606 case 0xb2:
607 if (opcode[1] == 0x99) {
608 get_user(*((__u16 *) (opcode+2)), location+1);
609 signal = math_emu_srnm(opcode, regs);
610 } else if (opcode[1] == 0x9c) {
611 get_user(*((__u16 *) (opcode+2)), location+1);
612 signal = math_emu_stfpc(opcode, regs);
613 } else if (opcode[1] == 0x9d) {
614 get_user(*((__u16 *) (opcode+2)), location+1);
615 signal = math_emu_lfpc(opcode, regs);
616 } else
617 signal = SIGILL;
618 break;
619 default:
620 signal = SIGILL;
621 break;
622 }
623 }
624#endif
625 if (current->thread.fp_regs.fpc & FPC_DXC_MASK)
626 signal = SIGFPE;
627 else
628 signal = SIGILL;
629 if (signal == SIGFPE)
630 do_fp_trap(regs, location,
1e54622e 631 current->thread.fp_regs.fpc, pgm_int_code);
1da177e4
LT
632 else if (signal) {
633 siginfo_t info;
634 info.si_signo = signal;
635 info.si_errno = 0;
636 info.si_code = ILL_ILLOPN;
637 info.si_addr = location;
1e54622e 638 do_trap(pgm_int_code, signal, "data exception", regs, &info);
1da177e4
LT
639 }
640}
641
1e54622e
MS
642static void space_switch_exception(struct pt_regs *regs, long pgm_int_code,
643 unsigned long trans_exc_code)
1da177e4
LT
644{
645 siginfo_t info;
646
647 /* Set user psw back to home space mode. */
648 if (regs->psw.mask & PSW_MASK_PSTATE)
649 regs->psw.mask |= PSW_ASC_HOME;
650 /* Send SIGILL. */
651 info.si_signo = SIGILL;
652 info.si_errno = 0;
653 info.si_code = ILL_PRVOPC;
1e54622e
MS
654 info.si_addr = get_psw_address(regs, pgm_int_code);
655 do_trap(pgm_int_code, SIGILL, "space switch event", regs, &info);
1da177e4
LT
656}
657
fdb204d1 658void __kprobes kernel_stack_overflow(struct pt_regs * regs)
1da177e4 659{
77eb65cb
HC
660 bust_spinlocks(1);
661 printk("Kernel stack overflow.\n");
662 show_regs(regs);
663 bust_spinlocks(0);
1da177e4
LT
664 panic("Corrupt kernel stack, can't continue.");
665}
666
1da177e4
LT
667/* init is done in lowcore.S and head.S */
668
669void __init trap_init(void)
670{
671 int i;
672
673 for (i = 0; i < 128; i++)
674 pgm_check_table[i] = &default_trap_handler;
675 pgm_check_table[1] = &illegal_op;
676 pgm_check_table[2] = &privileged_op;
677 pgm_check_table[3] = &execute_exception;
678 pgm_check_table[4] = &do_protection_exception;
679 pgm_check_table[5] = &addressing_exception;
680 pgm_check_table[6] = &specification_exception;
681 pgm_check_table[7] = &data_exception;
682 pgm_check_table[8] = &overflow_exception;
683 pgm_check_table[9] = &divide_exception;
684 pgm_check_table[0x0A] = &overflow_exception;
685 pgm_check_table[0x0B] = &divide_exception;
686 pgm_check_table[0x0C] = &hfp_overflow_exception;
687 pgm_check_table[0x0D] = &hfp_underflow_exception;
688 pgm_check_table[0x0E] = &hfp_significance_exception;
689 pgm_check_table[0x0F] = &hfp_divide_exception;
690 pgm_check_table[0x10] = &do_dat_exception;
691 pgm_check_table[0x11] = &do_dat_exception;
692 pgm_check_table[0x12] = &translation_exception;
693 pgm_check_table[0x13] = &special_op_exception;
347a8dc3 694#ifdef CONFIG_64BIT
6252d702 695 pgm_check_table[0x38] = &do_asce_exception;
1da177e4
LT
696 pgm_check_table[0x39] = &do_dat_exception;
697 pgm_check_table[0x3A] = &do_dat_exception;
698 pgm_check_table[0x3B] = &do_dat_exception;
347a8dc3 699#endif /* CONFIG_64BIT */
1da177e4
LT
700 pgm_check_table[0x15] = &operand_exception;
701 pgm_check_table[0x1C] = &space_switch_exception;
702 pgm_check_table[0x1D] = &hfp_sqrt_exception;
f3e1a273
HC
703 /* Enable machine checks early. */
704 local_mcck_enable();
1da177e4 705}
This page took 0.912235 seconds and 5 git commands to generate.