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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E9D6DC54EAA for ; Wed, 25 Jan 2023 15:50:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235442AbjAYPuT (ORCPT ); Wed, 25 Jan 2023 10:50:19 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33816 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234845AbjAYPuS (ORCPT ); Wed, 25 Jan 2023 10:50:18 -0500 X-Greylist: delayed 1232 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Wed, 25 Jan 2023 07:50:17 PST Received: from us-smtp-delivery-44.mimecast.com (unknown [207.211.30.44]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 11FF75867F for ; Wed, 25 Jan 2023 07:50:16 -0800 (PST) Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-619-LG1apAgMNhCnHMZXWZtq6A-1; Wed, 25 Jan 2023 10:29:34 -0500 X-MC-Unique: LG1apAgMNhCnHMZXWZtq6A-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 73EAC85C6E2; Wed, 25 Jan 2023 15:29:33 +0000 (UTC) Received: from comp-core-i7-2640m-0182e6.redhat.com (ovpn-208-16.brq.redhat.com [10.40.208.16]) by smtp.corp.redhat.com (Postfix) with ESMTP id B32BE2026D4B; Wed, 25 Jan 2023 15:29:31 +0000 (UTC) From: Alexey Gladkov To: LKML , containers@lists.linux.dev, linux-fsdevel@vger.kernel.org Cc: Alexey Dobriyan , Al Viro , Andrew Morton , Christian Brauner , Val Cowan Subject: [RFC PATCH v1 4/6] proc: Allow to use the allowlist filter in userns Date: Wed, 25 Jan 2023 16:28:51 +0100 Message-Id: <76e8b2d0c0651af6906351b7d43fa2a4d117dc04.1674660533.git.legion@kernel.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Alexey Gladkov --- fs/proc/proc_allowlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/proc/proc_allowlist.c b/fs/proc/proc_allowlist.c index 2153acb8e467..c605f73622bd 100644 --- a/fs/proc/proc_allowlist.c +++ b/fs/proc/proc_allowlist.c @@ -100,7 +100,7 @@ static int open_allowlist(struct inode *inode, struct file *file) struct proc_fs_info *fs_info = proc_sb_info(inode->i_sb); int ret; - if (!capable(CAP_SYS_ADMIN)) + if (!ns_capable(current_user_ns(), CAP_SYS_ADMIN)) return -EPERM; // we need this because shrink_dcache_sb() can't drop our own dentry. @@ -199,7 +199,7 @@ static const struct proc_ops proc_allowlist_ops = { static int __init proc_allowlist_init(void) { struct proc_dir_entry *pde; - pde = proc_create("allowlist", S_IRUSR | S_IWUSR, NULL, &proc_allowlist_ops); + pde = proc_create("allowlist", S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH, NULL, &proc_allowlist_ops); pde_make_permanent(pde); pde_make_allowlist(pde); return 0; -- 2.33.6