From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752077AbdLNMDs (ORCPT ); Thu, 14 Dec 2017 07:03:48 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:37268 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751799AbdLNMDr (ORCPT ); Thu, 14 Dec 2017 07:03:47 -0500 Date: Thu, 14 Dec 2017 13:03:37 +0100 (CET) From: Thomas Gleixner To: Peter Zijlstra cc: linux-kernel@vger.kernel.org, x86@kernel.org, Linus Torvalds , Andy Lutomirsky , Dave Hansen , Borislav Petkov , Greg KH , keescook@google.com, hughd@google.com, 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, dan.j.williams@intel.com Subject: Re: [PATCH v2 00/17] x86/ldt: Use a VMA based read only mapping In-Reply-To: <20171214112726.742649793@infradead.org> Message-ID: References: <20171214112726.742649793@infradead.org> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 14 Dec 2017, Peter Zijlstra wrote: > So here's a second posting of the VMA based LDT implementation; now without > most of the crazy. > > I took out the write fault handler and the magic LAR touching code. > > Additionally there are a bunch of patches that address generic vm issue. > > - gup() access control; In specific I looked at accessing !_PAGE_USER pages > because these patches rely on not being able to do that. > > - special mappings; A whole bunch of mmap ops don't make sense on special > mappings so disallow them. > > Both things make sense independent of the rest of the series. Similarly, the > patches that kill that rediculous LDT inherit on exec() are also unquestionably > good. > > So I think at least the first 6 patches are good, irrespective of the > VMA approach. > > On the whole VMA approach, Andy I know you hate it with a passion, but I really > rather like how it ties the LDT to the process that it belongs to and it > reduces the amount of 'special' pages in the whole PTI mapping. > > I'm not the one going to make the decision on this; but I figured I at least > post a version without the obvious crap parts of the last one. > > Note: if we were to also disallow munmap() for special mappings (which I > suppose makes perfect sense) then we could further reduce the actual LDT > code (we'd no longer need the sm::close callback and related things). That makes a lot of sense for the other special mapping users like VDSO and kprobes. Thanks, tglx