* [Qemu-devel] [PATCH] hw/block/pflash_cfi*.c: fix confusing assert fail message
@ 2016-12-15 14:04 skiver.cloud.yzy
2016-12-15 14:14 ` Paolo Bonzini
0 siblings, 1 reply; 2+ messages in thread
From: skiver.cloud.yzy @ 2016-12-15 14:04 UTC (permalink / raw)
To: qemu-devel; +Cc: Paolo Bonzini, Peter Maydell, Ziyue Yang, Ziyue Yang
From: Ziyue Yang <yzylivezh@hotmail.com>
The patch is to fix the confusing assert fail message caused by
un-initialized device structure (from bite sized tasks).
The bug can be reproduced by
./qemu-system-x86_64 -nographic -device cfi.pflash01
The CFI hardware is dynamically loaded by QOM realizing mechanism,
however the realizing function in pflash_cfi01_realize function
requires the device being initialized manually before calling, like
./qemu-system-x86_64 -nographic
-device cfi.pflash01,num-blocks=1024,sector-length=4096,name=testcard
Once the initializing parameters are left off in the command, it will
leave the device structure not initialized, which makes
pflash_cfi01_realize try to realize a zero-volume card, causing
/mnt/EXT_volume/projects/qemu/qemu-dev/exec.c:1378:
find_ram_offset: Assertion `size != 0\' failed.
Through my test, at least the flash device's block-number, sector-length
and its name is needed for pflash_cfi01_realize to behave correctly. So
I think the new asserts are needed to hint the QEMU user to specify
the device's parameters correctly.
Signed-off-by: Ziyue Yang <skiver.cloud.yzy@gmail.com>
---
hw/block/pflash_cfi01.c | 13 +++++++++++++
hw/block/pflash_cfi02.c | 13 +++++++++++++
2 files changed, 26 insertions(+)
diff --git a/hw/block/pflash_cfi01.c b/hw/block/pflash_cfi01.c
index 62d7a56..5f0ee9d 100644
--- a/hw/block/pflash_cfi01.c
+++ b/hw/block/pflash_cfi01.c
@@ -707,6 +707,19 @@ static void pflash_cfi01_realize(DeviceState *dev, Error **errp)
int num_devices;
Error *local_err = NULL;
+ if (pfl->sector_len == 0) {
+ error_setg(errp, "attribute \"sector-length\" not specified or zero.");
+ return;
+ }
+ if (pfl->nb_blocs == 0) {
+ error_setg(errp, "attribute \"num-blocks\" not specified or zero.");
+ return;
+ }
+ if (pfl->name == NULL) {
+ error_setg(errp, "attribute \"name\" not specified.");
+ return;
+ }
+
total_len = pfl->sector_len * pfl->nb_blocs;
/* These are only used to expose the parameters of each device
diff --git a/hw/block/pflash_cfi02.c b/hw/block/pflash_cfi02.c
index 4f6105c..ef71322 100644
--- a/hw/block/pflash_cfi02.c
+++ b/hw/block/pflash_cfi02.c
@@ -600,6 +600,19 @@ static void pflash_cfi02_realize(DeviceState *dev, Error **errp)
int ret;
Error *local_err = NULL;
+ if (pfl->sector_len == 0) {
+ error_setg(errp, "attribute \"sector-length\" not specified or zero.");
+ return;
+ }
+ if (pfl->nb_blocs == 0) {
+ error_setg(errp, "attribute \"num-blocks\" not specified or zero.");
+ return;
+ }
+ if (pfl->name == NULL) {
+ error_setg(errp, "attribute \"name\" not specified.");
+ return;
+ }
+
chip_len = pfl->sector_len * pfl->nb_blocs;
/* XXX: to be fixed */
#if 0
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/block/pflash_cfi*.c: fix confusing assert fail message
2016-12-15 14:04 [Qemu-devel] [PATCH] hw/block/pflash_cfi*.c: fix confusing assert fail message skiver.cloud.yzy
@ 2016-12-15 14:14 ` Paolo Bonzini
0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2016-12-15 14:14 UTC (permalink / raw)
To: skiver.cloud.yzy, qemu-devel; +Cc: Peter Maydell, Ziyue Yang
On 15/12/2016 15:04, skiver.cloud.yzy@gmail.com wrote:
> From: Ziyue Yang <yzylivezh@hotmail.com>
>
> The patch is to fix the confusing assert fail message caused by
> un-initialized device structure (from bite sized tasks).
>
> The bug can be reproduced by
>
> ./qemu-system-x86_64 -nographic -device cfi.pflash01
>
> The CFI hardware is dynamically loaded by QOM realizing mechanism,
> however the realizing function in pflash_cfi01_realize function
> requires the device being initialized manually before calling, like
>
> ./qemu-system-x86_64 -nographic
> -device cfi.pflash01,num-blocks=1024,sector-length=4096,name=testcard
>
> Once the initializing parameters are left off in the command, it will
> leave the device structure not initialized, which makes
> pflash_cfi01_realize try to realize a zero-volume card, causing
>
> /mnt/EXT_volume/projects/qemu/qemu-dev/exec.c:1378:
> find_ram_offset: Assertion `size != 0\' failed.
>
> Through my test, at least the flash device's block-number, sector-length
> and its name is needed for pflash_cfi01_realize to behave correctly. So
> I think the new asserts are needed to hint the QEMU user to specify
> the device's parameters correctly.
>
> Signed-off-by: Ziyue Yang <skiver.cloud.yzy@gmail.com>
> ---
> hw/block/pflash_cfi01.c | 13 +++++++++++++
> hw/block/pflash_cfi02.c | 13 +++++++++++++
> 2 files changed, 26 insertions(+)
>
> diff --git a/hw/block/pflash_cfi01.c b/hw/block/pflash_cfi01.c
> index 62d7a56..5f0ee9d 100644
> --- a/hw/block/pflash_cfi01.c
> +++ b/hw/block/pflash_cfi01.c
> @@ -707,6 +707,19 @@ static void pflash_cfi01_realize(DeviceState *dev, Error **errp)
> int num_devices;
> Error *local_err = NULL;
>
> + if (pfl->sector_len == 0) {
> + error_setg(errp, "attribute \"sector-length\" not specified or zero.");
> + return;
> + }
> + if (pfl->nb_blocs == 0) {
> + error_setg(errp, "attribute \"num-blocks\" not specified or zero.");
> + return;
> + }
> + if (pfl->name == NULL) {
> + error_setg(errp, "attribute \"name\" not specified.");
> + return;
> + }
> +
> total_len = pfl->sector_len * pfl->nb_blocs;
>
> /* These are only used to expose the parameters of each device
> diff --git a/hw/block/pflash_cfi02.c b/hw/block/pflash_cfi02.c
> index 4f6105c..ef71322 100644
> --- a/hw/block/pflash_cfi02.c
> +++ b/hw/block/pflash_cfi02.c
> @@ -600,6 +600,19 @@ static void pflash_cfi02_realize(DeviceState *dev, Error **errp)
> int ret;
> Error *local_err = NULL;
>
> + if (pfl->sector_len == 0) {
> + error_setg(errp, "attribute \"sector-length\" not specified or zero.");
> + return;
> + }
> + if (pfl->nb_blocs == 0) {
> + error_setg(errp, "attribute \"num-blocks\" not specified or zero.");
> + return;
> + }
> + if (pfl->name == NULL) {
> + error_setg(errp, "attribute \"name\" not specified.");
> + return;
> + }
> +
> chip_len = pfl->sector_len * pfl->nb_blocs;
> /* XXX: to be fixed */
> #if 0
>
Looks good, thanks!
Paolo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-12-15 14:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-15 14:04 [Qemu-devel] [PATCH] hw/block/pflash_cfi*.c: fix confusing assert fail message skiver.cloud.yzy
2016-12-15 14:14 ` Paolo Bonzini
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).