Thread (63 messages) flat view 63 messages, 6 authors, 2021-12-13

Re: [PATCH v5 13/16] ima: Move some IMA policy and filesystem related variables into ima_namespace

From: Christian Brauner <hidden>
Date: 2021-12-11 08:46:33
Also in: linux-integrity, lkml

On Fri, Dec 10, 2021 at 03:08:27PM -0500, Stefan Berger wrote:
On 12/10/21 06:32, Christian Brauner wrote:
quoted
 From ecf25d6b2b5895005d4103169bdb55d970e7a865 Mon Sep 17 00:00:00 2001
From: Christian Brauner<redacted>
Date: Fri, 10 Dec 2021 11:56:25 +0100
Subject: [PATCH 2/2] !!!! HERE BE DRAGONS - COMPLETELY UNTESTED !!!!

securityfs: don't allow mounting from outside the filesystem's userns

If we ever need to allow that we should revisit the semantics.
---
  security/inode.c | 5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/security/inode.c b/security/inode.c
index eaccba7017d9..71f9634228f3 100644
--- a/security/inode.c
+++ b/security/inode.c
@@ -43,7 +43,10 @@ static int securityfs_fill_super(struct super_block *sb, struct fs_context *fc)
  {
  	static const struct tree_descr files[] = {{""}};
  	struct user_namespace *ns = fc->user_ns;
-	int error;
+	int error = -EINVAL;
+
+	if (WARN_ON(ns != current_user_ns()))
+		return error;
  	error = simple_fill_super(sb, SECURITYFS_MAGIC, files);
  	if (error)

Oops, I hadn't seen this patch. How can one 'mount from outside the
filesystem's userns'?
The new mount api is generic enough that this could be possible and it
might gain that ability explicitly at some point in the future for the
sake of delegated mounting. So that's just a good hardening measure.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help