Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753547AbdLMSYC (ORCPT ); Wed, 13 Dec 2017 13:24:02 -0500 Received: from mail-ot0-f195.google.com ([74.125.82.195]:45874 "EHLO mail-ot0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752434AbdLMSYA (ORCPT ); Wed, 13 Dec 2017 13:24:00 -0500 X-Google-Smtp-Source: ACJfBotiKh/Ad5w3f/HsP1kbS3UwJRmLhMUttiGXJzNxYtaAp85gaRdn3/CqHoUfVJrQXRghY/WGefaLuZ69DXgm2h4= MIME-Version: 1.0 In-Reply-To: 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> <20171213155427.p24i2xdh2s65e4d2@hirez.programming.kicks-ass.net> From: Linus Torvalds Date: Wed, 13 Dec 2017 10:23:59 -0800 X-Google-Sender-Auth: A_3Sr9Vbf_a1_DnQ4uqV6okOBjQ Message-ID: Subject: Re: [patch 05/16] mm: Allow special mappings with user access cleared To: Dave Hansen Cc: Peter Zijlstra , "Kirill A. Shutemov" , Andy Lutomirski , Thomas Gleixner , LKML , X86 ML , Borislav Petkov , Greg KH , Kees Cook , Hugh Dickins , Brian Gerst , Josh Poimboeuf , Denys Vlasenko , Boris Ostrovsky , Juergen Gross , David Laight , Eduardo Valentin , "Liguori, Anthony" , Will Deacon , "linux-mm@kvack.org" , "Kirill A. Shutemov" , "Aneesh Kumar K. V" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 933 Lines: 22 On Wed, Dec 13, 2017 at 10:21 AM, Dave Hansen wrote: > On 12/13/2017 10:08 AM, Linus Torvalds wrote: >> On Wed, Dec 13, 2017 at 7:54 AM, Peter Zijlstr wrote: >>> Which is why get_user_pages() _should_ enforce this. >>> >>> What use are protection keys if you can trivially circumvent them? >> No, we will *not* worry about protection keys in get_user_pages(). > > We did introduce some support for it here: > >> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=33a709b25a760b91184bb335cf7d7c32b8123013 Ugh. I never realized. We should revert that, I feel. It's literally extra complexity for no actual real gain, and there is a real downside: the extra complexity that will cause people to get things wrong. This thread about us getting it wrong is just the proof. I vote for not trying to "fix" this case, let's just remove it. Linus