* [PATCH] hw/core: properly terminate loading .hex on EOF record
@ 2020-04-01 19:38 Alex Bennée
2020-04-02 9:09 ` Stefan Hajnoczi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Alex Bennée @ 2020-04-01 19:38 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell, Alex Bennée, joel, stefanha
The https://makecode.microbit.org/#editor generates slightly weird
.hex files which work fine on a real microbit but causes QEMU to
choke. The reason is extraneous data after the EOF record which causes
the loader to attempt to write a bigger file than it should to the
"rom". According to the HEX file spec an EOF really should be the last
thing we process so lets do that.
Reported-by: Ursula Bennée <alex.bennee@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
hw/core/loader.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/hw/core/loader.c b/hw/core/loader.c
index eeef6da9a1b..8bbb1797a4c 100644
--- a/hw/core/loader.c
+++ b/hw/core/loader.c
@@ -1447,6 +1447,7 @@ typedef struct {
uint32_t current_rom_index;
uint32_t rom_start_address;
AddressSpace *as;
+ bool complete;
} HexParser;
/* return size or -1 if error */
@@ -1484,6 +1485,7 @@ static int handle_record_type(HexParser *parser)
parser->current_rom_index,
parser->rom_start_address, parser->as);
}
+ parser->complete = true;
return parser->total_size;
case EXT_SEG_ADDR_RECORD:
case EXT_LINEAR_ADDR_RECORD:
@@ -1548,11 +1550,12 @@ static int parse_hex_blob(const char *filename, hwaddr *addr, uint8_t *hex_blob,
.bin_buf = g_malloc(hex_blob_size),
.start_addr = addr,
.as = as,
+ .complete = false
};
rom_transaction_begin();
- for (; hex_blob < end; ++hex_blob) {
+ for (; hex_blob < end && !parser.complete; ++hex_blob) {
switch (*hex_blob) {
case '\r':
case '\n':
--
2.20.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] hw/core: properly terminate loading .hex on EOF record
2020-04-01 19:38 [PATCH] hw/core: properly terminate loading .hex on EOF record Alex Bennée
@ 2020-04-02 9:09 ` Stefan Hajnoczi
2020-04-02 16:50 ` Richard Henderson
2020-04-02 21:35 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2020-04-02 9:09 UTC (permalink / raw)
To: Alex Bennée; +Cc: peter.maydell, qemu-devel, joel
[-- Attachment #1: Type: text/plain, Size: 712 bytes --]
On Wed, Apr 01, 2020 at 08:38:49PM +0100, Alex Bennée wrote:
> The https://makecode.microbit.org/#editor generates slightly weird
> .hex files which work fine on a real microbit but causes QEMU to
> choke. The reason is extraneous data after the EOF record which causes
> the loader to attempt to write a bigger file than it should to the
> "rom". According to the HEX file spec an EOF really should be the last
> thing we process so lets do that.
>
> Reported-by: Ursula Bennée <alex.bennee@linaro.org>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> hw/core/loader.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] hw/core: properly terminate loading .hex on EOF record
2020-04-01 19:38 [PATCH] hw/core: properly terminate loading .hex on EOF record Alex Bennée
2020-04-02 9:09 ` Stefan Hajnoczi
@ 2020-04-02 16:50 ` Richard Henderson
2020-04-02 21:35 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2020-04-02 16:50 UTC (permalink / raw)
To: Alex Bennée, qemu-devel; +Cc: peter.maydell, joel, stefanha
On 4/1/20 12:38 PM, Alex Bennée wrote:
> The https://makecode.microbit.org/#editor generates slightly weird
> .hex files which work fine on a real microbit but causes QEMU to
> choke. The reason is extraneous data after the EOF record which causes
> the loader to attempt to write a bigger file than it should to the
> "rom". According to the HEX file spec an EOF really should be the last
> thing we process so lets do that.
>
> Reported-by: Ursula Bennée <alex.bennee@linaro.org>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> hw/core/loader.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] hw/core: properly terminate loading .hex on EOF record
2020-04-01 19:38 [PATCH] hw/core: properly terminate loading .hex on EOF record Alex Bennée
2020-04-02 9:09 ` Stefan Hajnoczi
2020-04-02 16:50 ` Richard Henderson
@ 2020-04-02 21:35 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-04-02 21:35 UTC (permalink / raw)
To: Alex Bennée, qemu-devel; +Cc: peter.maydell, joel, stefanha
On 4/1/20 9:38 PM, Alex Bennée wrote:
> The https://makecode.microbit.org/#editor generates slightly weird
> .hex files which work fine on a real microbit but causes QEMU to
> choke. The reason is extraneous data after the EOF record which causes
> the loader to attempt to write a bigger file than it should to the
> "rom". According to the HEX file spec an EOF really should be the last
> thing we process so lets do that.
>
> Reported-by: Ursula Bennée <alex.bennee@linaro.org>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> hw/core/loader.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/hw/core/loader.c b/hw/core/loader.c
> index eeef6da9a1b..8bbb1797a4c 100644
> --- a/hw/core/loader.c
> +++ b/hw/core/loader.c
> @@ -1447,6 +1447,7 @@ typedef struct {
> uint32_t current_rom_index;
> uint32_t rom_start_address;
> AddressSpace *as;
> + bool complete;
> } HexParser;
>
> /* return size or -1 if error */
> @@ -1484,6 +1485,7 @@ static int handle_record_type(HexParser *parser)
> parser->current_rom_index,
> parser->rom_start_address, parser->as);
> }
> + parser->complete = true;
> return parser->total_size;
> case EXT_SEG_ADDR_RECORD:
> case EXT_LINEAR_ADDR_RECORD:
> @@ -1548,11 +1550,12 @@ static int parse_hex_blob(const char *filename, hwaddr *addr, uint8_t *hex_blob,
> .bin_buf = g_malloc(hex_blob_size),
> .start_addr = addr,
> .as = as,
> + .complete = false
> };
>
> rom_transaction_begin();
>
> - for (; hex_blob < end; ++hex_blob) {
> + for (; hex_blob < end && !parser.complete; ++hex_blob) {
> switch (*hex_blob) {
> case '\r':
> case '\n':
>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-04-02 21:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-01 19:38 [PATCH] hw/core: properly terminate loading .hex on EOF record Alex Bennée
2020-04-02 9:09 ` Stefan Hajnoczi
2020-04-02 16:50 ` Richard Henderson
2020-04-02 21:35 ` Philippe Mathieu-Daudé
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).