diff options
| author | Roberto Sassu <[email protected]> | 2013-06-07 12:16:27 +0200 | 
|---|---|---|
| committer | Mimi Zohar <[email protected]> | 2013-10-25 17:17:03 -0400 | 
| commit | 9803d413f41db86fdf0097f1af781fe2e68f474c (patch) | |
| tree | cbfdd18431034357ccceb0e01b7739708622fc41 /security/integrity/ima/ima_queue.c | |
| parent | 7d802a227b7f26c89f13dab09767e6b0aebd9c9f (diff) | |
ima: pass the filename argument up to ima_add_template_entry()
Pass the filename argument to ima_add_template_entry() in order to
eliminate a dependency on template specific data (third argument of
integrity_audit_msg).
This change is required because, with the new template management
mechanism, the generation of a new measurement entry will be performed
by new specific functions (introduced in next patches) and the current IMA
code will not be aware anymore of how data is stored in the entry payload.
Signed-off-by: Roberto Sassu <[email protected]>
Signed-off-by: Mimi Zohar <[email protected]>
Diffstat (limited to 'security/integrity/ima/ima_queue.c')
| -rw-r--r-- | security/integrity/ima/ima_queue.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/security/integrity/ima/ima_queue.c b/security/integrity/ima/ima_queue.c index e63ff3369f10..d85e99761f4f 100644 --- a/security/integrity/ima/ima_queue.c +++ b/security/integrity/ima/ima_queue.c @@ -104,7 +104,8 @@ static int ima_pcr_extend(const u8 *hash)   * and extend the pcr.   */  int ima_add_template_entry(struct ima_template_entry *entry, int violation, -			   const char *op, struct inode *inode) +			   const char *op, struct inode *inode, +			   const unsigned char *filename)  {  	u8 digest[TPM_DIGEST_SIZE];  	const char *audit_cause = "hash_added"; @@ -141,8 +142,7 @@ int ima_add_template_entry(struct ima_template_entry *entry, int violation,  	}  out:  	mutex_unlock(&ima_extend_list_mutex); -	integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, -			    entry->template.file_name, +	integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,  			    op, audit_cause, result, audit_info);  	return result;  } |