summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/qemu/qemu/CVE-2018-18954.patch
diff options
context:
space:
mode:
authorDan Tran <dantran@microsoft.com>2019-09-20 18:46:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-10-10 16:52:30 +0100
commit7d0a5058e604ff7fc1dc3fe547138a2b85f467a1 (patch)
treedd11efd6370c1f6fcf387c03804411bf475711ae /meta/recipes-devtools/qemu/qemu/CVE-2018-18954.patch
parent70f57755d7e841748ec9cfccf6698a9f317bee5e (diff)
downloadpoky-7d0a5058e604ff7fc1dc3fe547138a2b85f467a1.tar.gz
qemu: Fix 4 CVEs
Fixes CVE-2018-18954, CVE-2019-3812, CVE-2019-6778, and CVE-2019-8934. Also deleted duplicated patch and cleanup. (From OE-Core rev: e4b6a39bdf1b660233a7145599cd4fc3e971fc8f) Signed-off-by: Dan Tran <dantran@microsoft.com> [fixup for thud-next] Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu/CVE-2018-18954.patch')
-rw-r--r--meta/recipes-devtools/qemu/qemu/CVE-2018-18954.patch50
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu/CVE-2018-18954.patch b/meta/recipes-devtools/qemu/qemu/CVE-2018-18954.patch
new file mode 100644
index 0000000000..9fe136455f
--- /dev/null
+++ b/meta/recipes-devtools/qemu/qemu/CVE-2018-18954.patch
@@ -0,0 +1,50 @@
1From 3c9fd43da473a324f6cc7a0d3db58f651a2d262c Mon Sep 17 00:00:00 2001
2From: Prasad J Pandit <pjp@fedoraproject.org>
3Date: Fri, 26 Oct 2018 18:03:58 +0530
4Subject: [PATCH] ppc/pnv: check size before data buffer access
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9While performing PowerNV memory r/w operations, the access length
10'sz' could exceed the data[4] buffer size. Add check to avoid OOB
11access.
12
13Reported-by: Moguofang <moguofang@huawei.com>
14Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
15Reviewed-by: Cédric Le Goater <clg@kaod.org>
16Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
17
18CVE: CVE-2018-18954
19Upstream-Status: Backport
20[https://git.qemu.org/?p=qemu.git;a=commit;h=d07945e78eb6b593cd17a4640c1fc9eb35e3245d]
21
22Signed-off-by: Dan Tran <dantran@microsoft.com>
23---
24 hw/ppc/pnv_lpc.c | 8 +++++++-
25 1 file changed, 7 insertions(+), 1 deletion(-)
26
27diff --git a/hw/ppc/pnv_lpc.c b/hw/ppc/pnv_lpc.c
28index d7721320a2..172a915cfc 100644
29--- a/hw/ppc/pnv_lpc.c
30+++ b/hw/ppc/pnv_lpc.c
31@@ -155,9 +155,15 @@ static void pnv_lpc_do_eccb(PnvLpcController *lpc, uint64_t cmd)
32 /* XXX Check for magic bits at the top, addr size etc... */
33 unsigned int sz = (cmd & ECCB_CTL_SZ_MASK) >> ECCB_CTL_SZ_LSH;
34 uint32_t opb_addr = cmd & ECCB_CTL_ADDR_MASK;
35- uint8_t data[4];
36+ uint8_t data[8];
37 bool success;
38
39+ if (sz > sizeof(data)) {
40+ qemu_log_mask(LOG_GUEST_ERROR,
41+ "ECCB: invalid operation at @0x%08x size %d\n", opb_addr, sz);
42+ return;
43+ }
44+
45 if (cmd & ECCB_CTL_READ) {
46 success = opb_read(lpc, opb_addr, data, sz);
47 if (success) {
48--
492.22.0.vfs.1.1.57.gbaf16c8
50