blob: 7d6f3f3fad786916bfcfdb378d0a790ddaa54f5f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07002#ifndef _ASM_X86_TRAPS_H
3#define _ASM_X86_TRAPS_H
Jaswinder Singh6ac8d512008-07-15 21:09:13 +05304
Andy Lutomirski95927472014-11-19 17:41:09 -08005#include <linux/context_tracking_state.h>
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04006#include <linux/kprobes.h>
7
Srinivasa Dse8d3f452008-09-23 15:23:52 +05308#include <asm/debugreg.h>
Ingo Molnara2bcd472009-03-29 23:47:48 +02009#include <asm/siginfo.h> /* TRAP_TRACE, ... */
Srinivasa Dse8d3f452008-09-23 15:23:52 +053010
Andi Kleen9e1a4312013-08-05 15:02:36 -070011#define dotraplinkage __visible
Alexander van Heukelume407d6202008-09-30 18:41:36 +020012
Jaswinder Singh6ac8d512008-07-15 21:09:13 +053013asmlinkage void divide_error(void);
14asmlinkage void debug(void);
15asmlinkage void nmi(void);
16asmlinkage void int3(void);
17asmlinkage void overflow(void);
18asmlinkage void bounds(void);
19asmlinkage void invalid_op(void);
20asmlinkage void device_not_available(void);
Alexander van Heukelume407d6202008-09-30 18:41:36 +020021#ifdef CONFIG_X86_64
22asmlinkage void double_fault(void);
23#endif
Jaswinder Singh6ac8d512008-07-15 21:09:13 +053024asmlinkage void coprocessor_segment_overrun(void);
25asmlinkage void invalid_TSS(void);
26asmlinkage void segment_not_present(void);
27asmlinkage void stack_segment(void);
28asmlinkage void general_protection(void);
29asmlinkage void page_fault(void);
Gleb Natapov631bc482010-10-14 11:22:52 +020030asmlinkage void async_page_fault(void);
Jaswinder Singh6ac8d512008-07-15 21:09:13 +053031asmlinkage void spurious_interrupt_bug(void);
Alexander van Heukelume407d6202008-09-30 18:41:36 +020032asmlinkage void coprocessor_error(void);
33asmlinkage void alignment_check(void);
Jaswinder Singh6ac8d512008-07-15 21:09:13 +053034#ifdef CONFIG_X86_MCE
35asmlinkage void machine_check(void);
36#endif /* CONFIG_X86_MCE */
Alexander van Heukelume407d6202008-09-30 18:41:36 +020037asmlinkage void simd_coprocessor_error(void);
Jaswinder Singh6ac8d512008-07-15 21:09:13 +053038
Juergen Gross5878d5d2017-08-31 19:42:49 +020039#if defined(CONFIG_X86_64) && defined(CONFIG_XEN_PV)
40asmlinkage void xen_divide_error(void);
Juergen Gross43e41112017-11-02 00:59:07 -070041asmlinkage void xen_xennmi(void);
Juergen Gross5878d5d2017-08-31 19:42:49 +020042asmlinkage void xen_xendebug(void);
43asmlinkage void xen_xenint3(void);
Juergen Gross5878d5d2017-08-31 19:42:49 +020044asmlinkage void xen_overflow(void);
45asmlinkage void xen_bounds(void);
46asmlinkage void xen_invalid_op(void);
47asmlinkage void xen_device_not_available(void);
48asmlinkage void xen_double_fault(void);
49asmlinkage void xen_coprocessor_segment_overrun(void);
50asmlinkage void xen_invalid_TSS(void);
51asmlinkage void xen_segment_not_present(void);
52asmlinkage void xen_stack_segment(void);
53asmlinkage void xen_general_protection(void);
54asmlinkage void xen_page_fault(void);
55asmlinkage void xen_spurious_interrupt_bug(void);
56asmlinkage void xen_coprocessor_error(void);
57asmlinkage void xen_alignment_check(void);
58#ifdef CONFIG_X86_MCE
59asmlinkage void xen_machine_check(void);
60#endif /* CONFIG_X86_MCE */
61asmlinkage void xen_simd_coprocessor_error(void);
62#endif
63
Borislav Petkov8e1599f2018-11-12 13:20:36 +010064dotraplinkage void do_divide_error(struct pt_regs *regs, long error_code);
65dotraplinkage void do_debug(struct pt_regs *regs, long error_code);
66dotraplinkage void do_nmi(struct pt_regs *regs, long error_code);
67dotraplinkage void do_int3(struct pt_regs *regs, long error_code);
68dotraplinkage void do_overflow(struct pt_regs *regs, long error_code);
69dotraplinkage void do_bounds(struct pt_regs *regs, long error_code);
70dotraplinkage void do_invalid_op(struct pt_regs *regs, long error_code);
71dotraplinkage void do_device_not_available(struct pt_regs *regs, long error_code);
72dotraplinkage void do_coprocessor_segment_overrun(struct pt_regs *regs, long error_code);
73dotraplinkage void do_invalid_TSS(struct pt_regs *regs, long error_code);
74dotraplinkage void do_segment_not_present(struct pt_regs *regs, long error_code);
75dotraplinkage void do_stack_segment(struct pt_regs *regs, long error_code);
Jaswinder Singhd1769d52008-12-19 00:03:56 +053076#ifdef CONFIG_X86_64
Borislav Petkov8e1599f2018-11-12 13:20:36 +010077dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code);
Yi Wang89f579c2018-11-22 10:04:09 +080078asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs);
79asmlinkage __visible notrace
80struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s);
81void __init trap_init(void);
Jaswinder Singhd1769d52008-12-19 00:03:56 +053082#endif
Borislav Petkov8e1599f2018-11-12 13:20:36 +010083dotraplinkage void do_general_protection(struct pt_regs *regs, long error_code);
84dotraplinkage void do_page_fault(struct pt_regs *regs, unsigned long error_code);
85dotraplinkage void do_spurious_interrupt_bug(struct pt_regs *regs, long error_code);
86dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code);
87dotraplinkage void do_alignment_check(struct pt_regs *regs, long error_code);
Alexander van Heukelume407d6202008-09-30 18:41:36 +020088#ifdef CONFIG_X86_MCE
Borislav Petkov8e1599f2018-11-12 13:20:36 +010089dotraplinkage void do_machine_check(struct pt_regs *regs, long error_code);
Alexander van Heukelume407d6202008-09-30 18:41:36 +020090#endif
Borislav Petkov8e1599f2018-11-12 13:20:36 +010091dotraplinkage void do_simd_coprocessor_error(struct pt_regs *regs, long error_code);
Alexander van Heukelume407d6202008-09-30 18:41:36 +020092#ifdef CONFIG_X86_32
Borislav Petkov8e1599f2018-11-12 13:20:36 +010093dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code);
Alexander van Heukelume407d6202008-09-30 18:41:36 +020094#endif
Borislav Petkov8e1599f2018-11-12 13:20:36 +010095dotraplinkage void do_mce(struct pt_regs *regs, long error_code);
Jaswinder Singh6ac8d512008-07-15 21:09:13 +053096
Srinivasa Dsda654b72008-09-23 15:23:52 +053097static inline int get_si_code(unsigned long condition)
98{
99 if (condition & DR_STEP)
100 return TRAP_TRACE;
101 else if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3))
102 return TRAP_HWBKPT;
103 else
104 return TRAP_BRKPT;
105}
106
Jaswinder Singh6ac8d512008-07-15 21:09:13 +0530107extern int panic_on_unrecovered_nmi;
Jaswinder Singh6ac8d512008-07-15 21:09:13 +0530108
Tejun Heod3157602009-02-09 22:17:39 +0900109void math_emulate(struct math_emu_info *);
Akinobu Mitafde03122009-07-19 00:09:56 +0900110#ifndef CONFIG_X86_32
Borislav Petkov68b5e4322018-11-09 23:13:13 +0100111asmlinkage void smp_thermal_interrupt(struct pt_regs *regs);
112asmlinkage void smp_threshold_interrupt(struct pt_regs *regs);
113asmlinkage void smp_deferred_error_interrupt(struct pt_regs *regs);
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200114#endif
Jaswinder Singh6ac8d512008-07-15 21:09:13 +0530115
Borislav Petkovad3bc252018-12-05 00:34:56 +0100116void smp_apic_timer_interrupt(struct pt_regs *regs);
117void smp_spurious_interrupt(struct pt_regs *regs);
118void smp_error_interrupt(struct pt_regs *regs);
119asmlinkage void smp_irq_move_cleanup_interrupt(void);
120
Andy Lutomirski8c840142015-07-03 12:44:32 -0700121extern void ist_enter(struct pt_regs *regs);
122extern void ist_exit(struct pt_regs *regs);
Andy Lutomirskibced35b2014-11-19 17:59:41 -0800123extern void ist_begin_non_atomic(struct pt_regs *regs);
124extern void ist_end_non_atomic(void);
Andy Lutomirski95927472014-11-19 17:41:09 -0800125
Andy Lutomirski6271cfd2016-08-30 17:27:57 -0700126#ifdef CONFIG_VMAP_STACK
127void __noreturn handle_stack_overflow(const char *message,
128 struct pt_regs *regs,
129 unsigned long fault_address);
130#endif
131
Kees Cookc9408262012-03-09 16:07:10 -0800132/* Interrupts/Exceptions */
133enum {
134 X86_TRAP_DE = 0, /* 0, Divide-by-zero */
135 X86_TRAP_DB, /* 1, Debug */
136 X86_TRAP_NMI, /* 2, Non-maskable Interrupt */
137 X86_TRAP_BP, /* 3, Breakpoint */
138 X86_TRAP_OF, /* 4, Overflow */
139 X86_TRAP_BR, /* 5, Bound Range Exceeded */
140 X86_TRAP_UD, /* 6, Invalid Opcode */
141 X86_TRAP_NM, /* 7, Device Not Available */
142 X86_TRAP_DF, /* 8, Double Fault */
143 X86_TRAP_OLD_MF, /* 9, Coprocessor Segment Overrun */
144 X86_TRAP_TS, /* 10, Invalid TSS */
145 X86_TRAP_NP, /* 11, Segment Not Present */
146 X86_TRAP_SS, /* 12, Stack Segment Fault */
147 X86_TRAP_GP, /* 13, General Protection Fault */
148 X86_TRAP_PF, /* 14, Page Fault */
149 X86_TRAP_SPURIOUS, /* 15, Spurious Interrupt */
150 X86_TRAP_MF, /* 16, x87 Floating-Point Exception */
151 X86_TRAP_AC, /* 17, Alignment Check */
152 X86_TRAP_MC, /* 18, Machine Check */
153 X86_TRAP_XF, /* 19, SIMD Floating-Point Exception */
154 X86_TRAP_IRET = 32, /* 32, IRET Exception */
155};
156
Ricardo Neri1067f032017-10-27 13:25:28 -0700157/*
158 * Page fault error code bits:
159 *
160 * bit 0 == 0: no page found 1: protection fault
161 * bit 1 == 0: read access 1: write access
162 * bit 2 == 0: kernel-mode access 1: user-mode access
163 * bit 3 == 1: use of reserved bit detected
164 * bit 4 == 1: fault was an instruction fetch
165 * bit 5 == 1: protection keys block access
166 */
167enum x86_pf_error_code {
168 X86_PF_PROT = 1 << 0,
169 X86_PF_WRITE = 1 << 1,
170 X86_PF_USER = 1 << 2,
171 X86_PF_RSVD = 1 << 3,
172 X86_PF_INSTR = 1 << 4,
173 X86_PF_PK = 1 << 5,
174};
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700175#endif /* _ASM_X86_TRAPS_H */