|
@@ -15,6 +15,7 @@
|
|
|
#include <linux/integrity.h>
|
|
|
#include <crypto/sha.h>
|
|
|
#include <linux/key.h>
|
|
|
+#include <linux/audit.h>
|
|
|
|
|
|
/* iint action cache flags */
|
|
|
#define IMA_MEASURE 0x00000001
|
|
@@ -199,6 +200,13 @@ static inline void evm_load_x509(void)
|
|
|
void integrity_audit_msg(int audit_msgno, struct inode *inode,
|
|
|
const unsigned char *fname, const char *op,
|
|
|
const char *cause, int result, int info);
|
|
|
+
|
|
|
+static inline struct audit_buffer *
|
|
|
+integrity_audit_log_start(struct audit_context *ctx, gfp_t gfp_mask, int type)
|
|
|
+{
|
|
|
+ return audit_log_start(ctx, gfp_mask, type);
|
|
|
+}
|
|
|
+
|
|
|
#else
|
|
|
static inline void integrity_audit_msg(int audit_msgno, struct inode *inode,
|
|
|
const unsigned char *fname,
|
|
@@ -206,4 +214,11 @@ static inline void integrity_audit_msg(int audit_msgno, struct inode *inode,
|
|
|
int result, int info)
|
|
|
{
|
|
|
}
|
|
|
+
|
|
|
+static inline struct audit_buffer *
|
|
|
+integrity_audit_log_start(struct audit_context *ctx, gfp_t gfp_mask, int type)
|
|
|
+{
|
|
|
+ return NULL;
|
|
|
+}
|
|
|
+
|
|
|
#endif
|