diff options
author | Mimi Zohar <zohar@linux.vnet.ibm.com> | 2013-03-18 14:48:02 -0400 |
---|---|---|
committer | Mimi Zohar <zohar@linux.vnet.ibm.com> | 2013-06-20 07:47:49 -0400 |
commit | d726d8d719b6ac919cc4d5cae73831a2ffe36118 (patch) | |
tree | 1200a3ca3f60096a3ef7b6af6998c453bb13844b /security/integrity/integrity.h | |
parent | 37ec43cdc4c776bd39aae469fdfa494bdf0344c7 (diff) |
integrity: move integrity_audit_msg()
This patch moves the integrity_audit_msg() function and defintion to
security/integrity/, the parent directory, renames the 'ima_audit'
boot command line option to 'integrity_audit', and fixes the Kconfig
help text to reflect the actual code.
Changelog:
- Fixed ifdef inclusion of integrity_audit_msg() (Fengguang Wu)
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
Diffstat (limited to 'security/integrity/integrity.h')
-rw-r--r-- | security/integrity/integrity.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/security/integrity/integrity.h b/security/integrity/integrity.h index 84c37c4db914..c42fb7a70dee 100644 --- a/security/integrity/integrity.h +++ b/security/integrity/integrity.h | |||
@@ -113,5 +113,19 @@ static inline int asymmetric_verify(struct key *keyring, const char *sig, | |||
113 | } | 113 | } |
114 | #endif | 114 | #endif |
115 | 115 | ||
116 | #ifdef CONFIG_INTEGRITY_AUDIT | ||
117 | /* declarations */ | ||
118 | void integrity_audit_msg(int audit_msgno, struct inode *inode, | ||
119 | const unsigned char *fname, const char *op, | ||
120 | const char *cause, int result, int info); | ||
121 | #else | ||
122 | static inline void integrity_audit_msg(int audit_msgno, struct inode *inode, | ||
123 | const unsigned char *fname, | ||
124 | const char *op, const char *cause, | ||
125 | int result, int info) | ||
126 | { | ||
127 | } | ||
128 | #endif | ||
129 | |||
116 | /* set during initialization */ | 130 | /* set during initialization */ |
117 | extern int iint_initialized; | 131 | extern int iint_initialized; |