Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753371AbdLMPzI (ORCPT ); Wed, 13 Dec 2017 10:55:08 -0500 Received: from merlin.infradead.org ([205.233.59.134]:45386 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752948AbdLMPzD (ORCPT ); Wed, 13 Dec 2017 10:55:03 -0500 Date: Wed, 13 Dec 2017 16:54:27 +0100 From: Peter Zijlstra To: Dave Hansen Cc: "Kirill A. Shutemov" , Andy Lutomirski , Thomas Gleixner , LKML , X86 ML , Linus Torvalds , 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" , kirill.shutemov@linux.intel.com, aneesh.kumar@linux.vnet.ibm.com Subject: Re: [patch 05/16] mm: Allow special mappings with user access cleared Message-ID: <20171213155427.p24i2xdh2s65e4d2@hirez.programming.kicks-ass.net> References: <20171212173221.496222173@linutronix.de> <20171212173333.669577588@linutronix.de> <20171213122211.bxcb7xjdwla2bqol@hirez.programming.kicks-ass.net> <20171213125739.fllckbl3o4nonmpx@node.shutemov.name> <20171213153202.qtxnloxoc66lhsbf@hirez.programming.kicks-ass.net> 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: 938 Lines: 26 On Wed, Dec 13, 2017 at 07:47:46AM -0800, Dave Hansen wrote: > On 12/13/2017 07:32 AM, Peter Zijlstra wrote: > >> This will fault writing a byte to 'addr': > >> > >> char *addr = malloc(PAGE_SIZE); > >> pkey_mprotect(addr, PAGE_SIZE, 13); > >> pkey_deny_access(13); > >> *addr[0] = 'f'; > >> > >> But this will write one byte to addr successfully (if it uses the kernel > >> mapping of the physical page backing 'addr'): > >> > >> char *addr = malloc(PAGE_SIZE); > >> pkey_mprotect(addr, PAGE_SIZE, 13); > >> pkey_deny_access(13); > >> read(fd, addr, 1); > >> > > This seems confused to me; why are these two cases different? > > Protection keys doesn't work in the kernel direct map, so if the read() > was implemented by writing to the direct map alias of 'addr' then this > would bypass protection keys. Which is why get_user_pages() _should_ enforce this. What use are protection keys if you can trivially circumvent them?