]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - releases/4.15.10/objtool-retpolines-integrate-objtool-with-retpoline-support-more-closely.patch
Fix up backported ptrace patch
[thirdparty/kernel/stable-queue.git] / releases / 4.15.10 / objtool-retpolines-integrate-objtool-with-retpoline-support-more-closely.patch
CommitLineData
8107aff4
GKH
1From d5028ba8ee5a18c9d0bb926d883c28b370f89009 Mon Sep 17 00:00:00 2001
2From: Peter Zijlstra <peterz@infradead.org>
3Date: Tue, 6 Feb 2018 09:46:13 +0100
4Subject: objtool, retpolines: Integrate objtool with retpoline support more closely
5
6From: Peter Zijlstra <peterz@infradead.org>
7
8commit d5028ba8ee5a18c9d0bb926d883c28b370f89009 upstream.
9
10Disable retpoline validation in objtool if your compiler sucks, and otherwise
11select the validation stuff for CONFIG_RETPOLINE=y (most builds would already
12have it set due to ORC).
13
14Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
15Acked-by: Thomas Gleixner <tglx@linutronix.de>
16Cc: Andy Lutomirski <luto@kernel.org>
17Cc: Arjan van de Ven <arjan@linux.intel.com>
18Cc: Borislav Petkov <bp@alien8.de>
19Cc: Dan Williams <dan.j.williams@intel.com>
20Cc: Dave Hansen <dave.hansen@linux.intel.com>
21Cc: David Woodhouse <dwmw2@infradead.org>
22Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
23Cc: Josh Poimboeuf <jpoimboe@redhat.com>
24Cc: Linus Torvalds <torvalds@linux-foundation.org>
25Cc: Peter Zijlstra <peterz@infradead.org>
26Signed-off-by: Ingo Molnar <mingo@kernel.org>
27Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
28
29---
30 Makefile | 5 +++++
31 arch/x86/Kconfig | 1 +
32 arch/x86/Makefile | 10 +++-------
33 scripts/Makefile.build | 2 ++
34 4 files changed, 11 insertions(+), 7 deletions(-)
35
36--- a/Makefile
37+++ b/Makefile
38@@ -487,6 +487,11 @@ KBUILD_CFLAGS += $(CLANG_TARGET) $(CLANG
39 KBUILD_AFLAGS += $(CLANG_TARGET) $(CLANG_GCC_TC)
40 endif
41
42+RETPOLINE_CFLAGS_GCC := -mindirect-branch=thunk-extern -mindirect-branch-register
43+RETPOLINE_CFLAGS_CLANG := -mretpoline-external-thunk
44+RETPOLINE_CFLAGS := $(call cc-option,$(RETPOLINE_CFLAGS_GCC),$(call cc-option,$(RETPOLINE_CFLAGS_CLANG)))
45+export RETPOLINE_CFLAGS
46+
47 ifeq ($(config-targets),1)
48 # ===========================================================================
49 # *config targets only - make sure prerequisites are updated, and descend
50--- a/arch/x86/Kconfig
51+++ b/arch/x86/Kconfig
52@@ -432,6 +432,7 @@ config GOLDFISH
53 config RETPOLINE
54 bool "Avoid speculative indirect branches in kernel"
55 default y
56+ select STACK_VALIDATION if HAVE_STACK_VALIDATION
57 help
58 Compile kernel with the retpoline compiler options to guard against
59 kernel-to-user data leaks by avoiding speculative indirect
60--- a/arch/x86/Makefile
61+++ b/arch/x86/Makefile
62@@ -232,13 +232,9 @@ KBUILD_CFLAGS += -fno-asynchronous-unwin
63
64 # Avoid indirect branches in kernel to deal with Spectre
65 ifdef CONFIG_RETPOLINE
66- RETPOLINE_CFLAGS_GCC := -mindirect-branch=thunk-extern -mindirect-branch-register
67- RETPOLINE_CFLAGS_CLANG := -mretpoline-external-thunk
68-
69- RETPOLINE_CFLAGS += $(call cc-option,$(RETPOLINE_CFLAGS_GCC),$(call cc-option,$(RETPOLINE_CFLAGS_CLANG)))
70- ifneq ($(RETPOLINE_CFLAGS),)
71- KBUILD_CFLAGS += $(RETPOLINE_CFLAGS) -DRETPOLINE
72- endif
73+ifneq ($(RETPOLINE_CFLAGS),)
74+ KBUILD_CFLAGS += $(RETPOLINE_CFLAGS) -DRETPOLINE
75+endif
76 endif
77
78 archscripts: scripts_basic
79--- a/scripts/Makefile.build
80+++ b/scripts/Makefile.build
81@@ -267,8 +267,10 @@ else
82 objtool_args += $(call cc-ifversion, -lt, 0405, --no-unreachable)
83 endif
84 ifdef CONFIG_RETPOLINE
85+ifneq ($(RETPOLINE_CFLAGS),)
86 objtool_args += --retpoline
87 endif
88+endif
89
90
91 ifdef CONFIG_MODVERSIONS