From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
qemu-arm@nongnu.org, "Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Andrew Baumann" <Andrew.Baumann@microsoft.com>
Subject: [PATCH v2 1/3] hw/display/bcm2835_fb: Resize console on reset
Date: Tue, 23 Mar 2021 17:14:41 +0100 [thread overview]
Message-ID: <20210323161443.245636-2-f4bug@amsat.org> (raw)
In-Reply-To: <20210323161443.245636-1-f4bug@amsat.org>
We want to remove the bcm2835_fb_reset() call in bcm2835_fb_realize()
but doing triggers:
hw/display/bcm2835_fb.c:131:13: runtime error: store to null pointer of type 'uint32_t' (aka 'unsigned int')
SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior hw/display/bcm2835_fb.c:131:13 in
AddressSanitizer:DEADLYSIGNAL
=================================================================
==195864==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x555d1d51e6d6 bp 0x7ffd25a31160 sp 0x7ffd25a30fb0 T0)
==195864==The signal is caused by a WRITE memory access.
==195864==Hint: address points to the zero page.
#0 0x555d1d51e6d6 in draw_line_src16 hw/display/bcm2835_fb.c:131:30
#1 0x555d1dd88d5f in framebuffer_update_display hw/display/framebuffer.c:107:13
#2 0x555d1d51d081 in fb_update_display hw/display/bcm2835_fb.c:203:5
#3 0x555d1ccb93d6 in graphic_hw_update ui/console.c:279:9
#4 0x555d1dbc92cb in gd_refresh ui/gtk.c:492:5
#5 0x555d1ccef1fc in dpy_refresh ui/console.c:1734:13
#6 0x555d1ccee09c in gui_update ui/console.c:209:5
#7 0x555d201f3cf2 in timerlist_run_timers util/qemu-timer.c:586:9
#8 0x555d201f4061 in qemu_clock_run_timers util/qemu-timer.c:600:12
#9 0x555d201f5029 in qemu_clock_run_all_timers util/qemu-timer.c:682:25
#10 0x555d200c6f6c in main_loop_wait util/main-loop.c:541:5
#11 0x555d1f06ba93 in qemu_main_loop softmmu/runstate.c:725:9
#12 0x555d1cafe6ae in main softmmu/main.c:50:5
#13 0x7f6e6991b081 in __libc_start_main (/lib64/libc.so.6+0x27081)
#14 0x555d1ca249ed in _start (/mnt/scratch/qemu/sanitizer_aa64/qemu-system-aarch64+0x22999ed)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV hw/display/bcm2835_fb.c:131:30 in draw_line_src16
==195864==ABORTING
The graphic console timer kicks before the display device is realized.
By calling qemu_console_resize() in bcm2835_fb_reset() we force the
creation of the graphic console surface early enough.
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
hw/display/bcm2835_fb.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/display/bcm2835_fb.c b/hw/display/bcm2835_fb.c
index 2be77bdd3a0..3e63d58e0b2 100644
--- a/hw/display/bcm2835_fb.c
+++ b/hw/display/bcm2835_fb.c
@@ -399,6 +399,7 @@ static void bcm2835_fb_reset(DeviceState *dev)
s->config = s->initial_config;
s->invalidate = true;
+ qemu_console_resize(s->con, s->initial_config.xres, s->initial_config.yres);
s->lock = false;
}
--
2.26.2
next prev parent reply other threads:[~2021-03-23 17:07 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-23 16:14 [PATCH v2 0/3] hw/display/bcm2835_fb: Remove DeviceReset() call in DeviceRealize() Philippe Mathieu-Daudé
2021-03-23 16:14 ` Philippe Mathieu-Daudé [this message]
2021-03-26 14:27 ` [PATCH v2 1/3] hw/display/bcm2835_fb: Resize console on reset Peter Maydell
2021-03-26 23:13 ` Philippe Mathieu-Daudé
2021-03-29 5:59 ` Gerd Hoffmann
2021-05-19 18:22 ` Philippe Mathieu-Daudé
2021-03-23 16:14 ` [PATCH v2 2/3] hw/display/bcm2835_fb: Use bcm2835_fb_reconfigure in bcm2835_fb_reset Philippe Mathieu-Daudé
2021-03-23 16:14 ` [PATCH v2 3/3] hw/display/bcm2835_fb: Remove DeviceReset() call in DeviceRealize() Philippe Mathieu-Daudé
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=20210323161443.245636-2-f4bug@amsat.org \
--to=f4bug@amsat.org \
--cc=Andrew.Baumann@microsoft.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--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).