1 // SPDX-License-Identifier: GPL-2.0
3 * Architecture-specific trap handling.
5 * Copyright (C) 1998-2003 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
8 * 05/12/00 grao <goutham.rao@intel.com> : added isr in siginfo for SIGFPE
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/sched/signal.h>
14 #include <linux/sched/debug.h>
15 #include <linux/tty.h>
16 #include <linux/vt_kern.h> /* For unblank_screen() */
17 #include <linux/export.h>
18 #include <linux/extable.h>
19 #include <linux/hardirq.h>
20 #include <linux/kprobes.h>
21 #include <linux/delay.h> /* for ssleep() */
22 #include <linux/kdebug.h>
23 #include <linux/uaccess.h>
25 #include <asm/fpswa.h>
26 #include <asm/intrinsics.h>
27 #include <asm/processor.h>
28 #include <asm/exception.h>
29 #include <asm/setup.h>
31 fpswa_interface_t
*fpswa_interface
;
32 EXPORT_SYMBOL(fpswa_interface
);
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
);
43 die (const char *str
, struct pt_regs
*regs
, long err
)
50 .lock
= __SPIN_LOCK_UNLOCKED(die
.lock
),
54 static int die_counter
;
57 if (die
.lock_owner
!= cpu
) {
59 spin_lock_irq(&die
.lock
);
61 die
.lock_owner_depth
= 0;
66 if (++die
.lock_owner_depth
< 3) {
67 printk("%s[%d]: %s %ld [%d]\n",
68 current
->comm
, task_pid_nr(current
), str
, err
, ++die_counter
);
69 if (notify_die(DIE_OOPS
, str
, regs
, err
, 255, SIGSEGV
)
75 printk(KERN_ERR
"Recursive die() failure, output suppressed\n");
79 add_taint(TAINT_DIE
, LOCKDEP_NOW_UNRELIABLE
);
80 spin_unlock_irq(&die
.lock
);
86 panic("Fatal exception");
93 die_if_kernel (char *str
, struct pt_regs
*regs
, long err
)
96 return die(str
, regs
, err
);
101 __kprobes
ia64_bad_break (unsigned long break_num
, struct pt_regs
*regs
)
106 case 0: /* unknown error (used by GCC for __builtin_abort()) */
107 if (notify_die(DIE_BREAK
, "break 0", regs
, break_num
, TRAP_BRKPT
, SIGTRAP
)
110 if (die_if_kernel("bugcheck!", regs
, break_num
))
112 sig
= SIGILL
; code
= ILL_ILLOPC
;
115 case 1: /* integer divide by zero */
116 sig
= SIGFPE
; code
= FPE_INTDIV
;
119 case 2: /* integer overflow */
120 sig
= SIGFPE
; code
= FPE_INTOVF
;
123 case 3: /* range check/bounds check */
124 sig
= SIGFPE
; code
= FPE_FLTSUB
;
127 case 4: /* null pointer dereference */
128 sig
= SIGSEGV
; code
= SEGV_MAPERR
;
131 case 5: /* misaligned data */
132 sig
= SIGSEGV
; code
= BUS_ADRALN
;
135 case 6: /* decimal overflow */
136 sig
= SIGFPE
; code
= __FPE_DECOVF
;
139 case 7: /* decimal divide by zero */
140 sig
= SIGFPE
; code
= __FPE_DECDIV
;
143 case 8: /* packed decimal error */
144 sig
= SIGFPE
; code
= __FPE_DECERR
;
147 case 9: /* invalid ASCII digit */
148 sig
= SIGFPE
; code
= __FPE_INVASC
;
151 case 10: /* invalid decimal digit */
152 sig
= SIGFPE
; code
= __FPE_INVDEC
;
155 case 11: /* paragraph stack overflow */
156 sig
= SIGSEGV
; code
= __SEGV_PSTKOVF
;
159 case 0x3f000 ... 0x3ffff: /* bundle-update in progress */
160 sig
= SIGILL
; code
= __ILL_BNDMOD
;
164 if ((break_num
< 0x40000 || break_num
> 0x100000)
165 && die_if_kernel("Bad break", regs
, break_num
))
168 if (break_num
< 0x80000) {
169 sig
= SIGILL
; code
= __ILL_BREAK
;
171 if (notify_die(DIE_BREAK
, "bad break", regs
, break_num
, TRAP_BRKPT
, SIGTRAP
)
174 sig
= SIGTRAP
; code
= TRAP_BRKPT
;
177 force_sig_fault(sig
, code
,
178 (void __user
*) (regs
->cr_iip
+ ia64_psr(regs
)->ri
),
179 break_num
, 0 /* clear __ISR_VALID */, 0);
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.
191 disabled_fph_fault (struct pt_regs
*regs
)
193 struct ia64_psr
*psr
= ia64_psr(regs
);
195 /* first, grant user-level access to fph partition: */
199 * Make sure that no other task gets in on this processor
200 * while we're claiming the FPU
205 struct task_struct
*fpu_owner
206 = (struct task_struct
*)ia64_get_kr(IA64_KR_FPU_OWNER
);
208 if (ia64_is_local_fpu_owner(current
)) {
209 preempt_enable_no_resched();
214 ia64_flush_fph(fpu_owner
);
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
);
224 * Set mfh because the state in thread.fph does not match the state in
229 preempt_enable_no_resched();
233 fp_emulate (int fp_fault
, void *bundle
, long *ipsr
, long *fpsr
, long *isr
, long *pr
, long *ifs
,
234 struct pt_regs
*regs
)
239 if (!fpswa_interface
)
242 memset(&fp_state
, 0, sizeof(fp_state_t
));
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.
249 fp_state
.bitmask_low64
= 0xfc0; /* bit6..bit11 */
251 fp_state
.fp_state_low_volatile
= (fp_state_low_volatile_t
*) ®s
->f6
;
253 * unsigned long (*EFI_FPSWA) (
254 * unsigned long trap_type,
256 * unsigned long *pipsr,
257 * unsigned long *pfsr,
258 * unsigned long *pisr,
259 * unsigned long *ppreds,
260 * unsigned long *pifs,
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
);
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
;
281 * Handle floating-point assist faults and traps.
284 handle_fpu_swa (int fp_fault
, struct pt_regs
*regs
, unsigned long isr
)
286 long exception
, bundle
[2];
287 unsigned long fault_ip
;
289 fault_ip
= regs
->cr_iip
;
290 if (!fp_fault
&& (ia64_psr(regs
)->ri
== 0))
292 if (copy_from_user(bundle
, (void __user
*) fault_ip
, sizeof(bundle
)))
295 if (!(current
->thread
.flags
& IA64_THREAD_FPEMU_NOPRINT
)) {
296 unsigned long count
, current_jiffies
= jiffies
;
297 struct fpu_swa_msg
*cp
= this_cpu_ptr(&cpulast
);
299 if (unlikely(current_jiffies
> cp
->time
))
301 if (unlikely(cp
->count
< 5)) {
303 cp
->time
= current_jiffies
+ 5 * HZ
;
305 /* minimize races by grabbing a copy of count BEFORE checking last.time. */
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
313 * resetting the count.
315 if (current_jiffies
> last
.time
)
316 (void) cmpxchg_acq(&last
.count
, count
, 16 + (count
& ~15));
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
;
322 "%s(%d): floating-point assist fault at ip %016lx, isr %016lx\n",
323 current
->comm
, task_pid_nr(current
), regs
->cr_iip
+ ia64_psr(regs
)->ri
, isr
);
328 exception
= fp_emulate(fp_fault
, bundle
, ®s
->cr_ipsr
, ®s
->ar_fpsr
, &isr
, ®s
->pr
,
329 ®s
->cr_ifs
, regs
);
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");
338 /* is next instruction a trap? */
342 ia64_increment_ip(regs
);
344 si_code
= FPE_FLTUNK
; /* default code */
346 si_code
= FPE_FLTINV
;
347 } else if (isr
& 0x22) {
348 /* denormal operand gets the same si_code as underflow
349 * see arch/i386/kernel/traps.c:math_error() */
350 si_code
= FPE_FLTUND
;
351 } else if (isr
& 0x44) {
352 si_code
= FPE_FLTDIV
;
354 force_sig_fault(SIGFPE
, si_code
,
355 (void __user
*) (regs
->cr_iip
+ ia64_psr(regs
)->ri
),
356 0, __ISR_VALID
, isr
);
359 if (exception
== -1) {
360 printk(KERN_ERR
"handle_fpu_swa: fp_emulate() returned -1\n");
362 } else if (exception
!= 0) {
363 /* raise exception */
366 si_code
= FPE_FLTUNK
; /* default code */
368 si_code
= FPE_FLTOVF
;
369 } else if (isr
& 0x1100) {
370 si_code
= FPE_FLTUND
;
371 } else if (isr
& 0x2200) {
372 si_code
= FPE_FLTRES
;
374 force_sig_fault(SIGFPE
, si_code
,
375 (void __user
*) (regs
->cr_iip
+ ia64_psr(regs
)->ri
),
376 0, __ISR_VALID
, isr
);
382 struct illegal_op_return
{
383 unsigned long fkt
, arg1
, arg2
, arg3
;
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
,
391 struct illegal_op_return rv
;
394 #ifdef CONFIG_IA64_BRL_EMU
396 extern struct illegal_op_return
ia64_emulate_brl (struct pt_regs
*, unsigned long);
398 rv
= ia64_emulate_brl(®s
, ec
);
399 if (rv
.fkt
!= (unsigned long) -1)
404 sprintf(buf
, "IA-64 Illegal operation fault");
406 if (die_if_kernel(buf
, ®s
, 0))
409 force_sig_fault(SIGILL
, ILL_ILLOPC
,
410 (void __user
*) (regs
.cr_iip
+ ia64_psr(®s
)->ri
),
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
)
420 unsigned long code
, error
= isr
, iip
;
422 int result
, sig
, si_code
;
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"
434 if ((isr
& IA64_ISR_NA
) && ((isr
& IA64_ISR_CODE_MASK
) == IA64_ISR_CODE_LFETCH
)) {
436 * This fault was due to lfetch.fault, set "ed" bit in the psr to cancel
439 ia64_psr(®s
)->ed
= 1;
443 iip
= regs
.cr_iip
+ ia64_psr(®s
)->ri
;
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)") : "");
452 # ifdef CONFIG_IA64_PRINT_HAZARDS
453 printk("%s[%d]: possible hazard @ ip=%016lx (pr = %016lx)\n",
454 current
->comm
, task_pid_nr(current
),
455 regs
.cr_iip
+ ia64_psr(®s
)->ri
, regs
.pr
);
461 case 25: /* Disabled FP-Register */
463 disabled_fph_fault(®s
);
466 sprintf(buf
, "Disabled FPL fault---not supposed to happen!");
469 case 26: /* NaT Consumption */
470 if (user_mode(®s
)) {
473 if (((isr
>> 4) & 0xf) == 2) {
474 /* NaT page consumption */
477 addr
= (void __user
*) ifa
;
479 /* register NaT consumption */
482 addr
= (void __user
*) (regs
.cr_iip
483 + ia64_psr(®s
)->ri
);
485 force_sig_fault(sig
, code
, addr
,
486 vector
, __ISR_VALID
, isr
);
488 } else if (ia64_done_with_exception(®s
))
490 sprintf(buf
, "NaT consumption");
493 case 31: /* Unsupported Data Reference */
494 if (user_mode(®s
)) {
495 force_sig_fault(SIGILL
, ILL_ILLOPN
, (void __user
*) iip
,
496 vector
, __ISR_VALID
, isr
);
499 sprintf(buf
, "Unsupported data reference");
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
[];
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).
513 if (unlikely(vector
== 29)) {
514 set_thread_flag(TIF_DB_DISABLED
);
515 ia64_psr(®s
)->db
= 0;
516 ia64_psr(®s
)->lp
= 1;
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;
528 si_code
= TRAP_HWBKPT
;
529 #ifdef CONFIG_ITANIUM
531 * Erratum 10 (IFA may contain incorrect address) now has
532 * "NoFix" status. There are no plans for fixing this.
534 if (ia64_psr(®s
)->is
== 0)
538 case 35: si_code
= TRAP_BRANCH
; ifa
= 0; break;
539 case 36: si_code
= TRAP_TRACE
; ifa
= 0; break;
541 if (notify_die(DIE_FAULT
, "ia64_fault", ®s
, vector
, si_code
, SIGTRAP
)
544 force_sig_fault(SIGTRAP
, si_code
, (void __user
*) ifa
,
545 0, __ISR_VALID
, isr
);
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
)) {
552 force_sig_fault(SIGFPE
, FPE_FLTINV
, (void __user
*) iip
,
553 0, __ISR_VALID
, isr
);
559 /* Lower-Privilege Transfer Trap */
561 /* If we disabled debug traps during an fsyscall,
562 * re-enable them here.
564 if (test_thread_flag(TIF_DB_DISABLED
)) {
565 clear_thread_flag(TIF_DB_DISABLED
);
566 ia64_psr(®s
)->db
= 1;
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.
574 ia64_psr(®s
)->lp
= 0;
577 /* Unimplemented Instr. Address Trap */
578 if (user_mode(®s
)) {
579 force_sig_fault(SIGILL
, ILL_BADIADDR
,
584 sprintf(buf
, "Unimplemented Instruction Address fault");
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",
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",
603 sprintf(buf
, "IA-32 Interruption Fault (int 0x%lx)", isr
>> 16);
607 sprintf(buf
, "Fault %lu", vector
);
610 if (!die_if_kernel(buf
, ®s
, error
))