[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250122172432.3074180-4-roberto.sassu@huaweicloud.com>
Date: Wed, 22 Jan 2025 18:24:29 +0100
From: Roberto Sassu <roberto.sassu@...weicloud.com>
To: corbet@....net,
viro@...iv.linux.org.uk,
brauner@...nel.org,
jack@...e.cz,
zohar@...ux.ibm.com,
dmitry.kasatkin@...il.com,
eric.snowberg@...cle.com,
paul@...l-moore.com,
jmorris@...ei.org,
serge@...lyn.com
Cc: linux-doc@...r.kernel.org,
linux-kernel@...r.kernel.org,
linux-fsdevel@...r.kernel.org,
linux-integrity@...r.kernel.org,
linux-security-module@...r.kernel.org,
Roberto Sassu <roberto.sassu@...wei.com>
Subject: [PATCH v3 3/6] ima: Detect if lock is held when iint pointer is set in inode security blob
From: Roberto Sassu <roberto.sassu@...wei.com>
IMA stores a pointer of the ima_iint_cache structure, containing integrity
metadata, in the inode security blob. However, check and assignment of this
pointer is not atomic, and it might happen that two tasks both see that the
iint pointer is NULL and try to set it, causing a memory leak.
Detect if the iint check and assignment is guarded by the iint_lock mutex,
by adding a lockdep assertion in ima_inode_get().
Consequently, guard the remaining ima_inode_get() calls, in
ima_post_create_tmpfile() and ima_post_path_mknod(), to avoid the lockdep
warnings.
Signed-off-by: Roberto Sassu <roberto.sassu@...wei.com>
---
security/integrity/ima/ima_iint.c | 2 ++
security/integrity/ima/ima_main.c | 14 ++++++++++++--
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/security/integrity/ima/ima_iint.c b/security/integrity/ima/ima_iint.c
index dcc32483d29f..fca9db293c79 100644
--- a/security/integrity/ima/ima_iint.c
+++ b/security/integrity/ima/ima_iint.c
@@ -97,6 +97,8 @@ struct ima_iint_cache *ima_inode_get(struct inode *inode)
if (!iint_lock)
return NULL;
+ lockdep_assert_held(&iint_lock->mutex);
+
iint = iint_lock->iint;
if (iint)
return iint;
diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c
index 006f1e3725d6..0aed8f730c42 100644
--- a/security/integrity/ima/ima_main.c
+++ b/security/integrity/ima/ima_main.c
@@ -705,14 +705,19 @@ static void ima_post_create_tmpfile(struct mnt_idmap *idmap,
if (!must_appraise)
return;
+ ima_iint_lock(inode);
+
/* Nothing to do if we can't allocate memory */
iint = ima_inode_get(inode);
- if (!iint)
+ if (!iint) {
+ ima_iint_unlock(inode);
return;
+ }
/* needed for writing the security xattrs */
set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
iint->ima_file_status = INTEGRITY_PASS;
+ ima_iint_unlock(inode);
}
/**
@@ -737,13 +742,18 @@ static void ima_post_path_mknod(struct mnt_idmap *idmap, struct dentry *dentry)
if (!must_appraise)
return;
+ ima_iint_lock(inode);
+
/* Nothing to do if we can't allocate memory */
iint = ima_inode_get(inode);
- if (!iint)
+ if (!iint) {
+ ima_iint_unlock(inode);
return;
+ }
/* needed for re-opening empty files */
iint->flags |= IMA_NEW_FILE;
+ ima_iint_unlock(inode);
}
/**
--
2.34.1
Powered by blists - more mailing lists