blob: bab883c0b6fee0350281b7b62d3b52ba75056108 [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_BUG_H
3#define _ASM_X86_BUG_H
Thomas Gleixner68fdc552007-10-17 17:19:30 +02004
Peter Zijlstra9a938482017-02-02 14:43:51 +01005#include <linux/stringify.h>
Ingo Molnard19e7892020-07-24 13:50:25 +02006#include <linux/instrumentation.h>
Peter Zijlstra9a938482017-02-02 14:43:51 +01007
8/*
Peter Zijlstra3b3a3712018-02-09 13:16:59 +01009 * Despite that some emulators terminate on UD2, we use it for WARN().
Peter Zijlstra9a938482017-02-02 14:43:51 +010010 */
Peter Zijlstra9a938482017-02-02 14:43:51 +010011#define ASM_UD2 ".byte 0x0f, 0x0b"
Peter Zijlstra9a938482017-02-02 14:43:51 +010012#define INSN_UD2 0x0b0f
Peter Zijlstra3b3a3712018-02-09 13:16:59 +010013#define LEN_UD2 2
Peter Zijlstra9a938482017-02-02 14:43:51 +010014
Ingo Molnarffb61c62018-12-19 11:20:50 +010015#ifdef CONFIG_GENERIC_BUG
16
17#ifdef CONFIG_X86_32
18# define __BUG_REL(val) ".long " __stringify(val)
19#else
20# define __BUG_REL(val) ".long " __stringify(val) " - 2b"
21#endif
22
23#ifdef CONFIG_DEBUG_BUGVERBOSE
24
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080025#define _BUG_FLAGS(ins, flags, extra) \
Peter Zijlstra9a938482017-02-02 14:43:51 +010026do { \
Rasmus Villemoes32ee8232019-09-13 00:19:27 +020027 asm_inline volatile("1:\t" ins "\n" \
Ingo Molnarffb61c62018-12-19 11:20:50 +010028 ".pushsection __bug_table,\"aw\"\n" \
29 "2:\t" __BUG_REL(1b) "\t# bug_entry::bug_addr\n" \
30 "\t" __BUG_REL(%c0) "\t# bug_entry::file\n" \
31 "\t.word %c1" "\t# bug_entry::line\n" \
32 "\t.word %c2" "\t# bug_entry::flags\n" \
33 "\t.org 2b+%c3\n" \
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080034 ".popsection\n" \
35 extra \
Ingo Molnarffb61c62018-12-19 11:20:50 +010036 : : "i" (__FILE__), "i" (__LINE__), \
37 "i" (flags), \
Peter Zijlstra9a938482017-02-02 14:43:51 +010038 "i" (sizeof(struct bug_entry))); \
39} while (0)
40
Ingo Molnarffb61c62018-12-19 11:20:50 +010041#else /* !CONFIG_DEBUG_BUGVERBOSE */
42
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080043#define _BUG_FLAGS(ins, flags, extra) \
Ingo Molnarffb61c62018-12-19 11:20:50 +010044do { \
Rasmus Villemoes32ee8232019-09-13 00:19:27 +020045 asm_inline volatile("1:\t" ins "\n" \
Ingo Molnarffb61c62018-12-19 11:20:50 +010046 ".pushsection __bug_table,\"aw\"\n" \
47 "2:\t" __BUG_REL(1b) "\t# bug_entry::bug_addr\n" \
48 "\t.word %c0" "\t# bug_entry::flags\n" \
49 "\t.org 2b+%c1\n" \
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080050 ".popsection\n" \
51 extra \
Ingo Molnarffb61c62018-12-19 11:20:50 +010052 : : "i" (flags), \
53 "i" (sizeof(struct bug_entry))); \
54} while (0)
55
56#endif /* CONFIG_DEBUG_BUGVERBOSE */
57
58#else
59
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080060#define _BUG_FLAGS(ins, flags, extra) asm volatile(ins)
Ingo Molnarffb61c62018-12-19 11:20:50 +010061
62#endif /* CONFIG_GENERIC_BUG */
63
Arnd Bergmann70579a82017-03-29 23:16:31 +020064#define HAVE_ARCH_BUG
Joe Perches86d8a082008-03-23 01:01:46 -070065#define BUG() \
66do { \
Thomas Gleixner5916d5f2020-03-13 13:49:51 +010067 instrumentation_begin(); \
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080068 _BUG_FLAGS(ASM_UD2, 0, ""); \
69 __builtin_unreachable(); \
Joe Perches86d8a082008-03-23 01:01:46 -070070} while (0)
Thomas Gleixner68fdc552007-10-17 17:19:30 +020071
Peter Zijlstra8e8bb062020-06-04 11:17:40 +020072/*
73 * This instrumentation_begin() is strictly speaking incorrect; but it
74 * suppresses the complaints from WARN()s in noinstr code. If such a WARN()
75 * were to trigger, we'd rather wreck the machine in an attempt to get the
76 * message out than not know about it.
77 */
Josh Poimboeuf2b5db662018-02-08 17:09:26 -060078#define __WARN_FLAGS(flags) \
79do { \
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080080 __auto_type f = BUGFLAG_WARNING|(flags); \
Thomas Gleixner5916d5f2020-03-13 13:49:51 +010081 instrumentation_begin(); \
Nick Desaulniersbfb1a7c2022-02-02 12:55:53 -080082 _BUG_FLAGS(ASM_UD2, f, ASM_REACHABLE); \
Thomas Gleixner5916d5f2020-03-13 13:49:51 +010083 instrumentation_end(); \
Josh Poimboeuf2b5db662018-02-08 17:09:26 -060084} while (0)
Peter Zijlstra9a938482017-02-02 14:43:51 +010085
Thomas Gleixner68fdc552007-10-17 17:19:30 +020086#include <asm-generic/bug.h>
David Howellsf05e7982012-03-28 18:11:12 +010087
H. Peter Anvin1965aae2008-10-22 22:26:29 -070088#endif /* _ASM_X86_BUG_H */