mirror of
https://git.yoctoproject.org/poky
synced 2026-04-16 15:32:13 +02:00
binutils: Security fix for CVE-2019-12972
Source: git://sourceware.org / binutils-gdb.git MR: 98770 Type: Security Fix Disposition: Backport from https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=890f750a3b053532a4b839a2dd6243076de12031 ChangeID: 7ced6bffbe01cbeadf50177eb332eef514baa19c Description: Fixes CVE-2019-12972 (From OE-Core rev: 16f4520f5cb581eb93bd3f0e3aa1feecc5c567ba) Signed-off-by: Armin Kuster <akuster@mvista.com> [v2] forgot to refresh inc file before sending Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d39b67e491
commit
176dc6eb01
@@ -47,6 +47,7 @@ SRC_URI = "\
|
||||
file://CVE-2018-18606.patch \
|
||||
file://CVE-2018-18607.patch \
|
||||
file://CVE-2019-14444.patch \
|
||||
file://CVE-2019-12972.patch \
|
||||
"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
||||
39
meta/recipes-devtools/binutils/binutils/CVE-2019-12972.patch
Normal file
39
meta/recipes-devtools/binutils/binutils/CVE-2019-12972.patch
Normal file
@@ -0,0 +1,39 @@
|
||||
From 890f750a3b053532a4b839a2dd6243076de12031 Mon Sep 17 00:00:00 2001
|
||||
From: Alan Modra <amodra@gmail.com>
|
||||
Date: Fri, 21 Jun 2019 11:51:38 +0930
|
||||
Subject: [PATCH] PR24689, string table corruption
|
||||
|
||||
The testcase in the PR had a e_shstrndx section of type SHT_GROUP.
|
||||
hdr->contents were initialized by setup_group rather than being read
|
||||
from the file, thus last byte was not zero and string dereference ran
|
||||
off the end of the buffer.
|
||||
|
||||
PR 24689
|
||||
* elfcode.h (elf_object_p): Check type of e_shstrndx section.
|
||||
|
||||
Upstream-Status: Backport
|
||||
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=890f750a3b053532a4b839a2dd6243076de12031
|
||||
|
||||
CVE: CVE-2019-12972
|
||||
Affects: <= 2.23.0
|
||||
Dropped Changelog
|
||||
Signed-off-by Armin Kuster <akuster@mvista.com>
|
||||
---
|
||||
bfd/ChangeLog | 5 +++++
|
||||
bfd/elfcode.h | 3 ++-
|
||||
2 files changed, 7 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: git/bfd/elfcode.h
|
||||
===================================================================
|
||||
--- git.orig/bfd/elfcode.h
|
||||
+++ git/bfd/elfcode.h
|
||||
@@ -747,7 +747,8 @@ elf_object_p (bfd *abfd)
|
||||
/* A further sanity check. */
|
||||
if (i_ehdrp->e_shnum != 0)
|
||||
{
|
||||
- if (i_ehdrp->e_shstrndx >= elf_numsections (abfd))
|
||||
+ if (i_ehdrp->e_shstrndx >= elf_numsections (abfd)
|
||||
+ || i_shdrp[i_ehdrp->e_shstrndx].sh_type != SHT_STRTAB)
|
||||
{
|
||||
/* PR 2257:
|
||||
We used to just goto got_wrong_format_error here
|
||||
Reference in New Issue
Block a user