ima: Reset IMA_NONACTION_RULE_FLAGS after post_setattr
Commit0d73a55208
("ima: re-introduce own integrity cache lock") mistakenly reverted the performance improvement introduced in commit42a4c60319
("ima: fix ima_inode_post_setattr"). The unused bit mask was subsequently removed by commit11c60f23ed
("integrity: Remove unused macro IMA_ACTION_RULE_FLAGS"). Restore the performance improvement by introducing the new mask IMA_NONACTION_RULE_FLAGS, equal to IMA_NONACTION_FLAGS without IMA_NEW_FILE, which is not a rule-specific flag. Finally, reset IMA_NONACTION_RULE_FLAGS instead of IMA_NONACTION_FLAGS in process_measurement(), if the IMA_CHANGE_ATTR atomic flag is set (after file metadata modification). With this patch, new files for which metadata were modified while they are still open, can be reopened before the last file close (when security.ima is written), since the IMA_NEW_FILE flag is not cleared anymore. Otherwise, appraisal fails because security.ima is missing (files with IMA_NEW_FILE set are an exception). Cc: stable@vger.kernel.org # v4.16.x Fixes:0d73a55208
("ima: re-introduce own integrity cache lock") Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
This commit is contained in:
parent
ceb5faef84
commit
57a0ef02fe
2 changed files with 8 additions and 2 deletions
|
@ -149,6 +149,9 @@ struct ima_kexec_hdr {
|
|||
#define IMA_CHECK_BLACKLIST 0x40000000
|
||||
#define IMA_VERITY_REQUIRED 0x80000000
|
||||
|
||||
/* Exclude non-action flags which are not rule-specific. */
|
||||
#define IMA_NONACTION_RULE_FLAGS (IMA_NONACTION_FLAGS & ~IMA_NEW_FILE)
|
||||
|
||||
#define IMA_DO_MASK (IMA_MEASURE | IMA_APPRAISE | IMA_AUDIT | \
|
||||
IMA_HASH | IMA_APPRAISE_SUBMASK)
|
||||
#define IMA_DONE_MASK (IMA_MEASURED | IMA_APPRAISED | IMA_AUDITED | \
|
||||
|
|
|
@ -269,10 +269,13 @@ static int process_measurement(struct file *file, const struct cred *cred,
|
|||
mutex_lock(&iint->mutex);
|
||||
|
||||
if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags))
|
||||
/* reset appraisal flags if ima_inode_post_setattr was called */
|
||||
/*
|
||||
* Reset appraisal flags (action and non-action rule-specific)
|
||||
* if ima_inode_post_setattr was called.
|
||||
*/
|
||||
iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED |
|
||||
IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK |
|
||||
IMA_NONACTION_FLAGS);
|
||||
IMA_NONACTION_RULE_FLAGS);
|
||||
|
||||
/*
|
||||
* Re-evaulate the file if either the xattr has changed or the
|
||||
|
|
Loading…
Add table
Reference in a new issue