qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] multiboot: check mh_load_end_addr address field


From: Jack Schwartz
Subject: Re: [Qemu-devel] [PATCH] multiboot: check mh_load_end_addr address field
Date: Tue, 6 Mar 2018 11:30:54 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0

Hi Prasad.

The Multiboot Spec will allow for a zero bss end address.  (Please see section 3.1.3 at https://www.gnu.org/software/grub/manual/multiboot/  . ) For a zero bss end address, this patch will not do the right thing.

I had proposed some patches to properly handle zero bss end address, but they got delayed.  However, I will be re-sending updated patches out later today.  Please stay tuned...

    Thanks,
    Jack

On 02/27/18 11:48, P J P wrote:
From: Prasad J Pandit <address@hidden>

While loading kernel via multiboot-v1 image, (flags & 0x00010000)
indicates that multiboot header contains valid addresses to load
the kernel image. In that, end of the data segment address
'mh_load_end_addr' should be less than the bss segment address
'mh_bss_end_addr'. Add check to validate that.

Reported-by: CERT CC <address@hidden>
Signed-off-by: Prasad J Pandit <address@hidden>
---
  hw/i386/multiboot.c | 4 ++++
  1 file changed, 4 insertions(+)

diff --git a/hw/i386/multiboot.c b/hw/i386/multiboot.c
index 46d9c68bf5..d16e32bf4a 100644
--- a/hw/i386/multiboot.c
+++ b/hw/i386/multiboot.c
@@ -227,6 +227,10 @@ int load_multiboot(FWCfgState *fw_cfg,
              fprintf(stderr, "invalid mh_load_addr address\n");
              exit(1);
          }
+        if (mh_load_end_addr > mh_bss_end_addr) {
+            fprintf(stderr, "invalid mh_load_end_addr address\n");
+            exit(1);
+        }
uint32_t mb_kernel_text_offset = i - (mh_header_addr - mh_load_addr);
          uint32_t mb_load_size = 0;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]