summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorArmin Kuster <akuster@mvista.com>2016-04-27 17:47:21 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-29 07:41:43 +0100
commit2928ca48e98f064aacf8c121a2425224c83596a5 (patch)
tree3615f862bf677a44ccea9ce6670f5278e8b3bd6f /meta/recipes-core
parent3c6ead9129d35b71c6067c7d46ab3a8d12a121de (diff)
downloadpoky-2928ca48e98f064aacf8c121a2425224c83596a5.tar.gz
busybox: Security Fix CVE-2016-2148
busybox <= 1.24.2 (From OE-Core rev: ff1a31824a2a43e63682a176a904de43ad0e1c2e) Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/busybox/busybox/CVE-2016-2148.patch74
-rw-r--r--meta/recipes-core/busybox/busybox_1.24.1.bb1
2 files changed, 75 insertions, 0 deletions
diff --git a/meta/recipes-core/busybox/busybox/CVE-2016-2148.patch b/meta/recipes-core/busybox/busybox/CVE-2016-2148.patch
new file mode 100644
index 0000000000..af04a7f5bd
--- /dev/null
+++ b/meta/recipes-core/busybox/busybox/CVE-2016-2148.patch
@@ -0,0 +1,74 @@
1From 352f79acbd759c14399e39baef21fc4ffe180ac2 Mon Sep 17 00:00:00 2001
2From: Denys Vlasenko <vda.linux@googlemail.com>
3Date: Fri, 26 Feb 2016 15:54:56 +0100
4Subject: [PATCH] udhcpc: fix OPTION_6RD parsing (could overflow its malloced
5 buffer)
6
7Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
8
9Upstream-Status: Backport
10CVE: CVE-2016-2148
11https://git.busybox.net/busybox/commit/?id=352f79
12
13Signed-off-by: Armin Kuster <akuster@mvista.com>
14
15---
16 networking/udhcp/common.c | 15 +++++++++++++--
17 networking/udhcp/dhcpc.c | 4 ++--
18 2 files changed, 15 insertions(+), 4 deletions(-)
19
20Index: busybox-1.23.2/networking/udhcp/common.c
21===================================================================
22--- busybox-1.23.2.orig/networking/udhcp/common.c
23+++ busybox-1.23.2/networking/udhcp/common.c
24@@ -142,7 +142,7 @@ const char dhcp_option_strings[] ALIGN1
25 * udhcp_str2optset: to determine how many bytes to allocate.
26 * xmalloc_optname_optval: to estimate string length
27 * from binary option length: (option[LEN] / dhcp_option_lengths[opt_type])
28- * is the number of elements, multiply in by one element's string width
29+ * is the number of elements, multiply it by one element's string width
30 * (len_of_option_as_string[opt_type]) and you know how wide string you need.
31 */
32 const uint8_t dhcp_option_lengths[] ALIGN1 = {
33@@ -162,7 +162,18 @@ const uint8_t dhcp_option_lengths[] ALIG
34 [OPTION_S32] = 4,
35 /* Just like OPTION_STRING, we use minimum length here */
36 [OPTION_STATIC_ROUTES] = 5,
37- [OPTION_6RD] = 22, /* ignored by udhcp_str2optset */
38+ [OPTION_6RD] = 12, /* ignored by udhcp_str2optset */
39+ /* The above value was chosen as follows:
40+ * len_of_option_as_string[] for this option is >60: it's a string of the form
41+ * "32 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 ".
42+ * Each additional ipv4 address takes 4 bytes in binary option and appends
43+ * another "255.255.255.255 " 16-byte string. We can set [OPTION_6RD] = 4
44+ * but this severely overestimates string length: instead of 16 bytes,
45+ * it adds >60 for every 4 bytes in binary option.
46+ * We cheat and declare here that option is in units of 12 bytes.
47+ * This adds more than 60 bytes for every three ipv4 addresses - more than enough.
48+ * (Even 16 instead of 12 should work, but let's be paranoid).
49+ */
50 };
51
52
53Index: busybox-1.23.2/networking/udhcp/dhcpc.c
54===================================================================
55--- busybox-1.23.2.orig/networking/udhcp/dhcpc.c
56+++ busybox-1.23.2/networking/udhcp/dhcpc.c
57@@ -103,7 +103,7 @@ static const uint8_t len_of_option_as_st
58 [OPTION_IP ] = sizeof("255.255.255.255 "),
59 [OPTION_IP_PAIR ] = sizeof("255.255.255.255 ") * 2,
60 [OPTION_STATIC_ROUTES ] = sizeof("255.255.255.255/32 255.255.255.255 "),
61- [OPTION_6RD ] = sizeof("32 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 "),
62+ [OPTION_6RD ] = sizeof("132 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 "),
63 [OPTION_STRING ] = 1,
64 [OPTION_STRING_HOST ] = 1,
65 #if ENABLE_FEATURE_UDHCP_RFC3397
66@@ -214,7 +214,7 @@ static NOINLINE char *xmalloc_optname_op
67 type = optflag->flags & OPTION_TYPE_MASK;
68 optlen = dhcp_option_lengths[type];
69 upper_length = len_of_option_as_string[type]
70- * ((unsigned)(len + optlen - 1) / (unsigned)optlen);
71+ * ((unsigned)(len + optlen) / (unsigned)optlen);
72
73 dest = ret = xmalloc(upper_length + strlen(opt_name) + 2);
74 dest += sprintf(ret, "%s=", opt_name);
diff --git a/meta/recipes-core/busybox/busybox_1.24.1.bb b/meta/recipes-core/busybox/busybox_1.24.1.bb
index f699f993b5..61fc878697 100644
--- a/meta/recipes-core/busybox/busybox_1.24.1.bb
+++ b/meta/recipes-core/busybox/busybox_1.24.1.bb
@@ -44,6 +44,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
44 file://rcS \ 44 file://rcS \
45 file://rcK \ 45 file://rcK \
46 file://runlevel \ 46 file://runlevel \
47 file://CVE-2016-2148.patch \
47" 48"
48SRC_URI_append_libc-musl = " file://musl.cfg " 49SRC_URI_append_libc-musl = " file://musl.cfg "
49 50