ebd2e5f1b0
- Update to v19.11.1. For a list of changes, check: * https://doc.dpdk.org/guides/rel_notes/release_19_11.html#new-features - Removed patches no longer applying to the code base: * 0001-vhost-fix-possible-denial-of-service-on-SET_VRING_NU.patch * 0002-vhost-fix-possible-denial-of-service-by-leaking-FDs.patch * 0002-fix-cpu-compatibility.patch - Rebased patches: * 0001-fix-cpu-compatibility.patch - Add patches to fix vulnerability where malicious guest/container can cause resource leak resulting a Denial-of-Service, or memory corruption and crash, or information leak in vhost-user backend application (bsc#1171477, CVE-2020-10722, CVE-2020-10723, CVE-2020-10724, CVE-2020-10725, CVE-2020-10726). * 0001-vhost-check-log-mmap-offset-and-size-overflow.patch * 0002-vhost-fix-vring-index-check.patch * 0003-vhost-crypto-validate-keys-lengths.patch * 0004-vhost-fix-translated-address-not-checked.patch * 0005-vhost-fix-potential-memory-space-leak.patch * 0006-vhost-fix-potential-fd-leak.patch OBS-URL: https://build.opensuse.org/request/show/807340 OBS-URL: https://build.opensuse.org/package/show/network/dpdk?expand=0&rev=115
53 lines
1.7 KiB
Diff
53 lines
1.7 KiB
Diff
From 9566391031723e854e818bb7d965e9e677784dc4 Mon Sep 17 00:00:00 2001
|
|
From: Xiaolong Ye <xiaolong.ye@intel.com>
|
|
Date: Wed, 8 Apr 2020 15:31:35 +0800
|
|
Subject: [PATCH 5/6] vhost: fix potential memory space leak
|
|
|
|
A malicious container which has direct access to the vhost-user socket
|
|
can keep sending VHOST_USER_GET_INFLIGHT_FD messages which may cause
|
|
leaking resources until resulting a DOS. Fix it by unmapping the
|
|
dev->inflight_info->addr before assigning new mapped addr to it.
|
|
|
|
Fixes: d87f1a1cb7b6 ("vhost: support inflight info sharing")
|
|
Cc: stable@dpdk.org
|
|
|
|
This issue has been assigned CVE-2020-10726
|
|
|
|
Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
|
|
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
|
|
---
|
|
lib/librte_vhost/vhost_user.c | 9 ++++++++-
|
|
1 file changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/librte_vhost/vhost_user.c b/lib/librte_vhost/vhost_user.c
|
|
index d19614265b..2a4ba205cf 100644
|
|
--- a/lib/librte_vhost/vhost_user.c
|
|
+++ b/lib/librte_vhost/vhost_user.c
|
|
@@ -1433,6 +1433,11 @@ vhost_user_get_inflight_fd(struct virtio_net **pdev,
|
|
}
|
|
memset(addr, 0, mmap_size);
|
|
|
|
+ if (dev->inflight_info->addr) {
|
|
+ munmap(dev->inflight_info->addr, dev->inflight_info->size);
|
|
+ dev->inflight_info->addr = NULL;
|
|
+ }
|
|
+
|
|
dev->inflight_info->addr = addr;
|
|
dev->inflight_info->size = msg->payload.inflight.mmap_size = mmap_size;
|
|
dev->inflight_info->fd = msg->fds[0] = fd;
|
|
@@ -1517,8 +1522,10 @@ vhost_user_set_inflight_fd(struct virtio_net **pdev, VhostUserMsg *msg,
|
|
}
|
|
}
|
|
|
|
- if (dev->inflight_info->addr)
|
|
+ if (dev->inflight_info->addr) {
|
|
munmap(dev->inflight_info->addr, dev->inflight_info->size);
|
|
+ dev->inflight_info->addr = NULL;
|
|
+ }
|
|
|
|
addr = mmap(0, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
fd, mmap_offset);
|
|
--
|
|
2.25.2
|
|
|