qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: mcascell@redhat.com, remy.noel@blade-group.com,
	Gerd Hoffmann <kraxel@redhat.com>
Subject: [PATCH 5/5] usb: limit combined packets to 1 MiB
Date: Mon,  3 May 2021 11:14:46 +0200	[thread overview]
Message-ID: <20210503091446.2137206-6-kraxel@redhat.com> (raw)
In-Reply-To: <20210503091446.2137206-1-kraxel@redhat.com>

usb-host and usb-redirect try to batch bulk transfers by combining many
small usb packets into a single, large transfer request, to reduce the
overhead and improve performance.

This patch adds a size limit of 1 MiB for those combined packets to
restrict the host resources the guest can bind that way.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 hw/usb/combined-packet.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/hw/usb/combined-packet.c b/hw/usb/combined-packet.c
index 5d57e883dcb5..e56802f89a32 100644
--- a/hw/usb/combined-packet.c
+++ b/hw/usb/combined-packet.c
@@ -171,7 +171,9 @@ void usb_ep_combine_input_packets(USBEndpoint *ep)
         if ((p->iov.size % ep->max_packet_size) != 0 || !p->short_not_ok ||
                 next == NULL ||
                 /* Work around for Linux usbfs bulk splitting + migration */
-                (totalsize == (16 * KiB - 36) && p->int_req)) {
+                (totalsize == (16 * KiB - 36) && p->int_req) ||
+                /* Next package may grow combined package over 1MiB */
+                totalsize > 1 * MiB - ep->max_packet_size) {
             usb_device_handle_data(ep->dev, first);
             assert(first->status == USB_RET_ASYNC);
             if (first->combined) {
-- 
2.30.2



  parent reply	other threads:[~2021-05-03  9:20 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-03  9:14 [PATCH 0/5] usb: fix some memory allocation issues Gerd Hoffmann
2021-05-03  9:14 ` [PATCH 1/5] usb/hid: avoid dynamic stack allocation Gerd Hoffmann
2021-05-03  9:14 ` [PATCH 2/5] usb/redir: avoid dynamic stack allocation (CVE-2021-3527) Gerd Hoffmann
2021-05-03  9:27   ` Philippe Mathieu-Daudé
2021-05-03  9:57     ` Philippe Mathieu-Daudé
2021-05-03  9:14 ` [PATCH 3/5] usb/mtp: avoid dynamic stack allocation Gerd Hoffmann
2021-05-03  9:14 ` [PATCH 4/5] usb/xhci: sanity check packet size Gerd Hoffmann
2021-05-03  9:14 ` Gerd Hoffmann [this message]
2021-05-03  9:47 ` [PATCH 0/5] usb: fix some memory allocation issues Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210503091446.2137206-6-kraxel@redhat.com \
    --to=kraxel@redhat.com \
    --cc=mcascell@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=remy.noel@blade-group.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).