diff options
| -rw-r--r-- | meta/recipes-devtools/binutils/binutils-2.30.inc | 1 | ||||
| -rw-r--r-- | meta/recipes-devtools/binutils/binutils/CVE-2018-10372.patch | 58 |
2 files changed, 59 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils-2.30.inc b/meta/recipes-devtools/binutils/binutils-2.30.inc index 7b1705e8eb..8693757e18 100644 --- a/meta/recipes-devtools/binutils/binutils-2.30.inc +++ b/meta/recipes-devtools/binutils/binutils-2.30.inc | |||
| @@ -44,6 +44,7 @@ SRC_URI = "\ | |||
| 44 | file://CVE-2018-7569.patch \ | 44 | file://CVE-2018-7569.patch \ |
| 45 | file://CVE-2018-7568.patch \ | 45 | file://CVE-2018-7568.patch \ |
| 46 | file://CVE-2018-10373.patch \ | 46 | file://CVE-2018-10373.patch \ |
| 47 | file://CVE-2018-10372.patch \ | ||
| 47 | " | 48 | " |
| 48 | S = "${WORKDIR}/git" | 49 | S = "${WORKDIR}/git" |
| 49 | 50 | ||
diff --git a/meta/recipes-devtools/binutils/binutils/CVE-2018-10372.patch b/meta/recipes-devtools/binutils/binutils/CVE-2018-10372.patch new file mode 100644 index 0000000000..053e9d8d64 --- /dev/null +++ b/meta/recipes-devtools/binutils/binutils/CVE-2018-10372.patch | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | From 6aea08d9f3e3d6475a65454da488a0c51f5dc97d Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Nick Clifton <nickc@redhat.com> | ||
| 3 | Date: Tue, 17 Apr 2018 12:35:55 +0100 | ||
| 4 | Subject: [PATCH] Fix illegal memory access when parsing corrupt DWARF | ||
| 5 | information. | ||
| 6 | |||
| 7 | PR 23064 | ||
| 8 | * dwarf.c (process_cu_tu_index): Test for a potential buffer | ||
| 9 | overrun before copying signature pointer. | ||
| 10 | |||
| 11 | Upstream-Status: Backport | ||
| 12 | Affects: Binutils <= 2.30 | ||
| 13 | CVE: CVE-2018-10372 | ||
| 14 | Signed-off-by: Armin Kuster <akuster@mvista.com> | ||
| 15 | |||
| 16 | --- | ||
| 17 | binutils/ChangeLog | 6 ++++++ | ||
| 18 | binutils/dwarf.c | 13 ++++++++++++- | ||
| 19 | 2 files changed, 18 insertions(+), 1 deletion(-) | ||
| 20 | |||
| 21 | Index: git/binutils/dwarf.c | ||
| 22 | =================================================================== | ||
| 23 | --- git.orig/binutils/dwarf.c | ||
| 24 | +++ git/binutils/dwarf.c | ||
| 25 | @@ -9252,7 +9252,18 @@ process_cu_tu_index (struct dwarf_sectio | ||
| 26 | } | ||
| 27 | |||
| 28 | if (!do_display) | ||
| 29 | - memcpy (&this_set[row - 1].signature, ph, sizeof (uint64_t)); | ||
| 30 | + { | ||
| 31 | + size_t num_copy = sizeof (uint64_t); | ||
| 32 | + | ||
| 33 | + /* PR 23064: Beware of buffer overflow. */ | ||
| 34 | + if (ph + num_copy < limit) | ||
| 35 | + memcpy (&this_set[row - 1].signature, ph, num_copy); | ||
| 36 | + else | ||
| 37 | + { | ||
| 38 | + warn (_("Signature (%p) extends beyond end of space in section\n"), ph); | ||
| 39 | + return 0; | ||
| 40 | + } | ||
| 41 | + } | ||
| 42 | |||
| 43 | prow = poffsets + (row - 1) * ncols * 4; | ||
| 44 | /* PR 17531: file: b8ce60a8. */ | ||
| 45 | Index: git/binutils/ChangeLog | ||
| 46 | =================================================================== | ||
| 47 | --- git.orig/binutils/ChangeLog | ||
| 48 | +++ git/binutils/ChangeLog | ||
| 49 | @@ -1,3 +1,9 @@ | ||
| 50 | +2018-04-17 Nick Clifton <nickc@redhat.com> | ||
| 51 | + | ||
| 52 | + PR 23064 | ||
| 53 | + * dwarf.c (process_cu_tu_index): Test for a potential buffer | ||
| 54 | + overrun before copying signature pointer. | ||
| 55 | + | ||
| 56 | 2018-01-27 Nick Clifton <nickc@redhat.com> | ||
| 57 | |||
| 58 | Back to development. | ||
