Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754083AbdFSNF6 (ORCPT ); Mon, 19 Jun 2017 09:05:58 -0400 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:49257 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753680AbdFSNF5 (ORCPT ); Mon, 19 Jun 2017 09:05:57 -0400 Subject: Re: [PATCH v4] Introduce v3 namespaced file capabilities To: "Serge E. Hallyn" References: <20170508044408.GA11400@mail.hallyn.com> <20170508181156.GA23112@mail.hallyn.com> <9f80188c-df03-066a-5dac-785cc711d064@linux.vnet.ibm.com> <20170613171818.GA9070@mail.hallyn.com> <74e490f3-3c47-abfa-86ae-0fa0d1ddb43a@linux.vnet.ibm.com> <20170613235521.GC15685@mail.hallyn.com> <20170615030543.GA8979@mail.hallyn.com> <20170618221418.GA364@mail.hallyn.com> Cc: "Eric W. Biederman" , Masami Ichikawa , containers@lists.linux-foundation.org, lkp@01.org, xiaolong.ye@intel.com, LKML , Mimi Zohar From: Stefan Berger Date: Mon, 19 Jun 2017 09:05:43 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-TM-AS-GCONF: 00 x-cbid: 17061913-0056-0000-0000-0000038D6A29 X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00007254; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000214; SDB=6.00876980; UDB=6.00436822; IPR=6.00657121; BA=6.00005430; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00015880; XFM=3.00000015; UTC=2017-06-19 13:05:48 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17061913-0057-0000-0000-000007C37F66 Message-Id: <150d96e7-0cc3-f12e-15f2-6987e571f541@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-06-19_08:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1703280000 definitions=main-1706190220 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3918 Lines: 76 On 06/18/2017 09:13 PM, Stefan Berger wrote: > On 06/18/2017 06:14 PM, Serge E. Hallyn wrote: >> Quoting Stefan Berger (stefanb@linux.vnet.ibm.com): >>> On 06/14/2017 11:05 PM, Serge E. Hallyn wrote: >>>> On Wed, Jun 14, 2017 at 08:27:40AM -0400, Stefan Berger wrote: >>>>> On 06/13/2017 07:55 PM, Serge E. Hallyn wrote: >>>>>> Quoting Stefan Berger (stefanb@linux.vnet.ibm.com): >>>>>>> If all extended >>>>>>> attributes were to support this model, maybe the 'uid' could be >>>>>>> associated with the 'name' of the xattr rather than its 'value' >>>>>>> (not >>>>>>> sure whether that's possible). >>>>>> Right, I missed that in your original email when I saw it this >>>>>> morning. >>>>>> It's not what my patch does, but it's an interesting idea. Do >>>>>> you have >>>>>> a patch to that effect? We might even be able to generalize that to >>>>> No, I don't have a patch. It may not be possible to implement it. >>>>> The xattr_handler's take the name of the xattr as input to get(). >>>> That may be ok though. Assume the host created a container with >>>> 100000 as the uid for root, which created a container with 130000 as >>>> uid for root. If root in the nested container tries to read the >>>> xattr, the kernel can check for security.foo[130000] first, then >>>> security.foo[100000], then security.foo. Or, it can do a listxattr >>>> and look for those. Am I overlooking one? >>>> >>>>> So one could try to encode the mapped uid in the name. However, that >>>> I thought that's exactly what you were suggesting in your original >>>> email? "security.capability[uid=2000]" >>>> >>>>> could lead to problems with stale xattrs in a shared filesystem over >>>>> time unless one could limit the number of xattrs with the same >>>>> prefix, e.g., security.capability*. So I doubt that it would work. >>>> Hm. Yeah. But really how many setups are there like that? I.e. if >>>> you launch a regular docker or lxd container, the image doesn't do a >>>> bind mount of a shared image, it layers something above it or does a >>>> copy. What setups do you know of where multiple containers in >>>> different >>>> user namespaces mount the same filesystem shared and writeable? >>> I think I have something now that accomodates userns access to >>> security.capability: >>> >>> https://github.com/stefanberger/linux/commits/xattr_for_userns >> Thanks! >> >>> Encoding of uid is in the attribute name now as follows: >>> security.foo@uid= >>> >>> 1) The 'plain' security.capability is only r/w accessible from the >>> host (init_user_ns). >>> 2) When userns reads/writes 'security.capability' it will read/write >>> security.capability@uid= instead, with uid being the uid of >>> root , e.g. 1000. >>> 3) When listing xattrs for userns the host's security.capability is >>> filtered out to avoid read failures iof 'security.capability' if >>> security.capability@uid= is read but not there. (see 1) and 2)) >>> 4) security.capability* may all be read from anywhere >>> 5) security.capability@uid= may be read or written directly >>> from a userns if matches the uid of root (current_uid()) >> This looks very close to what we want. One exception - we do want >> to support root in a user namespace being able to write >> security.capability@uid= where is a valid uid mapped in its >> namespace. In that case the name should be rewritten to be >> security.capability@uid= where y is the unmapped kuid.val. > > I'll try to write a patch on top of the existing one. Did that now in a 2nd patch (that also fixes a few problems of the 1st). In a user ns mapped to 1000 root can write security.capability@uid=123, which then ends up writing to security.capability@uid=1123. The reading also works with @uid=123. When listing xattrs only those get shown that actually have valid mappings. https://github.com/stefanberger/linux/commits/xattr_for_userns Stefan