qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] ati: mask x y display parameter values


From: BALATON Zoltan
Subject: Re: [PATCH] ati: mask x y display parameter values
Date: Mon, 19 Oct 2020 20:26:52 +0200 (CEST)

On Mon, 19 Oct 2020, P J P wrote:
+-- On Sun, 18 Oct 2020, BALATON Zoltan wrote --+
| The s->regs.[src|dst]_[xy] values should not be over 0x3fff because we mask
| them on register write in ati.c

 Yes, those register values are set to zero(0).

| and here [src|dst]_[x|y] local variables are declared unsigned so negative
| values come out as large integers that should be caught by the checks below
| as being over VRAM end

 As above register values are zero(0), following expression(s)

   dst_x = ... (s->regs.dst_x(=0) + 1 - s->regs.dst_width(=16383))
   dst_y = ... (s->regs.dst_y(=0) + 1 - s->regs.dst_height(=16383))

result in large unsigned values:

So far so good, this should result in dst_bits or dst_bits + the changed region being way over vram end which the check below should catch or otherwise it should not crash even if results are wrong.

 ati_2d_blt
   pixman_blt(0x7f03cbe00000, 0x7f03cbe00000, 131064, 131064, 32, 32,
      src_x=0, src_y=-16382, dst_x=0, dst_y=-16382, 16383, 16383)

Shown as negative values due to signed '%d' conversion.

Checking the docs again I see that the allowed range of at least s->regs.[src|dst]_[xy] can actually be negative (-8192:8191) so we probably misintrepret these and I'll have to look at this again to see how to do this properly but not sure when can I get to that. If this is urgent to fix now we could add some more checks but I don't like masking because that can lead to wrong results truncating parameters that should be rejected.

| but those checks may have an off by one error or some other mistake.

   uint8_t *end = s->vga.vram_ptr + s->vga.vram_size;
   if (dst_bits >= end || dst_bits + dst_x + (dst_y + s->regs.dst_height) * 
dst_stride >= end) {
       qemu_log_mask(LOG_UNIMP, "blt outside vram not implemented\n");
       return;
   }

* Above check does not seem to catch it.

And that's the real problem. Could it be it overflows? If not then there's some other problem with interpreting the values later or with this check.

* Does a check below look okay?
===
diff --git a/hw/display/ati_2d.c b/hw/display/ati_2d.c
index 524bc03a83..b75acc7fda 100644
--- a/hw/display/ati_2d.c
+++ b/hw/display/ati_2d.c
@@ -54,9 +54,13 @@ void ati_2d_blt(ATIVGAState *s)
...
+    if (dst_x > 0x3fff || dst_y > 0x3fff) {
+        qemu_log_mask(LOG_UNIMP, "blt outside vram not implemented\n");
+        return;
+    }
...
+        if (src_x > 0x3fff || src_y > 0x3fff) {
+            qemu_log_mask(LOG_UNIMP, "blt outside vram not implemented\n");
+            return;
+        }
===

This seems redundant, maybe rather add additional term for src|dst_x|y to the already existing checks if their condition cannot be fixed to detect it properly.

* ati_2d_blt() routine looks complex. Maybe it can be divided in two halves.

Yes, as noted in a comment at the beginning this may need to be rewritten when it gets even more complex adding more of the features the card has. Maybe splitting off bounds checking to separate functions that can be reused for both dst and src values could be done to make it a bit better. I hoped the checks are simple enough for now but seems they are not. I'm not sure I can finish this before the freeze so unless it's OK to patch this during soft freeze or leave it for onther release I'd be OK with a patch that enhances the existing checks for now to also check src|dst_x|y instead of truncating their value. That may break it anyway but it's already broken and at least the checks are at the same place that way.

Regards,
BALATON Zoltan



reply via email to

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