2 * AppArmor security module
4 * This file contains AppArmor auditing function definitions.
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
18 #include <linux/audit.h>
20 #include <linux/lsm_audit.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
27 extern const char *const audit_mode_names
[];
28 #define AUDIT_MAX_INDEX 5
30 AUDIT_NORMAL
, /* follow normal auditing of accesses */
31 AUDIT_QUIET_DENIED
, /* quiet all denied access messages */
32 AUDIT_QUIET
, /* quiet all messages */
33 AUDIT_NOQUIET
, /* do not quiet audit messages */
34 AUDIT_ALL
/* audit all accesses */
39 AUDIT_APPARMOR_ALLOWED
,
40 AUDIT_APPARMOR_DENIED
,
42 AUDIT_APPARMOR_STATUS
,
50 #define OP_SYSCTL "sysctl"
51 #define OP_CAPABLE "capable"
53 #define OP_UNLINK "unlink"
54 #define OP_MKDIR "mkdir"
55 #define OP_RMDIR "rmdir"
56 #define OP_MKNOD "mknod"
57 #define OP_TRUNC "truncate"
58 #define OP_LINK "link"
59 #define OP_SYMLINK "symlink"
60 #define OP_RENAME_SRC "rename_src"
61 #define OP_RENAME_DEST "rename_dest"
62 #define OP_CHMOD "chmod"
63 #define OP_CHOWN "chown"
64 #define OP_GETATTR "getattr"
65 #define OP_OPEN "open"
67 #define OP_FRECEIVE "file_receive"
68 #define OP_FPERM "file_perm"
69 #define OP_FLOCK "file_lock"
70 #define OP_FMMAP "file_mmap"
71 #define OP_FMPROT "file_mprotect"
72 #define OP_INHERIT "file_inherit"
74 #define OP_PIVOTROOT "pivotroot"
75 #define OP_MOUNT "mount"
76 #define OP_UMOUNT "umount"
78 #define OP_CREATE "create"
79 #define OP_POST_CREATE "post_create"
80 #define OP_BIND "bind"
81 #define OP_CONNECT "connect"
82 #define OP_LISTEN "listen"
83 #define OP_ACCEPT "accept"
84 #define OP_SENDMSG "sendmsg"
85 #define OP_RECVMSG "recvmsg"
86 #define OP_GETSOCKNAME "getsockname"
87 #define OP_GETPEERNAME "getpeername"
88 #define OP_GETSOCKOPT "getsockopt"
89 #define OP_SETSOCKOPT "setsockopt"
90 #define OP_SHUTDOWN "socket_shutdown"
92 #define OP_PTRACE "ptrace"
93 #define OP_SIGNAL "signal"
95 #define OP_EXEC "exec"
97 #define OP_CHANGE_HAT "change_hat"
98 #define OP_CHANGE_PROFILE "change_profile"
99 #define OP_CHANGE_ONEXEC "change_onexec"
100 #define OP_STACK "stack"
101 #define OP_STACK_ONEXEC "stack_onexec"
103 #define OP_SETPROCATTR "setprocattr"
104 #define OP_SETRLIMIT "setrlimit"
106 #define OP_PROF_REPL "profile_replace"
107 #define OP_PROF_LOAD "profile_load"
108 #define OP_PROF_RM "profile_remove"
111 struct apparmor_audit_data
{
115 struct aa_label
*label
;
121 /* these entries require a custom callback fn */
123 struct aa_label
*peer
;
133 struct aa_profile
*profile
;
142 const char *src_name
;
151 /* macros for dealing with apparmor_audit_data structure */
152 #define aad(SA) ((SA)->apparmor_audit_data)
153 #define DEFINE_AUDIT_DATA(NAME, T, X) \
154 /* TODO: cleanup audit init so we don't need _aad = {0,} */ \
155 struct apparmor_audit_data NAME ## _aad = { .op = (X), }; \
156 struct common_audit_data NAME = \
161 NAME.apparmor_audit_data = &(NAME ## _aad)
163 void aa_audit_msg(int type
, struct common_audit_data
*sa
,
164 void (*cb
) (struct audit_buffer
*, void *));
165 int aa_audit(int type
, struct aa_profile
*profile
, struct common_audit_data
*sa
,
166 void (*cb
) (struct audit_buffer
*, void *));
168 #define aa_audit_error(ERROR, SA, CB) \
170 aad((SA))->error = (ERROR); \
171 aa_audit_msg(AUDIT_APPARMOR_ERROR, (SA), (CB)); \
176 static inline int complain_error(int error
)
178 if (error
== -EPERM
|| error
== -EACCES
)
183 #endif /* __AA_AUDIT_H */