traps.c 22.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  arch/s390/kernel/traps.c
 *
 *  S390 version
 *    Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
 *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
 *               Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
 *
 *  Derived from "arch/i386/kernel/traps.c"
 *    Copyright (C) 1991, 1992 Linus Torvalds
 */

/*
 * 'Traps.c' handles hardware traps and faults after we have saved some
 * state in 'asm.s'.
 */
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
21
#include <linux/tracehook.h>
L
Linus Torvalds 已提交
22 23 24 25 26
#include <linux/timer.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <linux/interrupt.h>
27
#include <linux/seq_file.h>
L
Linus Torvalds 已提交
28 29
#include <linux/delay.h>
#include <linux/module.h>
30
#include <linux/kdebug.h>
L
Linus Torvalds 已提交
31
#include <linux/kallsyms.h>
32
#include <linux/reboot.h>
M
Michael Grundy 已提交
33
#include <linux/kprobes.h>
H
Heiko Carstens 已提交
34
#include <linux/bug.h>
35
#include <linux/utsname.h>
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44
#include <asm/system.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/atomic.h>
#include <asm/mathemu.h>
#include <asm/cpcmd.h>
#include <asm/s390_ext.h>
#include <asm/lowcore.h>
#include <asm/debug.h>
45
#include "entry.h"
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58

pgm_check_handler_t *pgm_check_table[128];

#ifdef CONFIG_SYSCTL
#ifdef CONFIG_PROCESS_DEBUG
int sysctl_userprocess_debug = 1;
#else
int sysctl_userprocess_debug = 0;
#endif
#endif

extern pgm_check_handler_t do_protection_exception;
extern pgm_check_handler_t do_dat_exception;
M
Martin Schwidefsky 已提交
59
extern pgm_check_handler_t do_asce_exception;
L
Linus Torvalds 已提交
60 61 62

#define stack_pointer ({ void **sp; asm("la %0,0(15)" : "=&d" (sp)); sp; })

63
#ifndef CONFIG_64BIT
64
#define LONG "%08lx "
L
Linus Torvalds 已提交
65 66
#define FOURLONG "%08lx %08lx %08lx %08lx\n"
static int kstack_depth_to_print = 12;
67
#else /* CONFIG_64BIT */
68
#define LONG "%016lx "
L
Linus Torvalds 已提交
69 70
#define FOURLONG "%016lx %016lx %016lx %016lx\n"
static int kstack_depth_to_print = 20;
71
#endif /* CONFIG_64BIT */
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117

/*
 * For show_trace we have tree different stack to consider:
 *   - the panic stack which is used if the kernel stack has overflown
 *   - the asynchronous interrupt stack (cpu related)
 *   - the synchronous kernel stack (process related)
 * The stack trace can start at any of the three stack and can potentially
 * touch all of them. The order is: panic stack, async stack, sync stack.
 */
static unsigned long
__show_trace(unsigned long sp, unsigned long low, unsigned long high)
{
	struct stack_frame *sf;
	struct pt_regs *regs;

	while (1) {
		sp = sp & PSW_ADDR_INSN;
		if (sp < low || sp > high - sizeof(*sf))
			return sp;
		sf = (struct stack_frame *) sp;
		printk("([<%016lx>] ", sf->gprs[8] & PSW_ADDR_INSN);
		print_symbol("%s)\n", sf->gprs[8] & PSW_ADDR_INSN);
		/* Follow the backchain. */
		while (1) {
			low = sp;
			sp = sf->back_chain & PSW_ADDR_INSN;
			if (!sp)
				break;
			if (sp <= low || sp > high - sizeof(*sf))
				return sp;
			sf = (struct stack_frame *) sp;
			printk(" [<%016lx>] ", sf->gprs[8] & PSW_ADDR_INSN);
			print_symbol("%s\n", sf->gprs[8] & PSW_ADDR_INSN);
		}
		/* Zero backchain detected, check for interrupt frame. */
		sp = (unsigned long) (sf + 1);
		if (sp <= low || sp > high - sizeof(*regs))
			return sp;
		regs = (struct pt_regs *) sp;
		printk(" [<%016lx>] ", regs->psw.addr & PSW_ADDR_INSN);
		print_symbol("%s\n", regs->psw.addr & PSW_ADDR_INSN);
		low = sp;
		sp = regs->gprs[15];
	}
}

118
static void show_trace(struct task_struct *task, unsigned long *stack)
L
Linus Torvalds 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
{
	register unsigned long __r15 asm ("15");
	unsigned long sp;

	sp = (unsigned long) stack;
	if (!sp)
		sp = task ? task->thread.ksp : __r15;
	printk("Call Trace:\n");
#ifdef CONFIG_CHECK_STACK
	sp = __show_trace(sp, S390_lowcore.panic_stack - 4096,
			  S390_lowcore.panic_stack);
#endif
	sp = __show_trace(sp, S390_lowcore.async_stack - ASYNC_SIZE,
			  S390_lowcore.async_stack);
	if (task)
A
Al Viro 已提交
134 135
		__show_trace(sp, (unsigned long) task_stack_page(task),
			     (unsigned long) task_stack_page(task) + THREAD_SIZE);
L
Linus Torvalds 已提交
136 137 138
	else
		__show_trace(sp, S390_lowcore.thread_info,
			     S390_lowcore.thread_info + THREAD_SIZE);
139 140 141
	if (!task)
		task = current;
	debug_show_held_locks(task);
L
Linus Torvalds 已提交
142 143 144 145 146 147 148 149 150
}

void show_stack(struct task_struct *task, unsigned long *sp)
{
	register unsigned long * __r15 asm ("15");
	unsigned long *stack;
	int i;

	if (!sp)
H
Heiko Carstens 已提交
151 152 153
		stack = task ? (unsigned long *) task->thread.ksp : __r15;
	else
		stack = sp;
L
Linus Torvalds 已提交
154 155 156 157 158 159

	for (i = 0; i < kstack_depth_to_print; i++) {
		if (((addr_t) stack & (THREAD_SIZE-1)) == 0)
			break;
		if (i && ((i * sizeof (long) % 32) == 0))
			printk("\n       ");
160
		printk(LONG, *stack++);
L
Linus Torvalds 已提交
161 162 163 164 165
	}
	printk("\n");
	show_trace(task, sp);
}

166
static void show_last_breaking_event(struct pt_regs *regs)
167
{
168
#ifdef CONFIG_64BIT
169 170 171 172
	printk("Last Breaking-Event-Address:\n");
	printk(" [<%016lx>] ", regs->args[0] & PSW_ADDR_INSN);
	print_symbol("%s\n", regs->args[0] & PSW_ADDR_INSN);
#endif
173
}
174

L
Linus Torvalds 已提交
175 176 177 178 179
/*
 * The architecture-independent dump_stack generator
 */
void dump_stack(void)
{
180 181 182 183 184 185 186 187
	printk("CPU: %d %s %s %.*s\n",
	       task_thread_info(current)->cpu, print_tainted(),
	       init_utsname()->release,
	       (int)strcspn(init_utsname()->version, " "),
	       init_utsname()->version);
	printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
	       current->comm, current->pid, current,
	       (void *) current->thread.ksp);
H
Heiko Carstens 已提交
188
	show_stack(NULL, NULL);
L
Linus Torvalds 已提交
189 190 191
}
EXPORT_SYMBOL(dump_stack);

192 193 194 195 196
static inline int mask_bits(struct pt_regs *regs, unsigned long bits)
{
	return (regs->psw.mask & bits) / ((~bits + 1) & bits);
}

L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205
void show_registers(struct pt_regs *regs)
{
	char *mode;

	mode = (regs->psw.mask & PSW_MASK_PSTATE) ? "User" : "Krnl";
	printk("%s PSW : %p %p",
	       mode, (void *) regs->psw.mask,
	       (void *) regs->psw.addr);
	print_symbol(" (%s)\n", regs->psw.addr & PSW_ADDR_INSN);
206 207 208 209 210 211 212 213 214 215 216
	printk("           R:%x T:%x IO:%x EX:%x Key:%x M:%x W:%x "
	       "P:%x AS:%x CC:%x PM:%x", mask_bits(regs, PSW_MASK_PER),
	       mask_bits(regs, PSW_MASK_DAT), mask_bits(regs, PSW_MASK_IO),
	       mask_bits(regs, PSW_MASK_EXT), mask_bits(regs, PSW_MASK_KEY),
	       mask_bits(regs, PSW_MASK_MCHECK), mask_bits(regs, PSW_MASK_WAIT),
	       mask_bits(regs, PSW_MASK_PSTATE), mask_bits(regs, PSW_MASK_ASC),
	       mask_bits(regs, PSW_MASK_CC), mask_bits(regs, PSW_MASK_PM));
#ifdef CONFIG_64BIT
	printk(" EA:%x", mask_bits(regs, PSW_BASE_BITS));
#endif
	printk("\n%s GPRS: " FOURLONG, mode,
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224
	       regs->gprs[0], regs->gprs[1], regs->gprs[2], regs->gprs[3]);
	printk("           " FOURLONG,
	       regs->gprs[4], regs->gprs[5], regs->gprs[6], regs->gprs[7]);
	printk("           " FOURLONG,
	       regs->gprs[8], regs->gprs[9], regs->gprs[10], regs->gprs[11]);
	printk("           " FOURLONG,
	       regs->gprs[12], regs->gprs[13], regs->gprs[14], regs->gprs[15]);

225
	show_code(regs);
L
Linus Torvalds 已提交
226 227
}	

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
void show_regs(struct pt_regs *regs)
{
	print_modules();
	printk("CPU: %d %s %s %.*s\n",
	       task_thread_info(current)->cpu, print_tainted(),
	       init_utsname()->release,
	       (int)strcspn(init_utsname()->version, " "),
	       init_utsname()->version);
	printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
	       current->comm, current->pid, current,
	       (void *) current->thread.ksp);
	show_registers(regs);
	/* Show stack backtrace if pt_regs is from kernel mode */
	if (!(regs->psw.mask & PSW_MASK_PSTATE))
		show_trace(NULL, (unsigned long *) regs->gprs[15]);
	show_last_breaking_event(regs);
}

L
Linus Torvalds 已提交
246
/* This is called from fs/proc/array.c */
247
void task_show_regs(struct seq_file *m, struct task_struct *task)
L
Linus Torvalds 已提交
248 249 250
{
	struct pt_regs *regs;

A
Al Viro 已提交
251
	regs = task_pt_regs(task);
252
	seq_printf(m, "task: %p, ksp: %p\n",
L
Linus Torvalds 已提交
253
		       task, (void *)task->thread.ksp);
254
	seq_printf(m, "User PSW : %p %p\n",
L
Linus Torvalds 已提交
255 256
		       (void *) regs->psw.mask, (void *)regs->psw.addr);

257
	seq_printf(m, "User GPRS: " FOURLONG,
L
Linus Torvalds 已提交
258 259
			  regs->gprs[0], regs->gprs[1],
			  regs->gprs[2], regs->gprs[3]);
260
	seq_printf(m, "           " FOURLONG,
L
Linus Torvalds 已提交
261 262
			  regs->gprs[4], regs->gprs[5],
			  regs->gprs[6], regs->gprs[7]);
263
	seq_printf(m, "           " FOURLONG,
L
Linus Torvalds 已提交
264 265
			  regs->gprs[8], regs->gprs[9],
			  regs->gprs[10], regs->gprs[11]);
266
	seq_printf(m, "           " FOURLONG,
L
Linus Torvalds 已提交
267 268
			  regs->gprs[12], regs->gprs[13],
			  regs->gprs[14], regs->gprs[15]);
269
	seq_printf(m, "User ACRS: %08x %08x %08x %08x\n",
L
Linus Torvalds 已提交
270 271
			  task->thread.acrs[0], task->thread.acrs[1],
			  task->thread.acrs[2], task->thread.acrs[3]);
272
	seq_printf(m, "           %08x %08x %08x %08x\n",
L
Linus Torvalds 已提交
273 274
			  task->thread.acrs[4], task->thread.acrs[5],
			  task->thread.acrs[6], task->thread.acrs[7]);
275
	seq_printf(m, "           %08x %08x %08x %08x\n",
L
Linus Torvalds 已提交
276 277
			  task->thread.acrs[8], task->thread.acrs[9],
			  task->thread.acrs[10], task->thread.acrs[11]);
278
	seq_printf(m, "           %08x %08x %08x %08x\n",
L
Linus Torvalds 已提交
279 280 281 282
			  task->thread.acrs[12], task->thread.acrs[13],
			  task->thread.acrs[14], task->thread.acrs[15]);
}

283
static DEFINE_SPINLOCK(die_lock);
L
Linus Torvalds 已提交
284 285 286 287 288

void die(const char * str, struct pt_regs * regs, long err)
{
	static int die_counter;

289
	oops_enter();
L
Linus Torvalds 已提交
290 291 292 293
	debug_stop_all();
	console_verbose();
	spin_lock_irq(&die_lock);
	bust_spinlocks(1);
294 295 296 297 298
	printk("%s: %04lx [#%d] ", str, err & 0xffff, ++die_counter);
#ifdef CONFIG_PREEMPT
	printk("PREEMPT ");
#endif
#ifdef CONFIG_SMP
299 300 301 302
	printk("SMP ");
#endif
#ifdef CONFIG_DEBUG_PAGEALLOC
	printk("DEBUG_PAGEALLOC");
303 304
#endif
	printk("\n");
305
	notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
306
	show_regs(regs);
L
Linus Torvalds 已提交
307
	bust_spinlocks(0);
308
	add_taint(TAINT_DIE);
309
	spin_unlock_irq(&die_lock);
L
Linus Torvalds 已提交
310 311 312 313
	if (in_interrupt())
		panic("Fatal exception in interrupt");
	if (panic_on_oops)
		panic("Fatal exception: panic_on_oops");
314 315
	oops_exit();
	do_exit(SIGSEGV);
L
Linus Torvalds 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
}

static void inline
report_user_fault(long interruption_code, struct pt_regs *regs)
{
#if defined(CONFIG_SYSCTL)
	if (!sysctl_userprocess_debug)
		return;
#endif
#if defined(CONFIG_SYSCTL) || defined(CONFIG_PROCESS_DEBUG)
	printk("User process fault: interruption code 0x%lX\n",
	       interruption_code);
	show_regs(regs);
#endif
}

H
Heiko Carstens 已提交
332 333 334 335 336
int is_valid_bugaddr(unsigned long addr)
{
	return 1;
}

M
Michael Grundy 已提交
337 338 339
static void __kprobes inline do_trap(long interruption_code, int signr,
					char *str, struct pt_regs *regs,
					siginfo_t *info)
L
Linus Torvalds 已提交
340 341 342 343 344 345 346 347
{
	/*
	 * We got all needed information from the lowcore and can
	 * now safely switch on interrupts.
	 */
        if (regs->psw.mask & PSW_MASK_PSTATE)
		local_irq_enable();

M
Michael Grundy 已提交
348 349 350 351
	if (notify_die(DIE_TRAP, str, regs, interruption_code,
				interruption_code, signr) == NOTIFY_STOP)
		return;

L
Linus Torvalds 已提交
352 353 354 355 356 357 358 359 360 361 362
        if (regs->psw.mask & PSW_MASK_PSTATE) {
                struct task_struct *tsk = current;

                tsk->thread.trap_no = interruption_code & 0xffff;
		force_sig_info(signr, info, tsk);
		report_user_fault(interruption_code, regs);
        } else {
                const struct exception_table_entry *fixup;
                fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
                if (fixup)
                        regs->psw.addr = fixup->fixup | PSW_ADDR_AMODE;
H
Heiko Carstens 已提交
363 364 365
		else {
			enum bug_trap_type btt;

366
			btt = report_bug(regs->psw.addr & PSW_ADDR_INSN, regs);
H
Heiko Carstens 已提交
367 368 369 370
			if (btt == BUG_TRAP_TYPE_WARN)
				return;
			die(str, regs, interruption_code);
		}
L
Linus Torvalds 已提交
371 372 373
        }
}

H
Heiko Carstens 已提交
374
static inline void __user *get_check_address(struct pt_regs *regs)
L
Linus Torvalds 已提交
375
{
H
Heiko Carstens 已提交
376
	return (void __user *)((regs->psw.addr-S390_lowcore.pgm_ilc) & PSW_ADDR_INSN);
L
Linus Torvalds 已提交
377 378
}

M
Michael Grundy 已提交
379
void __kprobes do_single_step(struct pt_regs *regs)
L
Linus Torvalds 已提交
380
{
M
Michael Grundy 已提交
381 382 383 384
	if (notify_die(DIE_SSTEP, "sstep", regs, 0, 0,
					SIGTRAP) == NOTIFY_STOP){
		return;
	}
385
	if (tracehook_consider_fatal_signal(current, SIGTRAP))
L
Linus Torvalds 已提交
386 387 388
		force_sig(SIGTRAP, current);
}

389
static void default_trap_handler(struct pt_regs * regs, long interruption_code)
L
Linus Torvalds 已提交
390 391 392 393
{
        if (regs->psw.mask & PSW_MASK_PSTATE) {
		local_irq_enable();
		report_user_fault(interruption_code, regs);
394
		do_exit(SIGSEGV);
L
Linus Torvalds 已提交
395 396 397 398 399
	} else
		die("Unknown program exception", regs, interruption_code);
}

#define DO_ERROR_INFO(signr, str, name, sicode, siaddr) \
400
static void name(struct pt_regs * regs, long interruption_code) \
L
Linus Torvalds 已提交
401 402 403 404 405
{ \
        siginfo_t info; \
        info.si_signo = signr; \
        info.si_errno = 0; \
        info.si_code = sicode; \
H
Heiko Carstens 已提交
406
	info.si_addr = siaddr; \
L
Linus Torvalds 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
        do_trap(interruption_code, signr, str, regs, &info); \
}

DO_ERROR_INFO(SIGILL, "addressing exception", addressing_exception,
	      ILL_ILLADR, get_check_address(regs))
DO_ERROR_INFO(SIGILL,  "execute exception", execute_exception,
	      ILL_ILLOPN, get_check_address(regs))
DO_ERROR_INFO(SIGFPE,  "fixpoint divide exception", divide_exception,
	      FPE_INTDIV, get_check_address(regs))
DO_ERROR_INFO(SIGFPE,  "fixpoint overflow exception", overflow_exception,
	      FPE_INTOVF, get_check_address(regs))
DO_ERROR_INFO(SIGFPE,  "HFP overflow exception", hfp_overflow_exception,
	      FPE_FLTOVF, get_check_address(regs))
DO_ERROR_INFO(SIGFPE,  "HFP underflow exception", hfp_underflow_exception,
	      FPE_FLTUND, get_check_address(regs))
DO_ERROR_INFO(SIGFPE,  "HFP significance exception", hfp_significance_exception,
	      FPE_FLTRES, get_check_address(regs))
DO_ERROR_INFO(SIGFPE,  "HFP divide exception", hfp_divide_exception,
	      FPE_FLTDIV, get_check_address(regs))
DO_ERROR_INFO(SIGFPE,  "HFP square root exception", hfp_sqrt_exception,
	      FPE_FLTINV, get_check_address(regs))
DO_ERROR_INFO(SIGILL,  "operand exception", operand_exception,
	      ILL_ILLOPN, get_check_address(regs))
DO_ERROR_INFO(SIGILL,  "privileged operation", privileged_op,
	      ILL_PRVOPC, get_check_address(regs))
DO_ERROR_INFO(SIGILL,  "special operation exception", special_op_exception,
	      ILL_ILLOPN, get_check_address(regs))
DO_ERROR_INFO(SIGILL,  "translation exception", translation_exception,
	      ILL_ILLOPN, get_check_address(regs))

static inline void
H
Heiko Carstens 已提交
438
do_fp_trap(struct pt_regs *regs, void __user *location,
L
Linus Torvalds 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
           int fpc, long interruption_code)
{
	siginfo_t si;

	si.si_signo = SIGFPE;
	si.si_errno = 0;
	si.si_addr = location;
	si.si_code = 0;
	/* FPC[2] is Data Exception Code */
	if ((fpc & 0x00000300) == 0) {
		/* bits 6 and 7 of DXC are 0 iff IEEE exception */
		if (fpc & 0x8000) /* invalid fp operation */
			si.si_code = FPE_FLTINV;
		else if (fpc & 0x4000) /* div by 0 */
			si.si_code = FPE_FLTDIV;
		else if (fpc & 0x2000) /* overflow */
			si.si_code = FPE_FLTOVF;
		else if (fpc & 0x1000) /* underflow */
			si.si_code = FPE_FLTUND;
		else if (fpc & 0x0800) /* inexact */
			si.si_code = FPE_FLTRES;
	}
	current->thread.ieee_instruction_pointer = (addr_t) location;
	do_trap(interruption_code, SIGFPE,
		"floating point exception", regs, &si);
}

466
static void illegal_op(struct pt_regs * regs, long interruption_code)
L
Linus Torvalds 已提交
467 468 469
{
	siginfo_t info;
        __u8 opcode[6];
H
Heiko Carstens 已提交
470
	__u16 __user *location;
L
Linus Torvalds 已提交
471 472
	int signal = 0;

H
Heiko Carstens 已提交
473
	location = get_check_address(regs);
L
Linus Torvalds 已提交
474 475 476 477 478 479 480 481 482

	/*
	 * We got all needed information from the lowcore and can
	 * now safely switch on interrupts.
	 */
	if (regs->psw.mask & PSW_MASK_PSTATE)
		local_irq_enable();

	if (regs->psw.mask & PSW_MASK_PSTATE) {
H
Heiko Carstens 已提交
483 484
		if (get_user(*((__u16 *) opcode), (__u16 __user *) location))
			return;
L
Linus Torvalds 已提交
485
		if (*((__u16 *) opcode) == S390_BREAKPOINT_U16) {
486
			if (tracehook_consider_fatal_signal(current, SIGTRAP))
L
Linus Torvalds 已提交
487 488 489 490 491
				force_sig(SIGTRAP, current);
			else
				signal = SIGILL;
#ifdef CONFIG_MATHEMU
		} else if (opcode[0] == 0xb3) {
H
Heiko Carstens 已提交
492 493
			if (get_user(*((__u16 *) (opcode+2)), location+1))
				return;
L
Linus Torvalds 已提交
494 495
			signal = math_emu_b3(opcode, regs);
                } else if (opcode[0] == 0xed) {
H
Heiko Carstens 已提交
496 497 498
			if (get_user(*((__u32 *) (opcode+2)),
				     (__u32 __user *)(location+1)))
				return;
L
Linus Torvalds 已提交
499 500
			signal = math_emu_ed(opcode, regs);
		} else if (*((__u16 *) opcode) == 0xb299) {
H
Heiko Carstens 已提交
501 502
			if (get_user(*((__u16 *) (opcode+2)), location+1))
				return;
L
Linus Torvalds 已提交
503 504
			signal = math_emu_srnm(opcode, regs);
		} else if (*((__u16 *) opcode) == 0xb29c) {
H
Heiko Carstens 已提交
505 506
			if (get_user(*((__u16 *) (opcode+2)), location+1))
				return;
L
Linus Torvalds 已提交
507 508
			signal = math_emu_stfpc(opcode, regs);
		} else if (*((__u16 *) opcode) == 0xb29d) {
H
Heiko Carstens 已提交
509 510
			if (get_user(*((__u16 *) (opcode+2)), location+1))
				return;
L
Linus Torvalds 已提交
511 512 513 514
			signal = math_emu_lfpc(opcode, regs);
#endif
		} else
			signal = SIGILL;
515 516 517 518 519 520 521 522 523
	} else {
		/*
		 * If we get an illegal op in kernel mode, send it through the
		 * kprobes notifier. If kprobes doesn't pick it up, SIGILL
		 */
		if (notify_die(DIE_BPT, "bpt", regs, interruption_code,
			       3, SIGTRAP) != NOTIFY_STOP)
			signal = SIGILL;
	}
L
Linus Torvalds 已提交
524 525 526 527 528 529 530 531 532

#ifdef CONFIG_MATHEMU
        if (signal == SIGFPE)
		do_fp_trap(regs, location,
                           current->thread.fp_regs.fpc, interruption_code);
        else if (signal == SIGSEGV) {
		info.si_signo = signal;
		info.si_errno = 0;
		info.si_code = SEGV_MAPERR;
A
Al Viro 已提交
533
		info.si_addr = (void __user *) location;
L
Linus Torvalds 已提交
534 535 536 537 538 539 540 541
		do_trap(interruption_code, signal,
			"user address fault", regs, &info);
	} else
#endif
        if (signal) {
		info.si_signo = signal;
		info.si_errno = 0;
		info.si_code = ILL_ILLOPC;
A
Al Viro 已提交
542
		info.si_addr = (void __user *) location;
L
Linus Torvalds 已提交
543 544 545 546 547 548 549 550 551 552 553
		do_trap(interruption_code, signal,
			"illegal operation", regs, &info);
	}
}


#ifdef CONFIG_MATHEMU
asmlinkage void 
specification_exception(struct pt_regs * regs, long interruption_code)
{
        __u8 opcode[6];
A
Al Viro 已提交
554
	__u16 __user *location = NULL;
L
Linus Torvalds 已提交
555 556
	int signal = 0;

A
Al Viro 已提交
557
	location = (__u16 __user *) get_check_address(regs);
L
Linus Torvalds 已提交
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615

	/*
	 * We got all needed information from the lowcore and can
	 * now safely switch on interrupts.
	 */
        if (regs->psw.mask & PSW_MASK_PSTATE)
		local_irq_enable();

        if (regs->psw.mask & PSW_MASK_PSTATE) {
		get_user(*((__u16 *) opcode), location);
		switch (opcode[0]) {
		case 0x28: /* LDR Rx,Ry   */
			signal = math_emu_ldr(opcode);
			break;
		case 0x38: /* LER Rx,Ry   */
			signal = math_emu_ler(opcode);
			break;
		case 0x60: /* STD R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_std(opcode, regs);
			break;
		case 0x68: /* LD R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_ld(opcode, regs);
			break;
		case 0x70: /* STE R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_ste(opcode, regs);
			break;
		case 0x78: /* LE R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_le(opcode, regs);
			break;
		default:
			signal = SIGILL;
			break;
                }
        } else
		signal = SIGILL;

        if (signal == SIGFPE)
		do_fp_trap(regs, location,
                           current->thread.fp_regs.fpc, interruption_code);
        else if (signal) {
		siginfo_t info;
		info.si_signo = signal;
		info.si_errno = 0;
		info.si_code = ILL_ILLOPN;
		info.si_addr = location;
		do_trap(interruption_code, signal, 
			"specification exception", regs, &info);
	}
}
#else
DO_ERROR_INFO(SIGILL, "specification exception", specification_exception,
	      ILL_ILLOPN, get_check_address(regs));
#endif

616
static void data_exception(struct pt_regs * regs, long interruption_code)
L
Linus Torvalds 已提交
617
{
H
Heiko Carstens 已提交
618
	__u16 __user *location;
L
Linus Torvalds 已提交
619 620
	int signal = 0;

H
Heiko Carstens 已提交
621
	location = get_check_address(regs);
L
Linus Torvalds 已提交
622 623 624 625 626 627 628 629 630

	/*
	 * We got all needed information from the lowcore and can
	 * now safely switch on interrupts.
	 */
	if (regs->psw.mask & PSW_MASK_PSTATE)
		local_irq_enable();

	if (MACHINE_HAS_IEEE)
631
		asm volatile("stfpc %0" : "=m" (current->thread.fp_regs.fpc));
L
Linus Torvalds 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665

#ifdef CONFIG_MATHEMU
        else if (regs->psw.mask & PSW_MASK_PSTATE) {
        	__u8 opcode[6];
		get_user(*((__u16 *) opcode), location);
		switch (opcode[0]) {
		case 0x28: /* LDR Rx,Ry   */
			signal = math_emu_ldr(opcode);
			break;
		case 0x38: /* LER Rx,Ry   */
			signal = math_emu_ler(opcode);
			break;
		case 0x60: /* STD R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_std(opcode, regs);
			break;
		case 0x68: /* LD R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_ld(opcode, regs);
			break;
		case 0x70: /* STE R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_ste(opcode, regs);
			break;
		case 0x78: /* LE R,D(X,B) */
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_le(opcode, regs);
			break;
		case 0xb3:
			get_user(*((__u16 *) (opcode+2)), location+1);
			signal = math_emu_b3(opcode, regs);
			break;
                case 0xed:
			get_user(*((__u32 *) (opcode+2)),
A
Al Viro 已提交
666
				 (__u32 __user *)(location+1));
L
Linus Torvalds 已提交
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
			signal = math_emu_ed(opcode, regs);
			break;
	        case 0xb2:
			if (opcode[1] == 0x99) {
				get_user(*((__u16 *) (opcode+2)), location+1);
				signal = math_emu_srnm(opcode, regs);
			} else if (opcode[1] == 0x9c) {
				get_user(*((__u16 *) (opcode+2)), location+1);
				signal = math_emu_stfpc(opcode, regs);
			} else if (opcode[1] == 0x9d) {
				get_user(*((__u16 *) (opcode+2)), location+1);
				signal = math_emu_lfpc(opcode, regs);
			} else
				signal = SIGILL;
			break;
		default:
			signal = SIGILL;
			break;
                }
        }
#endif 
	if (current->thread.fp_regs.fpc & FPC_DXC_MASK)
		signal = SIGFPE;
	else
		signal = SIGILL;
        if (signal == SIGFPE)
		do_fp_trap(regs, location,
                           current->thread.fp_regs.fpc, interruption_code);
        else if (signal) {
		siginfo_t info;
		info.si_signo = signal;
		info.si_errno = 0;
		info.si_code = ILL_ILLOPN;
		info.si_addr = location;
		do_trap(interruption_code, signal, 
			"data exception", regs, &info);
	}
}

706
static void space_switch_exception(struct pt_regs * regs, long int_code)
L
Linus Torvalds 已提交
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
{
        siginfo_t info;

	/* Set user psw back to home space mode. */
	if (regs->psw.mask & PSW_MASK_PSTATE)
		regs->psw.mask |= PSW_ASC_HOME;
	/* Send SIGILL. */
        info.si_signo = SIGILL;
        info.si_errno = 0;
        info.si_code = ILL_PRVOPC;
        info.si_addr = get_check_address(regs);
        do_trap(int_code, SIGILL, "space switch event", regs, &info);
}

asmlinkage void kernel_stack_overflow(struct pt_regs * regs)
{
723 724 725 726
	bust_spinlocks(1);
	printk("Kernel stack overflow.\n");
	show_regs(regs);
	bust_spinlocks(0);
L
Linus Torvalds 已提交
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
	panic("Corrupt kernel stack, can't continue.");
}

/* init is done in lowcore.S and head.S */

void __init trap_init(void)
{
        int i;

        for (i = 0; i < 128; i++)
          pgm_check_table[i] = &default_trap_handler;
        pgm_check_table[1] = &illegal_op;
        pgm_check_table[2] = &privileged_op;
        pgm_check_table[3] = &execute_exception;
        pgm_check_table[4] = &do_protection_exception;
        pgm_check_table[5] = &addressing_exception;
        pgm_check_table[6] = &specification_exception;
        pgm_check_table[7] = &data_exception;
        pgm_check_table[8] = &overflow_exception;
        pgm_check_table[9] = &divide_exception;
        pgm_check_table[0x0A] = &overflow_exception;
        pgm_check_table[0x0B] = &divide_exception;
        pgm_check_table[0x0C] = &hfp_overflow_exception;
        pgm_check_table[0x0D] = &hfp_underflow_exception;
        pgm_check_table[0x0E] = &hfp_significance_exception;
        pgm_check_table[0x0F] = &hfp_divide_exception;
        pgm_check_table[0x10] = &do_dat_exception;
        pgm_check_table[0x11] = &do_dat_exception;
        pgm_check_table[0x12] = &translation_exception;
        pgm_check_table[0x13] = &special_op_exception;
757
#ifdef CONFIG_64BIT
M
Martin Schwidefsky 已提交
758
	pgm_check_table[0x38] = &do_asce_exception;
L
Linus Torvalds 已提交
759 760 761
	pgm_check_table[0x39] = &do_dat_exception;
	pgm_check_table[0x3A] = &do_dat_exception;
        pgm_check_table[0x3B] = &do_dat_exception;
762
#endif /* CONFIG_64BIT */
L
Linus Torvalds 已提交
763 764 765
        pgm_check_table[0x15] = &operand_exception;
        pgm_check_table[0x1C] = &space_switch_exception;
        pgm_check_table[0x1D] = &hfp_sqrt_exception;
H
Heiko Carstens 已提交
766
	pfault_irq_init();
L
Linus Torvalds 已提交
767
}