From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751961AbeCNRPG (ORCPT ); Wed, 14 Mar 2018 13:15:06 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:47884 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751362AbeCNRPF (ORCPT ); Wed, 14 Mar 2018 13:15:05 -0400 Date: Wed, 14 Mar 2018 10:14:48 -0700 From: Ram Pai To: Dave Hansen Cc: mingo@redhat.com, mpe@ellerman.id.au, linuxppc-dev@lists.ozlabs.org, linux-mm@kvack.org, x86@kernel.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, akpm@linux-foundation.org, benh@kernel.crashing.org, paulus@samba.org, khandual@linux.vnet.ibm.com, aneesh.kumar@linux.vnet.ibm.com, bsingharora@gmail.com, hbabu@us.ibm.com, mhocko@kernel.org, bauerman@linux.vnet.ibm.com, ebiederm@xmission.com, corbet@lwn.net, arnd@arndb.de, fweimer@redhat.com, msuchanek@suse.com Subject: Re: [PATCH 1/1 v2] x86: pkey-mprotect must allow pkey-0 Reply-To: Ram Pai References: <1521013574-27041-1-git-send-email-linuxram@us.ibm.com> <18b155e3-07e9-5a4b-1f95-e1667078438c@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <18b155e3-07e9-5a4b-1f95-e1667078438c@intel.com> User-Agent: Mutt/1.5.20 (2009-12-10) X-TM-AS-GCONF: 00 x-cbid: 18031417-0012-0000-0000-000005BE77A4 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 18031417-0013-0000-0000-0000193A7D78 Message-Id: <20180314171448.GA1060@ram.oc3035372033.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-03-14_09:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=2 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1803140192 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 14, 2018 at 07:19:23AM -0700, Dave Hansen wrote: > On 03/14/2018 12:46 AM, Ram Pai wrote: > > Once an address range is associated with an allocated pkey, it cannot be > > reverted back to key-0. There is no valid reason for the above behavior. On > > the contrary applications need the ability to do so. > > I'm trying to remember why we cared in the first place. :) > > Could you add that to the changelog, please? > > > @@ -92,7 +92,8 @@ int mm_pkey_alloc(struct mm_struct *mm) > > static inline > > int mm_pkey_free(struct mm_struct *mm, int pkey) > > { > > - if (!mm_pkey_is_allocated(mm, pkey)) > > + /* pkey 0 is special and can never be freed */ > > + if (!pkey || !mm_pkey_is_allocated(mm, pkey)) > > return -EINVAL; > > If an app was being really careful, couldn't it free up all of the > implicitly-pkey-0-assigned memory so that it is not in use at all? In > that case, we might want to allow this. > > On the other hand, nobody is likely to _ever_ actually do this so this > is good shoot-yourself-in-the-foot protection. I look at key-0 as 'the key'. It has special status. (a) It always exist. (b) it cannot be freed. (c) it is assigned by default. (d) its permissions cannot be modified. (e) it bypasses key-permission checks when assigned. An arch need not necessarily map 'the key-0' to its key-0. It could internally map it to any of its internal key of its choice, transparent to the application. Do you see a problem to this view point? RP