Blame SOURCES/kvm-vga-fix-region-calculation.patch

a94a18
From a4a396ff1f6bf512d8a1e65f692242d4332c615c Mon Sep 17 00:00:00 2001
a94a18
From: Gerd Hoffmann <kraxel@redhat.com>
a94a18
Date: Mon, 19 Mar 2018 14:34:59 +0100
a94a18
Subject: [PATCH 4/4] vga: fix region calculation
a94a18
a94a18
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
a94a18
Message-id: <20180319143459.15364-3-kraxel@redhat.com>
a94a18
Patchwork-id: 79360
a94a18
O-Subject: [RHV7.5 qemu-kvm-rhev PATCH 2/2] vga: fix region calculation
a94a18
Bugzilla: 1566878
a94a18
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
a94a18
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
a94a18
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
a94a18
a94a18
Typically the scanline length and the line offset are identical.  But
a94a18
in case they are not our calculation for region_end is incorrect.  Using
a94a18
line_offset is fine for all scanlines, except the last one where we have
a94a18
to use the actual scanline length.
a94a18
a94a18
Fixes: CVE-2018-7550
a94a18
Reported-by: Ross Lagerwall <ross.lagerwall@citrix.com>
a94a18
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
a94a18
Reviewed-by: Prasad J Pandit <pjp@fedoraproject.org>
a94a18
Tested-by: Ross Lagerwall <ross.lagerwall@citrix.com>
a94a18
Message-id: 20180309143704.13420-1-kraxel@redhat.com
a94a18
(cherry picked from commit 7cdc61becd095b64a786b2625f321624e7111f3d)
a94a18
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
a94a18
---
a94a18
 hw/display/vga.c | 2 ++
a94a18
 1 file changed, 2 insertions(+)
a94a18
a94a18
diff --git a/hw/display/vga.c b/hw/display/vga.c
a94a18
index b6a3b95..f060f26 100644
a94a18
--- a/hw/display/vga.c
a94a18
+++ b/hw/display/vga.c
a94a18
@@ -1489,6 +1489,8 @@ static void vga_draw_graphic(VGACommonState *s, int full_update)
a94a18
 
a94a18
     region_start = (s->start_addr * 4);
a94a18
     region_end = region_start + (ram_addr_t)s->line_offset * height;
a94a18
+    region_end += width * s->get_bpp(s) / 8; /* scanline length */
a94a18
+    region_end -= s->line_offset;
a94a18
     if (region_end > s->vbe_size) {
a94a18
         /* wraps around (can happen with cirrus vbe modes) */
a94a18
         region_start = 0;
a94a18
-- 
a94a18
1.8.3.1
a94a18