qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] net socket verify packet size
@ 2009-02-24 17:38 Dustin Kirkland
  2009-02-27 19:54 ` Anthony Liguori
  0 siblings, 1 reply; 2+ messages in thread
From: Dustin Kirkland @ 2009-02-24 17:38 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 192 bytes --]

net socket oversized packet

This is a patch being carried by Ubuntu against kvm/qemu.

Verify packet size before performing memcpy().

Signed-off-by: Dustin Kirkland <kirkland@canonical.com>

[-- Attachment #2: net-socket.patch --]
[-- Type: text/x-diff, Size: 1472 bytes --]

diff -urpN kvm_84+dfsg.new/qemu/net.c kvm_84+dfsg.new.new/qemu/net.c
--- kvm_84+dfsg.new/qemu/net.c	2009-02-12 09:19:26.000000000 -0600
+++ kvm_84+dfsg.new.new/qemu/net.c	2009-02-16 16:50:57.195796925 -0600
@@ -1246,8 +1246,8 @@ typedef struct NetSocketState {
     VLANClientState *vc;
     int fd;
     int state; /* 0 = getting length, 1 = getting data */
-    int index;
-    int packet_len;
+    unsigned int index;
+    unsigned int packet_len;
     uint8_t buf[4096];
     struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
 } NetSocketState;
@@ -1280,7 +1280,8 @@ static void net_socket_receive_dgram(voi
 static void net_socket_send(void *opaque)
 {
     NetSocketState *s = opaque;
-    int l, size, err;
+    int size, err;
+    unsigned l;
     uint8_t buf1[4096];
     const uint8_t *buf;
 
@@ -1319,7 +1320,15 @@ static void net_socket_send(void *opaque
             l = s->packet_len - s->index;
             if (l > size)
                 l = size;
-            memcpy(s->buf + s->index, buf, l);
+            if (s->index + l <= sizeof(s->buf)) {
+                memcpy(s->buf + s->index, buf, l);
+            } else {
+                fprintf(stderr, "serious error: oversized packet received,"
+                    "connection terminated.\n");
+                s->state = 0;
+                goto eoc;
+            }
+
             s->index += l;
             buf += l;
             size -= l;

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

* Re: [Qemu-devel] [PATCH] net socket verify packet size
  2009-02-24 17:38 [Qemu-devel] [PATCH] net socket verify packet size Dustin Kirkland
@ 2009-02-27 19:54 ` Anthony Liguori
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2009-02-27 19:54 UTC (permalink / raw)
  To: qemu-devel

Dustin Kirkland wrote:
> net socket oversized packet
>
> This is a patch being carried by Ubuntu against kvm/qemu.
>
> Verify packet size before performing memcpy().
>
> Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
>   
Applied.  Thanks.

Regards,

Anthony Liguori

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

end of thread, other threads:[~2009-02-27 19:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-24 17:38 [Qemu-devel] [PATCH] net socket verify packet size Dustin Kirkland
2009-02-27 19:54 ` Anthony Liguori

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