]> xenbits.xensource.com Git - people/pauldu/qemu.git/commitdiff
vga: fix display update region calculation (split screen)
authorGerd Hoffmann <kraxel@redhat.com>
Mon, 28 Aug 2017 12:33:07 +0000 (14:33 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Fri, 1 Sep 2017 11:52:43 +0000 (13:52 +0200)
vga display update mis-calculated the region for the dirty bitmap
snapshot in case split screen mode is used.  This can trigger an
assert in cpu_physical_memory_snapshot_get_dirty().

Impact:  DoS for privileged guest users.

Fixes: CVE-2017-13673
Fixes: fec5e8c92becad223df9d972770522f64aafdb72
Cc: P J P <ppandit@redhat.com>
Reported-by: David Buchanan <d@vidbuchanan.co.uk>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20170828123307.15392-1-kraxel@redhat.com

hw/display/vga.c

index 3433102ef3bbda9964256450665906147e1b661f..ad7a46563c2d15699a2f9f7a89b5fdb0f7c12842 100644 (file)
@@ -1628,9 +1628,15 @@ static void vga_draw_graphic(VGACommonState *s, int full_update)
     y1 = 0;
 
     if (!full_update) {
+        ram_addr_t region_start = addr1;
+        ram_addr_t region_end = addr1 + line_offset * height;
         vga_sync_dirty_bitmap(s);
-        snap = memory_region_snapshot_and_clear_dirty(&s->vram, addr1,
-                                                      line_offset * height,
+        if (s->line_compare < height) {
+            /* split screen mode */
+            region_start = 0;
+        }
+        snap = memory_region_snapshot_and_clear_dirty(&s->vram, region_start,
+                                                      region_end - region_start,
                                                       DIRTY_MEMORY_VGA);
     }