Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753195AbdFMRO0 (ORCPT ); Tue, 13 Jun 2017 13:14:26 -0400 Received: from mail-it0-f41.google.com ([209.85.214.41]:37088 "EHLO mail-it0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751805AbdFMROZ (ORCPT ); Tue, 13 Jun 2017 13:14:25 -0400 Date: Tue, 13 Jun 2017 11:14:22 -0600 From: Tycho Andersen To: Stefan Berger Cc: "Serge E. Hallyn" , "Eric W. Biederman" , lkp@01.org, containers@lists.linux-foundation.org, xiaolong.ye@intel.com, LKML , Mimi Zohar Subject: Re: [PATCH v4] Introduce v3 namespaced file capabilities Message-ID: <20170613171422.i5vsylhqqo736car@smitten> 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> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9f80188c-df03-066a-5dac-785cc711d064@linux.vnet.ibm.com> User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1994 Lines: 42 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. Cheers, Tycho