blob: 475dbb8844301ca0824b2df5826effb00985e5f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/sched.h>
18#include <linux/kernel.h>
19#include <linux/string.h>
20#include <linux/errno.h>
21#include <linux/ptrace.h>
22#include <linux/timer.h>
23#include <linux/mm.h>
24#include <linux/smp.h>
25#include <linux/smp_lock.h>
26#include <linux/init.h>
27#include <linux/interrupt.h>
28#include <linux/delay.h>
29#include <linux/module.h>
30#include <linux/kallsyms.h>
Heiko Carstens5d3f2292005-08-01 21:11:33 -070031#include <linux/reboot.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020032#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/system.h>
35#include <asm/uaccess.h>
36#include <asm/io.h>
37#include <asm/atomic.h>
38#include <asm/mathemu.h>
39#include <asm/cpcmd.h>
40#include <asm/s390_ext.h>
41#include <asm/lowcore.h>
42#include <asm/debug.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020043#include <asm/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* Called from entry.S only */
46extern void handle_per_exception(struct pt_regs *regs);
47
48typedef void pgm_check_handler_t(struct pt_regs *, long);
49pgm_check_handler_t *pgm_check_table[128];
50
51#ifdef CONFIG_SYSCTL
52#ifdef CONFIG_PROCESS_DEBUG
53int sysctl_userprocess_debug = 1;
54#else
55int sysctl_userprocess_debug = 0;
56#endif
57#endif
58
59extern pgm_check_handler_t do_protection_exception;
60extern pgm_check_handler_t do_dat_exception;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061extern pgm_check_handler_t do_monitor_call;
62
63#define stack_pointer ({ void **sp; asm("la %0,0(15)" : "=&d" (sp)); sp; })
64
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080065#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define FOURLONG "%08lx %08lx %08lx %08lx\n"
67static int kstack_depth_to_print = 12;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080068#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define FOURLONG "%016lx %016lx %016lx %016lx\n"
70static int kstack_depth_to_print = 20;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080071#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Michael Grundy4ba069b2006-09-20 15:58:39 +020073ATOMIC_NOTIFIER_HEAD(s390die_chain);
74
75int register_die_notifier(struct notifier_block *nb)
76{
77 return atomic_notifier_chain_register(&s390die_chain, nb);
78}
79EXPORT_SYMBOL(register_die_notifier);
80
81int unregister_die_notifier(struct notifier_block *nb)
82{
83 return atomic_notifier_chain_unregister(&s390die_chain, nb);
84}
85EXPORT_SYMBOL(unregister_die_notifier);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * For show_trace we have tree different stack to consider:
89 * - the panic stack which is used if the kernel stack has overflown
90 * - the asynchronous interrupt stack (cpu related)
91 * - the synchronous kernel stack (process related)
92 * The stack trace can start at any of the three stack and can potentially
93 * touch all of them. The order is: panic stack, async stack, sync stack.
94 */
95static unsigned long
96__show_trace(unsigned long sp, unsigned long low, unsigned long high)
97{
98 struct stack_frame *sf;
99 struct pt_regs *regs;
100
101 while (1) {
102 sp = sp & PSW_ADDR_INSN;
103 if (sp < low || sp > high - sizeof(*sf))
104 return sp;
105 sf = (struct stack_frame *) sp;
106 printk("([<%016lx>] ", sf->gprs[8] & PSW_ADDR_INSN);
107 print_symbol("%s)\n", sf->gprs[8] & PSW_ADDR_INSN);
108 /* Follow the backchain. */
109 while (1) {
110 low = sp;
111 sp = sf->back_chain & PSW_ADDR_INSN;
112 if (!sp)
113 break;
114 if (sp <= low || sp > high - sizeof(*sf))
115 return sp;
116 sf = (struct stack_frame *) sp;
117 printk(" [<%016lx>] ", sf->gprs[8] & PSW_ADDR_INSN);
118 print_symbol("%s\n", sf->gprs[8] & PSW_ADDR_INSN);
119 }
120 /* Zero backchain detected, check for interrupt frame. */
121 sp = (unsigned long) (sf + 1);
122 if (sp <= low || sp > high - sizeof(*regs))
123 return sp;
124 regs = (struct pt_regs *) sp;
125 printk(" [<%016lx>] ", regs->psw.addr & PSW_ADDR_INSN);
126 print_symbol("%s\n", regs->psw.addr & PSW_ADDR_INSN);
127 low = sp;
128 sp = regs->gprs[15];
129 }
130}
131
132void show_trace(struct task_struct *task, unsigned long * stack)
133{
134 register unsigned long __r15 asm ("15");
135 unsigned long sp;
136
137 sp = (unsigned long) stack;
138 if (!sp)
139 sp = task ? task->thread.ksp : __r15;
140 printk("Call Trace:\n");
141#ifdef CONFIG_CHECK_STACK
142 sp = __show_trace(sp, S390_lowcore.panic_stack - 4096,
143 S390_lowcore.panic_stack);
144#endif
145 sp = __show_trace(sp, S390_lowcore.async_stack - ASYNC_SIZE,
146 S390_lowcore.async_stack);
147 if (task)
Al Viro30af7122006-01-12 01:05:50 -0800148 __show_trace(sp, (unsigned long) task_stack_page(task),
149 (unsigned long) task_stack_page(task) + THREAD_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 else
151 __show_trace(sp, S390_lowcore.thread_info,
152 S390_lowcore.thread_info + THREAD_SIZE);
153 printk("\n");
154}
155
156void show_stack(struct task_struct *task, unsigned long *sp)
157{
158 register unsigned long * __r15 asm ("15");
159 unsigned long *stack;
160 int i;
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (!sp)
Heiko Carstens73805342006-06-29 14:56:23 +0200163 stack = task ? (unsigned long *) task->thread.ksp : __r15;
164 else
165 stack = sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 for (i = 0; i < kstack_depth_to_print; i++) {
168 if (((addr_t) stack & (THREAD_SIZE-1)) == 0)
169 break;
170 if (i && ((i * sizeof (long) % 32) == 0))
171 printk("\n ");
172 printk("%p ", (void *)*stack++);
173 }
174 printk("\n");
175 show_trace(task, sp);
176}
177
178/*
179 * The architecture-independent dump_stack generator
180 */
181void dump_stack(void)
182{
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200183 show_stack(NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186EXPORT_SYMBOL(dump_stack);
187
188void show_registers(struct pt_regs *regs)
189{
190 mm_segment_t old_fs;
191 char *mode;
192 int i;
193
194 mode = (regs->psw.mask & PSW_MASK_PSTATE) ? "User" : "Krnl";
195 printk("%s PSW : %p %p",
196 mode, (void *) regs->psw.mask,
197 (void *) regs->psw.addr);
198 print_symbol(" (%s)\n", regs->psw.addr & PSW_ADDR_INSN);
199 printk("%s GPRS: " FOURLONG, mode,
200 regs->gprs[0], regs->gprs[1], regs->gprs[2], regs->gprs[3]);
201 printk(" " FOURLONG,
202 regs->gprs[4], regs->gprs[5], regs->gprs[6], regs->gprs[7]);
203 printk(" " FOURLONG,
204 regs->gprs[8], regs->gprs[9], regs->gprs[10], regs->gprs[11]);
205 printk(" " FOURLONG,
206 regs->gprs[12], regs->gprs[13], regs->gprs[14], regs->gprs[15]);
207
208#if 0
209 /* FIXME: this isn't needed any more but it changes the ksymoops
210 * input. To remove or not to remove ... */
211 save_access_regs(regs->acrs);
212 printk("%s ACRS: %08x %08x %08x %08x\n", mode,
213 regs->acrs[0], regs->acrs[1], regs->acrs[2], regs->acrs[3]);
214 printk(" %08x %08x %08x %08x\n",
215 regs->acrs[4], regs->acrs[5], regs->acrs[6], regs->acrs[7]);
216 printk(" %08x %08x %08x %08x\n",
217 regs->acrs[8], regs->acrs[9], regs->acrs[10], regs->acrs[11]);
218 printk(" %08x %08x %08x %08x\n",
219 regs->acrs[12], regs->acrs[13], regs->acrs[14], regs->acrs[15]);
220#endif
221
222 /*
223 * Print the first 20 byte of the instruction stream at the
224 * time of the fault.
225 */
226 old_fs = get_fs();
227 if (regs->psw.mask & PSW_MASK_PSTATE)
228 set_fs(USER_DS);
229 else
230 set_fs(KERNEL_DS);
231 printk("%s Code: ", mode);
232 for (i = 0; i < 20; i++) {
233 unsigned char c;
234 if (__get_user(c, (char __user *)(regs->psw.addr + i))) {
235 printk(" Bad PSW.");
236 break;
237 }
238 printk("%02x ", c);
239 }
240 set_fs(old_fs);
241
242 printk("\n");
243}
244
245/* This is called from fs/proc/array.c */
246char *task_show_regs(struct task_struct *task, char *buffer)
247{
248 struct pt_regs *regs;
249
Al Viroc7584fb2006-01-12 01:05:49 -0800250 regs = task_pt_regs(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 buffer += sprintf(buffer, "task: %p, ksp: %p\n",
252 task, (void *)task->thread.ksp);
253 buffer += sprintf(buffer, "User PSW : %p %p\n",
254 (void *) regs->psw.mask, (void *)regs->psw.addr);
255
256 buffer += sprintf(buffer, "User GPRS: " FOURLONG,
257 regs->gprs[0], regs->gprs[1],
258 regs->gprs[2], regs->gprs[3]);
259 buffer += sprintf(buffer, " " FOURLONG,
260 regs->gprs[4], regs->gprs[5],
261 regs->gprs[6], regs->gprs[7]);
262 buffer += sprintf(buffer, " " FOURLONG,
263 regs->gprs[8], regs->gprs[9],
264 regs->gprs[10], regs->gprs[11]);
265 buffer += sprintf(buffer, " " FOURLONG,
266 regs->gprs[12], regs->gprs[13],
267 regs->gprs[14], regs->gprs[15]);
268 buffer += sprintf(buffer, "User ACRS: %08x %08x %08x %08x\n",
269 task->thread.acrs[0], task->thread.acrs[1],
270 task->thread.acrs[2], task->thread.acrs[3]);
271 buffer += sprintf(buffer, " %08x %08x %08x %08x\n",
272 task->thread.acrs[4], task->thread.acrs[5],
273 task->thread.acrs[6], task->thread.acrs[7]);
274 buffer += sprintf(buffer, " %08x %08x %08x %08x\n",
275 task->thread.acrs[8], task->thread.acrs[9],
276 task->thread.acrs[10], task->thread.acrs[11]);
277 buffer += sprintf(buffer, " %08x %08x %08x %08x\n",
278 task->thread.acrs[12], task->thread.acrs[13],
279 task->thread.acrs[14], task->thread.acrs[15]);
280 return buffer;
281}
282
283DEFINE_SPINLOCK(die_lock);
284
285void die(const char * str, struct pt_regs * regs, long err)
286{
287 static int die_counter;
288
289 debug_stop_all();
290 console_verbose();
291 spin_lock_irq(&die_lock);
292 bust_spinlocks(1);
293 printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
294 show_regs(regs);
295 bust_spinlocks(0);
296 spin_unlock_irq(&die_lock);
297 if (in_interrupt())
298 panic("Fatal exception in interrupt");
299 if (panic_on_oops)
300 panic("Fatal exception: panic_on_oops");
301 do_exit(SIGSEGV);
302}
303
304static void inline
305report_user_fault(long interruption_code, struct pt_regs *regs)
306{
307#if defined(CONFIG_SYSCTL)
308 if (!sysctl_userprocess_debug)
309 return;
310#endif
311#if defined(CONFIG_SYSCTL) || defined(CONFIG_PROCESS_DEBUG)
312 printk("User process fault: interruption code 0x%lX\n",
313 interruption_code);
314 show_regs(regs);
315#endif
316}
317
Michael Grundy4ba069b2006-09-20 15:58:39 +0200318static void __kprobes inline do_trap(long interruption_code, int signr,
319 char *str, struct pt_regs *regs,
320 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 /*
323 * We got all needed information from the lowcore and can
324 * now safely switch on interrupts.
325 */
326 if (regs->psw.mask & PSW_MASK_PSTATE)
327 local_irq_enable();
328
Michael Grundy4ba069b2006-09-20 15:58:39 +0200329 if (notify_die(DIE_TRAP, str, regs, interruption_code,
330 interruption_code, signr) == NOTIFY_STOP)
331 return;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (regs->psw.mask & PSW_MASK_PSTATE) {
334 struct task_struct *tsk = current;
335
336 tsk->thread.trap_no = interruption_code & 0xffff;
337 force_sig_info(signr, info, tsk);
338 report_user_fault(interruption_code, regs);
339 } else {
340 const struct exception_table_entry *fixup;
341 fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
342 if (fixup)
343 regs->psw.addr = fixup->fixup | PSW_ADDR_AMODE;
344 else
345 die(str, regs, interruption_code);
346 }
347}
348
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200349static inline void __user *get_check_address(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200351 return (void __user *)((regs->psw.addr-S390_lowcore.pgm_ilc) & PSW_ADDR_INSN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Michael Grundy4ba069b2006-09-20 15:58:39 +0200354void __kprobes do_single_step(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Michael Grundy4ba069b2006-09-20 15:58:39 +0200356 if (notify_die(DIE_SSTEP, "sstep", regs, 0, 0,
357 SIGTRAP) == NOTIFY_STOP){
358 return;
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if ((current->ptrace & PT_PTRACED) != 0)
361 force_sig(SIGTRAP, current);
362}
363
364asmlinkage void
365default_trap_handler(struct pt_regs * regs, long interruption_code)
366{
367 if (regs->psw.mask & PSW_MASK_PSTATE) {
368 local_irq_enable();
369 do_exit(SIGSEGV);
370 report_user_fault(interruption_code, regs);
371 } else
372 die("Unknown program exception", regs, interruption_code);
373}
374
375#define DO_ERROR_INFO(signr, str, name, sicode, siaddr) \
376asmlinkage void name(struct pt_regs * regs, long interruption_code) \
377{ \
378 siginfo_t info; \
379 info.si_signo = signr; \
380 info.si_errno = 0; \
381 info.si_code = sicode; \
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200382 info.si_addr = siaddr; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 do_trap(interruption_code, signr, str, regs, &info); \
384}
385
386DO_ERROR_INFO(SIGILL, "addressing exception", addressing_exception,
387 ILL_ILLADR, get_check_address(regs))
388DO_ERROR_INFO(SIGILL, "execute exception", execute_exception,
389 ILL_ILLOPN, get_check_address(regs))
390DO_ERROR_INFO(SIGFPE, "fixpoint divide exception", divide_exception,
391 FPE_INTDIV, get_check_address(regs))
392DO_ERROR_INFO(SIGFPE, "fixpoint overflow exception", overflow_exception,
393 FPE_INTOVF, get_check_address(regs))
394DO_ERROR_INFO(SIGFPE, "HFP overflow exception", hfp_overflow_exception,
395 FPE_FLTOVF, get_check_address(regs))
396DO_ERROR_INFO(SIGFPE, "HFP underflow exception", hfp_underflow_exception,
397 FPE_FLTUND, get_check_address(regs))
398DO_ERROR_INFO(SIGFPE, "HFP significance exception", hfp_significance_exception,
399 FPE_FLTRES, get_check_address(regs))
400DO_ERROR_INFO(SIGFPE, "HFP divide exception", hfp_divide_exception,
401 FPE_FLTDIV, get_check_address(regs))
402DO_ERROR_INFO(SIGFPE, "HFP square root exception", hfp_sqrt_exception,
403 FPE_FLTINV, get_check_address(regs))
404DO_ERROR_INFO(SIGILL, "operand exception", operand_exception,
405 ILL_ILLOPN, get_check_address(regs))
406DO_ERROR_INFO(SIGILL, "privileged operation", privileged_op,
407 ILL_PRVOPC, get_check_address(regs))
408DO_ERROR_INFO(SIGILL, "special operation exception", special_op_exception,
409 ILL_ILLOPN, get_check_address(regs))
410DO_ERROR_INFO(SIGILL, "translation exception", translation_exception,
411 ILL_ILLOPN, get_check_address(regs))
412
413static inline void
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200414do_fp_trap(struct pt_regs *regs, void __user *location,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int fpc, long interruption_code)
416{
417 siginfo_t si;
418
419 si.si_signo = SIGFPE;
420 si.si_errno = 0;
421 si.si_addr = location;
422 si.si_code = 0;
423 /* FPC[2] is Data Exception Code */
424 if ((fpc & 0x00000300) == 0) {
425 /* bits 6 and 7 of DXC are 0 iff IEEE exception */
426 if (fpc & 0x8000) /* invalid fp operation */
427 si.si_code = FPE_FLTINV;
428 else if (fpc & 0x4000) /* div by 0 */
429 si.si_code = FPE_FLTDIV;
430 else if (fpc & 0x2000) /* overflow */
431 si.si_code = FPE_FLTOVF;
432 else if (fpc & 0x1000) /* underflow */
433 si.si_code = FPE_FLTUND;
434 else if (fpc & 0x0800) /* inexact */
435 si.si_code = FPE_FLTRES;
436 }
437 current->thread.ieee_instruction_pointer = (addr_t) location;
438 do_trap(interruption_code, SIGFPE,
439 "floating point exception", regs, &si);
440}
441
442asmlinkage void illegal_op(struct pt_regs * regs, long interruption_code)
443{
444 siginfo_t info;
445 __u8 opcode[6];
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200446 __u16 __user *location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 int signal = 0;
448
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200449 location = get_check_address(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /*
452 * We got all needed information from the lowcore and can
453 * now safely switch on interrupts.
454 */
455 if (regs->psw.mask & PSW_MASK_PSTATE)
456 local_irq_enable();
457
458 if (regs->psw.mask & PSW_MASK_PSTATE) {
Heiko Carstens12bae232006-10-27 12:39:22 +0200459 if (get_user(*((__u16 *) opcode), (__u16 __user *) location))
460 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (*((__u16 *) opcode) == S390_BREAKPOINT_U16) {
462 if (current->ptrace & PT_PTRACED)
463 force_sig(SIGTRAP, current);
464 else
465 signal = SIGILL;
466#ifdef CONFIG_MATHEMU
467 } else if (opcode[0] == 0xb3) {
Heiko Carstens12bae232006-10-27 12:39:22 +0200468 if (get_user(*((__u16 *) (opcode+2)), location+1))
469 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 signal = math_emu_b3(opcode, regs);
471 } else if (opcode[0] == 0xed) {
Heiko Carstens12bae232006-10-27 12:39:22 +0200472 if (get_user(*((__u32 *) (opcode+2)),
473 (__u32 __user *)(location+1)))
474 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 signal = math_emu_ed(opcode, regs);
476 } else if (*((__u16 *) opcode) == 0xb299) {
Heiko Carstens12bae232006-10-27 12:39:22 +0200477 if (get_user(*((__u16 *) (opcode+2)), location+1))
478 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 signal = math_emu_srnm(opcode, regs);
480 } else if (*((__u16 *) opcode) == 0xb29c) {
Heiko Carstens12bae232006-10-27 12:39:22 +0200481 if (get_user(*((__u16 *) (opcode+2)), location+1))
482 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 signal = math_emu_stfpc(opcode, regs);
484 } else if (*((__u16 *) opcode) == 0xb29d) {
Heiko Carstens12bae232006-10-27 12:39:22 +0200485 if (get_user(*((__u16 *) (opcode+2)), location+1))
486 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 signal = math_emu_lfpc(opcode, regs);
488#endif
489 } else
490 signal = SIGILL;
491 } else
492 signal = SIGILL;
493
494#ifdef CONFIG_MATHEMU
495 if (signal == SIGFPE)
496 do_fp_trap(regs, location,
497 current->thread.fp_regs.fpc, interruption_code);
498 else if (signal == SIGSEGV) {
499 info.si_signo = signal;
500 info.si_errno = 0;
501 info.si_code = SEGV_MAPERR;
Al Viro5a42b812006-10-09 20:28:03 +0100502 info.si_addr = (void __user *) location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 do_trap(interruption_code, signal,
504 "user address fault", regs, &info);
505 } else
506#endif
507 if (signal) {
508 info.si_signo = signal;
509 info.si_errno = 0;
510 info.si_code = ILL_ILLOPC;
Al Viro793af242006-02-01 06:55:59 -0500511 info.si_addr = (void __user *) location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 do_trap(interruption_code, signal,
513 "illegal operation", regs, &info);
514 }
515}
516
517
518#ifdef CONFIG_MATHEMU
519asmlinkage void
520specification_exception(struct pt_regs * regs, long interruption_code)
521{
522 __u8 opcode[6];
Al Viro5a42b812006-10-09 20:28:03 +0100523 __u16 __user *location = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 int signal = 0;
525
Al Viro5a42b812006-10-09 20:28:03 +0100526 location = (__u16 __user *) get_check_address(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /*
529 * We got all needed information from the lowcore and can
530 * now safely switch on interrupts.
531 */
532 if (regs->psw.mask & PSW_MASK_PSTATE)
533 local_irq_enable();
534
535 if (regs->psw.mask & PSW_MASK_PSTATE) {
536 get_user(*((__u16 *) opcode), location);
537 switch (opcode[0]) {
538 case 0x28: /* LDR Rx,Ry */
539 signal = math_emu_ldr(opcode);
540 break;
541 case 0x38: /* LER Rx,Ry */
542 signal = math_emu_ler(opcode);
543 break;
544 case 0x60: /* STD R,D(X,B) */
545 get_user(*((__u16 *) (opcode+2)), location+1);
546 signal = math_emu_std(opcode, regs);
547 break;
548 case 0x68: /* LD R,D(X,B) */
549 get_user(*((__u16 *) (opcode+2)), location+1);
550 signal = math_emu_ld(opcode, regs);
551 break;
552 case 0x70: /* STE R,D(X,B) */
553 get_user(*((__u16 *) (opcode+2)), location+1);
554 signal = math_emu_ste(opcode, regs);
555 break;
556 case 0x78: /* LE R,D(X,B) */
557 get_user(*((__u16 *) (opcode+2)), location+1);
558 signal = math_emu_le(opcode, regs);
559 break;
560 default:
561 signal = SIGILL;
562 break;
563 }
564 } else
565 signal = SIGILL;
566
567 if (signal == SIGFPE)
568 do_fp_trap(regs, location,
569 current->thread.fp_regs.fpc, interruption_code);
570 else if (signal) {
571 siginfo_t info;
572 info.si_signo = signal;
573 info.si_errno = 0;
574 info.si_code = ILL_ILLOPN;
575 info.si_addr = location;
576 do_trap(interruption_code, signal,
577 "specification exception", regs, &info);
578 }
579}
580#else
581DO_ERROR_INFO(SIGILL, "specification exception", specification_exception,
582 ILL_ILLOPN, get_check_address(regs));
583#endif
584
585asmlinkage void data_exception(struct pt_regs * regs, long interruption_code)
586{
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200587 __u16 __user *location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int signal = 0;
589
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200590 location = get_check_address(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /*
593 * We got all needed information from the lowcore and can
594 * now safely switch on interrupts.
595 */
596 if (regs->psw.mask & PSW_MASK_PSTATE)
597 local_irq_enable();
598
599 if (MACHINE_HAS_IEEE)
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200600 asm volatile("stfpc %0" : "=m" (current->thread.fp_regs.fpc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602#ifdef CONFIG_MATHEMU
603 else if (regs->psw.mask & PSW_MASK_PSTATE) {
604 __u8 opcode[6];
605 get_user(*((__u16 *) opcode), location);
606 switch (opcode[0]) {
607 case 0x28: /* LDR Rx,Ry */
608 signal = math_emu_ldr(opcode);
609 break;
610 case 0x38: /* LER Rx,Ry */
611 signal = math_emu_ler(opcode);
612 break;
613 case 0x60: /* STD R,D(X,B) */
614 get_user(*((__u16 *) (opcode+2)), location+1);
615 signal = math_emu_std(opcode, regs);
616 break;
617 case 0x68: /* LD R,D(X,B) */
618 get_user(*((__u16 *) (opcode+2)), location+1);
619 signal = math_emu_ld(opcode, regs);
620 break;
621 case 0x70: /* STE R,D(X,B) */
622 get_user(*((__u16 *) (opcode+2)), location+1);
623 signal = math_emu_ste(opcode, regs);
624 break;
625 case 0x78: /* LE R,D(X,B) */
626 get_user(*((__u16 *) (opcode+2)), location+1);
627 signal = math_emu_le(opcode, regs);
628 break;
629 case 0xb3:
630 get_user(*((__u16 *) (opcode+2)), location+1);
631 signal = math_emu_b3(opcode, regs);
632 break;
633 case 0xed:
634 get_user(*((__u32 *) (opcode+2)),
Al Viro5a42b812006-10-09 20:28:03 +0100635 (__u32 __user *)(location+1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 signal = math_emu_ed(opcode, regs);
637 break;
638 case 0xb2:
639 if (opcode[1] == 0x99) {
640 get_user(*((__u16 *) (opcode+2)), location+1);
641 signal = math_emu_srnm(opcode, regs);
642 } else if (opcode[1] == 0x9c) {
643 get_user(*((__u16 *) (opcode+2)), location+1);
644 signal = math_emu_stfpc(opcode, regs);
645 } else if (opcode[1] == 0x9d) {
646 get_user(*((__u16 *) (opcode+2)), location+1);
647 signal = math_emu_lfpc(opcode, regs);
648 } else
649 signal = SIGILL;
650 break;
651 default:
652 signal = SIGILL;
653 break;
654 }
655 }
656#endif
657 if (current->thread.fp_regs.fpc & FPC_DXC_MASK)
658 signal = SIGFPE;
659 else
660 signal = SIGILL;
661 if (signal == SIGFPE)
662 do_fp_trap(regs, location,
663 current->thread.fp_regs.fpc, interruption_code);
664 else if (signal) {
665 siginfo_t info;
666 info.si_signo = signal;
667 info.si_errno = 0;
668 info.si_code = ILL_ILLOPN;
669 info.si_addr = location;
670 do_trap(interruption_code, signal,
671 "data exception", regs, &info);
672 }
673}
674
675asmlinkage void space_switch_exception(struct pt_regs * regs, long int_code)
676{
677 siginfo_t info;
678
679 /* Set user psw back to home space mode. */
680 if (regs->psw.mask & PSW_MASK_PSTATE)
681 regs->psw.mask |= PSW_ASC_HOME;
682 /* Send SIGILL. */
683 info.si_signo = SIGILL;
684 info.si_errno = 0;
685 info.si_code = ILL_PRVOPC;
686 info.si_addr = get_check_address(regs);
687 do_trap(int_code, SIGILL, "space switch event", regs, &info);
688}
689
690asmlinkage void kernel_stack_overflow(struct pt_regs * regs)
691{
Heiko Carstens77eb65c2005-06-21 17:16:28 -0700692 bust_spinlocks(1);
693 printk("Kernel stack overflow.\n");
694 show_regs(regs);
695 bust_spinlocks(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 panic("Corrupt kernel stack, can't continue.");
697}
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699/* init is done in lowcore.S and head.S */
700
701void __init trap_init(void)
702{
703 int i;
704
705 for (i = 0; i < 128; i++)
706 pgm_check_table[i] = &default_trap_handler;
707 pgm_check_table[1] = &illegal_op;
708 pgm_check_table[2] = &privileged_op;
709 pgm_check_table[3] = &execute_exception;
710 pgm_check_table[4] = &do_protection_exception;
711 pgm_check_table[5] = &addressing_exception;
712 pgm_check_table[6] = &specification_exception;
713 pgm_check_table[7] = &data_exception;
714 pgm_check_table[8] = &overflow_exception;
715 pgm_check_table[9] = &divide_exception;
716 pgm_check_table[0x0A] = &overflow_exception;
717 pgm_check_table[0x0B] = &divide_exception;
718 pgm_check_table[0x0C] = &hfp_overflow_exception;
719 pgm_check_table[0x0D] = &hfp_underflow_exception;
720 pgm_check_table[0x0E] = &hfp_significance_exception;
721 pgm_check_table[0x0F] = &hfp_divide_exception;
722 pgm_check_table[0x10] = &do_dat_exception;
723 pgm_check_table[0x11] = &do_dat_exception;
724 pgm_check_table[0x12] = &translation_exception;
725 pgm_check_table[0x13] = &special_op_exception;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800726#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 pgm_check_table[0x38] = &do_dat_exception;
728 pgm_check_table[0x39] = &do_dat_exception;
729 pgm_check_table[0x3A] = &do_dat_exception;
730 pgm_check_table[0x3B] = &do_dat_exception;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800731#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 pgm_check_table[0x15] = &operand_exception;
733 pgm_check_table[0x1C] = &space_switch_exception;
734 pgm_check_table[0x1D] = &hfp_sqrt_exception;
735 pgm_check_table[0x40] = &do_monitor_call;
Heiko Carstens29b08d22006-12-04 15:40:40 +0100736 pfault_irq_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}