qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] qxl/update_area_io: guest_bug on invalid parame


From: Hans de Goede
Subject: Re: [Qemu-devel] [PATCH] qxl/update_area_io: guest_bug on invalid parameters
Date: Mon, 30 Jul 2012 12:18:43 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120717 Thunderbird/14.0

Acked-by: Hans de Goede <address@hidden>

On 07/29/2012 11:55 AM, Alon Levy wrote:
Signed-off-by: Alon Levy <address@hidden>
---
  hw/qxl.c | 12 ++++++++++++
  1 file changed, 12 insertions(+)

diff --git a/hw/qxl.c b/hw/qxl.c
index 92e985b..5278541 100644
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -1405,6 +1405,18 @@ async_common:
          QXLCookie *cookie = NULL;
          QXLRect update = d->ram->update_area;

+        if (d->ram->update_surface > NUM_SURFACES) {
+            qxl_set_guest_bug(d, "QXL_IO_UPDATE_AREA: invalid surface id %d\n",
+                              d->ram->update_surface);
+            return;
+        }
+        if (update.left >= update.right || update.top >= update.bottom) {
+            qxl_set_guest_bug(d,
+                    "QXL_IO_UPDATE_AREA: invalid area (%ux%u)x(%ux%u)\n",
+                    update.left, update.top, update.right, update.bottom);
+            return;
+        }
+
          if (async == QXL_ASYNC) {
              cookie = qxl_cookie_new(QXL_COOKIE_TYPE_IO,
                                      QXL_IO_UPDATE_AREA_ASYNC);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]