Commit a34f546c5f for qemu.org
commit a34f546c5f870980152899caddf45c730f867de2
Author: BALATON Zoltan <balaton@eik.bme.hu>
Date: Wed Apr 8 12:49:35 2026 +0200
ati-vga: Fix check for overflowing vram
Take into account the bytes per pixels when checking for accessing
beyond end of vram area.
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-ID: <20260408104935.1A55A5969F6@zero.eik.bme.hu>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
diff --git a/hw/display/ati_2d.c b/hw/display/ati_2d.c
index f0f77cecc6..504d1c5708 100644
--- a/hw/display/ati_2d.c
+++ b/hw/display/ati_2d.c
@@ -146,6 +146,7 @@ static uint32_t make_filler(int bpp, uint32_t color)
static bool ati_2d_do_blt(ATI2DCtx *ctx, uint8_t use_pixman)
{
QemuRect vis_src, vis_dst;
+ unsigned int x, y, i, j, bypp = ctx->bpp / 8;
if (!ctx->bpp) {
qemu_log_mask(LOG_GUEST_ERROR, "Invalid bpp\n");
@@ -156,8 +157,9 @@ static bool ati_2d_do_blt(ATI2DCtx *ctx, uint8_t use_pixman)
return false;
}
if (ctx->dst.x > 0x3fff || ctx->dst.y > 0x3fff ||
- ctx->dst_bits >= ctx->vram_end || ctx->dst_bits + ctx->dst.x +
- (ctx->dst.y + ctx->dst.height) * ctx->dst_stride >= ctx->vram_end) {
+ ctx->dst_bits >= ctx->vram_end - bypp ||
+ ctx->dst_bits + ctx->dst.x * bypp + (ctx->dst.y + ctx->dst.height) *
+ ctx->dst_stride >= ctx->vram_end - bypp) {
qemu_log_mask(LOG_UNIMP, "blt outside vram not implemented\n");
return false;
}
@@ -194,8 +196,9 @@ static bool ati_2d_do_blt(ATI2DCtx *ctx, uint8_t use_pixman)
}
if (!ctx->host_data_active &&
(vis_src.x > 0x3fff || vis_src.y > 0x3fff ||
- ctx->src_bits >= ctx->vram_end || ctx->src_bits + vis_src.x +
- (vis_src.y + vis_dst.height) * ctx->src_stride >= ctx->vram_end)) {
+ ctx->src_bits >= ctx->vram_end - bypp ||
+ ctx->src_bits + vis_src.x * bypp + (vis_src.y + vis_dst.height) *
+ ctx->src_stride >= ctx->vram_end - bypp)) {
qemu_log_mask(LOG_UNIMP, "blt outside vram not implemented\n");
return false;
}
@@ -240,7 +243,6 @@ static bool ati_2d_do_blt(ATI2DCtx *ctx, uint8_t use_pixman)
fallback = true;
}
if (fallback) {
- unsigned int y, i, j, bypp = ctx->bpp / 8;
for (y = 0; y < vis_dst.height; y++) {
i = vis_dst.x * bypp;
j = vis_src.x * bypp;
@@ -299,7 +301,6 @@ static bool ati_2d_do_blt(ATI2DCtx *ctx, uint8_t use_pixman)
#endif
{
/* fallback when pixman failed or we don't want to call it */
- unsigned int x, y, i, bypp = ctx->bpp / 8;
for (y = 0; y < vis_dst.height; y++) {
i = vis_dst.x * bypp + (vis_dst.y + y) * ctx->dst_stride;
for (x = 0; x < vis_dst.width; x++, i += bypp) {