[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160817101948.GA31863@gmail.com>
Date: Wed, 17 Aug 2016 12:19:48 +0200
From: Ingo Molnar <mingo@...nel.org>
To: Borislav Petkov <bp@...en8.de>
Cc: Brian Gerst <brgerst@...il.com>, Kees Cook <keescook@...omium.org>,
Baoquan He <bhe@...hat.com>, Yinghai Lu <yinghai@...nel.org>,
Juergen Gross <jgross@...e.com>,
Thomas Garnier <thgarnie@...gle.com>,
Andy Lutomirski <luto@...nel.org>,
"H. Peter Anvin" <hpa@...or.com>,
Alexander Kuleshov <kuleshovmail@...il.com>,
Josh Poimboeuf <jpoimboe@...hat.com>,
Christian Borntraeger <borntraeger@...ibm.com>,
Stephen Smalley <sds@...ho.nsa.gov>,
"Kirill A. Shutemov" <kirill.shutemov@...ux.intel.com>,
Joerg Roedel <jroedel@...e.de>,
"Williams, Dan J" <dan.j.williams@...el.com>,
Mark Salter <msalter@...hat.com>, Borislav Petkov <bp@...e.de>,
Jonathan Corbet <corbet@....net>,
Matt Fleming <matt@...eblueprint.co.uk>,
Xiao Guangrong <guangrong.xiao@...ux.intel.com>,
"Aneesh Kumar K.V" <aneesh.kumar@...ux.vnet.ibm.com>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Dave Hansen <dave.hansen@...ux.intel.com>,
Toshi Kani <toshi.kani@....com>,
Alexander Popov <alpopov@...ecurity.com>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Jan Beulich <JBeulich@...e.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Boris Ostrovsky <boris.ostrovsky@...cle.com>,
Denys Vlasenko <dvlasenk@...hat.com>,
Peter Zijlstra <peterz@...radead.org>,
Dave Young <dyoung@...hat.com>,
Thomas Gleixner <tglx@...utronix.de>,
Dmitry Vyukov <dvyukov@...gle.com>,
Lv Zheng <lv.zheng@...el.com>,
Martin Schwidefsky <schwidefsky@...ibm.com>,
"linux-tip-commits@...r.kernel.org"
<linux-tip-commits@...r.kernel.org>
Subject: Re: [tip:x86/boot] x86/mm: Enable KASLR for physical mapping memory
regions
* Borislav Petkov <bp@...en8.de> wrote:
> On Tue, Aug 16, 2016 at 08:31:28PM -0400, Brian Gerst wrote:
> > These fixes work for my system.
>
> Thanks Brian.
>
> Ingo, please queue this into x86/urgent.
>
> Thanks!
>
> ---
> From: Borislav Petkov <bp@...e.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@...il.com>
> Signed-off-by: Borislav Petkov <bp@...e.de>
> Cc: Kees Cook <keescook@...omium.org>
> ---
> arch/x86/kernel/cpu/microcode/amd.c | 13 ++++++++++++-
> 1 file changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c
> index 27a0228c9cae..f43b774d0684 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;
> u32 rev, eax;
> u16 eq_id;
>
> @@ -371,8 +372,14 @@ void load_ucode_amd_ap(void)
> if (check_current_patch_level(&rev, false))
> return;
>
> + cont = container;
> +
> +#ifdef CONFIG_RANDOMIZE_MEMORY
> + cont += PAGE_OFFSET - __PAGE_OFFSET_BASE;
> +#endif
> +
> 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 +441,10 @@ int __init save_microcode_in_initrd_amd(void)
> else
> container = cont_va;
>
> +#ifdef CONFIG_RANDOMIZE_MEMORY
> + container += PAGE_OFFSET - __PAGE_OFFSET_BASE;
> +#endif
> +
> eax = cpuid_eax(0x00000001);
> eax = ((eax >> 8) & 0xf) + ((eax >> 20) & 0xff);
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?
Thanks,
Ingo
Powered by blists - more mailing lists