From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 02EA6C3404C for ; Wed, 19 Feb 2020 02:33:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DAE0922B48 for ; Wed, 19 Feb 2020 02:33:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728031AbgBSCdh (ORCPT ); Tue, 18 Feb 2020 21:33:37 -0500 Received: from mail.hallyn.com ([178.63.66.53]:49380 "EHLO mail.hallyn.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726799AbgBSCdg (ORCPT ); Tue, 18 Feb 2020 21:33:36 -0500 Received: by mail.hallyn.com (Postfix, from userid 1001) id A9C4D8C6; Tue, 18 Feb 2020 20:33:33 -0600 (CST) Date: Tue, 18 Feb 2020 20:33:33 -0600 From: "Serge E. Hallyn" To: Christian Brauner Cc: =?iso-8859-1?Q?St=E9phane?= Graber , "Eric W. Biederman" , Aleksa Sarai , Jann Horn , smbarber@chromium.org, Seth Forshee , Alexander Viro , Alexey Dobriyan , Serge Hallyn , James Morris , Kees Cook , Jonathan Corbet , Phil Estes , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, containers@lists.linux-foundation.org, linux-security-module@vger.kernel.org, linux-api@vger.kernel.org Subject: Re: [PATCH v3 02/25] proc: add /proc//fsuid_map Message-ID: <20200219023333.GB19144@mail.hallyn.com> References: <20200218143411.2389182-1-christian.brauner@ubuntu.com> <20200218143411.2389182-3-christian.brauner@ubuntu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200218143411.2389182-3-christian.brauner@ubuntu.com> User-Agent: Mutt/1.9.4 (2018-02-28) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 18, 2020 at 03:33:48PM +0100, Christian Brauner wrote: > The /proc//fsuid_map file can be written once to setup an fsuid mapping > for a user namespace. Writing to this file has the same restrictions as writing > to /proc//fsuid_map: > > root@e1-vm:/# cat /proc/13023/fsuid_map > 0 300000 100000 > > Fsid mappings have always been around. They are currently always identical to > the id mappings for a user namespace. This means, currently whenever an fsid > needs to be looked up the kernel will use the id mapping of the user namespace. > With the introduction of fsid mappings the kernel will now lookup fsids in the > fsid mappings of the user namespace. If no fsid mapping exists the kernel will > continue looking up fsids in the id mappings of the user namespace. Hence, if a > system supports fsid mappings through /proc//fs*id_map and a container > runtime is not aware of fsid mappings it or does not use them it will it will > continue to work just as before. > > Signed-off-by: Christian Brauner Acked-by: Serge Hallyn > --- > /* v2 */ > unchanged > > /* v3 */ > - Christian Brauner : > - Fix grammar in commit message. > --- > fs/proc/base.c | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/fs/proc/base.c b/fs/proc/base.c > index c7c64272b0fa..5fb28004663e 100644 > --- a/fs/proc/base.c > +++ b/fs/proc/base.c > @@ -2970,6 +2970,13 @@ static int proc_projid_map_open(struct inode *inode, struct file *file) > return proc_id_map_open(inode, file, &proc_projid_seq_operations); > } > > +#ifdef CONFIG_USER_NS_FSID > +static int proc_fsuid_map_open(struct inode *inode, struct file *file) > +{ > + return proc_id_map_open(inode, file, &proc_fsuid_seq_operations); > +} > +#endif > + > static const struct file_operations proc_uid_map_operations = { > .open = proc_uid_map_open, > .write = proc_uid_map_write, > @@ -2994,6 +3001,16 @@ static const struct file_operations proc_projid_map_operations = { > .release = proc_id_map_release, > }; > > +#ifdef CONFIG_USER_NS_FSID > +static const struct file_operations proc_fsuid_map_operations = { > + .open = proc_fsuid_map_open, > + .write = proc_fsuid_map_write, > + .read = seq_read, > + .llseek = seq_lseek, > + .release = proc_id_map_release, > +}; > +#endif > + > static int proc_setgroups_open(struct inode *inode, struct file *file) > { > struct user_namespace *ns = NULL; > @@ -3176,6 +3193,9 @@ static const struct pid_entry tgid_base_stuff[] = { > ONE("io", S_IRUSR, proc_tgid_io_accounting), > #endif > #ifdef CONFIG_USER_NS > +#ifdef CONFIG_USER_NS_FSID > + REG("fsuid_map", S_IRUGO|S_IWUSR, proc_fsuid_map_operations), > +#endif > REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), > REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations), > REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations), > -- > 2.25.0