* [PATCH] stdvga: fix screen blanking
@ 2024-05-30 11:04 Gerd Hoffmann
2024-06-03 10:24 ` Marc-André Lureau
0 siblings, 1 reply; 4+ messages in thread
From: Gerd Hoffmann @ 2024-05-30 11:04 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann, qemu-stable
In case the display surface uses a shared buffer (i.e. uses vga vram
directly instead of a shadow) go unshare the buffer before clearing it.
This avoids vga memory corruption, which in turn fixes unblanking not
working properly with X11.
Cc: qemu-stable@nongnu.org
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2067
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/display/vga.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/hw/display/vga.c b/hw/display/vga.c
index 30facc6c8e33..34ab8eb9b745 100644
--- a/hw/display/vga.c
+++ b/hw/display/vga.c
@@ -1762,6 +1762,12 @@ static void vga_draw_blank(VGACommonState *s, int full_update)
if (s->last_scr_width <= 0 || s->last_scr_height <= 0)
return;
+ if (is_buffer_shared(surface)) {
+ /* unshare buffer, otherwise the blanking corrupts vga vram */
+ qemu_console_resize(s->con, s->last_scr_width, s->last_scr_height);
+ surface = qemu_console_surface(s->con);
+ }
+
w = s->last_scr_width * surface_bytes_per_pixel(surface);
d = surface_data(surface);
for(i = 0; i < s->last_scr_height; i++) {
--
2.45.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] stdvga: fix screen blanking
2024-05-30 11:04 [PATCH] stdvga: fix screen blanking Gerd Hoffmann
@ 2024-06-03 10:24 ` Marc-André Lureau
2024-06-03 11:51 ` Gerd Hoffmann
0 siblings, 1 reply; 4+ messages in thread
From: Marc-André Lureau @ 2024-06-03 10:24 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel, qemu-stable
[-- Attachment #1: Type: text/plain, Size: 1610 bytes --]
Hi
On Thu, May 30, 2024 at 3:05 PM Gerd Hoffmann <kraxel@redhat.com> wrote:
> In case the display surface uses a shared buffer (i.e. uses vga vram
> directly instead of a shadow) go unshare the buffer before clearing it.
>
> This avoids vga memory corruption, which in turn fixes unblanking not
> working properly with X11.
>
> Cc: qemu-stable@nongnu.org
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2067
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
> hw/display/vga.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/hw/display/vga.c b/hw/display/vga.c
> index 30facc6c8e33..34ab8eb9b745 100644
> --- a/hw/display/vga.c
> +++ b/hw/display/vga.c
> @@ -1762,6 +1762,12 @@ static void vga_draw_blank(VGACommonState *s, int
> full_update)
> if (s->last_scr_width <= 0 || s->last_scr_height <= 0)
> return;
>
> + if (is_buffer_shared(surface)) {
>
It might be a good time to rename this function. surface_is_borrowed() ?
> + /* unshare buffer, otherwise the blanking corrupts vga vram */
> + qemu_console_resize(s->con, s->last_scr_width,
> s->last_scr_height);
>
If we want to guarantee that a new surface is created, we should leave a
comment on qemu_console_resize(), or perhaps make it take a new/alloc
argument?
+ surface = qemu_console_surface(s->con);
> + }
> +
> w = s->last_scr_width * surface_bytes_per_pixel(surface);
> d = surface_data(surface);
> for(i = 0; i < s->last_scr_height; i++) {
> --
> 2.45.1
>
>
>
thanks
--
Marc-André Lureau
[-- Attachment #2: Type: text/html, Size: 2746 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] stdvga: fix screen blanking
2024-06-03 10:24 ` Marc-André Lureau
@ 2024-06-03 11:51 ` Gerd Hoffmann
2024-06-03 13:02 ` Marc-André Lureau
0 siblings, 1 reply; 4+ messages in thread
From: Gerd Hoffmann @ 2024-06-03 11:51 UTC (permalink / raw)
To: Marc-André Lureau; +Cc: qemu-devel, qemu-stable
On Mon, Jun 03, 2024 at 02:24:52PM GMT, Marc-André Lureau wrote:
> Hi
>
> On Thu, May 30, 2024 at 3:05 PM Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> > In case the display surface uses a shared buffer (i.e. uses vga vram
> > directly instead of a shadow) go unshare the buffer before clearing it.
> >
> > This avoids vga memory corruption, which in turn fixes unblanking not
> > working properly with X11.
> >
> > Cc: qemu-stable@nongnu.org
> > Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2067
> > Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> > ---
> > hw/display/vga.c | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> > diff --git a/hw/display/vga.c b/hw/display/vga.c
> > index 30facc6c8e33..34ab8eb9b745 100644
> > --- a/hw/display/vga.c
> > +++ b/hw/display/vga.c
> > @@ -1762,6 +1762,12 @@ static void vga_draw_blank(VGACommonState *s, int
> > full_update)
> > if (s->last_scr_width <= 0 || s->last_scr_height <= 0)
> > return;
> >
> > + if (is_buffer_shared(surface)) {
> >
>
> It might be a good time to rename this function. surface_is_borrowed() ?
"shared" means memory shared between guest and host (typically vga vram).
I doubt using the term "borrowed" instead clarifies things much,
especially as this isn't an rust-style "borrow" (which I guess you are
referring to). Nothing prevents the host from writing to the surface as
the bug clearly shows. Also qemu is a C project, so I wouldn't expect
developers being familiar with rust semantics and terminology.
> > + /* unshare buffer, otherwise the blanking corrupts vga vram */
> > + qemu_console_resize(s->con, s->last_scr_width,
> > s->last_scr_height);
>
> If we want to guarantee that a new surface is created, we should leave a
> comment on qemu_console_resize(),
I left the comment there exactly because it isn't obvious that the
qemu_console_resize() will create a new (not shared) surface. So not
sure what exactly you are suggesting here?
> or perhaps make it take a new/alloc argument?
Right now qemu_console_resize() does a bunch of checks to figure
whenever it can take a shortcut (because width + height didn't change)
or not.
We could certainly pass a boolean in instead and have the caller decide
that way. Didn't check whenever that makes sense, and IMHO that is well
beyond the scope of a 3-lines bugfix.
kraxel@sirius ~/projects/qemu# git grep qemu_console_resize | wc -l
35
take care,
Gerd
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] stdvga: fix screen blanking
2024-06-03 11:51 ` Gerd Hoffmann
@ 2024-06-03 13:02 ` Marc-André Lureau
0 siblings, 0 replies; 4+ messages in thread
From: Marc-André Lureau @ 2024-06-03 13:02 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel, qemu-stable
[-- Attachment #1: Type: text/plain, Size: 3383 bytes --]
Hi
On Mon, Jun 3, 2024 at 3:51 PM Gerd Hoffmann <kraxel@redhat.com> wrote:
> On Mon, Jun 03, 2024 at 02:24:52PM GMT, Marc-André Lureau wrote:
> > Hi
> >
> > On Thu, May 30, 2024 at 3:05 PM Gerd Hoffmann <kraxel@redhat.com> wrote:
> >
> > > In case the display surface uses a shared buffer (i.e. uses vga vram
> > > directly instead of a shadow) go unshare the buffer before clearing it.
> > >
> > > This avoids vga memory corruption, which in turn fixes unblanking not
> > > working properly with X11.
> > >
> > > Cc: qemu-stable@nongnu.org
> > > Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2067
> > > Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> > > ---
> > > hw/display/vga.c | 6 ++++++
> > > 1 file changed, 6 insertions(+)
> > >
> > > diff --git a/hw/display/vga.c b/hw/display/vga.c
> > > index 30facc6c8e33..34ab8eb9b745 100644
> > > --- a/hw/display/vga.c
> > > +++ b/hw/display/vga.c
> > > @@ -1762,6 +1762,12 @@ static void vga_draw_blank(VGACommonState *s,
> int
> > > full_update)
> > > if (s->last_scr_width <= 0 || s->last_scr_height <= 0)
> > > return;
> > >
> > > + if (is_buffer_shared(surface)) {
> > >
> >
> > It might be a good time to rename this function. surface_is_borrowed() ?
>
> "shared" means memory shared between guest and host (typically vga vram).
>
>
In this context, but this is now confusing because we also have shared
memory surface support for win32.
static inline int is_buffer_shared(DisplaySurface *surface)
{
return !(surface->flags & QEMU_ALLOCATED_FLAG);
}
!allocated = the surface memory is not owned.
> I doubt using the term "borrowed" instead clarifies things much,
> especially as this isn't an rust-style "borrow" (which I guess you are
> referring to). Nothing prevents the host from writing to the surface as
> the bug clearly shows. Also qemu is a C project, so I wouldn't expect
> developers being familiar with rust semantics and terminology.
>
>
Borrowing is not a term specific to Rust :) (and you can have mutable
borrows btw)
I'd rather use "shared" memory for IPC purposes.
The lack of surface_ function prefix is also annoying.
> > > + /* unshare buffer, otherwise the blanking corrupts vga vram */
> > > + qemu_console_resize(s->con, s->last_scr_width,
> > > s->last_scr_height);
> >
> > If we want to guarantee that a new surface is created, we should leave a
> > comment on qemu_console_resize(),
>
> I left the comment there exactly because it isn't obvious that the
> qemu_console_resize() will create a new (not shared) surface. So not
> sure what exactly you are suggesting here?
>
>
I meant to document qemu_console_resize() function itself, as it would be
too easy to miss and break this case.
> > or perhaps make it take a new/alloc argument?
>
> Right now qemu_console_resize() does a bunch of checks to figure
> whenever it can take a shortcut (because width + height didn't change)
> or not.
>
> We could certainly pass a boolean in instead and have the caller decide
> that way. Didn't check whenever that makes sense, and IMHO that is well
> beyond the scope of a 3-lines bugfix.
>
> kraxel@sirius ~/projects/qemu# git grep qemu_console_resize | wc -l
> 35
>
Maybe introduce a new function then?
--
Marc-André Lureau
[-- Attachment #2: Type: text/html, Size: 5159 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-03 13:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-30 11:04 [PATCH] stdvga: fix screen blanking Gerd Hoffmann
2024-06-03 10:24 ` Marc-André Lureau
2024-06-03 11:51 ` Gerd Hoffmann
2024-06-03 13:02 ` Marc-André Lureau
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).