958e1b
From 66f0fbb6a54ab1110afd12eb9a25d8966b60c7fa Mon Sep 17 00:00:00 2001
eb5a2f
From: Michael S. Tsirkin <mst@redhat.com>
958e1b
Date: Wed, 14 May 2014 08:36:01 +0200
958e1b
Subject: [PATCH 19/31] usb: sanity check setup_index+setup_len in post_load
eb5a2f
eb5a2f
RH-Author: Michael S. Tsirkin <mst@redhat.com>
958e1b
Message-id: <1400056525-6869-2-git-send-email-mst@redhat.com>
958e1b
Patchwork-id: 58865
958e1b
O-Subject: [PATCH qemu-kvm RHEL7.1 2/2] usb: sanity check setup_index+setup_len in post_load
958e1b
Bugzilla: 1095747
eb5a2f
RH-Acked-by: Marcel Apfelbaum <marcel.a@redhat.com>
eb5a2f
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
eb5a2f
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
eb5a2f
eb5a2f
CVE-2013-4541
eb5a2f
eb5a2f
s->setup_len and s->setup_index are fed into usb_packet_copy as
eb5a2f
size/offset into s->data_buf, it's possible for invalid state to exploit
eb5a2f
this to load arbitrary data.
eb5a2f
eb5a2f
setup_len and setup_index should be checked to make sure
eb5a2f
they are not negative.
eb5a2f
eb5a2f
Cc: Gerd Hoffmann <kraxel@redhat.com>
eb5a2f
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
eb5a2f
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
eb5a2f
Signed-off-by: Juan Quintela <quintela@redhat.com>
eb5a2f
(cherry picked from commit 9f8e9895c504149d7048e9fc5eb5cbb34b16e49a)
eb5a2f
958e1b
Brew build: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=7452039
eb5a2f
Tested: lightly on developer's box
eb5a2f
Bugzilla: 1095743
eb5a2f
eb5a2f
Note: the fix isn't complete upstream. there's a separate bugzilla to
eb5a2f
fix more issues upstream and in rhel.
eb5a2f
---
eb5a2f
 hw/usb/bus.c | 4 +++-
eb5a2f
 1 file changed, 3 insertions(+), 1 deletion(-)
eb5a2f
eb5a2f
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
eb5a2f
---
eb5a2f
 hw/usb/bus.c |    4 +++-
eb5a2f
 1 files changed, 3 insertions(+), 1 deletions(-)
eb5a2f
eb5a2f
diff --git a/hw/usb/bus.c b/hw/usb/bus.c
eb5a2f
index e0c3a77..9766b7f 100644
eb5a2f
--- a/hw/usb/bus.c
eb5a2f
+++ b/hw/usb/bus.c
eb5a2f
@@ -49,7 +49,9 @@ static int usb_device_post_load(void *opaque, int version_id)
eb5a2f
     } else {
eb5a2f
         dev->attached = 1;
eb5a2f
     }
eb5a2f
-    if (dev->setup_index >= sizeof(dev->data_buf) ||
eb5a2f
+    if (dev->setup_index < 0 ||
eb5a2f
+        dev->setup_len < 0 ||
eb5a2f
+        dev->setup_index >= sizeof(dev->data_buf) ||
eb5a2f
         dev->setup_len >= sizeof(dev->data_buf)) {
eb5a2f
         return -EINVAL;
eb5a2f
     }
eb5a2f
-- 
eb5a2f
1.7.1
eb5a2f