projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
613871c
)
x86/retpoline: Add ANNOTATE_NOENDBR for retpolines
author
Josh Poimboeuf
<jpoimboe@redhat.com>
Mon, 18 Apr 2022 16:50:23 +0000
(09:50 -0700)
committer
Peter Zijlstra
<peterz@infradead.org>
Tue, 19 Apr 2022 19:58:49 +0000
(21:58 +0200)
The retpolines are exported, so they're referenced by ksymtab sections.
But they're never indirect-branched to, so add ANNOTATE_NOENDBR.
Fixes: ed53a0d97192 ("x86/alternative: Use .ibt_endbr_seal to seal indirect calls")
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link:
https://lkml.kernel.org/r/b6ec963dfd9301b6b1d74ef7758fcb0b540d6c6c.1650300597.git.jpoimboe@redhat.com
arch/x86/lib/retpoline.S
patch
|
blob
|
history
diff --git
a/arch/x86/lib/retpoline.S
b/arch/x86/lib/retpoline.S
index 5f87bab4fb8d1bb3c5a9cb60e9a297d533a64aae..b2b2366885a2b672960805bbb17a7c33a50952cf 100644
(file)
--- a/
arch/x86/lib/retpoline.S
+++ b/
arch/x86/lib/retpoline.S
@@
-31,6
+31,7
@@
.align RETPOLINE_THUNK_SIZE
SYM_INNER_LABEL(__x86_indirect_thunk_\reg, SYM_L_GLOBAL)
UNWIND_HINT_EMPTY
+ ANNOTATE_NOENDBR
ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), \
__stringify(RETPOLINE \reg), X86_FEATURE_RETPOLINE, \
@@
-55,7
+56,6
@@
SYM_INNER_LABEL(__x86_indirect_thunk_\reg, SYM_L_GLOBAL)
.align RETPOLINE_THUNK_SIZE
SYM_CODE_START(__x86_indirect_thunk_array)
- ANNOTATE_NOENDBR // apply_retpolines
#define GEN(reg) THUNK reg
#include <asm/GEN-for-each-reg.h>