public inbox for linux-efi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86_64/efi: Use all 64 bit of efi_memmap in setup_e820()
@ 2015-07-22 15:06 Dmitry Skorodumov
       [not found] ` <1437577570-13038-1-git-send-email-sdmitry-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Dmitry Skorodumov @ 2015-07-22 15:06 UTC (permalink / raw)
  To: linux-efi-u79uwXL29TY76Z2rM5mHXA
  Cc: sdmitry-bzQdu9zFT3WakBO8gow8eQ, Denis V. Lunev

The efi_info structure stores low 32 bits of memory map
in efi_memmap and high 32 bits in efi_memmap_hi.

While constructing pointer in the setup_e820(), need
to take into account all 64 bit of the pointer.

It is because on 64bit machine the function
efi_get_memory_map() may return full 64bit pointer and before
the patch that pointer was truncated.

Signed-off-by: Dmitry Skorodumov <sdmitry-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
CC: Denis V. Lunev <den-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>

tested in Parallles virtual machine, kernel 3.10.0
---
 arch/x86/boot/compressed/eboot.c |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
index 2c82bd1..908a81f 100644
--- a/arch/x86/boot/compressed/eboot.c
+++ b/arch/x86/boot/compressed/eboot.c
@@ -1184,6 +1184,12 @@ static efi_status_t setup_e820(struct boot_params *params,
 	u32 nr_entries;
 	u32 nr_desc;
 	int i;
+	unsigned long m
+
+	m = efi->efi_memmap;
+#ifdef CONFIG_X86_64
+	m |= (u64)efi->efi_memmap_hi << 32;
+#endif
 
 	nr_entries = 0;
 	nr_desc = efi->efi_memmap_size / efi->efi_memdesc_size;
@@ -1191,7 +1197,6 @@ static efi_status_t setup_e820(struct boot_params *params,
 	for (i = 0; i < nr_desc; i++) {
 		efi_memory_desc_t *d;
 		unsigned int e820_type = 0;
-		unsigned long m = efi->efi_memmap;
 
 		d = (efi_memory_desc_t *)(m + (i * efi->efi_memdesc_size));
 		switch (d->type) {
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86_64/efi: Use all 64 bit of efi_memmap in setup_e820()
       [not found] ` <1437577570-13038-1-git-send-email-sdmitry-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
@ 2015-07-22 15:22   ` Borislav Petkov
  2015-07-22 15:30     ` Dmitry Skorodumov
  0 siblings, 1 reply; 3+ messages in thread
From: Borislav Petkov @ 2015-07-22 15:22 UTC (permalink / raw)
  To: Dmitry Skorodumov; +Cc: linux-efi-u79uwXL29TY76Z2rM5mHXA, Denis V. Lunev

On Wed, Jul 22, 2015 at 07:06:10PM +0400, Dmitry Skorodumov wrote:
> The efi_info structure stores low 32 bits of memory map
> in efi_memmap and high 32 bits in efi_memmap_hi.
> 
> While constructing pointer in the setup_e820(), need
> to take into account all 64 bit of the pointer.
> 
> It is because on 64bit machine the function
> efi_get_memory_map() may return full 64bit pointer and before
> the patch that pointer was truncated.
> 
> Signed-off-by: Dmitry Skorodumov <sdmitry-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
> CC: Denis V. Lunev <den-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org>
> 
> tested in Parallles virtual machine, kernel 3.10.0
> ---
>  arch/x86/boot/compressed/eboot.c |   10 +++++++++-
>  1 files changed, 9 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
> index 2c82bd1..908a81f 100644
> --- a/arch/x86/boot/compressed/eboot.c
> +++ b/arch/x86/boot/compressed/eboot.c
> @@ -1184,6 +1184,12 @@ static efi_status_t setup_e820(struct boot_params *params,
>  	u32 nr_entries;
>  	u32 nr_desc;
>  	int i;
> +	unsigned long m

Did you even build-test it before sending?

-- 
Regards/Gruss,
    Boris.

ECO tip #101: Trim your mails when you reply.
--

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86_64/efi: Use all 64 bit of efi_memmap in setup_e820()
  2015-07-22 15:22   ` Borislav Petkov
@ 2015-07-22 15:30     ` Dmitry Skorodumov
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry Skorodumov @ 2015-07-22 15:30 UTC (permalink / raw)
  To: linux-efi-u79uwXL29TY76Z2rM5mHXA

Borislav Petkov <bp@...> writes:
> > +	unsigned long m
> 
> Did you even build-test it before sending?

Sorry for inaccuracy, somehow lost the semicolon during final editing..

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-22 15:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-22 15:06 [PATCH] x86_64/efi: Use all 64 bit of efi_memmap in setup_e820() Dmitry Skorodumov
     [not found] ` <1437577570-13038-1-git-send-email-sdmitry-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2015-07-22 15:22   ` Borislav Petkov
2015-07-22 15:30     ` Dmitry Skorodumov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox