summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/elfutils
diff options
context:
space:
mode:
authorSoumya Sambu <soumya.sambu@windriver.com>2025-10-24 18:51:03 +0530
committerSteve Sakoman <steve@sakoman.com>2025-11-03 07:17:01 -0800
commit4c457412c8691c73963213223c5486eeef18ba58 (patch)
treefebe07066015aab2a1830fe853143dd21dc2cbcd /meta/recipes-devtools/elfutils
parent12f14af0bb0d57f2eace60ee5027dc83bfdc48ca (diff)
downloadpoky-4c457412c8691c73963213223c5486eeef18ba58.tar.gz
elfutils: Fix CVE-2025-1377
A vulnerability, which was classified as problematic, has been found in GNU elfutils 0.192. This issue affects the function gelf_getsymshndx of the file strip.c of the component eu-strip. The manipulation leads to denial of service. The attack needs to be approached locally. The exploit has been disclosed to the public and may be used. The identifier of the patch is fbf1df9ca286de3323ae541973b08449f8d03aba. It is recommended to apply a patch to fix this issue. Reference: https://nvd.nist.gov/vuln/detail/CVE-2025-1377 Upstream patch: https://sourceware.org/git/?p=elfutils.git;a=fbf1df9ca286de3323ae541973b08449f8d03aba (From OE-Core rev: ae89d0c2ca49c40429f787577d280b5886f42cc1) Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-devtools/elfutils')
-rw-r--r--meta/recipes-devtools/elfutils/elfutils_0.191.bb1
-rw-r--r--meta/recipes-devtools/elfutils/files/CVE-2025-1377.patch69
2 files changed, 70 insertions, 0 deletions
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.191.bb b/meta/recipes-devtools/elfutils/elfutils_0.191.bb
index c5f357eb93..0fd6d31af1 100644
--- a/meta/recipes-devtools/elfutils/elfutils_0.191.bb
+++ b/meta/recipes-devtools/elfutils/elfutils_0.191.bb
@@ -29,6 +29,7 @@ SRC_URI = "https://sourceware.org/elfutils/ftp/${PV}/${BP}.tar.bz2 \
29 file://CVE-2025-1371.patch \ 29 file://CVE-2025-1371.patch \
30 file://0007-Fix-build-with-gcc-15.patch \ 30 file://0007-Fix-build-with-gcc-15.patch \
31 file://CVE-2025-1376.patch \ 31 file://CVE-2025-1376.patch \
32 file://CVE-2025-1377.patch \
32 " 33 "
33SRC_URI:append:libc-musl = " \ 34SRC_URI:append:libc-musl = " \
34 file://0003-musl-utils.patch \ 35 file://0003-musl-utils.patch \
diff --git a/meta/recipes-devtools/elfutils/files/CVE-2025-1377.patch b/meta/recipes-devtools/elfutils/files/CVE-2025-1377.patch
new file mode 100644
index 0000000000..31a9ec33f2
--- /dev/null
+++ b/meta/recipes-devtools/elfutils/files/CVE-2025-1377.patch
@@ -0,0 +1,69 @@
1From fbf1df9ca286de3323ae541973b08449f8d03aba Mon Sep 17 00:00:00 2001
2From: Mark Wielaard <mark@klomp.org>
3Date: Thu, 13 Feb 2025 14:59:34 +0100
4Subject: [PATCH] strip: Verify symbol table is a real symbol table
5
6We didn't check the symbol table referenced from the relocation table
7was a real symbol table. This could cause a crash if that section
8happened to be an SHT_NOBITS section without any data. Fix this by
9adding an explicit check.
10
11 * src/strip.c (INTERNAL_ERROR_MSG): New macro that takes a
12 message string to display.
13 (INTERNAL_ERROR): Use INTERNAL_ERROR_MSG with elf_errmsg (-1).
14 (remove_debug_relocations): Check the sh_link referenced
15 section is real and isn't a SHT_NOBITS section.
16
17https://sourceware.org/bugzilla/show_bug.cgi?id=32673
18
19Signed-off-by: Mark Wielaard <mark@klomp.org>
20
21CVE: CVE-2025-1377
22
23Upstream-Status: Backport [https://sourceware.org/git/?p=elfutils.git;a=fbf1df9ca286de3323ae541973b08449f8d03aba]
24
25Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
26---
27 src/strip.c | 14 +++++++++++---
28 1 file changed, 11 insertions(+), 3 deletions(-)
29
30diff --git a/src/strip.c b/src/strip.c
31index 6436443..16922e9 100644
32--- a/src/strip.c
33+++ b/src/strip.c
34@@ -126,13 +126,14 @@ static char *tmp_debug_fname = NULL;
35 /* Close debug file descriptor, if opened. And remove temporary debug file. */
36 static void cleanup_debug (void);
37
38-#define INTERNAL_ERROR(fname) \
39+#define INTERNAL_ERROR_MSG(fname, msg) \
40 do { \
41 cleanup_debug (); \
42 error_exit (0, _("%s: INTERNAL ERROR %d (%s): %s"), \
43- fname, __LINE__, PACKAGE_VERSION, elf_errmsg (-1)); \
44+ fname, __LINE__, PACKAGE_VERSION, msg); \
45 } while (0)
46
47+#define INTERNAL_ERROR(fname) INTERNAL_ERROR_MSG(fname, elf_errmsg (-1))
48
49 /* Name of the output file. */
50 static const char *output_fname;
51@@ -631,7 +632,14 @@ remove_debug_relocations (Ebl *ebl, Elf *elf, GElf_Ehdr *ehdr,
52 resolve relocation symbol indexes. */
53 Elf64_Word symt = shdr->sh_link;
54 Elf_Data *symdata, *xndxdata;
55- Elf_Scn * symscn = elf_getscn (elf, symt);
56+ Elf_Scn *symscn = elf_getscn (elf, symt);
57+ GElf_Shdr symshdr_mem;
58+ GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
59+ if (symshdr == NULL)
60+ INTERNAL_ERROR (fname);
61+ if (symshdr->sh_type == SHT_NOBITS)
62+ INTERNAL_ERROR_MSG (fname, "NOBITS section");
63+
64 symdata = elf_getdata (symscn, NULL);
65 xndxdata = get_xndxdata (elf, symscn);
66 if (symdata == NULL)
67--
682.40.0
69