Re: [PATCH] bootm: abort if kernel is outside the first 128MB

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

 



On Sun, Oct 28, 2018 at 03:24:51PM +0100, Patrick Boettcher wrote:
> Huge images and the pessimistic approach of barebox to put the
> kernel-image at five times its size may lead to it being
> positioned not in the first 128MiB of RAM. This is however
> required for it to be boot. (Referring to
> 
>   https://www.kernel.org/doc/Documentation/arm/Booting
> 
> "Calling the kernel image")
> 
> This commit aborts the boot and displays a message if the
> image is located outside the first 128MB.
> 
> Signed-off-by: Patrick Boettcher <p@xxxxxx>
> ---
>  arch/arm/lib32/bootm.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/arch/arm/lib32/bootm.c b/arch/arm/lib32/bootm.c
> index 4cf570e57..42febdc71 100644
> --- a/arch/arm/lib32/bootm.c
> +++ b/arch/arm/lib32/bootm.c
> @@ -121,6 +121,12 @@ static int get_kernel_addresses(size_t image_size,
>  		spacing += image_decomp_size;
>  	}
>  
> +	if ((*load_address - mem_start) > SZ_128M) {
> +		printf("boot aborted: kernel address outside 128MiB "
> +		       "(0x%08lx)\n", *load_address);
> +		return -ENOMEM;
> +	}

This is a bit harsh. The 128MiB problem only exists with CONFIG_AUTO_ZRELADDR
enabled in the kernel, otherwise it's fine to put the kernel above that
limit.

We only put the kernel above the 128MiB limit because we want to find a
place where the kernel doesn't have to move itself around in order to
not overwrite itself during decompression.

Could we instead just use 128MiB as an upper limit to put the kernel to?

Sascha

--------------------------------8<----------------------------

>From 25479ebf25de6464b51cdfc103cf4639b142d70c Mon Sep 17 00:00:00 2001
From: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx>
Date: Mon, 29 Oct 2018 12:55:20 +0100
Subject: [PATCH] ARM: bootm: Make sure the kernel is in the first 128MiB of
 memory

Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx>
---
 arch/arm/lib32/bootm.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/lib32/bootm.c b/arch/arm/lib32/bootm.c
index 4cf570e577..7e00fe922e 100644
--- a/arch/arm/lib32/bootm.c
+++ b/arch/arm/lib32/bootm.c
@@ -96,6 +96,14 @@ static int get_kernel_addresses(size_t image_size,
 	if (mem_size >= SZ_64M)
 		image_decomp_size = max_t(size_t, image_decomp_size, SZ_32M);
 
+	/*
+	 * with CONFIG_AUTO_ZRELADDR the Kernel calculates the memory base
+	 * address by masking the current instruction counter with 0xf8000000,
+	 * so make sure we do not put the kernel outside this limit.
+	 */
+	if (image_decomp_size >= SZ_128M)
+		image_decomp_size = SZ_128M - 16;
+
 	/*
 	 * By default put oftree/initrd close behind compressed kernel image to
 	 * avoid placing it outside of the kernels lowmem region.
-- 
2.19.0


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@xxxxxxxxxxxxxxxxxxx
http://lists.infradead.org/mailman/listinfo/barebox



[Index of Archives]     [Linux Embedded]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux