qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Markus Armbruster <armbru@redhat.com>, qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [PATCH 07/11] bochs-display: Fix vgamem=SIZE error handling
Date: Mon, 20 Apr 2020 10:54:55 +0200	[thread overview]
Message-ID: <e703558d-6883-2a64-3489-85ab7146477b@redhat.com> (raw)
In-Reply-To: <20200420083236.19309-8-armbru@redhat.com>

On 4/20/20 10:32 AM, Markus Armbruster wrote:
> bochs_display_realize() rejects out-of-range vgamem.  The error
> handling is broken:
> 
>      $ qemu-system-x86_64 -S -display none -monitor stdio
>      QEMU 4.2.93 monitor - type 'help' for more information
>      (qemu) device_add bochs-display,vgamem=1
>      Error: bochs-display: video memory too small
>      (qemu) device_add bochs-display,vgamem=1
>      RAMBlock "0000:00:04.0/bochs-display-vram" already registered, abort!
>      Aborted (core dumped)
> 
> Cause: bochs_display_realize() neglects to bail out after setting the
> error.  Fix that.
> 
> Fixes: 765c94290863eef1fc4a67819d452cc13b7854a1
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>   hw/display/bochs-display.c | 6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/display/bochs-display.c b/hw/display/bochs-display.c
> index 70eb619ef4..e763a0a72d 100644
> --- a/hw/display/bochs-display.c
> +++ b/hw/display/bochs-display.c
> @@ -267,16 +267,18 @@ static void bochs_display_realize(PCIDevice *dev, Error **errp)
>       Object *obj = OBJECT(dev);
>       int ret;
>   
> -    s->con = graphic_console_init(DEVICE(dev), 0, &bochs_display_gfx_ops, s);
> -
>       if (s->vgamem < 4 * MiB) {
>           error_setg(errp, "bochs-display: video memory too small");
> +        return;
>       }
>       if (s->vgamem > 256 * MiB) {
>           error_setg(errp, "bochs-display: video memory too big");
> +        return;
>       }
>       s->vgamem = pow2ceil(s->vgamem);
>   
> +    s->con = graphic_console_init(DEVICE(dev), 0, &bochs_display_gfx_ops, s);
> +
>       memory_region_init_ram(&s->vram, obj, "bochs-display-vram", s->vgamem,
>                              &error_fatal);
>       memory_region_init_io(&s->vbe, obj, &bochs_display_vbe_ops, s,
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>



  reply	other threads:[~2020-04-20  8:56 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-20  8:32 [PATCH 00/11] Miscellaneous error handling fixes Markus Armbruster
2020-04-20  8:32 ` [PATCH 01/11] cryptodev: Fix cryptodev_builtin_cleanup() error API violation Markus Armbruster
2020-04-20  8:32 ` [PATCH 02/11] block/file-posix: Fix check_cache_dropped() error handling Markus Armbruster
2020-04-20 15:05   ` Eric Blake
2020-04-20  8:32 ` [PATCH 03/11] cpus: Fix configure_icount() error API violation Markus Armbruster
2020-04-20  8:32 ` [PATCH 04/11] cpus: Proper range-checking for -icount shift=N Markus Armbruster
2020-04-20  8:32 ` [PATCH 05/11] arm/virt: Fix virt_machine_device_plug_cb() error API violation Markus Armbruster
2020-04-20  8:52   ` Philippe Mathieu-Daudé
2020-04-20  8:32 ` [PATCH 06/11] fdc: Fix fallback=auto error handling Markus Armbruster
2020-04-20  8:54   ` Philippe Mathieu-Daudé
2020-04-20  8:32 ` [PATCH 07/11] bochs-display: Fix vgamem=SIZE " Markus Armbruster
2020-04-20  8:54   ` Philippe Mathieu-Daudé [this message]
2020-04-20  8:32 ` [PATCH 08/11] virtio-net: Fix duplex=... and speed=... " Markus Armbruster
2020-04-20  9:04   ` Philippe Mathieu-Daudé
2020-04-20  8:32 ` [PATCH 09/11] xen/pt: Fix flawed conversion to realize() Markus Armbruster
2020-04-20  8:58   ` Paul Durrant
2020-04-20  8:32 ` [PATCH 10/11] io: Fix qio_channel_socket_close() error handling Markus Armbruster
2020-04-20  9:34   ` Daniel P. Berrangé
2020-04-20  8:32 ` [PATCH 11/11] migration/colo: Fix qmp_xen_colo_do_checkpoint() " Markus Armbruster
2020-04-20  8:48   ` Zhanghailiang
2020-04-20  8:56   ` Philippe Mathieu-Daudé
2020-04-21  0:24   ` Zhang, Chen
2020-04-20 12:57 ` [PATCH 00/11] Miscellaneous error handling fixes no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e703558d-6883-2a64-3489-85ab7146477b@redhat.com \
    --to=philmd@redhat.com \
    --cc=armbru@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).