* [PATCH] kbuild: Steal gcc's pie from the very beginning
@ 2016-11-14 18:51 Borislav Petkov
[not found] ` <20161114201457.qsevfvn465otwfvz@linutronix.de>
0 siblings, 1 reply; 3+ messages in thread
From: Borislav Petkov @ 2016-11-14 18:51 UTC (permalink / raw)
To: linux-kbuild; +Cc: Ben Hutchings, Michal Marek, Sebastian Andrzej Siewior
From: Borislav Petkov <bp@suse.de>
So Sebastian turned off the PIE for kernel builds but that was too late
- Kbuild.include already uses KBUILD_CFLAGS and trying to disable gcc
options with, say cc-disable-warning, fails:
gcc -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs
...
-Wno-sign-compare -fno-asynchronous-unwind-tables -Wframe-address -c -x c /dev/null -o .31392.tmp
/dev/null:1:0: error: code model kernel does not support PIC mode
because that returns an error and we can't disable the warning. For
example in this case:
KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,)
which leads to gcc issuing all those warnings again.
So let's turn off PIE/PIC at the earliest possible moment, when we
declare KBUILD_CFLAGS so that cc-disable-warning picks it up too.
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Ben Hutchings <ben@decadent.org.uk>
Cc: Michal Marek <mmarek@suse.com>
Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
Makefile | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index 3ff1fb26d8b2..5558cc5b1505 100644
--- a/Makefile
+++ b/Makefile
@@ -399,11 +399,12 @@ KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
-fno-strict-aliasing -fno-common \
-Werror-implicit-function-declaration \
-Wno-format-security \
- -std=gnu89
+ -std=gnu89 -fno-PIE
+
KBUILD_AFLAGS_KERNEL :=
KBUILD_CFLAGS_KERNEL :=
-KBUILD_AFLAGS := -D__ASSEMBLY__
+KBUILD_AFLAGS := -D__ASSEMBLY__ -fno-PIE
KBUILD_AFLAGS_MODULE := -DMODULE
KBUILD_CFLAGS_MODULE := -DMODULE
KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
@@ -621,8 +622,6 @@ include arch/$(SRCARCH)/Makefile
KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,)
KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,)
-KBUILD_CFLAGS += $(call cc-option,-fno-PIE)
-KBUILD_AFLAGS += $(call cc-option,-fno-PIE)
ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
KBUILD_CFLAGS += $(call cc-option,-ffunction-sections,)
--
2.10.0
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <20161114201457.qsevfvn465otwfvz@linutronix.de>]
* [PATCH -v1.1] kbuild: Steal gcc's pie from the very beginning [not found] ` <20161114201457.qsevfvn465otwfvz@linutronix.de> @ 2016-11-14 20:45 ` Borislav Petkov 2016-11-15 16:08 ` Michal Marek 0 siblings, 1 reply; 3+ messages in thread From: Borislav Petkov @ 2016-11-14 20:45 UTC (permalink / raw) To: Sebastian Andrzej Siewior Cc: linux-kbuild, Ben Hutchings, Michal Marek, x86-ml, lkml, + On Mon, Nov 14, 2016 at 09:14:57PM +0100, Sebastian Andrzej Siewior wrote: > This also means that all feature tests fail unless the -fno-PIE is > there. > > Acked-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> > > This thing gcc v3.4 only but I intend to update the min requirement to > alteast gcc v3.4 to cover this. As per hpa gcc v3.4 is the lowest > version should be used for x86… Ah yes, here's a v1.1. Let's leave the cc-option check until we sort out the min supported gcc version. CC: stable too. Thanks! --- From: Borislav Petkov <bp@suse.de> Date: Mon, 14 Nov 2016 19:41:31 +0100 Subject: [PATCH] kbuild: Steal gcc's pie from the very beginning So Sebastian turned off the PIE for kernel builds but that was too late - Kbuild.include already uses KBUILD_CFLAGS and trying to disable gcc options with, say cc-disable-warning, fails: gcc -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs ... -Wno-sign-compare -fno-asynchronous-unwind-tables -Wframe-address -c -x c /dev/null -o .31392.tmp /dev/null:1:0: error: code model kernel does not support PIC mode because that returns an error and we can't disable the warning. For example in this case: KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,) which leads to gcc issuing all those warnings again. So let's turn off PIE/PIC at the earliest possible moment, when we declare KBUILD_CFLAGS so that cc-disable-warning picks it up too. Also, we need the $(call cc-option ...) because -fno-PIE is supported since gcc v3.4 and our lowest supported gcc version is 3.2 right now. Signed-off-by: Borislav Petkov <bp@suse.de> Cc: stable@vger.kernel.org Cc: Ben Hutchings <ben@decadent.org.uk> Cc: Michal Marek <mmarek@suse.com> Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3ff1fb26d8b2..9bc877d073d7 100644 --- a/Makefile +++ b/Makefile @@ -399,11 +399,12 @@ KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ -fno-strict-aliasing -fno-common \ -Werror-implicit-function-declaration \ -Wno-format-security \ - -std=gnu89 + -std=gnu89 $(call cc-option,-fno-PIE) + KBUILD_AFLAGS_KERNEL := KBUILD_CFLAGS_KERNEL := -KBUILD_AFLAGS := -D__ASSEMBLY__ +KBUILD_AFLAGS := -D__ASSEMBLY__ $(call cc-option,-fno-PIE) KBUILD_AFLAGS_MODULE := -DMODULE KBUILD_CFLAGS_MODULE := -DMODULE KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds @@ -621,8 +622,6 @@ include arch/$(SRCARCH)/Makefile KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,) KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,) -KBUILD_CFLAGS += $(call cc-option,-fno-PIE) -KBUILD_AFLAGS += $(call cc-option,-fno-PIE) ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION KBUILD_CFLAGS += $(call cc-option,-ffunction-sections,) -- 2.10.0 -- Regards/Gruss, Boris. Good mailing practices for 400: avoid top-posting and trim the reply. ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH -v1.1] kbuild: Steal gcc's pie from the very beginning 2016-11-14 20:45 ` [PATCH -v1.1] " Borislav Petkov @ 2016-11-15 16:08 ` Michal Marek 0 siblings, 0 replies; 3+ messages in thread From: Michal Marek @ 2016-11-15 16:08 UTC (permalink / raw) To: Borislav Petkov Cc: Sebastian Andrzej Siewior, linux-kbuild, Ben Hutchings, x86-ml, lkml, + On Mon, Nov 14, 2016 at 09:45:29PM +0100, Borislav Petkov wrote: > From: Borislav Petkov <bp@suse.de> > Date: Mon, 14 Nov 2016 19:41:31 +0100 > Subject: [PATCH] kbuild: Steal gcc's pie from the very beginning > > So Sebastian turned off the PIE for kernel builds but that was too late > - Kbuild.include already uses KBUILD_CFLAGS and trying to disable gcc > options with, say cc-disable-warning, fails: > > gcc -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs > ... > -Wno-sign-compare -fno-asynchronous-unwind-tables -Wframe-address -c -x c /dev/null -o .31392.tmp > /dev/null:1:0: error: code model kernel does not support PIC mode > > because that returns an error and we can't disable the warning. For > example in this case: > > KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,) > > which leads to gcc issuing all those warnings again. > > So let's turn off PIE/PIC at the earliest possible moment, when we > declare KBUILD_CFLAGS so that cc-disable-warning picks it up too. > > Also, we need the $(call cc-option ...) because -fno-PIE is supported > since gcc v3.4 and our lowest supported gcc version is 3.2 right now. > > Signed-off-by: Borislav Petkov <bp@suse.de> > Cc: stable@vger.kernel.org > Cc: Ben Hutchings <ben@decadent.org.uk> > Cc: Michal Marek <mmarek@suse.com> > Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Thanks, applied to kbuild.git#rc-fixes. Michal ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-11-15 16:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-14 18:51 [PATCH] kbuild: Steal gcc's pie from the very beginning Borislav Petkov
[not found] ` <20161114201457.qsevfvn465otwfvz@linutronix.de>
2016-11-14 20:45 ` [PATCH -v1.1] " Borislav Petkov
2016-11-15 16:08 ` Michal Marek
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox