]>
Commit | Line | Data |
---|---|---|
3323eec9 MZ |
1 | /* |
2 | * Copyright (C) 2008 IBM Corporation | |
3 | * Author: Mimi Zohar <[email protected]> | |
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 | |
2bb930ab | 10 | * Audit calls for the integrity subsystem |
3323eec9 MZ |
11 | */ |
12 | ||
13 | #include <linux/fs.h> | |
5a0e3ad6 | 14 | #include <linux/gfp.h> |
3323eec9 | 15 | #include <linux/audit.h> |
d726d8d7 | 16 | #include "integrity.h" |
3323eec9 | 17 | |
d726d8d7 | 18 | static int integrity_audit_info; |
3323eec9 | 19 | |
3323eec9 | 20 | /* ima_audit_setup - enable informational auditing messages */ |
d726d8d7 | 21 | static int __init integrity_audit_setup(char *str) |
3323eec9 MZ |
22 | { |
23 | unsigned long audit; | |
3323eec9 | 24 | |
29707b20 | 25 | if (!kstrtoul(str, 0, &audit)) |
d726d8d7 | 26 | integrity_audit_info = audit ? 1 : 0; |
3323eec9 MZ |
27 | return 1; |
28 | } | |
d726d8d7 | 29 | __setup("integrity_audit=", integrity_audit_setup); |
3323eec9 MZ |
30 | |
31 | void 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; | |
73a6b44a | 36 | char name[TASK_COMM_LEN]; |
3323eec9 | 37 | |
d726d8d7 | 38 | if (!integrity_audit_info && audit_info == 1) /* Skip info messages */ |
3323eec9 MZ |
39 | return; |
40 | ||
41 | ab = audit_log_start(current->audit_context, GFP_KERNEL, audit_msgno); | |
34c111f6 | 42 | audit_log_format(ab, "pid=%d uid=%u auid=%u ses=%u", |
f1dc4867 | 43 | task_pid_nr(current), |
8b94eea4 EB |
44 | from_kuid(&init_user_ns, current_cred()->uid), |
45 | from_kuid(&init_user_ns, audit_get_loginuid(current)), | |
523979ad | 46 | audit_get_sessionid(current)); |
3323eec9 | 47 | audit_log_task_context(ab); |
e5e520a7 MZ |
48 | audit_log_format(ab, " op="); |
49 | audit_log_string(ab, op); | |
50 | audit_log_format(ab, " cause="); | |
51 | audit_log_string(ab, cause); | |
3323eec9 | 52 | audit_log_format(ab, " comm="); |
73a6b44a | 53 | audit_log_untrustedstring(ab, get_task_comm(name, current)); |
3323eec9 MZ |
54 | if (fname) { |
55 | audit_log_format(ab, " name="); | |
56 | audit_log_untrustedstring(ab, fname); | |
57 | } | |
41fdc305 KC |
58 | if (inode) { |
59 | audit_log_format(ab, " dev="); | |
60 | audit_log_untrustedstring(ab, inode->i_sb->s_id); | |
61 | audit_log_format(ab, " ino=%lu", inode->i_ino); | |
62 | } | |
b0d5de4d | 63 | audit_log_format(ab, " res=%d", !result); |
3323eec9 MZ |
64 | audit_log_end(ab); |
65 | } |