diff mbox series

[for-3.1] milkymist: Check for failure trying to load BIOS image

Message ID 20181030170032.1844-1-peter.maydell@linaro.org
State Superseded
Headers show
Series [for-3.1] milkymist: Check for failure trying to load BIOS image | expand

Commit Message

Peter Maydell Oct. 30, 2018, 5 p.m. UTC
Check the return value from load_image_targphys(), which tells us
whether our attempt to load the BIOS image into RAM failed.
(Spotted by Coverity, CID 1190305.)

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

---
 hw/lm32/milkymist.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

-- 
2.19.1

Comments

Philippe Mathieu-Daudé Oct. 30, 2018, 5:03 p.m. UTC | #1
On 30/10/18 18:00, Peter Maydell wrote:
> Check the return value from load_image_targphys(), which tells us

> whether our attempt to load the BIOS image into RAM failed.

> (Spotted by Coverity, CID 1190305.)

> 

> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


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


> ---

>   hw/lm32/milkymist.c | 5 ++++-

>   1 file changed, 4 insertions(+), 1 deletion(-)

> 

> diff --git a/hw/lm32/milkymist.c b/hw/lm32/milkymist.c

> index 321f184595e..63c6894c955 100644

> --- a/hw/lm32/milkymist.c

> +++ b/hw/lm32/milkymist.c

> @@ -138,7 +138,10 @@ milkymist_init(MachineState *machine)

>       bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);

>   

>       if (bios_filename) {

> -        load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE);

> +        if (load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE) < 0) {

> +            error_report("could not load bios '%s'", bios_filename);

> +            exit(1);

> +        }

>       }

>   

>       reset_info->bootstrap_pc = BIOS_OFFSET;

>
Michael Walle Oct. 31, 2018, 8:20 a.m. UTC | #2
Am 2018-10-30 18:00, schrieb Peter Maydell:
> Check the return value from load_image_targphys(), which tells us

> whether our attempt to load the BIOS image into RAM failed.

> (Spotted by Coverity, CID 1190305.)

> 

> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Acked-by: Michael Walle <michael@walle.cc>


Will you put it in your queue, Peter?

-michael

> ---

>  hw/lm32/milkymist.c | 5 ++++-

>  1 file changed, 4 insertions(+), 1 deletion(-)

> 

> diff --git a/hw/lm32/milkymist.c b/hw/lm32/milkymist.c

> index 321f184595e..63c6894c955 100644

> --- a/hw/lm32/milkymist.c

> +++ b/hw/lm32/milkymist.c

> @@ -138,7 +138,10 @@ milkymist_init(MachineState *machine)

>      bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);

> 

>      if (bios_filename) {

> -        load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE);

> +        if (load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE) 

> < 0) {

> +            error_report("could not load bios '%s'", bios_filename);

> +            exit(1);

> +        }

>      }

> 

>      reset_info->bootstrap_pc = BIOS_OFFSET;
Peter Maydell Nov. 5, 2018, 2:48 p.m. UTC | #3
On 31 October 2018 at 08:20, Michael Walle <michael@walle.cc> wrote:
> Am 2018-10-30 18:00, schrieb Peter Maydell:

>>

>> Check the return value from load_image_targphys(), which tells us

>> whether our attempt to load the BIOS image into RAM failed.

>> (Spotted by Coverity, CID 1190305.)

>>

>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

>

>

> Acked-by: Michael Walle <michael@walle.cc>

>

> Will you put it in your queue, Peter?


Sure, I have an arm pullreq I'm putting together anyway.

thanks
-- PMM
diff mbox series

Patch

diff --git a/hw/lm32/milkymist.c b/hw/lm32/milkymist.c
index 321f184595e..63c6894c955 100644
--- a/hw/lm32/milkymist.c
+++ b/hw/lm32/milkymist.c
@@ -138,7 +138,10 @@  milkymist_init(MachineState *machine)
     bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
 
     if (bios_filename) {
-        load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE);
+        if (load_image_targphys(bios_filename, BIOS_OFFSET, BIOS_SIZE) < 0) {
+            error_report("could not load bios '%s'", bios_filename);
+            exit(1);
+        }
     }
 
     reset_info->bootstrap_pc = BIOS_OFFSET;