86ffd40d11
- Switch method of splitting off hw-s390x-virtio-gpu-ccw.so as a module to what was accepted upstream (bsc#1181103) * Patches dropped: hw-s390x-modularize-virtio-gpu-ccw.patch * Patches added: s390x-add-have_virtio_ccw.patch s390x-modularize-virtio-gpu-ccw.patch s390x-move-S390_ADAPTER_SUPPRESSIBLE.patch - Fix OOB access in sdhci interface (CVE-2020-17380, bsc#1175144, CVE-2020-25085, bsc#1176681, CVE-2021-3409, bsc#1182282) hw-sd-sd-Actually-perform-the-erase-oper.patch hw-sd-sd-Fix-build-error-when-DEBUG_SD-i.patch hw-sd-sdhci-Correctly-set-the-controller.patch hw-sd-sdhci-Don-t-transfer-any-data-when.patch hw-sd-sdhci-Don-t-write-to-SDHC_SYSAD-re.patch hw-sd-sdhci-Limit-block-size-only-when-S.patch hw-sd-sdhci-Reset-the-data-pointer-of-s-.patch hw-sd-sd-Move-the-sd_block_-read-write-a.patch hw-sd-sd-Skip-write-protect-groups-check.patch - Fix potential privilege escalation in virtiofsd tool (CVE-2021-20263, bsc#1183373) tools-virtiofsd-Replace-the-word-whiteli.patch viriofsd-Add-support-for-FUSE_HANDLE_KIL.patch virtiofsd-extract-lo_do_open-from-lo_ope.patch virtiofsd-optionally-return-inode-pointe.patch virtiofsd-prevent-opening-of-special-fil.patch virtiofs-drop-remapped-security.capabili.patch virtiofsd-Save-error-code-early-at-the-f.patch - Fix OOB access (stack overflow) in rtl8139 NIC emulation (CVE-2021-3416, bsc#1182968) net-introduce-qemu_receive_packet.patch rtl8139-switch-to-use-qemu_receive_packe.patch - Fix OOB access (stack overflow) in other NIC emulations (CVE-2021-3416) cadence_gem-switch-to-use-qemu_receive_p.patch dp8393x-switch-to-use-qemu_receive_packe.patch e1000-switch-to-use-qemu_receive_packet-.patch lan9118-switch-to-use-qemu_receive_packe.patch msf2-mac-switch-to-use-qemu_receive_pack.patch pcnet-switch-to-use-qemu_receive_packet-.patch sungem-switch-to-use-qemu_receive_packet.patch tx_pkt-switch-to-use-qemu_receive_packet.patch - Fix heap overflow in MSIx emulation (CVE-2020-27821, bsc#1179686) memory-clamp-cached-translation-in-case-.patch - Include upstream patches designated as stable material and reviewed for applicability to include here hw-arm-virt-Disable-pl011-clock-migratio.patch xen-block-Fix-removal-of-backend-instanc.patch - Fix package scripts to not use hard coded paths for temporary working directories and log files (bsc#1182425) OBS-URL: https://build.opensuse.org/request/show/882222 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=632
172 lines
6.0 KiB
Diff
172 lines
6.0 KiB
Diff
From: Jason Wang <jasowang@redhat.com>
|
|
Date: Wed, 24 Feb 2021 11:44:36 +0800
|
|
Subject: net: introduce qemu_receive_packet()
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Git-commit: 705df5466c98f3efdd2b68d3b31dad86858acad7
|
|
References: bsc#1182968, CVE-2021-3416
|
|
Some NIC supports loopback mode and this is done by calling
|
|
nc->info->receive() directly which in fact suppresses the effort of
|
|
reentrancy check that is done in qemu_net_queue_send().
|
|
|
|
Unfortunately we can't use qemu_net_queue_send() here since for
|
|
loopback there's no sender as peer, so this patch introduce a
|
|
qemu_receive_packet() which is used for implementing loopback mode
|
|
for a NIC with this check.
|
|
|
|
NIC that supports loopback mode will be converted to this helper.
|
|
|
|
This is intended to address CVE-2021-3416.
|
|
|
|
Cc: Prasad J Pandit <ppandit@redhat.com>
|
|
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
Cc: qemu-stable@nongnu.org
|
|
Signed-off-by: Jason Wang <jasowang@redhat.com>
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
---
|
|
include/net/net.h | 5 +++++
|
|
include/net/queue.h | 8 ++++++++
|
|
net/net.c | 38 +++++++++++++++++++++++++++++++-------
|
|
net/queue.c | 22 ++++++++++++++++++++++
|
|
4 files changed, 66 insertions(+), 7 deletions(-)
|
|
|
|
diff --git a/include/net/net.h b/include/net/net.h
|
|
index 778fc787ca14d3e1bc6f59d76cc6..03f058ecb0c1e8d4f4d3a8cb6c58 100644
|
|
--- a/include/net/net.h
|
|
+++ b/include/net/net.h
|
|
@@ -143,12 +143,17 @@ void *qemu_get_nic_opaque(NetClientState *nc);
|
|
void qemu_del_net_client(NetClientState *nc);
|
|
typedef void (*qemu_nic_foreach)(NICState *nic, void *opaque);
|
|
void qemu_foreach_nic(qemu_nic_foreach func, void *opaque);
|
|
+int qemu_can_receive_packet(NetClientState *nc);
|
|
int qemu_can_send_packet(NetClientState *nc);
|
|
ssize_t qemu_sendv_packet(NetClientState *nc, const struct iovec *iov,
|
|
int iovcnt);
|
|
ssize_t qemu_sendv_packet_async(NetClientState *nc, const struct iovec *iov,
|
|
int iovcnt, NetPacketSent *sent_cb);
|
|
ssize_t qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size);
|
|
+ssize_t qemu_receive_packet(NetClientState *nc, const uint8_t *buf, int size);
|
|
+ssize_t qemu_receive_packet_iov(NetClientState *nc,
|
|
+ const struct iovec *iov,
|
|
+ int iovcnt);
|
|
ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size);
|
|
ssize_t qemu_send_packet_async(NetClientState *nc, const uint8_t *buf,
|
|
int size, NetPacketSent *sent_cb);
|
|
diff --git a/include/net/queue.h b/include/net/queue.h
|
|
index c0269bb1dc436a912e2abc75db3b..9f2f289d7719ca1ed78604c37b65 100644
|
|
--- a/include/net/queue.h
|
|
+++ b/include/net/queue.h
|
|
@@ -55,6 +55,14 @@ void qemu_net_queue_append_iov(NetQueue *queue,
|
|
|
|
void qemu_del_net_queue(NetQueue *queue);
|
|
|
|
+ssize_t qemu_net_queue_receive(NetQueue *queue,
|
|
+ const uint8_t *data,
|
|
+ size_t size);
|
|
+
|
|
+ssize_t qemu_net_queue_receive_iov(NetQueue *queue,
|
|
+ const struct iovec *iov,
|
|
+ int iovcnt);
|
|
+
|
|
ssize_t qemu_net_queue_send(NetQueue *queue,
|
|
NetClientState *sender,
|
|
unsigned flags,
|
|
diff --git a/net/net.c b/net/net.c
|
|
index af35fb2db7cd99933d20f8613ab3..cad72a791d3f173eaaa66b8feb50 100644
|
|
--- a/net/net.c
|
|
+++ b/net/net.c
|
|
@@ -528,6 +528,17 @@ int qemu_set_vnet_be(NetClientState *nc, bool is_be)
|
|
#endif
|
|
}
|
|
|
|
+int qemu_can_receive_packet(NetClientState *nc)
|
|
+{
|
|
+ if (nc->receive_disabled) {
|
|
+ return 0;
|
|
+ } else if (nc->info->can_receive &&
|
|
+ !nc->info->can_receive(nc)) {
|
|
+ return 0;
|
|
+ }
|
|
+ return 1;
|
|
+}
|
|
+
|
|
int qemu_can_send_packet(NetClientState *sender)
|
|
{
|
|
int vm_running = runstate_is_running();
|
|
@@ -540,13 +551,7 @@ int qemu_can_send_packet(NetClientState *sender)
|
|
return 1;
|
|
}
|
|
|
|
- if (sender->peer->receive_disabled) {
|
|
- return 0;
|
|
- } else if (sender->peer->info->can_receive &&
|
|
- !sender->peer->info->can_receive(sender->peer)) {
|
|
- return 0;
|
|
- }
|
|
- return 1;
|
|
+ return qemu_can_receive_packet(sender->peer);
|
|
}
|
|
|
|
static ssize_t filter_receive_iov(NetClientState *nc,
|
|
@@ -679,6 +684,25 @@ ssize_t qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
|
|
return qemu_send_packet_async(nc, buf, size, NULL);
|
|
}
|
|
|
|
+ssize_t qemu_receive_packet(NetClientState *nc, const uint8_t *buf, int size)
|
|
+{
|
|
+ if (!qemu_can_receive_packet(nc)) {
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
+ return qemu_net_queue_receive(nc->incoming_queue, buf, size);
|
|
+}
|
|
+
|
|
+ssize_t qemu_receive_packet_iov(NetClientState *nc, const struct iovec *iov,
|
|
+ int iovcnt)
|
|
+{
|
|
+ if (!qemu_can_receive_packet(nc)) {
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
+ return qemu_net_queue_receive_iov(nc->incoming_queue, iov, iovcnt);
|
|
+}
|
|
+
|
|
ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size)
|
|
{
|
|
return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW,
|
|
diff --git a/net/queue.c b/net/queue.c
|
|
index 19e32c80fda730604fe7febf421f..c872d51df8b58518a644a2a8f68b 100644
|
|
--- a/net/queue.c
|
|
+++ b/net/queue.c
|
|
@@ -182,6 +182,28 @@ static ssize_t qemu_net_queue_deliver_iov(NetQueue *queue,
|
|
return ret;
|
|
}
|
|
|
|
+ssize_t qemu_net_queue_receive(NetQueue *queue,
|
|
+ const uint8_t *data,
|
|
+ size_t size)
|
|
+{
|
|
+ if (queue->delivering) {
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
+ return qemu_net_queue_deliver(queue, NULL, 0, data, size);
|
|
+}
|
|
+
|
|
+ssize_t qemu_net_queue_receive_iov(NetQueue *queue,
|
|
+ const struct iovec *iov,
|
|
+ int iovcnt)
|
|
+{
|
|
+ if (queue->delivering) {
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
+ return qemu_net_queue_deliver_iov(queue, NULL, 0, iov, iovcnt);
|
|
+}
|
|
+
|
|
ssize_t qemu_net_queue_send(NetQueue *queue,
|
|
NetClientState *sender,
|
|
unsigned flags,
|