blob: c1461150691cbacc141e4a84be7c0b70aed20762 [file] [log] [blame]
Mimi Zohar3323eec92009-02-04 09:06:58 -05001/*
2 * Copyright (C) 2008 IBM Corporation
3 * Author: Mimi Zohar <zohar@us.ibm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, version 2 of the License.
8 *
9 * File: integrity_audit.c
10 * Audit calls for the integrity subsystem
11 */
12
13#include <linux/fs.h>
14#include <linux/audit.h>
15#include "ima.h"
16
17static int ima_audit;
18
19#ifdef CONFIG_IMA_AUDIT
20
21/* ima_audit_setup - enable informational auditing messages */
22static int __init ima_audit_setup(char *str)
23{
24 unsigned long audit;
Mimi Zohar523979a2009-02-11 11:12:28 -050025 int rc, result = 0;
26 char *op = "ima_audit";
27 char *cause;
Mimi Zohar3323eec92009-02-04 09:06:58 -050028
29 rc = strict_strtoul(str, 0, &audit);
30 if (rc || audit > 1)
Mimi Zohar523979a2009-02-11 11:12:28 -050031 result = 1;
Mimi Zohar3323eec92009-02-04 09:06:58 -050032 else
33 ima_audit = audit;
Mimi Zohar523979a2009-02-11 11:12:28 -050034 cause = ima_audit ? "enabled" : "not_enabled";
35 integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL, NULL,
36 op, cause, result, 0);
Mimi Zohar3323eec92009-02-04 09:06:58 -050037 return 1;
38}
39__setup("ima_audit=", ima_audit_setup);
40#endif
41
42void integrity_audit_msg(int audit_msgno, struct inode *inode,
43 const unsigned char *fname, const char *op,
44 const char *cause, int result, int audit_info)
45{
46 struct audit_buffer *ab;
47
48 if (!ima_audit && audit_info == 1) /* Skip informational messages */
49 return;
50
51 ab = audit_log_start(current->audit_context, GFP_KERNEL, audit_msgno);
Mimi Zohar523979a2009-02-11 11:12:28 -050052 audit_log_format(ab, "integrity: pid=%d uid=%u auid=%u ses=%u",
Mimi Zohar3323eec92009-02-04 09:06:58 -050053 current->pid, current->cred->uid,
Mimi Zohar523979a2009-02-11 11:12:28 -050054 audit_get_loginuid(current),
55 audit_get_sessionid(current));
Mimi Zohar3323eec92009-02-04 09:06:58 -050056 audit_log_task_context(ab);
Mimi Zohare5e520a2009-05-05 13:13:00 -040057 audit_log_format(ab, " op=");
58 audit_log_string(ab, op);
59 audit_log_format(ab, " cause=");
60 audit_log_string(ab, cause);
Mimi Zohar3323eec92009-02-04 09:06:58 -050061 audit_log_format(ab, " comm=");
62 audit_log_untrustedstring(ab, current->comm);
63 if (fname) {
64 audit_log_format(ab, " name=");
65 audit_log_untrustedstring(ab, fname);
66 }
67 if (inode)
68 audit_log_format(ab, " dev=%s ino=%lu",
69 inode->i_sb->s_id, inode->i_ino);
Mimi Zohar523979a2009-02-11 11:12:28 -050070 audit_log_format(ab, " res=%d", !result ? 0 : 1);
Mimi Zohar3323eec92009-02-04 09:06:58 -050071 audit_log_end(ab);
72}