* [PATCH] EVM
@ 2010-06-02 23:45 Mimi Zohar
2010-06-02 23:45 ` [PATCH] ima: appraise measurement required Mimi Zohar
0 siblings, 1 reply; 2+ messages in thread
From: Mimi Zohar @ 2010-06-02 23:45 UTC (permalink / raw)
To: linux-kernel
Cc: Mimi Zohar, linux-security-module, linux-fsdevel, James Morris,
David Safford, Dave Hansen, Serge E. Hallyn
The previously posted EVM patches http://lkml.org/lkml/2010/4/21/372
have been rebased and are now available from
git://git.kernel.org/pub/scm/linux/kernel/git/sergeh/security-next/#evm.
They apply with minor offsets to security-testing/#next.
New is the ima-appraise-measurement-required.patch, which resets
the appraisal flag when 'security.ima' is modified or removed.
Mimi Zohar (1):
ima: appraise measurement required
security/integrity/ima/ima_main.c | 33 +++++++++++++++++++++++++++++++--
1 files changed, 31 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH] ima: appraise measurement required
2010-06-02 23:45 [PATCH] EVM Mimi Zohar
@ 2010-06-02 23:45 ` Mimi Zohar
0 siblings, 0 replies; 2+ messages in thread
From: Mimi Zohar @ 2010-06-02 23:45 UTC (permalink / raw)
To: linux-kernel
Cc: Mimi Zohar, linux-security-module, linux-fsdevel, James Morris,
David Safford, Dave Hansen, Serge E. Hallyn, Mimi Zohar
Even if allowed to update security.ima, reset the appraisal
flags, forcing re-appraisal.
Signed-off-by: Mimi Zohar <zohar@us.ibm.com>
---
security/integrity/ima/ima_main.c | 33 +++++++++++++++++++++++++++++++--
1 files changed, 31 insertions(+), 2 deletions(-)
diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c
index 62a7cf6..44fd452 100644
--- a/security/integrity/ima/ima_main.c
+++ b/security/integrity/ima/ima_main.c
@@ -385,18 +385,47 @@ int ima_protect_xattr(struct dentry *dentry, const char *xattr_name,
return 0;
}
+static void ima_reset_appraise_flags(struct inode *inode)
+{
+ struct integrity_iint_cache *iint;
+
+ if (!ima_initialized || !ima_appraise || !S_ISREG(inode->i_mode))
+ return;
+
+ iint = integrity_iint_find_get(inode);
+ if (!iint)
+ return;
+
+ mutex_lock(&iint->mutex);
+ iint->flags &= ~(IMA_COLLECTED | IMA_APPRAISED | IMA_MEASURED);
+ mutex_unlock(&iint->mutex);
+ kref_put(&iint->refcount, iint_free);
+ return;
+}
+
int ima_inode_setxattr(struct dentry *dentry, const char *xattr_name,
const void *xattr_value, size_t xattr_value_len)
{
- return ima_protect_xattr(dentry, xattr_name, xattr_value,
+ int result;
+
+ result = ima_protect_xattr(dentry, xattr_name, xattr_value,
xattr_value_len);
+ if (!result)
+ ima_reset_appraise_flags(dentry->d_inode);
+ return result;
}
int ima_inode_removexattr(struct dentry *dentry, const char *xattr_name)
{
- return ima_protect_xattr(dentry, xattr_name, NULL, 0);
+ int result;
+
+ result = ima_protect_xattr(dentry, xattr_name, NULL, 0);
+ if (!result)
+ ima_reset_appraise_flags(dentry->d_inode);
+ return result;
}
+
static int __init init_ima(void)
{
int error;
--
1.6.6.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-02 23:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-02 23:45 [PATCH] EVM Mimi Zohar
2010-06-02 23:45 ` [PATCH] ima: appraise measurement required Mimi Zohar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).