Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752735AbdLLSFb (ORCPT ); Tue, 12 Dec 2017 13:05:31 -0500 Received: from bombadil.infradead.org ([65.50.211.133]:43819 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752564AbdLLSF3 (ORCPT ); Tue, 12 Dec 2017 13:05:29 -0500 Date: Tue, 12 Dec 2017 19:05:09 +0100 From: Peter Zijlstra To: Andy Lutomirski Cc: Thomas Gleixner , LKML , X86 ML , Linus Torvalds , Dave Hansen , Borislav Petkov , Greg KH , Kees Cook , Hugh Dickins , Brian Gerst , Josh Poimboeuf , Denys Vlasenko , Boris Ostrovsky , Juergen Gross , David Laight , Eduardo Valentin , aliguori@amazon.com, Will Deacon , "linux-mm@kvack.org" Subject: Re: [patch 05/16] mm: Allow special mappings with user access cleared Message-ID: <20171212180509.iewpmzdhvsusk2nk@hirez.programming.kicks-ass.net> References: <20171212173221.496222173@linutronix.de> <20171212173333.669577588@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 774 Lines: 17 On Tue, Dec 12, 2017 at 10:00:08AM -0800, Andy Lutomirski wrote: > On Tue, Dec 12, 2017 at 9:32 AM, Thomas Gleixner wrote: > > From: Peter Zijstra > > > > In order to create VMAs that are not accessible to userspace create a new > > VM_NOUSER flag. This can be used in conjunction with > > install_special_mapping() to inject 'kernel' data into the userspace map. > > > > Similar to how arch_vm_get_page_prot() allows adding _PAGE_flags to > > pgprot_t, introduce arch_vm_get_page_prot_excl() which masks > > _PAGE_flags from pgprot_t and use this to implement VM_NOUSER for x86. > > How does this interact with get_user_pages(), etc? gup would find the page. These patches do in fact rely on that through the populate things.