]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
binutils: Fix aarch64 BTI/GCS build issue with glibc 2.43
authorKhem Raj <raj.khem@gmail.com>
Thu, 27 Nov 2025 16:47:04 +0000 (08:47 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 8 Dec 2025 14:45:36 +0000 (14:45 +0000)
Backport a patch to use BTI and GCS functions with
const qualifier

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/binutils/binutils-2.45.inc
meta/recipes-devtools/binutils/binutils/0001-aarch64-constify-BTI-and-GCS-report-functions.patch [new file with mode: 0644]

index 288475ac390bf88f988df1861af7a8254b70522c..afb64316ed225d20b053de73bd5e0d4058369db8 100644 (file)
@@ -36,6 +36,7 @@ SRC_URI = "\
      file://0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch \
      file://0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch \
      file://0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch \
+        file://0001-aarch64-constify-BTI-and-GCS-report-functions.patch \
      file://0015-CVE-2025-11081.patch \
      file://0016-CVE-2025-11082.patch \
      file://0017-CVE-2025-11083.patch \
diff --git a/meta/recipes-devtools/binutils/binutils/0001-aarch64-constify-BTI-and-GCS-report-functions.patch b/meta/recipes-devtools/binutils/binutils/0001-aarch64-constify-BTI-and-GCS-report-functions.patch
new file mode 100644 (file)
index 0000000..adbcdb0
--- /dev/null
@@ -0,0 +1,74 @@
+From 0b5fa602e8a06293da734b80b0bc0a3421ed3bd4 Mon Sep 17 00:00:00 2001
+From: Matthieu Longo <matthieu.longo@arm.com>
+Date: Wed, 19 Nov 2025 17:01:56 +0000
+Subject: [PATCH] aarch64: constify BTI and GCS report functions
+
+This patch consitifies the arguments of the functions used to report BTI
+and GCS errors, and also renames the argument "ebfd" to "abfd" as this
+naming is confusing and inconsistent with others places.
+
+Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=12856136986380efff1dcba2ecd3be80e482ff15]
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ bfd/elfxx-aarch64.c | 13 ++++++++-----
+ bfd/elfxx-aarch64.h |  4 ++--
+ 2 files changed, 10 insertions(+), 7 deletions(-)
+
+diff --git a/bfd/elfxx-aarch64.c b/bfd/elfxx-aarch64.c
+index 551f74e3373..cb4566386ce 100644
+--- a/bfd/elfxx-aarch64.c
++++ b/bfd/elfxx-aarch64.c
+@@ -1098,7 +1098,8 @@ _bfd_aarch64_elf_link_fixup_gnu_properties
+
+ /* Check AArch64 BTI report.  */
+ void
+-_bfd_aarch64_elf_check_bti_report (struct bfd_link_info *info, bfd *ebfd)
++_bfd_aarch64_elf_check_bti_report (const struct bfd_link_info *info,
++                                 const bfd *abfd)
+ {
+   struct elf_aarch64_obj_tdata *tdata = elf_aarch64_tdata (info->output_bfd);
+
+@@ -1117,14 +1118,16 @@ _bfd_aarch64_elf_check_bti_report (struct bfd_link_info *info, bfd *ebfd)
+     : _("%X%pB: error: BTI is required by -z force-bti, but this input object "
+       "file lacks the necessary property note.\n");
+
+-  info->callbacks->einfo (msg, ebfd);
++  info->callbacks->einfo (msg, abfd);
+ }
+
++/* Check AArch64 GCS report.  */
+ void
+-_bfd_aarch64_elf_check_gcs_report (struct bfd_link_info *info, bfd *ebfd)
++_bfd_aarch64_elf_check_gcs_report (const struct bfd_link_info *info,
++                                 const bfd *abfd)
+ {
+   struct elf_aarch64_obj_tdata *tdata = elf_aarch64_tdata (info->output_bfd);
+-  bool dynamic_obj = (ebfd->flags & DYNAMIC) != 0;
++  bool dynamic_obj = (abfd->flags & DYNAMIC) != 0;
+
+   if (dynamic_obj)
+     {
+@@ -1161,5 +1164,5 @@ _bfd_aarch64_elf_check_gcs_report (struct bfd_link_info *info, bfd *ebfd)
+       : _("%X%pB: error: GCS is required by -z gcs, but this input object file "
+         "lacks the necessary property note.\n");
+
+-  info->callbacks->einfo (msg, ebfd);
++  info->callbacks->einfo (msg, abfd);
+ }
+diff --git a/bfd/elfxx-aarch64.h b/bfd/elfxx-aarch64.h
+index bd3642cbefe..35033059299 100644
+--- a/bfd/elfxx-aarch64.h
++++ b/bfd/elfxx-aarch64.h
+@@ -247,10 +247,10 @@ _bfd_aarch64_elf_merge_gnu_properties (struct bfd_link_info *, bfd *,
+                                      uint32_t);
+
+ extern void
+-_bfd_aarch64_elf_check_bti_report (struct bfd_link_info *, bfd *);
++_bfd_aarch64_elf_check_bti_report (const struct bfd_link_info *, const bfd *);
+
+ extern void
+-_bfd_aarch64_elf_check_gcs_report (struct bfd_link_info *, bfd *);
++_bfd_aarch64_elf_check_gcs_report (const struct bfd_link_info *, const bfd *);
+
+ extern void
+ _bfd_aarch64_elf_link_fixup_gnu_properties (struct bfd_link_info *,