* [PATCH 1/2] make.sh: x86_64: Enable CET full
@ 2023-07-11 13:27 Michael Tremer
2023-07-11 13:27 ` [PATCH 2/2] make.sh: aarch64: Enable all branch protection methods Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Michael Tremer @ 2023-07-11 13:27 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 833 bytes --]
-fcf-protection enables Indirect Branch Tracking, which we have recently
enabled in the kernel. We should enable this in userspace, too.
I could not find out what GCC defaults to without any value, so this
patch is explicitely enabling IBT for function returns, indirect
function calls and indirect jumps.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
make.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/make.sh b/make.sh
index 57b6c6f15..f07604073 100755
--- a/make.sh
+++ b/make.sh
@@ -145,7 +145,7 @@ configure_build() {
BUILDTARGET="${build_arch}-pc-linux-gnu"
CROSSTARGET="${build_arch}-cross-linux-gnu"
BUILD_PLATFORM="x86"
- CFLAGS_ARCH="-m64 -mtune=generic -fcf-protection"
+ CFLAGS_ARCH="-m64 -mtune=generic -fcf-protection=full"
;;
aarch64)
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 2/2] make.sh: aarch64: Enable all branch protection methods
2023-07-11 13:27 [PATCH 1/2] make.sh: x86_64: Enable CET full Michael Tremer
@ 2023-07-11 13:27 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2023-07-11 13:27 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 568 bytes --]
At this time, this will enable return address signing, and branch target
identification.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
make.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/make.sh b/make.sh
index f07604073..7c279b197 100755
--- a/make.sh
+++ b/make.sh
@@ -152,7 +152,7 @@ configure_build() {
BUILDTARGET="${build_arch}-pc-linux-gnu"
CROSSTARGET="${build_arch}-cross-linux-gnu"
BUILD_PLATFORM="arm"
- CFLAGS_ARCH=""
+ CFLAGS_ARCH="-mbranch-protection=standard"
;;
riscv64)
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-07-11 13:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-11 13:27 [PATCH 1/2] make.sh: x86_64: Enable CET full Michael Tremer
2023-07-11 13:27 ` [PATCH 2/2] make.sh: aarch64: Enable all branch protection methods Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox