Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1464528

Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory regions

From Borislav Petkov <bp@alien8.de>
Newsgroups linux.kernel
Subject Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory regions
Date 2016-08-17 13:40 +0200
Message-ID <s77mp-pk-19@gated-at.bofh.it> (permalink)
References (5 earlier) <s6SGK-7mv-7@gated-at.bofh.it> <s6TW9-8jL-1@gated-at.bofh.it> <s6X3H-1PU-5@gated-at.bofh.it> <s75aV-7s7-7@gated-at.bofh.it> <s76gG-8a1-31@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Wed, Aug 17, 2016 at 12:19:48PM +0200, Ingo Molnar wrote:
> So I really hate this pattern, and we already have it in 
> arch/x86/kernel/cpu/microcode/intel.c as well:
> 
>                 start += PAGE_OFFSET - __PAGE_OFFSET_BASE;
> 
> and note that it's not #ifdefed there - I think it's safe to leave out the #ifdef?

Ah, yes, we got rid of the ifdeffery in:

  4a1a8e1b8f9f ("x86/asm, x86/microcode: Add __PAGE_OFFSET_BASE define on 32-bit")

So here's v2:

---
From: Borislav Petkov <bp@suse.de>
Date: Wed, 17 Aug 2016 08:23:29 +0200
Subject: [PATCH] x86/microcode/AMD: Fix initrd loading with
 CONFIG_RANDOMIZE_MEMORY=y

Similar to

  efaad554b4ff ("x86/microcode/intel: Fix initrd loading with CONFIG_RANDOMIZE_MEMORY=y")

fix microcode loading from the initrd on AMD by adding the randomization
offset to the microcode patch container within the initrd.

Reported-and-tested-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Kees Cook <keescook@chromium.org>
---
 arch/x86/kernel/cpu/microcode/amd.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c
index 27a0228c9cae..b816971f5da4 100644
--- a/arch/x86/kernel/cpu/microcode/amd.c
+++ b/arch/x86/kernel/cpu/microcode/amd.c
@@ -355,6 +355,7 @@ void load_ucode_amd_ap(void)
 	unsigned int cpu = smp_processor_id();
 	struct equiv_cpu_entry *eq;
 	struct microcode_amd *mc;
+	u8 *cont = container;
 	u32 rev, eax;
 	u16 eq_id;
 
@@ -371,8 +372,11 @@ void load_ucode_amd_ap(void)
 	if (check_current_patch_level(&rev, false))
 		return;
 
+	/* Add CONFIG_RANDOMIZE_MEMORY offset. */
+	cont += PAGE_OFFSET - __PAGE_OFFSET_BASE;
+
 	eax = cpuid_eax(0x00000001);
-	eq  = (struct equiv_cpu_entry *)(container + CONTAINER_HDR_SZ);
+	eq  = (struct equiv_cpu_entry *)(cont + CONTAINER_HDR_SZ);
 
 	eq_id = find_equiv_id(eq, eax);
 	if (!eq_id)
@@ -434,6 +438,9 @@ int __init save_microcode_in_initrd_amd(void)
 	else
 		container = cont_va;
 
+	/* Add CONFIG_RANDOMIZE_MEMORY offset. */
+	container += PAGE_OFFSET - __PAGE_OFFSET_BASE;
+
 	eax   = cpuid_eax(0x00000001);
 	eax   = ((eax >> 8) & 0xf) + ((eax >> 20) & 0xff);
 
-- 
2.8.4

-- 
Regards/Gruss,
    Boris.

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

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory regions Brian Gerst <brgerst@gmail.com> - 2016-08-14 11:50 +0200
  Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Baoquan He <bhe@redhat.com> - 2016-08-15 01:30 +0200
    Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory regions Brian Gerst <brgerst@gmail.com> - 2016-08-16 13:40 +0200
      Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Borislav Petkov <bp@alien8.de> - 2016-08-16 15:50 +0200
        Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Borislav Petkov <bp@alien8.de> - 2016-08-16 15:50 +0200
          Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Borislav Petkov <bp@alien8.de> - 2016-08-16 18:00 +0200
            Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Borislav Petkov <bp@alien8.de> - 2016-08-16 20:00 +0200
              Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory regions Kees Cook <keescook@chromium.org> - 2016-08-16 22:00 +0200
                Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Borislav Petkov <bp@alien8.de> - 2016-08-16 23:20 +0200
                Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory regions Brian Gerst <brgerst@gmail.com> - 2016-08-17 02:40 +0200
                Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Borislav Petkov <bp@alien8.de> - 2016-08-17 11:20 +0200
                Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Ingo Molnar <mingo@kernel.org> - 2016-08-17 12:30 +0200
                Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory  regions Borislav Petkov <bp@alien8.de> - 2016-08-17 13:40 +0200
                [tip:x86/urgent] x86/microcode/AMD: Fix initrd loading with  CONFIG_RANDOMIZE_MEMORY=y tip-bot for Borislav Petkov <tipbot@zytor.com> - 2016-08-18 13:00 +0200

csiph-web