From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755172AbeDZIzt (ORCPT ); Thu, 26 Apr 2018 04:55:49 -0400 Received: from Galois.linutronix.de ([146.0.238.70]:46268 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754813AbeDZIzq (ORCPT ); Thu, 26 Apr 2018 04:55:46 -0400 Date: Thu, 26 Apr 2018 10:55:40 +0200 (CEST) From: Thomas Gleixner To: Shakeel Butt cc: Dave Hansen , LKML , Linux MM , stable@kernel.org, linuxram@us.ibm.com, Dave Hansen , mpe@ellerman.id.au, Ingo Molnar , Andrew Morton , shuah@kernel.org Subject: Re: [PATCH 4/9] x86, pkeys: override pkey when moving away from PROT_EXEC In-Reply-To: Message-ID: References: <20180326172721.D5B2CBB4@viggo.jf.intel.com> <20180326172727.025EBF16@viggo.jf.intel.com> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) 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 Wed, 25 Apr 2018, Shakeel Butt wrote: > On Mon, Mar 26, 2018 at 5:27 PM, Dave Hansen > wrote: > > > > From: Dave Hansen > > > > I got a bug report that the following code (roughly) was > > causing a SIGSEGV: > > > > mprotect(ptr, size, PROT_EXEC); > > mprotect(ptr, size, PROT_NONE); > > mprotect(ptr, size, PROT_READ); > > *ptr = 100; > > > > The problem is hit when the mprotect(PROT_EXEC) > > is implicitly assigned a protection key to the VMA, and made > > that key ACCESS_DENY|WRITE_DENY. The PROT_NONE mprotect() > > failed to remove the protection key, and the PROT_NONE-> > > PROT_READ left the PTE usable, but the pkey still in place > > and left the memory inaccessible. > > > > To fix this, we ensure that we always "override" the pkee > > at mprotect() if the VMA does not have execute-only > > permissions, but the VMA has the execute-only pkey. > > > > We had a check for PROT_READ/WRITE, but it did not work > > for PROT_NONE. This entirely removes the PROT_* checks, > > which ensures that PROT_NONE now works. > > > > Reported-by: Shakeel Butt > > > > Signed-off-by: Dave Hansen > > Fixes: 62b5f7d013f ("mm/core, x86/mm/pkeys: Add execute-only protection keys support") > > Hi Dave, are you planning to send the next version of this patch or > going with this one? Right, some enlightment would be appreciated. I'm lost in the dozen different threads discussing this back and forth. Thanks, tglx