From a8446ea78daa5875de43eb5bcccd8f536ea07e1c Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Thu, 8 Jan 2015 00:11:40 -0800 Subject: binutils: upgrade to 2.25 * Remove the following patches since they are already in the new code: binutils/fix-pr15815.patch binutils/fix-pr16428.patch binutils/fix-pr16476.patch binutils/fix-pr2404.patch binutils/replace_macros_with_static_inline.patch binutils/binutils_CVE-2014-8484.patch binutils/binutils_CVE-2014-8485.patch binutils/binutils_CVE-2014-8501.patch binutils/binutils_CVE-2014-8502.patch binutils/binutils_CVE-2014-8502_1.patch binutils/binutils_CVE-2014-8503.patch binutils/binutils_CVE-2014-8504.patch binutils/binutils_CVE-2014-8737.patch * The file src-release is gone. * Updated patches for the new code. Signed-off-by: Robert Yang Signed-off-by: Khem Raj Conflicts: meta/conf/distro/include/tcmode-default.inc --- .../binutils/binutils/binutils_CVE-2014-8501.patch | 60 ---------------------- 1 file changed, 60 deletions(-) delete mode 100644 meta/recipes-devtools/binutils/binutils/binutils_CVE-2014-8501.patch (limited to 'meta/recipes-devtools/binutils/binutils/binutils_CVE-2014-8501.patch') diff --git a/meta/recipes-devtools/binutils/binutils/binutils_CVE-2014-8501.patch b/meta/recipes-devtools/binutils/binutils/binutils_CVE-2014-8501.patch deleted file mode 100644 index a48fe9b23b..0000000000 --- a/meta/recipes-devtools/binutils/binutils/binutils_CVE-2014-8501.patch +++ /dev/null @@ -1,60 +0,0 @@ -Upstream-Status: Backport - -CVE-2014-8501 fix. - -[YOCTO #7084] - -Signed-off-by: Armin Kuster - -From 7e1e19887abd24aeb15066b141cdff5541e0ec8e Mon Sep 17 00:00:00 2001 -From: Nick Clifton -Date: Mon, 27 Oct 2014 14:45:06 +0000 -Subject: [PATCH] Fix a seg-fault in strings and other binutuils when parsing a - corrupt PE executable with an invalid value in the NumberOfRvaAndSizes field - of the AOUT header. - - PR binutils/17512 - * peXXigen.c (_bfd_XXi_swap_aouthdr_in): Handle corrupt binaries - with an invalid value for NumberOfRvaAndSizes. ---- - bfd/ChangeLog | 4 ++++ - bfd/peXXigen.c | 12 ++++++++++++ - 2 files changed, 16 insertions(+) - -Index: binutils-2.24/bfd/peXXigen.c -=================================================================== ---- binutils-2.24.orig/bfd/peXXigen.c -+++ binutils-2.24/bfd/peXXigen.c -@@ -460,6 +460,18 @@ _bfd_XXi_swap_aouthdr_in (bfd * abfd, - { - int idx; - -+ /* PR 17512: Corrupt PE binaries can cause seg-faults. */ -+ if (a->NumberOfRvaAndSizes > 16) -+ { -+ (*_bfd_error_handler) -+ (_("%B: aout header specifies an invalid number of data-directory entries: %d"), -+ abfd, a->NumberOfRvaAndSizes); -+ /* Paranoia: If the number is corrupt, then assume that the -+ actual entries themselves might be corrupt as well. */ -+ a->NumberOfRvaAndSizes = 0; -+ } -+ -+ - for (idx = 0; idx < a->NumberOfRvaAndSizes; idx++) - { - /* If data directory is empty, rva also should be 0. */ -Index: binutils-2.24/bfd/ChangeLog -=================================================================== ---- binutils-2.24.orig/bfd/ChangeLog -+++ binutils-2.24/bfd/ChangeLog -@@ -1,5 +1,9 @@ - 2014-10-27 Nick Clifton - -+ PR binutils/17512 -+ * peXXigen.c (_bfd_XXi_swap_aouthdr_in): Handle corrupt binaries -+ with an invalid value for NumberOfRvaAndSizes. -+ - PR binutils/17510 - * elf.c (setup_group): Improve handling of corrupt group - sections. -- cgit 1.2.3-korg