Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Architecture-specific trap handling. |
| 4 | * |
| 5 | * Copyright (C) 1998-2003 Hewlett-Packard Co |
| 6 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 7 | * |
| 8 | * 05/12/00 grao <goutham.rao@intel.com> : added isr in siginfo for SIGFPE |
| 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 13 | #include <linux/sched/signal.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 14 | #include <linux/sched/debug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/tty.h> |
| 16 | #include <linux/vt_kern.h> /* For unblank_screen() */ |
Paul Gortmaker | e708817 | 2016-07-23 14:01:45 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
| 18 | #include <linux/extable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/hardirq.h> |
Prasanna S Panchamukhi | 1f7ad57 | 2005-09-06 15:19:30 -0700 | [diff] [blame] | 20 | #include <linux/kprobes.h> |
Horms | b05de01 | 2006-02-15 17:23:09 +0900 | [diff] [blame] | 21 | #include <linux/delay.h> /* for ssleep() */ |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 22 | #include <linux/kdebug.h> |
Paul Gortmaker | 82ed1ac9 | 2016-09-19 18:28:25 -0400 | [diff] [blame] | 23 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include <asm/fpswa.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/intrinsics.h> |
| 27 | #include <asm/processor.h> |
Paul Gortmaker | 82ed1ac9 | 2016-09-19 18:28:25 -0400 | [diff] [blame] | 28 | #include <asm/exception.h> |
David Howells | c140d87 | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 29 | #include <asm/setup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | fpswa_interface_t *fpswa_interface; |
| 32 | EXPORT_SYMBOL(fpswa_interface); |
| 33 | |
| 34 | void __init |
| 35 | trap_init (void) |
| 36 | { |
| 37 | if (ia64_boot_param->fpswa) |
| 38 | /* FPSWA fixup: make the interface pointer a kernel virtual address: */ |
| 39 | fpswa_interface = __va(ia64_boot_param->fpswa); |
| 40 | } |
| 41 | |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 42 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | die (const char *str, struct pt_regs *regs, long err) |
| 44 | { |
| 45 | static struct { |
| 46 | spinlock_t lock; |
| 47 | u32 lock_owner; |
| 48 | int lock_owner_depth; |
| 49 | } die = { |
Milind Arun Choudhary | 8737d59 | 2007-04-15 22:51:23 +0530 | [diff] [blame] | 50 | .lock = __SPIN_LOCK_UNLOCKED(die.lock), |
| 51 | .lock_owner = -1, |
| 52 | .lock_owner_depth = 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | }; |
| 54 | static int die_counter; |
| af25e94 | 2005-07-01 23:27:00 -0700 | [diff] [blame] | 55 | int cpu = get_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| af25e94 | 2005-07-01 23:27:00 -0700 | [diff] [blame] | 57 | if (die.lock_owner != cpu) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | console_verbose(); |
| 59 | spin_lock_irq(&die.lock); |
| af25e94 | 2005-07-01 23:27:00 -0700 | [diff] [blame] | 60 | die.lock_owner = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | die.lock_owner_depth = 0; |
| 62 | bust_spinlocks(1); |
| 63 | } |
| af25e94 | 2005-07-01 23:27:00 -0700 | [diff] [blame] | 64 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
| 66 | if (++die.lock_owner_depth < 3) { |
| 67 | printk("%s[%d]: %s %ld [%d]\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 68 | current->comm, task_pid_nr(current), str, err, ++die_counter); |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 69 | if (notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV) |
| 70 | != NOTIFY_STOP) |
| 71 | show_regs(regs); |
| 72 | else |
| 73 | regs = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } else |
| 75 | printk(KERN_ERR "Recursive die() failure, output suppressed\n"); |
| 76 | |
| 77 | bust_spinlocks(0); |
| 78 | die.lock_owner = -1; |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 79 | add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | spin_unlock_irq(&die.lock); |
Horms | b05de01 | 2006-02-15 17:23:09 +0900 | [diff] [blame] | 81 | |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 82 | if (!regs) |
| 83 | return 1; |
| 84 | |
Horms | cea6a4b | 2006-07-30 03:03:34 -0700 | [diff] [blame] | 85 | if (panic_on_oops) |
Horms | 012c437 | 2006-08-13 23:24:22 -0700 | [diff] [blame] | 86 | panic("Fatal exception"); |
Horms | b05de01 | 2006-02-15 17:23:09 +0900 | [diff] [blame] | 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | do_exit(SIGSEGV); |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 89 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 92 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | die_if_kernel (char *str, struct pt_regs *regs, long err) |
| 94 | { |
| 95 | if (!user_mode(regs)) |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 96 | return die(str, regs, err); |
| 97 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void |
Prasanna S Panchamukhi | 1f7ad57 | 2005-09-06 15:19:30 -0700 | [diff] [blame] | 101 | __kprobes ia64_bad_break (unsigned long break_num, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | int sig, code; |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | switch (break_num) { |
| 106 | case 0: /* unknown error (used by GCC for __builtin_abort()) */ |
Anil S Keshavamurthy | 7213b25 | 2005-06-23 00:09:27 -0700 | [diff] [blame] | 107 | if (notify_die(DIE_BREAK, "break 0", regs, break_num, TRAP_BRKPT, SIGTRAP) |
Keith Owens | 9138d58 | 2005-11-07 11:27:13 -0800 | [diff] [blame] | 108 | == NOTIFY_STOP) |
Anil S Keshavamurthy | 7213b25 | 2005-06-23 00:09:27 -0700 | [diff] [blame] | 109 | return; |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 110 | if (die_if_kernel("bugcheck!", regs, break_num)) |
| 111 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | sig = SIGILL; code = ILL_ILLOPC; |
| 113 | break; |
| 114 | |
| 115 | case 1: /* integer divide by zero */ |
| 116 | sig = SIGFPE; code = FPE_INTDIV; |
| 117 | break; |
| 118 | |
| 119 | case 2: /* integer overflow */ |
| 120 | sig = SIGFPE; code = FPE_INTOVF; |
| 121 | break; |
| 122 | |
| 123 | case 3: /* range check/bounds check */ |
| 124 | sig = SIGFPE; code = FPE_FLTSUB; |
| 125 | break; |
| 126 | |
| 127 | case 4: /* null pointer dereference */ |
| 128 | sig = SIGSEGV; code = SEGV_MAPERR; |
| 129 | break; |
| 130 | |
| 131 | case 5: /* misaligned data */ |
| 132 | sig = SIGSEGV; code = BUS_ADRALN; |
| 133 | break; |
| 134 | |
| 135 | case 6: /* decimal overflow */ |
| 136 | sig = SIGFPE; code = __FPE_DECOVF; |
| 137 | break; |
| 138 | |
| 139 | case 7: /* decimal divide by zero */ |
| 140 | sig = SIGFPE; code = __FPE_DECDIV; |
| 141 | break; |
| 142 | |
| 143 | case 8: /* packed decimal error */ |
| 144 | sig = SIGFPE; code = __FPE_DECERR; |
| 145 | break; |
| 146 | |
| 147 | case 9: /* invalid ASCII digit */ |
| 148 | sig = SIGFPE; code = __FPE_INVASC; |
| 149 | break; |
| 150 | |
| 151 | case 10: /* invalid decimal digit */ |
| 152 | sig = SIGFPE; code = __FPE_INVDEC; |
| 153 | break; |
| 154 | |
| 155 | case 11: /* paragraph stack overflow */ |
| 156 | sig = SIGSEGV; code = __SEGV_PSTKOVF; |
| 157 | break; |
| 158 | |
| 159 | case 0x3f000 ... 0x3ffff: /* bundle-update in progress */ |
| 160 | sig = SIGILL; code = __ILL_BNDMOD; |
| 161 | break; |
| 162 | |
| 163 | default: |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 164 | if ((break_num < 0x40000 || break_num > 0x100000) |
| 165 | && die_if_kernel("Bad break", regs, break_num)) |
| 166 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | if (break_num < 0x80000) { |
| 169 | sig = SIGILL; code = __ILL_BREAK; |
| 170 | } else { |
Keith Owens | 9138d58 | 2005-11-07 11:27:13 -0800 | [diff] [blame] | 171 | if (notify_die(DIE_BREAK, "bad break", regs, break_num, TRAP_BRKPT, SIGTRAP) |
| 172 | == NOTIFY_STOP) |
| 173 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | sig = SIGTRAP; code = TRAP_BRKPT; |
| 175 | } |
| 176 | } |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 177 | force_sig_fault(sig, code, |
| 178 | (void __user *) (regs->cr_iip + ia64_psr(regs)->ri), |
| 179 | break_num, 0 /* clear __ISR_VALID */, 0, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | /* |
| 183 | * disabled_fph_fault() is called when a user-level process attempts to access f32..f127 |
| 184 | * and it doesn't own the fp-high register partition. When this happens, we save the |
| 185 | * current fph partition in the task_struct of the fpu-owner (if necessary) and then load |
| 186 | * the fp-high partition of the current task (if necessary). Note that the kernel has |
| 187 | * access to fph by the time we get here, as the IVT's "Disabled FP-Register" handler takes |
| 188 | * care of clearing psr.dfh. |
| 189 | */ |
| 190 | static inline void |
| 191 | disabled_fph_fault (struct pt_regs *regs) |
| 192 | { |
| 193 | struct ia64_psr *psr = ia64_psr(regs); |
| 194 | |
| 195 | /* first, grant user-level access to fph partition: */ |
| 196 | psr->dfh = 0; |
Peter Chubb | 05062d9 | 2005-06-08 15:50:20 -0700 | [diff] [blame] | 197 | |
| 198 | /* |
| 199 | * Make sure that no other task gets in on this processor |
| 200 | * while we're claiming the FPU |
| 201 | */ |
| 202 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | #ifndef CONFIG_SMP |
| 204 | { |
| 205 | struct task_struct *fpu_owner |
| 206 | = (struct task_struct *)ia64_get_kr(IA64_KR_FPU_OWNER); |
| 207 | |
Peter Chubb | 05062d9 | 2005-06-08 15:50:20 -0700 | [diff] [blame] | 208 | if (ia64_is_local_fpu_owner(current)) { |
| 209 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | return; |
Peter Chubb | 05062d9 | 2005-06-08 15:50:20 -0700 | [diff] [blame] | 211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
| 213 | if (fpu_owner) |
| 214 | ia64_flush_fph(fpu_owner); |
| 215 | } |
| 216 | #endif /* !CONFIG_SMP */ |
| 217 | ia64_set_local_fpu_owner(current); |
| 218 | if ((current->thread.flags & IA64_THREAD_FPH_VALID) != 0) { |
| 219 | __ia64_load_fpu(current->thread.fph); |
| 220 | psr->mfh = 0; |
| 221 | } else { |
| 222 | __ia64_init_fpu(); |
| 223 | /* |
| 224 | * Set mfh because the state in thread.fph does not match the state in |
| 225 | * the fph partition. |
| 226 | */ |
| 227 | psr->mfh = 1; |
| 228 | } |
Peter Chubb | 05062d9 | 2005-06-08 15:50:20 -0700 | [diff] [blame] | 229 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | static inline int |
| 233 | fp_emulate (int fp_fault, void *bundle, long *ipsr, long *fpsr, long *isr, long *pr, long *ifs, |
| 234 | struct pt_regs *regs) |
| 235 | { |
| 236 | fp_state_t fp_state; |
| 237 | fpswa_ret_t ret; |
| 238 | |
| 239 | if (!fpswa_interface) |
| 240 | return -1; |
| 241 | |
| 242 | memset(&fp_state, 0, sizeof(fp_state_t)); |
| 243 | |
| 244 | /* |
| 245 | * compute fp_state. only FP registers f6 - f11 are used by the |
| 246 | * kernel, so set those bits in the mask and set the low volatile |
| 247 | * pointer to point to these registers. |
| 248 | */ |
| 249 | fp_state.bitmask_low64 = 0xfc0; /* bit6..bit11 */ |
| 250 | |
| 251 | fp_state.fp_state_low_volatile = (fp_state_low_volatile_t *) ®s->f6; |
| 252 | /* |
| 253 | * unsigned long (*EFI_FPSWA) ( |
| 254 | * unsigned long trap_type, |
| 255 | * void *Bundle, |
| 256 | * unsigned long *pipsr, |
| 257 | * unsigned long *pfsr, |
| 258 | * unsigned long *pisr, |
| 259 | * unsigned long *ppreds, |
| 260 | * unsigned long *pifs, |
| 261 | * void *fp_state); |
| 262 | */ |
| 263 | ret = (*fpswa_interface->fpswa)((unsigned long) fp_fault, bundle, |
| 264 | (unsigned long *) ipsr, (unsigned long *) fpsr, |
| 265 | (unsigned long *) isr, (unsigned long *) pr, |
| 266 | (unsigned long *) ifs, &fp_state); |
| 267 | |
| 268 | return ret.status; |
| 269 | } |
| 270 | |
Jack Steiner | 1cf24bd | 2006-11-22 09:55:08 -0600 | [diff] [blame] | 271 | struct fpu_swa_msg { |
| 272 | unsigned long count; |
| 273 | unsigned long time; |
| 274 | }; |
| 275 | static DEFINE_PER_CPU(struct fpu_swa_msg, cpulast); |
| 276 | DECLARE_PER_CPU(struct fpu_swa_msg, cpulast); |
| 277 | static struct fpu_swa_msg last __cacheline_aligned; |
| 278 | |
| 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | /* |
| 281 | * Handle floating-point assist faults and traps. |
| 282 | */ |
| 283 | static int |
| 284 | handle_fpu_swa (int fp_fault, struct pt_regs *regs, unsigned long isr) |
| 285 | { |
| 286 | long exception, bundle[2]; |
| 287 | unsigned long fault_ip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
| 289 | fault_ip = regs->cr_iip; |
| 290 | if (!fp_fault && (ia64_psr(regs)->ri == 0)) |
| 291 | fault_ip -= 16; |
| 292 | if (copy_from_user(bundle, (void __user *) fault_ip, sizeof(bundle))) |
| 293 | return -1; |
| 294 | |
Jack Steiner | 1cf24bd | 2006-11-22 09:55:08 -0600 | [diff] [blame] | 295 | if (!(current->thread.flags & IA64_THREAD_FPEMU_NOPRINT)) { |
| 296 | unsigned long count, current_jiffies = jiffies; |
Christoph Lameter | 6065a24 | 2014-08-17 12:30:47 -0500 | [diff] [blame] | 297 | struct fpu_swa_msg *cp = this_cpu_ptr(&cpulast); |
Jack Steiner | 1cf24bd | 2006-11-22 09:55:08 -0600 | [diff] [blame] | 298 | |
| 299 | if (unlikely(current_jiffies > cp->time)) |
| 300 | cp->count = 0; |
| 301 | if (unlikely(cp->count < 5)) { |
| 302 | cp->count++; |
| 303 | cp->time = current_jiffies + 5 * HZ; |
| 304 | |
| 305 | /* minimize races by grabbing a copy of count BEFORE checking last.time. */ |
| 306 | count = last.count; |
| 307 | barrier(); |
| 308 | |
| 309 | /* |
| 310 | * Lower 4 bits are used as a count. Upper bits are a sequence |
| 311 | * number that is updated when count is reset. The cmpxchg will |
| 312 | * fail is seqno has changed. This minimizes mutiple cpus |
Simon Arlott | 72fdbdc | 2007-05-11 14:55:43 -0700 | [diff] [blame] | 313 | * resetting the count. |
Jack Steiner | 1cf24bd | 2006-11-22 09:55:08 -0600 | [diff] [blame] | 314 | */ |
| 315 | if (current_jiffies > last.time) |
| 316 | (void) cmpxchg_acq(&last.count, count, 16 + (count & ~15)); |
| 317 | |
| 318 | /* used fetchadd to atomically update the count */ |
| 319 | if ((last.count & 15) < 5 && (ia64_fetchadd(1, &last.count, acq) & 15) < 5) { |
| 320 | last.time = current_jiffies + 5 * HZ; |
| 321 | printk(KERN_WARNING |
| 322 | "%s(%d): floating-point assist fault at ip %016lx, isr %016lx\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 323 | current->comm, task_pid_nr(current), regs->cr_iip + ia64_psr(regs)->ri, isr); |
Jack Steiner | 1cf24bd | 2006-11-22 09:55:08 -0600 | [diff] [blame] | 324 | } |
| 325 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | exception = fp_emulate(fp_fault, bundle, ®s->cr_ipsr, ®s->ar_fpsr, &isr, ®s->pr, |
| 329 | ®s->cr_ifs, regs); |
| 330 | if (fp_fault) { |
| 331 | if (exception == 0) { |
| 332 | /* emulation was successful */ |
| 333 | ia64_increment_ip(regs); |
| 334 | } else if (exception == -1) { |
| 335 | printk(KERN_ERR "handle_fpu_swa: fp_emulate() returned -1\n"); |
| 336 | return -1; |
| 337 | } else { |
| 338 | /* is next instruction a trap? */ |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 339 | int si_code; |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | if (exception & 2) { |
| 342 | ia64_increment_ip(regs); |
| 343 | } |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 344 | si_code = FPE_FLTUNK; /* default code */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | if (isr & 0x11) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 346 | si_code = FPE_FLTINV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | } else if (isr & 0x22) { |
| 348 | /* denormal operand gets the same si_code as underflow |
| 349 | * see arch/i386/kernel/traps.c:math_error() */ |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 350 | si_code = FPE_FLTUND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } else if (isr & 0x44) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 352 | si_code = FPE_FLTDIV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 354 | force_sig_fault(SIGFPE, si_code, |
| 355 | (void __user *) (regs->cr_iip + ia64_psr(regs)->ri), |
| 356 | 0, __ISR_VALID, isr, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
| 358 | } else { |
| 359 | if (exception == -1) { |
| 360 | printk(KERN_ERR "handle_fpu_swa: fp_emulate() returned -1\n"); |
| 361 | return -1; |
| 362 | } else if (exception != 0) { |
| 363 | /* raise exception */ |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 364 | int si_code; |
Eric W. Biederman | 3eb0f51 | 2018-04-17 15:26:37 -0500 | [diff] [blame] | 365 | |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 366 | si_code = FPE_FLTUNK; /* default code */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | if (isr & 0x880) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 368 | si_code = FPE_FLTOVF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } else if (isr & 0x1100) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 370 | si_code = FPE_FLTUND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } else if (isr & 0x2200) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 372 | si_code = FPE_FLTRES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | } |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 374 | force_sig_fault(SIGFPE, si_code, |
| 375 | (void __user *) (regs->cr_iip + ia64_psr(regs)->ri), |
| 376 | 0, __ISR_VALID, isr, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | } |
| 379 | return 0; |
| 380 | } |
| 381 | |
| 382 | struct illegal_op_return { |
| 383 | unsigned long fkt, arg1, arg2, arg3; |
| 384 | }; |
| 385 | |
| 386 | struct illegal_op_return |
| 387 | ia64_illegal_op_fault (unsigned long ec, long arg1, long arg2, long arg3, |
| 388 | long arg4, long arg5, long arg6, long arg7, |
| 389 | struct pt_regs regs) |
| 390 | { |
| 391 | struct illegal_op_return rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | char buf[128]; |
| 393 | |
| 394 | #ifdef CONFIG_IA64_BRL_EMU |
| 395 | { |
| 396 | extern struct illegal_op_return ia64_emulate_brl (struct pt_regs *, unsigned long); |
| 397 | |
| 398 | rv = ia64_emulate_brl(®s, ec); |
| 399 | if (rv.fkt != (unsigned long) -1) |
| 400 | return rv; |
| 401 | } |
| 402 | #endif |
| 403 | |
| 404 | sprintf(buf, "IA-64 Illegal operation fault"); |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 405 | rv.fkt = 0; |
| 406 | if (die_if_kernel(buf, ®s, 0)) |
| 407 | return rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 409 | force_sig_fault(SIGILL, ILL_ILLOPC, |
| 410 | (void __user *) (regs.cr_iip + ia64_psr(®s)->ri), |
| 411 | 0, 0, 0, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | return rv; |
| 413 | } |
| 414 | |
Prasanna S Panchamukhi | 1f7ad57 | 2005-09-06 15:19:30 -0700 | [diff] [blame] | 415 | void __kprobes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | ia64_fault (unsigned long vector, unsigned long isr, unsigned long ifa, |
| 417 | unsigned long iim, unsigned long itir, long arg5, long arg6, |
| 418 | long arg7, struct pt_regs regs) |
| 419 | { |
| 420 | unsigned long code, error = isr, iip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | char buf[128]; |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 422 | int result, sig, si_code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | static const char *reason[] = { |
| 424 | "IA-64 Illegal Operation fault", |
| 425 | "IA-64 Privileged Operation fault", |
| 426 | "IA-64 Privileged Register fault", |
| 427 | "IA-64 Reserved Register/Field fault", |
| 428 | "Disabled Instruction Set Transition fault", |
| 429 | "Unknown fault 5", "Unknown fault 6", "Unknown fault 7", "Illegal Hazard fault", |
| 430 | "Unknown fault 9", "Unknown fault 10", "Unknown fault 11", "Unknown fault 12", |
| 431 | "Unknown fault 13", "Unknown fault 14", "Unknown fault 15" |
| 432 | }; |
| 433 | |
| 434 | if ((isr & IA64_ISR_NA) && ((isr & IA64_ISR_CODE_MASK) == IA64_ISR_CODE_LFETCH)) { |
| 435 | /* |
| 436 | * This fault was due to lfetch.fault, set "ed" bit in the psr to cancel |
| 437 | * the lfetch. |
| 438 | */ |
| 439 | ia64_psr(®s)->ed = 1; |
| 440 | return; |
| 441 | } |
| 442 | |
| 443 | iip = regs.cr_iip + ia64_psr(®s)->ri; |
| 444 | |
| 445 | switch (vector) { |
| 446 | case 24: /* General Exception */ |
| 447 | code = (isr >> 4) & 0xf; |
| 448 | sprintf(buf, "General Exception: %s%s", reason[code], |
| 449 | (code == 3) ? ((isr & (1UL << 37)) |
| 450 | ? " (RSE access)" : " (data access)") : ""); |
| 451 | if (code == 8) { |
| 452 | # ifdef CONFIG_IA64_PRINT_HAZARDS |
| 453 | printk("%s[%d]: possible hazard @ ip=%016lx (pr = %016lx)\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 454 | current->comm, task_pid_nr(current), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | regs.cr_iip + ia64_psr(®s)->ri, regs.pr); |
| 456 | # endif |
| 457 | return; |
| 458 | } |
| 459 | break; |
| 460 | |
| 461 | case 25: /* Disabled FP-Register */ |
| 462 | if (isr & 2) { |
| 463 | disabled_fph_fault(®s); |
| 464 | return; |
| 465 | } |
| 466 | sprintf(buf, "Disabled FPL fault---not supposed to happen!"); |
| 467 | break; |
| 468 | |
| 469 | case 26: /* NaT Consumption */ |
| 470 | if (user_mode(®s)) { |
| 471 | void __user *addr; |
| 472 | |
| 473 | if (((isr >> 4) & 0xf) == 2) { |
| 474 | /* NaT page consumption */ |
| 475 | sig = SIGSEGV; |
| 476 | code = SEGV_ACCERR; |
| 477 | addr = (void __user *) ifa; |
| 478 | } else { |
| 479 | /* register NaT consumption */ |
| 480 | sig = SIGILL; |
| 481 | code = ILL_ILLOPN; |
| 482 | addr = (void __user *) (regs.cr_iip |
| 483 | + ia64_psr(®s)->ri); |
| 484 | } |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 485 | force_sig_fault(sig, code, addr, |
| 486 | vector, __ISR_VALID, isr, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | return; |
| 488 | } else if (ia64_done_with_exception(®s)) |
| 489 | return; |
| 490 | sprintf(buf, "NaT consumption"); |
| 491 | break; |
| 492 | |
| 493 | case 31: /* Unsupported Data Reference */ |
| 494 | if (user_mode(®s)) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 495 | force_sig_fault(SIGILL, ILL_ILLOPN, (void __user *) iip, |
| 496 | vector, __ISR_VALID, isr, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | return; |
| 498 | } |
| 499 | sprintf(buf, "Unsupported data reference"); |
| 500 | break; |
| 501 | |
| 502 | case 29: /* Debug */ |
| 503 | case 35: /* Taken Branch Trap */ |
| 504 | case 36: /* Single Step Trap */ |
| 505 | if (fsys_mode(current, ®s)) { |
| 506 | extern char __kernel_syscall_via_break[]; |
| 507 | /* |
Jason Uhlenkott | 1502928 | 2005-12-30 02:27:01 -0800 | [diff] [blame] | 508 | * Got a trap in fsys-mode: Taken Branch Trap |
| 509 | * and Single Step trap need special handling; |
| 510 | * Debug trap is ignored (we disable it here |
| 511 | * and re-enable it in the lower-privilege trap). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | */ |
| 513 | if (unlikely(vector == 29)) { |
Jason Uhlenkott | 1502928 | 2005-12-30 02:27:01 -0800 | [diff] [blame] | 514 | set_thread_flag(TIF_DB_DISABLED); |
| 515 | ia64_psr(®s)->db = 0; |
| 516 | ia64_psr(®s)->lp = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | return; |
| 518 | } |
| 519 | /* re-do the system call via break 0x100000: */ |
| 520 | regs.cr_iip = (unsigned long) __kernel_syscall_via_break; |
| 521 | ia64_psr(®s)->ri = 0; |
| 522 | ia64_psr(®s)->cpl = 3; |
| 523 | return; |
| 524 | } |
| 525 | switch (vector) { |
Matt Fleming | f6184df | 2016-05-04 12:17:49 +0100 | [diff] [blame] | 526 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | case 29: |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 528 | si_code = TRAP_HWBKPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | #ifdef CONFIG_ITANIUM |
| 530 | /* |
| 531 | * Erratum 10 (IFA may contain incorrect address) now has |
| 532 | * "NoFix" status. There are no plans for fixing this. |
| 533 | */ |
| 534 | if (ia64_psr(®s)->is == 0) |
| 535 | ifa = regs.cr_iip; |
| 536 | #endif |
| 537 | break; |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 538 | case 35: si_code = TRAP_BRANCH; ifa = 0; break; |
| 539 | case 36: si_code = TRAP_TRACE; ifa = 0; break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 541 | if (notify_die(DIE_FAULT, "ia64_fault", ®s, vector, si_code, SIGTRAP) |
Keith Owens | 9138d58 | 2005-11-07 11:27:13 -0800 | [diff] [blame] | 542 | == NOTIFY_STOP) |
| 543 | return; |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 544 | force_sig_fault(SIGTRAP, si_code, (void __user *) ifa, |
| 545 | 0, __ISR_VALID, isr, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | return; |
| 547 | |
| 548 | case 32: /* fp fault */ |
| 549 | case 33: /* fp trap */ |
| 550 | result = handle_fpu_swa((vector == 32) ? 1 : 0, ®s, isr); |
| 551 | if ((result < 0) || (current->thread.flags & IA64_THREAD_FPEMU_SIGFPE)) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 552 | force_sig_fault(SIGFPE, FPE_FLTINV, (void __user *) iip, |
| 553 | 0, __ISR_VALID, isr, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
| 555 | return; |
| 556 | |
| 557 | case 34: |
| 558 | if (isr & 0x2) { |
| 559 | /* Lower-Privilege Transfer Trap */ |
Jason Uhlenkott | 1502928 | 2005-12-30 02:27:01 -0800 | [diff] [blame] | 560 | |
| 561 | /* If we disabled debug traps during an fsyscall, |
| 562 | * re-enable them here. |
| 563 | */ |
| 564 | if (test_thread_flag(TIF_DB_DISABLED)) { |
| 565 | clear_thread_flag(TIF_DB_DISABLED); |
| 566 | ia64_psr(®s)->db = 1; |
| 567 | } |
| 568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | /* |
Jason Uhlenkott | 1502928 | 2005-12-30 02:27:01 -0800 | [diff] [blame] | 570 | * Just clear PSR.lp and then return immediately: |
| 571 | * all the interesting work (e.g., signal delivery) |
| 572 | * is done in the kernel exit path. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | */ |
| 574 | ia64_psr(®s)->lp = 0; |
| 575 | return; |
| 576 | } else { |
| 577 | /* Unimplemented Instr. Address Trap */ |
| 578 | if (user_mode(®s)) { |
Eric W. Biederman | a618a27 | 2018-04-17 17:39:29 -0500 | [diff] [blame] | 579 | force_sig_fault(SIGILL, ILL_BADIADDR, |
| 580 | (void __user *) iip, |
| 581 | 0, 0, 0, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | return; |
| 583 | } |
| 584 | sprintf(buf, "Unimplemented Instruction Address fault"); |
| 585 | } |
| 586 | break; |
| 587 | |
| 588 | case 45: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | printk(KERN_ERR "Unexpected IA-32 exception (Trap 45)\n"); |
| 590 | printk(KERN_ERR " iip - 0x%lx, ifa - 0x%lx, isr - 0x%lx\n", |
| 591 | iip, ifa, isr); |
| 592 | force_sig(SIGSEGV, current); |
Chen Gang | 169ec52 | 2013-05-27 14:30:29 +0800 | [diff] [blame] | 593 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
| 595 | case 46: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | printk(KERN_ERR "Unexpected IA-32 intercept trap (Trap 46)\n"); |
| 597 | printk(KERN_ERR " iip - 0x%lx, ifa - 0x%lx, isr - 0x%lx, iim - 0x%lx\n", |
| 598 | iip, ifa, isr, iim); |
| 599 | force_sig(SIGSEGV, current); |
| 600 | return; |
| 601 | |
| 602 | case 47: |
| 603 | sprintf(buf, "IA-32 Interruption Fault (int 0x%lx)", isr >> 16); |
| 604 | break; |
| 605 | |
| 606 | default: |
| 607 | sprintf(buf, "Fault %lu", vector); |
| 608 | break; |
| 609 | } |
Jan Beulich | 620de2f | 2008-02-04 23:43:03 -0800 | [diff] [blame] | 610 | if (!die_if_kernel(buf, ®s, error)) |
| 611 | force_sig(SIGILL, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |