Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753571AbdFMRmf (ORCPT ); Tue, 13 Jun 2017 13:42:35 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:46075 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752168AbdFMRmb (ORCPT ); Tue, 13 Jun 2017 13:42:31 -0400 Subject: Re: [PATCH v4] Introduce v3 namespaced file capabilities To: Tycho Andersen References: <20170507092105.GA67584@inn.lkp.intel.com> <20170508044408.GA11400@mail.hallyn.com> <20170508181156.GA23112@mail.hallyn.com> <9f80188c-df03-066a-5dac-785cc711d064@linux.vnet.ibm.com> <20170613171422.i5vsylhqqo736car@smitten> Cc: "Serge E. Hallyn" , "Eric W. Biederman" , lkp@01.org, containers@lists.linux-foundation.org, xiaolong.ye@intel.com, LKML , Mimi Zohar From: Stefan Berger Date: Tue, 13 Jun 2017 13:42:24 -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: <20170613171422.i5vsylhqqo736car@smitten> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-TM-AS-GCONF: 00 x-cbid: 17061317-0056-0000-0000-000003877846 X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00007226; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000212; SDB=6.00874270; UDB=6.00435169; IPR=6.00654359; BA=6.00005420; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00015808; XFM=3.00000015; UTC=2017-06-13 17:42:29 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17061317-0057-0000-0000-000007BD859E Message-Id: X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-06-13_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-1706130303 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3009 Lines: 60 On 06/13/2017 01:14 PM, Tycho Andersen wrote: > Hi Stefan, > > On Tue, Jun 13, 2017 at 11:47:26AM -0400, Stefan Berger wrote: >> On 05/08/2017 02:11 PM, Serge E. Hallyn wrote: >>> Root in a non-initial user ns cannot be trusted to write a traditional >>> security.capability xattr. If it were allowed to do so, then any >>> unprivileged user on the host could map his own uid to root in a private >>> namespace, write the xattr, and execute the file with privilege on the >>> host. >>> >>> However supporting file capabilities in a user namespace is very >>> desirable. Not doing so means that any programs designed to run with >>> limited privilege must continue to support other methods of gaining and >>> dropping privilege. For instance a program installer must detect >>> whether file capabilities can be assigned, and assign them if so but set >>> setuid-root otherwise. The program in turn must know how to drop >>> partial capabilities, and do so only if setuid-root. >> Hi Serge, >> >> >> I have been looking at patch below primarily to learn how we could apply a >> similar technique to security.ima and security.evm for a namespaced IMA. >> From the paragraphs above I thought that you solved the problem of a shared >> filesystem where one now can write different security.capability xattrs by >> effectively supporting for example security.capability[uid=1000] and >> security.capability[uid=2000] written into the filesystem. Each would then >> become visible as security.capability if the userns mapping is set >> appropriately. > One disadvantage of this approach is that whoever is setting up the > container would need to go touch the security.ima attribute for each > file in the contianer, which would slow down container creation time. > For capabilities this makes sense, because you might want the file to > have different capabilities in different namespaces, but for IMA, > since the file hash will be the same in every namespace, it would be > nice to use a design that avoids touching each file on new ns > creation. Actually IMA in appraisal mode also supports signatures in the extended attributes. Depending on which (public) keys you put on the IMA keyring for a namespaced IMA, you may need a different signature on a file to be able to access it (execute it for example). For this to work containers would have to be able to ship with security.ima xattrs embedded in them and users should be able to apply signatures on files on a running container (or while building it). I worked on a prototype for namespaces IMA before where one of the issues was the CAP_SYS_ADMIN gate that disallows setting of security.ima when dropped. So some form of exception would have to be granted to be allowed to set security.ima from inside a container while CAP_SYS_ADMIN isn't there. And of course we need to protect the host's filesystem from an attack where the user just modifies the security.ima signature associated with a file. Stefan > Cheers, > > Tycho >