qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [6121] Properly handle the case of SetPixelEncodings with a length of zero.
@ 2008-12-22 21:06 Anthony Liguori
  0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2008-12-22 21:06 UTC (permalink / raw)
  To: qemu-devel

Revision: 6121
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6121
Author:   aliguori
Date:     2008-12-22 21:06:23 +0000 (Mon, 22 Dec 2008)

Log Message:
-----------
Properly handle the case of SetPixelEncodings with a length of zero.

This commit addresses CORE-2008-1210/CVE-2008-2382.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>

Modified Paths:
--------------
    trunk/vnc.c

Modified: trunk/vnc.c
===================================================================
--- trunk/vnc.c	2008-12-22 20:33:55 UTC (rev 6120)
+++ trunk/vnc.c	2008-12-22 21:06:23 UTC (rev 6121)
@@ -1503,10 +1503,13 @@
 	if (len == 1)
 	    return 4;
 
-	if (len == 4)
-	    return 4 + (read_u16(data, 2) * 4);
+	if (len == 4) {
+            limit = read_u16(data, 2);
+            if (limit > 0)
+                return 4 + (limit * 4);
+        } else
+            limit = read_u16(data, 2);
 
-	limit = read_u16(data, 2);
 	for (i = 0; i < limit; i++) {
 	    int32_t val = read_s32(data, 4 + (i * 4));
 	    memcpy(data + 4 + (i * 4), &val, sizeof(val));

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-12-22 21:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-22 21:06 [Qemu-devel] [6121] Properly handle the case of SetPixelEncodings with a length of zero 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).