Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754978AbdFWURY (ORCPT ); Fri, 23 Jun 2017 16:17:24 -0400 Received: from h2.hallyn.com ([78.46.35.8]:36084 "EHLO h2.hallyn.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754861AbdFWURX (ORCPT ); Fri, 23 Jun 2017 16:17:23 -0400 Date: Fri, 23 Jun 2017 15:17:23 -0500 From: "Serge E. Hallyn" To: Vivek Goyal Cc: Stefan Berger , ebiederm@xmission.com, containers@lists.linux-foundation.org, lkp@01.org, xiaolong.ye@intel.com, linux-kernel@vger.kernel.org, zohar@linux.vnet.ibm.com, serge@hallyn.com, tycho@docker.com, James.Bottomley@HansenPartnership.com, christian.brauner@mailbox.org, amir73il@gmail.com, linux-security-module@vger.kernel.org Subject: Re: [PATCH 0/3] Enable namespaced file capabilities Message-ID: <20170623201723.GA22857@mail.hallyn.com> References: <1498157989-11814-1-git-send-email-stefanb@linux.vnet.ibm.com> <20170623200956.GB24779@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170623200956.GB24779@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2171 Lines: 57 Quoting Vivek Goyal (vgoyal@redhat.com): > On Thu, Jun 22, 2017 at 02:59:46PM -0400, Stefan Berger wrote: > > This series of patches primary goal is to enable file capabilities > > in user namespaces without affecting the file capabilities that are > > effective on the host. This is to prevent that any unprivileged user > > on the host maps his own uid to root in a private namespace, writes > > the xattr, and executes the file with privilege on the host. > > > > We achieve this goal by writing extended attributes with a different > > name when a user namespace is used. If for example the root user > > in a user namespace writes the security.capability xattr, the name > > of the xattr that is actually written is encoded as > > security.capability@uid=1000 for root mapped to uid 1000 on the host. > > When listing the xattrs on the host, the existing security.capability > > as well as the security.capability@uid=1000 will be shown. Inside the > > namespace only 'security.capability', with the value of > > security.capability@uid=1000, is visible. > > Hi Stefan, > > Got a question. If child usernamespace sets a > security.capability@uid=1000, can any of the parent namespace remove it? > > IOW, I set capability from usernamespace and tried to remove it from > host and that failed. Is that expected. > > # Inside usernamespce > $setcap cat_net_raw+ep foo.txt > > # outside user namespace > $listxattr foo.txt > xattr: security.capability@uid=1000 > xattr: security.selinux > > # outside user namespace > setfattr -x security.capability@uid foo.txt > setfattr: foo.txt: Invalid argument > > Doing a strace shows removexattr() failed. May this will need fixing? > > removexattr("testfile.txt", "security.capability@uid") = -1 EINVAL > (Invalid argument) That's not the right xattr, though, does setfattr -x security.capability@uid=1000 foo.txt work? If you are in fact uid=1000 then that should work. If you are uid 1001, and 1000 was delegated to you, then you'll need to create a transient userns with uid 1000 mapped into it in order to delete it (so that you have privilege over the uid). If that doesn't work, then it's a bug. -serge