lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20141112151106.GB17793@pd.tnic>
Date:	Wed, 12 Nov 2014 16:11:06 +0100
From:	Borislav Petkov <bp@...e.de>
To:	Dave Hansen <dave.hansen@...el.com>
Cc:	Matt Fleming <matt.fleming@...el.com>,
	the arch/x86 maintainers <x86@...nel.org>,
	LKML <linux-kernel@...r.kernel.org>
Subject: Re: BUG() at boot in __phys_addr with DEBUG_VIRTUAL

On Wed, Nov 12, 2014 at 06:57:58AM -0800, Dave Hansen wrote:

> It's actually tripping over this in __phys_addr:
> 
>      VIRTUAL_BUG_ON((x > y) || !phys_addr_valid(x));
> 
> I dumped out a few of the variables too:
> 
> [    1.161406] __phys_addr() x: 0x000078009d3c6000
> [    1.166567] __phys_addr() origx: 0x000000009d3c6000
> [    1.171832] __phys_addr() y: 0x000000011d3c6000
> [    1.176999] __phys_addr() __START_KERNEL_map: 0xffffffff80000000
> [    1.183841] __phys_addr() PAGE_OFFSET: 0xffff880000000000
> [    1.189993] __phys_addr() x valid: 0
> 
> So it looks like the root cause is a physical address getting pass in in
> the first place instead of a virtual.

I'd say that's on purpose as we're mapping kernel text 1:1 in the EFI
page table.

Maybe we want this:

---
diff --git a/arch/x86/platform/efi/efi_64.c b/arch/x86/platform/efi/efi_64.c
index 35aecb6042fb..8262d534080d 100644
--- a/arch/x86/platform/efi/efi_64.c
+++ b/arch/x86/platform/efi/efi_64.c
@@ -182,7 +182,7 @@ int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages)
 	efi_scratch.phys_stack += PAGE_SIZE; /* stack grows down */
 
 	npages = (_end - _text) >> PAGE_SHIFT;
-	text = __pa(_text);
+	text = __pa_nodebug(_text);
 
 	if (kernel_map_pages_in_pgd(pgd, text >> PAGE_SHIFT, text, npages, 0)) {
 		pr_err("Failed to map kernel text 1:1\n");


-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ