summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/binutils/binutils/CVE-2021-46174.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils/CVE-2021-46174.patch')
-rw-r--r--meta/recipes-devtools/binutils/binutils/CVE-2021-46174.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils/CVE-2021-46174.patch b/meta/recipes-devtools/binutils/binutils/CVE-2021-46174.patch
new file mode 100644
index 0000000000..2addf5139e
--- /dev/null
+++ b/meta/recipes-devtools/binutils/binutils/CVE-2021-46174.patch
@@ -0,0 +1,35 @@
1From 46322722ad40ac1a75672ae0f62f4969195f1368 Mon Sep 17 00:00:00 2001
2From: Alan Modra <amodra@gmail.com>
3Date: Thu, 20 Jan 2022 13:58:38 +1030
4Subject: [PATCH] PR28753, buffer overflow in read_section_stabs_debugging_info
5
6 PR 28753
7 * rddbg.c (read_section_stabs_debugging_info): Don't read past
8 end of section when concatentating stab strings.
9
10CVE: CVE-2021-46174
11Upstream-Status: Backport [https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=cad4d6b91e97]
12
13(cherry picked from commit 085b299b71721e15f5c5c5344dc3e4e4536dadba)
14(cherry picked from commit cad4d6b91e97b6962807d33c04ed7e7797788438)
15Signed-off-by: poojitha adireddy <pooadire@cisco.com>
16---
17 binutils/rddbg.c | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20diff --git a/binutils/rddbg.c b/binutils/rddbg.c
21index 72e934055b5..5e76d94a3c4 100644
22--- a/binutils/rddbg.c
23+++ b/binutils/rddbg.c
24@@ -207,7 +207,7 @@ read_section_stabs_debugging_info (bfd *abfd, asymbol **syms, long symcount,
25 an attempt to read the byte before 'strings' would occur. */
26 while ((len = strlen (s)) > 0
27 && s[len - 1] == '\\'
28- && stab + 12 < stabs + stabsize)
29+ && stab + 16 <= stabs + stabsize)
30 {
31 char *p;
32
33--
342.23.1
35