From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757392AbdLPVic (ORCPT ); Sat, 16 Dec 2017 16:38:32 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:42077 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757187AbdLPVi1 (ORCPT ); Sat, 16 Dec 2017 16:38:27 -0500 Message-Id: <20171216213138.883238323@linutronix.de> User-Agent: quilt/0.63-1 Date: Sat, 16 Dec 2017 22:24:24 +0100 From: Thomas Gleixner To: LKML Cc: x86@kernel.org, Linus Torvalds , Andy Lutomirsky , Peter Zijlstra , Dave Hansen , Borislav Petkov , Greg KH , keescook@google.com, hughd@google.com, Brian Gerst , Josh Poimboeuf , Denys Vlasenko , Rik van Riel , Boris Ostrovsky , Juergen Gross , David Laight , Eduardo Valentin , aliguori@amazon.com, Will Deacon , daniel.gruss@iaik.tugraz.at, Ingo Molnar , Borislav Petkov , Dave Hansen , "H. Peter Anvin" Subject: [patch V149 30/50] x86/mm/pti: Share cpu_entry_area PMDs References: <20171216212354.120930222@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline; filename=0039-x86-mm-pti-Share-cpu_entry_area-PMDs.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Andy Lutomirski Share the FIX_USR_SHARED PMDs so the user space and kernel space page tables have the same PMD page. [ tglx: Made it use the FIX_USR_SHARED range so later additions are covered automatically ] Signed-off-by: Andy Lutomirski Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner Cc: Boris Ostrovsky Cc: Borislav Petkov Cc: Brian Gerst Cc: Dave Hansen Cc: David Laight Cc: Denys Vlasenko Cc: Eduardo Valentin Cc: Greg KH Cc: H. Peter Anvin Cc: Josh Poimboeuf Cc: Juergen Gross Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Will Deacon Cc: aliguori@amazon.com Cc: daniel.gruss@iaik.tugraz.at Cc: hughd@google.com Cc: keescook@google.com --- arch/x86/mm/pti.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) --- a/arch/x86/mm/pti.c +++ b/arch/x86/mm/pti.c @@ -187,6 +187,23 @@ pti_clone_pmds(unsigned long start, unsi } /* + * Clone the populated PMDs of the user shared fixmaps into the user space + * visible page table. + */ +static void __init pti_clone_user_shared(void) +{ + unsigned long bot, top; + + bot = __fix_to_virt(FIX_USR_SHARED_BOTTOM); + top = __fix_to_virt(FIX_USR_SHARED_TOP) + PAGE_SIZE; + + /* Top of the user shared block must be PMD-aligned. */ + WARN_ON(top & ~PMD_MASK); + + pti_clone_pmds(bot, top, 0); +} + +/* * Initialize kernel page table isolation */ void __init pti_init(void) @@ -195,4 +212,6 @@ void __init pti_init(void) return; pr_info("enabled\n"); + + pti_clone_user_shared(); }