]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
vga: fix region calculation
authorGerd Hoffmann <kraxel@redhat.com>
Fri, 9 Mar 2018 14:37:04 +0000 (15:37 +0100)
committerAnthony PERARD <anthony.perard@citrix.com>
Mon, 1 Apr 2019 16:09:57 +0000 (17:09 +0100)
Typically the scanline length and the line offset are identical.  But
in case they are not our calculation for region_end is incorrect.  Using
line_offset is fine for all scanlines, except the last one where we have
to use the actual scanline length.

Fixes: CVE-2018-7550
Reported-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Prasad J Pandit <pjp@fedoraproject.org>
Tested-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Message-id: 20180309143704.13420-1-kraxel@redhat.com
(cherry picked from commit 7cdc61becd095b64a786b2625f321624e7111f3d)

hw/display/vga.c

index b6a3b95c9309de92deb89a64c4bdf46ac14dc1bc..f060f2679ff0159e88651860786cfaee539d1cd6 100644 (file)
@@ -1489,6 +1489,8 @@ static void vga_draw_graphic(VGACommonState *s, int full_update)
 
     region_start = (s->start_addr * 4);
     region_end = region_start + (ram_addr_t)s->line_offset * height;
+    region_end += width * s->get_bpp(s) / 8; /* scanline length */
+    region_end -= s->line_offset;
     if (region_end > s->vbe_size) {
         /* wraps around (can happen with cirrus vbe modes) */
         region_start = 0;