Blame SOURCES/kvm-usb-drop-unnecessary-usb_device_post_load-checks.patch

016a62
From 24ca1010222cadbfc3c734406b665e6a9775d9d9 Mon Sep 17 00:00:00 2001
016a62
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
016a62
Date: Tue, 1 Oct 2019 18:49:25 +0100
016a62
Subject: [PATCH 03/21] usb: drop unnecessary usb_device_post_load checks
016a62
016a62
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
016a62
Message-id: <20191001184925.29912-2-dgilbert@redhat.com>
016a62
Patchwork-id: 90933
016a62
O-Subject: [RHEL-8.2.0 qemu-kvm PATCH 1/1] usb: drop unnecessary usb_device_post_load checks
016a62
Bugzilla: 1757482
016a62
RH-Acked-by: Maxim Levitsky <mlevitsk@redhat.com>
016a62
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
016a62
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
016a62
016a62
From: Jonathan Davies <jonathan.davies@nutanix.com>
016a62
016a62
In usb_device_post_load, certain values of dev->setup_len or
016a62
dev->setup_index can cause -EINVAL to be returned. One example is when
016a62
setup_len exceeds 4096, the hard-coded value of sizeof(dev->data_buf).
016a62
This can happen through legitimate guest activity and will cause all
016a62
subsequent attempts to migrate the guest to fail in vmstate_load_state.
016a62
016a62
The values of these variables can be set by USB packets originating in
016a62
the guest. There are two ways in which they can be set: in
016a62
do_token_setup and in do_parameter in hw/usb/core.c.
016a62
016a62
It is easy to craft a USB packet in a guest that causes do_token_setup
016a62
to set setup_len to a value larger than 4096. When this has been done
016a62
once, all subsequent attempts to migrate the VM will fail in
016a62
usb_device_post_load until the VM is next power-cycled or a
016a62
smaller-sized USB packet is sent to the device.
016a62
016a62
Sample code for achieving this in a VM started with "-device usb-tablet"
016a62
running Linux with CONFIG_HIDRAW=y and HID_MAX_BUFFER_SIZE > 4096:
016a62
016a62
  #include <sys/types.h>
016a62
  #include <sys/stat.h>
016a62
  #include <fcntl.h>
016a62
  #include <unistd.h>
016a62
016a62
  int main() {
016a62
           char buf[4097];
016a62
           int fd = open("/dev/hidraw0", O_RDWR|O_NONBLOCK);
016a62
016a62
           buf[0] = 0x1;
016a62
           write(fd, buf, 4097);
016a62
016a62
           return 0;
016a62
  }
016a62
016a62
When this code is run in the VM, qemu will output:
016a62
016a62
  usb_generic_handle_packet: ctrl buffer too small (4097 > 4096)
016a62
016a62
A subsequent attempt to migrate the VM will fail and output the
016a62
following on the destination host:
016a62
016a62
  qemu-kvm: error while loading state for instance 0x0 of device '0000:00:06.7/1/usb-ptr'
016a62
  qemu-kvm: load of migration failed: Invalid argument
016a62
016a62
The idea behind checking the values of setup_len and setup_index before
016a62
they are used is correct, but doing it in usb_device_post_load feels
016a62
arbitrary, and will cause unnecessary migration failures. Indeed, none
016a62
of the commit messages for c60174e8, 9f8e9895 and 719ffe1f justify why
016a62
post_load is the right place to do these checks. They correctly point
016a62
out that the important thing to protect is the usb_packet_copy.
016a62
016a62
Instead, the right place to do the checks is in do_token_setup and
016a62
do_parameter. Indeed, there are already some checks here. We can examine
016a62
each of the disjuncts currently tested in usb_device_post_load to see
016a62
whether any need adding to do_token_setup or do_parameter to improve
016a62
safety there:
016a62
016a62
  * dev->setup_index < 0
016a62
     - This test is not needed because setup_index is explicitly set to
016a62
0 in do_token_setup and do_parameter.
016a62
016a62
  * dev->setup_len < 0
016a62
     - In both do_token_setup and do_parameter, the value of setup_len
016a62
is computed by (s->setup_buf[7] << 8) | s->setup_buf[6]. Since
016a62
s->setup_buf is a byte array and setup_len is an int32_t, it's
016a62
impossible for this arithmetic to set setup_len's top bit, so it can
016a62
never be negative.
016a62
016a62
  * dev->setup_index > dev->setup_len
016a62
     - Since setup_index is 0, this is equivalent to the previous test,
016a62
so is redundant.
016a62
016a62
  * dev->setup_len > sizeof(dev->data_buf)
016a62
     - This condition is already explicitly checked in both
016a62
do_token_setup and do_parameter.
016a62
016a62
Hence there is no need to bolster the existing checks in do_token_setup
016a62
or do_parameter, and we can safely remove these checks from
016a62
usb_device_post_load without reducing safety but allowing migrations to
016a62
proceed regardless of what USB packets have been generated by the guest.
016a62
016a62
Signed-off-by: Jonathan Davies <jonathan.davies@nutanix.com>
016a62
Message-Id: <20190107175117.23769-1-jonathan.davies@nutanix.com>
016a62
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
016a62
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
016a62
(cherry picked from commit f30815390adb1ec153327c3832ab378e8bce9808)
016a62
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
016a62
---
016a62
 hw/usb/bus.c | 6 ------
016a62
 1 file changed, 6 deletions(-)
016a62
016a62
diff --git a/hw/usb/bus.c b/hw/usb/bus.c
016a62
index 11f7720..5499810 100644
016a62
--- a/hw/usb/bus.c
016a62
+++ b/hw/usb/bus.c
016a62
@@ -59,12 +59,6 @@ static int usb_device_post_load(void *opaque, int version_id)
016a62
     } else {
016a62
         dev->attached = true;
016a62
     }
016a62
-    if (dev->setup_index < 0 ||
016a62
-        dev->setup_len < 0 ||
016a62
-        dev->setup_index > dev->setup_len ||
016a62
-        dev->setup_len > sizeof(dev->data_buf)) {
016a62
-        return -EINVAL;
016a62
-    }
016a62
     return 0;
016a62
 }
016a62
 
016a62
-- 
016a62
1.8.3.1
016a62