qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1/5] usb-linux.c: allow full-size control transfers, do not overrun buffer
@ 2009-02-03 16:46 Ian Jackson
  2009-02-03 16:44 ` [Qemu-devel] [PATCH 2/5] usb-linux.c: set urb->type correctly for control and interrupt transfers Ian Jackson
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Ian Jackson @ 2009-02-03 16:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: ian.jackson

The buffer in struct ctrl_struct needs to be big enough for any
control transfer which may be initiated by the guest, since we are
perhaps trying to pass a device through.  The biggest possible size is
2^16-1 since the length fields are 16 bits.

Also, assert that the transfer request we are about to make to our
host kernel will not overrun the buffer.

Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
 usb-linux.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/usb-linux.c b/usb-linux.c
index fb1153b..321c1db 100644
--- a/usb-linux.c
+++ b/usb-linux.c
@@ -34,6 +34,8 @@
 #include "qemu-timer.h"
 #include "console.h"
 
+#if defined(__linux__)
+#include <assert.h>
 #include <dirent.h>
 #include <sys/ioctl.h>
 #include <signal.h>
@@ -115,7 +117,7 @@ struct ctrl_struct {
     uint16_t offset;
     uint8_t  state;
     struct   usb_ctrlrequest req;
-    uint8_t  buffer[1024];
+    uint8_t  buffer[65536];
 };
 
 typedef struct USBHostDevice {
@@ -603,6 +605,8 @@ static int usb_host_handle_control(USBHostDevice *s, USBPacket *p)
     urb->type     = USBDEVFS_URB_TYPE_CONTROL;
     urb->endpoint = p->devep;
 
+    assert(s->ctrl.len < sizeof(s->ctrl.buffer));
+
     urb->buffer        = &s->ctrl.req;
     urb->buffer_length = 8 + s->ctrl.len;
 
-- 
1.4.4.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-02-06 10:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-03 16:46 [Qemu-devel] [PATCH 1/5] usb-linux.c: allow full-size control transfers, do not overrun buffer Ian Jackson
2009-02-03 16:44 ` [Qemu-devel] [PATCH 2/5] usb-linux.c: set urb->type correctly for control and interrupt transfers Ian Jackson
2009-02-04 15:28 ` [Qemu-devel] [PATCH 3/5] usb-linux.c: somewhat improve some error and debugging messages Ian Jackson
2009-02-04 15:31 ` [Qemu-devel] [PATCH 4/5] usb-linux.c: more improved debugging messages (endpoint table) Ian Jackson
2009-02-05 17:20 ` [Qemu-devel] [PATCH 5/5] usb-linux.c: fix handling of asynchronous isochronous completion Ian Jackson
2009-02-05 19:35 ` [Qemu-devel] [PATCH 1/5] usb-linux.c: allow full-size control transfers, do not overrun buffer malc
2009-02-06 10:35   ` Ian Jackson

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).