summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorHaris Okanovic <haris.okanovic@ni.com>2015-05-15 16:57:11 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-20 20:54:33 +0100
commit215c4d948df8d480179e842781158bcee216d9d3 (patch)
tree691363e2c8e32057835cf292a8246978d2d7958c /meta
parent9ae261263a9cefc3eacc8dc53d023f207df6e890 (diff)
downloadpoky-215c4d948df8d480179e842781158bcee216d9d3.tar.gz
glibc: CVE-2015-1781: resolv/nss_dns/dns-host.c buffer overflow
Backport Arjun Shankar's patch for CVE-2015-1781: A buffer overflow flaw was found in the way glibc's gethostbyname_r() and other related functions computed the size of a buffer when passed a misaligned buffer as input. An attacker able to make an application call any of these functions with a misaligned buffer could use this flaw to crash the application or, potentially, execute arbitrary code with the permissions of the user running the application. https://sourceware.org/bugzilla/show_bug.cgi?id=18287 (From OE-Core rev: c0f0b6e6ef1edc0a9f9e1ceffb1cdbbef2e409c6) (From OE-Core rev: 96ff830b79c64d8f35c311b66906b492cbeeeb55) Signed-off-by: Haris Okanovic <haris.okanovic@ni.com> Reviewed-by: Ben Shelton <ben.shelton@ni.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-core/glibc/glibc/CVE-2015-1781-resolv-nss_dns-dns-host.c-buffer-overf.patch43
-rw-r--r--meta/recipes-core/glibc/glibc_2.20.bb3
2 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc/CVE-2015-1781-resolv-nss_dns-dns-host.c-buffer-overf.patch b/meta/recipes-core/glibc/glibc/CVE-2015-1781-resolv-nss_dns-dns-host.c-buffer-overf.patch
new file mode 100644
index 0000000000..c02fa127cd
--- /dev/null
+++ b/meta/recipes-core/glibc/glibc/CVE-2015-1781-resolv-nss_dns-dns-host.c-buffer-overf.patch
@@ -0,0 +1,43 @@
1From 2959eda9272a033863c271aff62095abd01bd4e3 Mon Sep 17 00:00:00 2001
2From: Arjun Shankar <arjun.is@lostca.se>
3Date: Tue, 21 Apr 2015 14:06:31 +0200
4Subject: [PATCH] CVE-2015-1781: resolv/nss_dns/dns-host.c buffer overflow
5 [BZ#18287]
6
7Upstream-Status: Backport
8https://sourceware.org/bugzilla/show_bug.cgi?id=18287
9---
10 resolv/nss_dns/dns-host.c | 3 ++-
11 1 file changed, 2 insertions(+), 1 deletion(-)
12
13diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c
14index b16b0ddf110907a0086b86612e544d3dc75182b8..d8c55791591750567f00e616e5d7b378dec934a0 100644
15--- a/resolv/nss_dns/dns-host.c
16+++ b/resolv/nss_dns/dns-host.c
17@@ -608,21 +608,22 @@ getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype,
18 int n, ancount, qdcount;
19 int haveanswer, had_error;
20 char *bp, **ap, **hap;
21 char tbuf[MAXDNAME];
22 const char *tname;
23 int (*name_ok) (const char *);
24 u_char packtmp[NS_MAXCDNAME];
25 int have_to_map = 0;
26 uintptr_t pad = -(uintptr_t) buffer % __alignof__ (struct host_data);
27 buffer += pad;
28- if (__glibc_unlikely (buflen < sizeof (struct host_data) + pad))
29+ buflen = buflen > pad ? buflen - pad : 0;
30+ if (__glibc_unlikely (buflen < sizeof (struct host_data)))
31 {
32 /* The buffer is too small. */
33 too_small:
34 *errnop = ERANGE;
35 *h_errnop = NETDB_INTERNAL;
36 return NSS_STATUS_TRYAGAIN;
37 }
38 host_data = (struct host_data *) buffer;
39 linebuflen = buflen - sizeof (struct host_data);
40 if (buflen - sizeof (struct host_data) != linebuflen)
41--
422.2.2
43
diff --git a/meta/recipes-core/glibc/glibc_2.20.bb b/meta/recipes-core/glibc/glibc_2.20.bb
index 8a8b296def..a0736cdeec 100644
--- a/meta/recipes-core/glibc/glibc_2.20.bb
+++ b/meta/recipes-core/glibc/glibc_2.20.bb
@@ -40,6 +40,9 @@ EGLIBCPATCHES = "\
40# file://eglibc-install-pic-archives.patch \ 40# file://eglibc-install-pic-archives.patch \
41# file://initgroups_keys.patch \ 41# file://initgroups_keys.patch \
42# 42#
43CVEPATCHES = "\
44 file://CVE-2015-1781-resolv-nss_dns-dns-host.c-buffer-overf.patch \
45"
43 46
44CVEPATCHES = "\ 47CVEPATCHES = "\
45 file://CVE-2014-7817-wordexp-fails-to-honour-WRDE_NOCMD.patch \ 48 file://CVE-2014-7817-wordexp-fails-to-honour-WRDE_NOCMD.patch \