Loading...
1/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor auditing function definitions.
5 *
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
8 *
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
12 * License.
13 */
14
15#ifndef __AA_AUDIT_H
16#define __AA_AUDIT_H
17
18#include <linux/audit.h>
19#include <linux/fs.h>
20#include <linux/lsm_audit.h>
21#include <linux/sched.h>
22#include <linux/slab.h>
23
24#include "file.h"
25#include "label.h"
26
27extern const char *const audit_mode_names[];
28#define AUDIT_MAX_INDEX 5
29enum audit_mode {
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 */
35};
36
37enum audit_type {
38 AUDIT_APPARMOR_AUDIT,
39 AUDIT_APPARMOR_ALLOWED,
40 AUDIT_APPARMOR_DENIED,
41 AUDIT_APPARMOR_HINT,
42 AUDIT_APPARMOR_STATUS,
43 AUDIT_APPARMOR_ERROR,
44 AUDIT_APPARMOR_KILL,
45 AUDIT_APPARMOR_AUTO
46};
47
48#define OP_NULL NULL
49
50#define OP_SYSCTL "sysctl"
51#define OP_CAPABLE "capable"
52
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"
66
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"
73
74#define OP_PIVOTROOT "pivotroot"
75#define OP_MOUNT "mount"
76#define OP_UMOUNT "umount"
77
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"
91
92#define OP_PTRACE "ptrace"
93#define OP_SIGNAL "signal"
94
95#define OP_EXEC "exec"
96
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"
102
103#define OP_SETPROCATTR "setprocattr"
104#define OP_SETRLIMIT "setrlimit"
105
106#define OP_PROF_REPL "profile_replace"
107#define OP_PROF_LOAD "profile_load"
108#define OP_PROF_RM "profile_remove"
109
110
111struct apparmor_audit_data {
112 int error;
113 int type;
114 const char *op;
115 struct aa_label *label;
116 const char *name;
117 const char *info;
118 u32 request;
119 u32 denied;
120 union {
121 /* these entries require a custom callback fn */
122 struct {
123 struct aa_label *peer;
124 union {
125 struct {
126 const char *target;
127 kuid_t ouid;
128 } fs;
129 struct {
130 int rlim;
131 unsigned long max;
132 } rlim;
133 struct {
134 int signal;
135 int unmappedsig;
136 };
137 struct {
138 int type, protocol;
139 struct sock *peer_sk;
140 void *addr;
141 int addrlen;
142 } net;
143 };
144 };
145 struct {
146 struct aa_profile *profile;
147 const char *ns;
148 long pos;
149 } iface;
150 struct {
151 const char *src_name;
152 const char *type;
153 const char *trans;
154 const char *data;
155 unsigned long flags;
156 } mnt;
157 };
158};
159
160/* macros for dealing with apparmor_audit_data structure */
161#define aad(SA) ((SA)->apparmor_audit_data)
162#define DEFINE_AUDIT_DATA(NAME, T, X) \
163 /* TODO: cleanup audit init so we don't need _aad = {0,} */ \
164 struct apparmor_audit_data NAME ## _aad = { .op = (X), }; \
165 struct common_audit_data NAME = \
166 { \
167 .type = (T), \
168 .u.tsk = NULL, \
169 }; \
170 NAME.apparmor_audit_data = &(NAME ## _aad)
171
172void aa_audit_msg(int type, struct common_audit_data *sa,
173 void (*cb) (struct audit_buffer *, void *));
174int aa_audit(int type, struct aa_profile *profile, struct common_audit_data *sa,
175 void (*cb) (struct audit_buffer *, void *));
176
177#define aa_audit_error(ERROR, SA, CB) \
178({ \
179 aad((SA))->error = (ERROR); \
180 aa_audit_msg(AUDIT_APPARMOR_ERROR, (SA), (CB)); \
181 aad((SA))->error; \
182})
183
184
185static inline int complain_error(int error)
186{
187 if (error == -EPERM || error == -EACCES)
188 return 0;
189 return error;
190}
191
192#endif /* __AA_AUDIT_H */
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * AppArmor security module
4 *
5 * This file contains AppArmor auditing function definitions.
6 *
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
9 */
10
11#ifndef __AA_AUDIT_H
12#define __AA_AUDIT_H
13
14#include <linux/audit.h>
15#include <linux/fs.h>
16#include <linux/lsm_audit.h>
17#include <linux/sched.h>
18#include <linux/slab.h>
19
20#include "file.h"
21#include "label.h"
22
23extern const char *const audit_mode_names[];
24#define AUDIT_MAX_INDEX 5
25enum audit_mode {
26 AUDIT_NORMAL, /* follow normal auditing of accesses */
27 AUDIT_QUIET_DENIED, /* quiet all denied access messages */
28 AUDIT_QUIET, /* quiet all messages */
29 AUDIT_NOQUIET, /* do not quiet audit messages */
30 AUDIT_ALL /* audit all accesses */
31};
32
33enum audit_type {
34 AUDIT_APPARMOR_AUDIT,
35 AUDIT_APPARMOR_ALLOWED,
36 AUDIT_APPARMOR_DENIED,
37 AUDIT_APPARMOR_HINT,
38 AUDIT_APPARMOR_STATUS,
39 AUDIT_APPARMOR_ERROR,
40 AUDIT_APPARMOR_KILL,
41 AUDIT_APPARMOR_AUTO
42};
43
44#define OP_NULL NULL
45
46#define OP_SYSCTL "sysctl"
47#define OP_CAPABLE "capable"
48
49#define OP_UNLINK "unlink"
50#define OP_MKDIR "mkdir"
51#define OP_RMDIR "rmdir"
52#define OP_MKNOD "mknod"
53#define OP_TRUNC "truncate"
54#define OP_LINK "link"
55#define OP_SYMLINK "symlink"
56#define OP_RENAME_SRC "rename_src"
57#define OP_RENAME_DEST "rename_dest"
58#define OP_CHMOD "chmod"
59#define OP_CHOWN "chown"
60#define OP_GETATTR "getattr"
61#define OP_OPEN "open"
62
63#define OP_FRECEIVE "file_receive"
64#define OP_FPERM "file_perm"
65#define OP_FLOCK "file_lock"
66#define OP_FMMAP "file_mmap"
67#define OP_FMPROT "file_mprotect"
68#define OP_INHERIT "file_inherit"
69
70#define OP_PIVOTROOT "pivotroot"
71#define OP_MOUNT "mount"
72#define OP_UMOUNT "umount"
73
74#define OP_CREATE "create"
75#define OP_POST_CREATE "post_create"
76#define OP_BIND "bind"
77#define OP_CONNECT "connect"
78#define OP_LISTEN "listen"
79#define OP_ACCEPT "accept"
80#define OP_SENDMSG "sendmsg"
81#define OP_RECVMSG "recvmsg"
82#define OP_GETSOCKNAME "getsockname"
83#define OP_GETPEERNAME "getpeername"
84#define OP_GETSOCKOPT "getsockopt"
85#define OP_SETSOCKOPT "setsockopt"
86#define OP_SHUTDOWN "socket_shutdown"
87
88#define OP_PTRACE "ptrace"
89#define OP_SIGNAL "signal"
90
91#define OP_EXEC "exec"
92
93#define OP_CHANGE_HAT "change_hat"
94#define OP_CHANGE_PROFILE "change_profile"
95#define OP_CHANGE_ONEXEC "change_onexec"
96#define OP_STACK "stack"
97#define OP_STACK_ONEXEC "stack_onexec"
98
99#define OP_SETPROCATTR "setprocattr"
100#define OP_SETRLIMIT "setrlimit"
101
102#define OP_PROF_REPL "profile_replace"
103#define OP_PROF_LOAD "profile_load"
104#define OP_PROF_RM "profile_remove"
105
106#define OP_USERNS_CREATE "userns_create"
107
108#define OP_URING_OVERRIDE "uring_override"
109#define OP_URING_SQPOLL "uring_sqpoll"
110
111struct apparmor_audit_data {
112 int error;
113 int type;
114 u16 class;
115 const char *op;
116 const struct cred *subj_cred;
117 struct aa_label *subj_label;
118 const char *name;
119 const char *info;
120 u32 request;
121 u32 denied;
122 union {
123 /* these entries require a custom callback fn */
124 struct {
125 struct aa_label *peer;
126 union {
127 struct {
128 const char *target;
129 kuid_t ouid;
130 } fs;
131 struct {
132 int rlim;
133 unsigned long max;
134 } rlim;
135 struct {
136 int signal;
137 int unmappedsig;
138 };
139 struct {
140 int type, protocol;
141 struct sock *peer_sk;
142 void *addr;
143 int addrlen;
144 } net;
145 };
146 };
147 struct {
148 struct aa_profile *profile;
149 const char *ns;
150 long pos;
151 } iface;
152 struct {
153 const char *src_name;
154 const char *type;
155 const char *trans;
156 const char *data;
157 unsigned long flags;
158 } mnt;
159 struct {
160 struct aa_label *target;
161 } uring;
162 };
163
164 struct common_audit_data common;
165};
166
167/* macros for dealing with apparmor_audit_data structure */
168#define aad(SA) (container_of(SA, struct apparmor_audit_data, common))
169#define aad_of_va(VA) aad((struct common_audit_data *)(VA))
170
171#define DEFINE_AUDIT_DATA(NAME, T, C, X) \
172 /* TODO: cleanup audit init so we don't need _aad = {0,} */ \
173 struct apparmor_audit_data NAME = { \
174 .class = (C), \
175 .op = (X), \
176 .common.type = (T), \
177 .common.u.tsk = NULL, \
178 .common.apparmor_audit_data = &NAME, \
179 };
180
181void aa_audit_msg(int type, struct apparmor_audit_data *ad,
182 void (*cb) (struct audit_buffer *, void *));
183int aa_audit(int type, struct aa_profile *profile,
184 struct apparmor_audit_data *ad,
185 void (*cb) (struct audit_buffer *, void *));
186
187#define aa_audit_error(ERROR, AD, CB) \
188({ \
189 (AD)->error = (ERROR); \
190 aa_audit_msg(AUDIT_APPARMOR_ERROR, (AD), (CB)); \
191 (AD)->error; \
192})
193
194
195static inline int complain_error(int error)
196{
197 if (error == -EPERM || error == -EACCES)
198 return 0;
199 return error;
200}
201
202void aa_audit_rule_free(void *vrule);
203int aa_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule);
204int aa_audit_rule_known(struct audit_krule *rule);
205int aa_audit_rule_match(u32 sid, u32 field, u32 op, void *vrule);
206
207#endif /* __AA_AUDIT_H */