blob: c586faae8fd6c7901baf6b37b3db0500157f8644 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Mimi Zohar3323eec92009-02-04 09:06:58 -050015#include <linux/audit.h>
16#include "ima.h"
17
18static int ima_audit;
19
Mimi Zohar3323eec92009-02-04 09:06:58 -050020/* ima_audit_setup - enable informational auditing messages */
21static int __init ima_audit_setup(char *str)
22{
23 unsigned long audit;
Mimi Zohar3323eec92009-02-04 09:06:58 -050024
Mimi Zohar07ff7a02009-05-05 13:13:10 -040025 if (!strict_strtoul(str, 0, &audit))
26 ima_audit = audit ? 1 : 0;
Mimi Zohar3323eec92009-02-04 09:06:58 -050027 return 1;
28}
29__setup("ima_audit=", ima_audit_setup);
Mimi Zohar3323eec92009-02-04 09:06:58 -050030
31void integrity_audit_msg(int audit_msgno, struct inode *inode,
32 const unsigned char *fname, const char *op,
33 const char *cause, int result, int audit_info)
34{
35 struct audit_buffer *ab;
36
37 if (!ima_audit && audit_info == 1) /* Skip informational messages */
38 return;
39
40 ab = audit_log_start(current->audit_context, GFP_KERNEL, audit_msgno);
Eric Paris34c111f2010-04-20 10:21:36 -040041 audit_log_format(ab, "pid=%d uid=%u auid=%u ses=%u",
Eric W. Biederman8b94eea2012-05-25 18:24:12 -060042 current->pid,
43 from_kuid(&init_user_ns, current_cred()->uid),
44 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Mimi Zohar523979a2009-02-11 11:12:28 -050045 audit_get_sessionid(current));
Mimi Zohar3323eec92009-02-04 09:06:58 -050046 audit_log_task_context(ab);
Mimi Zohare5e520a2009-05-05 13:13:00 -040047 audit_log_format(ab, " op=");
48 audit_log_string(ab, op);
49 audit_log_format(ab, " cause=");
50 audit_log_string(ab, cause);
Mimi Zohar3323eec92009-02-04 09:06:58 -050051 audit_log_format(ab, " comm=");
52 audit_log_untrustedstring(ab, current->comm);
53 if (fname) {
54 audit_log_format(ab, " name=");
55 audit_log_untrustedstring(ab, fname);
56 }
Kees Cook41fdc302012-01-07 10:41:04 -080057 if (inode) {
58 audit_log_format(ab, " dev=");
59 audit_log_untrustedstring(ab, inode->i_sb->s_id);
60 audit_log_format(ab, " ino=%lu", inode->i_ino);
61 }
Eric Parisb0d5de42012-02-14 17:11:07 -050062 audit_log_format(ab, " res=%d", !result);
Mimi Zohar3323eec92009-02-04 09:06:58 -050063 audit_log_end(ab);
64}