* [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late()
@ 2014-06-05 13:27 ` Matt Fleming
0 siblings, 0 replies; 7+ messages in thread
From: Matt Fleming @ 2014-06-05 13:27 UTC (permalink / raw)
To: linux-efi-u79uwXL29TY76Z2rM5mHXA
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Alan Cox, Matt Fleming,
Matthew Garrett, Dave Hansen, Borislav Petkov
From: Matt Fleming <matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
free_bootmem_late() expects to only be passed RAM regions that the
kernel can access, and that have a corresponding 'struct page'. It's
possible for regions in the EFI memory map to reside in address ranges
for which pfn_to_page() doesn't work, for instance when running on an
i386 system with CONFIG_HIGHMEM=n.
This is in fact the case for one of Alan's machines where some of the
EFI boot services pages live in highmem, and running a kernel without
CONFIG_HIGHMEM enabled results in the following oops,
BUG: unable to handle kernel paging request at f7f1f080
IP: [<c17fba96>] __free_pages_bootmem+0x5a/0xb8
*pdpt = 0000000001887001 *pde = 0000000001984067 *pte = 000000000 0000000
Oops: 0002 [#1] SMP
[...]
Call Trace:
[<c17feacc>] free_bootmem_late+0x2d/0x3d
[<c17f1013>] efi_free_boot_services+0x48/0x5b
[<c17ddc12>] start_kernel+0x3ad/0x3cf
[<c17dd654>] ? set_init_arg+0x49/0x49
[<c17dd380>] i386_start_kernel+0x12e/0x131
Reported-by: Alan Cox <alan-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
Cc: Matthew Garrett <mjg59-1xO5oi07KQx4cg9Nei1l7Q@public.gmane.org>
Cc: Dave Hansen <dave.hansen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Borislav Petkov <bp-l3A5Bk7waGM@public.gmane.org>
Signed-off-by: Matt Fleming <matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
Alan, could you double check that this patch also fixes the oops on your
CONFIG_HIGHMEM=n machine?
arch/x86/platform/efi/efi.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c
index 3781dd39e8bd..893d183ee98f 100644
--- a/arch/x86/platform/efi/efi.c
+++ b/arch/x86/platform/efi/efi.c
@@ -451,6 +451,9 @@ void __init efi_free_boot_services(void)
if (!size)
continue;
+ if (!e820_all_mapped(start, start + size, E820_RAM))
+ continue;
+
free_bootmem_late(start, size);
}
--
1.9.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late()
@ 2014-06-05 13:27 ` Matt Fleming
0 siblings, 0 replies; 7+ messages in thread
From: Matt Fleming @ 2014-06-05 13:27 UTC (permalink / raw)
To: linux-efi
Cc: linux-kernel, Alan Cox, Matt Fleming, Matthew Garrett,
Dave Hansen, Borislav Petkov
From: Matt Fleming <matt.fleming@intel.com>
free_bootmem_late() expects to only be passed RAM regions that the
kernel can access, and that have a corresponding 'struct page'. It's
possible for regions in the EFI memory map to reside in address ranges
for which pfn_to_page() doesn't work, for instance when running on an
i386 system with CONFIG_HIGHMEM=n.
This is in fact the case for one of Alan's machines where some of the
EFI boot services pages live in highmem, and running a kernel without
CONFIG_HIGHMEM enabled results in the following oops,
BUG: unable to handle kernel paging request at f7f1f080
IP: [<c17fba96>] __free_pages_bootmem+0x5a/0xb8
*pdpt = 0000000001887001 *pde = 0000000001984067 *pte = 000000000 0000000
Oops: 0002 [#1] SMP
[...]
Call Trace:
[<c17feacc>] free_bootmem_late+0x2d/0x3d
[<c17f1013>] efi_free_boot_services+0x48/0x5b
[<c17ddc12>] start_kernel+0x3ad/0x3cf
[<c17dd654>] ? set_init_arg+0x49/0x49
[<c17dd380>] i386_start_kernel+0x12e/0x131
Reported-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Matthew Garrett <mjg59@srcf.ucam.org>
Cc: Dave Hansen <dave.hansen@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
---
Alan, could you double check that this patch also fixes the oops on your
CONFIG_HIGHMEM=n machine?
arch/x86/platform/efi/efi.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c
index 3781dd39e8bd..893d183ee98f 100644
--- a/arch/x86/platform/efi/efi.c
+++ b/arch/x86/platform/efi/efi.c
@@ -451,6 +451,9 @@ void __init efi_free_boot_services(void)
if (!size)
continue;
+ if (!e820_all_mapped(start, start + size, E820_RAM))
+ continue;
+
free_bootmem_late(start, size);
}
--
1.9.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late()
2014-06-05 13:27 ` Matt Fleming
(?)
@ 2014-06-05 14:43 ` Dave Hansen
-1 siblings, 0 replies; 7+ messages in thread
From: Dave Hansen @ 2014-06-05 14:43 UTC (permalink / raw)
To: Matt Fleming, linux-efi
Cc: linux-kernel, Alan Cox, Matt Fleming, Matthew Garrett,
Borislav Petkov
On 06/05/2014 06:27 AM, Matt Fleming wrote:
> free_bootmem_late() expects to only be passed RAM regions that the
> kernel can access, and that have a corresponding 'struct page'. It's
> possible for regions in the EFI memory map to reside in address ranges
> for which pfn_to_page() doesn't work, for instance when running on an
> i386 system with CONFIG_HIGHMEM=n.
FWIW, I think there are also a bunch of ways to hit this if someone uses
mem=, even on 64-bit.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late()
2014-06-05 13:27 ` Matt Fleming
@ 2014-06-05 15:01 ` Alan Cox
-1 siblings, 0 replies; 7+ messages in thread
From: Alan Cox @ 2014-06-05 15:01 UTC (permalink / raw)
To: Matt Fleming
Cc: linux-efi-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Matt Fleming,
Matthew Garrett, Dave Hansen, Borislav Petkov
On Thu, 5 Jun 2014 14:27:34 +0100
Matt Fleming <matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org> wrote:
> From: Matt Fleming <matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>
> free_bootmem_late() expects to only be passed RAM regions that the
> kernel can access, and that have a corresponding 'struct page'. It's
> possible for regions in the EFI memory map to reside in address ranges
> for which pfn_to_page() doesn't work, for instance when running on an
> i386 system with CONFIG_HIGHMEM=n.
>
> This is in fact the case for one of Alan's machines where some of the
> EFI boot services pages live in highmem, and running a kernel without
> CONFIG_HIGHMEM enabled results in the following oops,
>
> BUG: unable to handle kernel paging request at f7f1f080
> IP: [<c17fba96>] __free_pages_bootmem+0x5a/0xb8
> *pdpt = 0000000001887001 *pde = 0000000001984067 *pte = 000000000 0000000
> Oops: 0002 [#1] SMP
No improvement, and the if case is never true 8(
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late()
@ 2014-06-05 15:01 ` Alan Cox
0 siblings, 0 replies; 7+ messages in thread
From: Alan Cox @ 2014-06-05 15:01 UTC (permalink / raw)
To: Matt Fleming
Cc: linux-efi, linux-kernel, Matt Fleming, Matthew Garrett,
Dave Hansen, Borislav Petkov
On Thu, 5 Jun 2014 14:27:34 +0100
Matt Fleming <matt@console-pimps.org> wrote:
> From: Matt Fleming <matt.fleming@intel.com>
>
> free_bootmem_late() expects to only be passed RAM regions that the
> kernel can access, and that have a corresponding 'struct page'. It's
> possible for regions in the EFI memory map to reside in address ranges
> for which pfn_to_page() doesn't work, for instance when running on an
> i386 system with CONFIG_HIGHMEM=n.
>
> This is in fact the case for one of Alan's machines where some of the
> EFI boot services pages live in highmem, and running a kernel without
> CONFIG_HIGHMEM enabled results in the following oops,
>
> BUG: unable to handle kernel paging request at f7f1f080
> IP: [<c17fba96>] __free_pages_bootmem+0x5a/0xb8
> *pdpt = 0000000001887001 *pde = 0000000001984067 *pte = 000000000 0000000
> Oops: 0002 [#1] SMP
No improvement, and the if case is never true 8(
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late()
2014-06-05 15:01 ` Alan Cox
@ 2014-06-05 18:07 ` Matt Fleming
-1 siblings, 0 replies; 7+ messages in thread
From: Matt Fleming @ 2014-06-05 18:07 UTC (permalink / raw)
To: Alan Cox
Cc: linux-efi-u79uwXL29TY76Z2rM5mHXA, LKML, Matt Fleming,
Matthew Garrett, Dave Hansen, Borislav Petkov
On 5 June 2014 16:01, Alan Cox <alan-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org> wrote:
> On Thu, 5 Jun 2014 14:27:34 +0100
> Matt Fleming <matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org> wrote:
>
>> From: Matt Fleming <matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>>
>> free_bootmem_late() expects to only be passed RAM regions that the
>> kernel can access, and that have a corresponding 'struct page'. It's
>> possible for regions in the EFI memory map to reside in address ranges
>> for which pfn_to_page() doesn't work, for instance when running on an
>> i386 system with CONFIG_HIGHMEM=n.
>>
>> This is in fact the case for one of Alan's machines where some of the
>> EFI boot services pages live in highmem, and running a kernel without
>> CONFIG_HIGHMEM enabled results in the following oops,
>>
>> BUG: unable to handle kernel paging request at f7f1f080
>> IP: [<c17fba96>] __free_pages_bootmem+0x5a/0xb8
>> *pdpt = 0000000001887001 *pde = 0000000001984067 *pte = 000000000 0000000
>> Oops: 0002 [#1] SMP
>
> No improvement, and the if case is never true 8(
Argh, dammit. OK, back to the drawing board. Thanks for testing.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late()
@ 2014-06-05 18:07 ` Matt Fleming
0 siblings, 0 replies; 7+ messages in thread
From: Matt Fleming @ 2014-06-05 18:07 UTC (permalink / raw)
To: Alan Cox
Cc: linux-efi, LKML, Matt Fleming, Matthew Garrett, Dave Hansen,
Borislav Petkov
On 5 June 2014 16:01, Alan Cox <alan@lxorguk.ukuu.org.uk> wrote:
> On Thu, 5 Jun 2014 14:27:34 +0100
> Matt Fleming <matt@console-pimps.org> wrote:
>
>> From: Matt Fleming <matt.fleming@intel.com>
>>
>> free_bootmem_late() expects to only be passed RAM regions that the
>> kernel can access, and that have a corresponding 'struct page'. It's
>> possible for regions in the EFI memory map to reside in address ranges
>> for which pfn_to_page() doesn't work, for instance when running on an
>> i386 system with CONFIG_HIGHMEM=n.
>>
>> This is in fact the case for one of Alan's machines where some of the
>> EFI boot services pages live in highmem, and running a kernel without
>> CONFIG_HIGHMEM enabled results in the following oops,
>>
>> BUG: unable to handle kernel paging request at f7f1f080
>> IP: [<c17fba96>] __free_pages_bootmem+0x5a/0xb8
>> *pdpt = 0000000001887001 *pde = 0000000001984067 *pte = 000000000 0000000
>> Oops: 0002 [#1] SMP
>
> No improvement, and the if case is never true 8(
Argh, dammit. OK, back to the drawing board. Thanks for testing.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-06-05 18:07 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-05 13:27 [PATCH] x86/efi: Only pass mapped RAM regions to free_bootmem_late() Matt Fleming
2014-06-05 13:27 ` Matt Fleming
2014-06-05 14:43 ` Dave Hansen
[not found] ` <1401974854-7716-1-git-send-email-matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org>
2014-06-05 15:01 ` Alan Cox
2014-06-05 15:01 ` Alan Cox
[not found] ` <20140605160102.3c58481e-+KEw/ACL1GZE/aiTQr5FLb0Ud+EcFu5g@public.gmane.org>
2014-06-05 18:07 ` Matt Fleming
2014-06-05 18:07 ` Matt Fleming
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.