Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932687AbcLHEqX (ORCPT ); Wed, 7 Dec 2016 23:46:23 -0500 Received: from out03.mta.xmission.com ([166.70.13.233]:48387 "EHLO out03.mta.xmission.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932545AbcLHEqV (ORCPT ); Wed, 7 Dec 2016 23:46:21 -0500 From: ebiederm@xmission.com (Eric W. Biederman) To: "Serge E. Hallyn" Cc: Seth Forshee , lkml , linux-api@vger.kernel.org References: <20161119151739.GA16398@mail.hallyn.com> Date: Thu, 08 Dec 2016 17:43:09 +1300 In-Reply-To: <20161119151739.GA16398@mail.hallyn.com> (Serge E. Hallyn's message of "Sat, 19 Nov 2016 09:17:39 -0600") Message-ID: <87inqvav4y.fsf@xmission.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-XM-SPF: eid=1cEqaq-0004GO-RI;;;mid=<87inqvav4y.fsf@xmission.com>;;;hst=in01.mta.xmission.com;;;ip=101.100.131.98;;;frm=ebiederm@xmission.com;;;spf=neutral X-XM-AID: U2FsdGVkX19m0sZXdnR/UfvHh9otUhC/CoywpwTjbbk= X-SA-Exim-Connect-IP: 101.100.131.98 X-SA-Exim-Mail-From: ebiederm@xmission.com X-Spam-Report: * -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP * 0.7 XMSubLong Long Subject * 0.0 T_TM2_M_HEADER_IN_MSG BODY: No description available. * -0.0 BAYES_20 BODY: Bayes spam probability is 5 to 20% * [score: 0.1620] * -0.0 DCC_CHECK_NEGATIVE Not listed in DCC * [sa07 1397; Body=1 Fuz1=1 Fuz2=1] * 0.1 XM_H_SpoofStaff3 XMission Staff Spoof X-Spam-DCC: XMission; sa07 1397; Body=1 Fuz1=1 Fuz2=1 X-Spam-Combo: ;"Serge E. Hallyn" X-Spam-Relay-Country: X-Spam-Timing: total 5538 ms - load_scoreonly_sql: 0.03 (0.0%), signal_user_changed: 3.2 (0.1%), b_tie_ro: 2.2 (0.0%), parse: 0.70 (0.0%), extract_message_metadata: 11 (0.2%), get_uri_detail_list: 1.33 (0.0%), tests_pri_-1000: 4.2 (0.1%), tests_pri_-950: 1.15 (0.0%), tests_pri_-900: 0.95 (0.0%), tests_pri_-400: 18 (0.3%), check_bayes: 17 (0.3%), b_tokenize: 5 (0.1%), b_tok_get_all: 6 (0.1%), b_comp_prob: 1.67 (0.0%), b_tok_touch_all: 2.3 (0.0%), b_finish: 0.61 (0.0%), tests_pri_0: 202 (3.6%), check_dkim_signature: 0.57 (0.0%), check_dkim_adsp: 2.6 (0.0%), tests_pri_500: 5295 (95.6%), poll_dns_idle: 5289 (95.5%), rewrite_mail: 0.00 (0.0%) Subject: Re: [PATCH RFC] user-namespaced file capabilities - now with even more magic X-Spam-Flag: No X-SA-Exim-Version: 4.2.1 (built Thu, 05 May 2016 13:38:54 -0600) X-SA-Exim-Scanned: Yes (on in01.mta.xmission.com) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1893 Lines: 40 "Serge E. Hallyn" writes: > Root in a 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 > namespace, write the xattr, and execute the file with privilege on the > host. > > This patch introduces v3 of the security.capability xattr. It builds a > vfs_ns_cap_data struct by appending a uid_t rootid to struct > vfs_cap_data. This is the absolute uid_t (i.e. the uid_t in > init_user_ns) of the root id (uid 0 in a namespace) in whose namespaces > the file capabilities may take effect. > > When a task in a user ns (which is privileged with CAP_SETFCAP toward > that user_ns) asks to write v2 security.capability, the kernel will > transparently rewrite the xattr as a v3 with the appropriate rootid. > Subsequently, any task executing the file which has the noted kuid as > its root uid, or which is in a descendent user_ns of such a user_ns, > will run the file with capabilities. > > If a task writes a v3 security.capability, then it can provide a > uid (valid within its own user namespace, over which it has CAP_SETFCAP) > for the xattr. The kernel will translate that to the absolute uid, and > write that to disk. After this, a task in the writer's namespace will > not be able to use those capabilities, but a task in a namespace where > the given uid is root will. > > Only a single security.capability xattr may be written. A task may > overwrite the existing one so long as it was written by a user mapped > into his own user_ns over which he has CAP_SETFCAP. > > This allows a simple setxattr to work, allows tar/untar to work, and > allows us to tar in one namespace and untar in another while preserving > the capability, without risking leaking privilege into a parent > namespace. Any chance of a singed-off-by? Eric