Merge tag 'xfs-6.4-rc1-fixes' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[linux-block.git] / include / linux / audit.h
CommitLineData
1a59d1b8 1/* SPDX-License-Identifier: GPL-2.0-or-later */
85c8721f 2/* audit.h -- Auditing support
1da177e4
LT
3 *
4 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
5 * All Rights Reserved.
6 *
1da177e4 7 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
1da177e4 8 */
1da177e4
LT
9#ifndef _LINUX_AUDIT_H_
10#define _LINUX_AUDIT_H_
11
f001e47f 12#include <linux/sched.h>
c0a3a20b 13#include <linux/ptrace.h>
42f355ef 14#include <linux/audit_arch.h>
607ca46e 15#include <uapi/linux/audit.h>
8e6cf365 16#include <uapi/linux/netfilter/nf_tables.h>
032bffd4 17#include <uapi/linux/fanotify.h>
1da177e4 18
84cb777e
RGB
19#define AUDIT_INO_UNSET ((unsigned long)-1)
20#define AUDIT_DEV_UNSET ((dev_t)-1)
21
c2f0c7c3
SG
22struct audit_sig_info {
23 uid_t uid;
24 pid_t pid;
0090c1ed 25 char ctx[];
c2f0c7c3
SG
26};
27
1da177e4
LT
28struct audit_buffer;
29struct audit_context;
30struct inode;
5bb289b5 31struct netlink_skb_parms;
37721e1b 32struct path;
473ae30b 33struct linux_binprm;
20ca73bc
GW
34struct mq_attr;
35struct mqstat;
9d57a7f9
AD
36struct audit_watch;
37struct audit_tree;
099dd235 38struct sk_buff;
9d57a7f9
AD
39
40struct audit_krule {
041d7b98 41 u32 pflags;
9d57a7f9
AD
42 u32 flags;
43 u32 listnr;
44 u32 action;
45 u32 mask[AUDIT_BITMASK_SIZE];
46 u32 buflen; /* for data alloc on list rules */
47 u32 field_count;
48 char *filterkey; /* ties events to rules */
49 struct audit_field *fields;
50 struct audit_field *arch_f; /* quick access to arch field */
51 struct audit_field *inode_f; /* quick access to an inode field */
52 struct audit_watch *watch; /* associated watch */
53 struct audit_tree *tree; /* associated watched tree */
34d99af5 54 struct audit_fsnotify_mark *exe;
9d57a7f9 55 struct list_head rlist; /* entry in audit_{watch,tree}.rules list */
e45aa212 56 struct list_head list; /* for AUDIT_LIST* purposes only */
0590b933 57 u64 prio;
9d57a7f9
AD
58};
59
041d7b98
RGB
60/* Flag to indicate legacy AUDIT_LOGINUID unset usage */
61#define AUDIT_LOGINUID_LEGACY 0x1
62
9d57a7f9
AD
63struct audit_field {
64 u32 type;
219ca394
RGB
65 union {
66 u32 val;
67 kuid_t uid;
68 kgid_t gid;
69 struct {
70 char *lsm_str;
71 void *lsm_rule;
72 };
73 };
9d57a7f9 74 u32 op;
9d57a7f9 75};
1da177e4 76
7e8eda73
OM
77enum audit_ntp_type {
78 AUDIT_NTP_OFFSET,
79 AUDIT_NTP_FREQ,
80 AUDIT_NTP_STATUS,
81 AUDIT_NTP_TAI,
82 AUDIT_NTP_TICK,
83 AUDIT_NTP_ADJUST,
84
85 AUDIT_NTP_NVALS /* count */
86};
87
88#ifdef CONFIG_AUDITSYSCALL
89struct audit_ntp_val {
90 long long oldval, newval;
91};
92
93struct audit_ntp_data {
94 struct audit_ntp_val vals[AUDIT_NTP_NVALS];
95};
96#else
97struct audit_ntp_data {};
98#endif
99
c4dad0aa
RGB
100enum audit_nfcfgop {
101 AUDIT_XT_OP_REGISTER,
102 AUDIT_XT_OP_REPLACE,
a45d8853 103 AUDIT_XT_OP_UNREGISTER,
8e6cf365
RGB
104 AUDIT_NFT_OP_TABLE_REGISTER,
105 AUDIT_NFT_OP_TABLE_UNREGISTER,
106 AUDIT_NFT_OP_CHAIN_REGISTER,
107 AUDIT_NFT_OP_CHAIN_UNREGISTER,
108 AUDIT_NFT_OP_RULE_REGISTER,
109 AUDIT_NFT_OP_RULE_UNREGISTER,
110 AUDIT_NFT_OP_SET_REGISTER,
111 AUDIT_NFT_OP_SET_UNREGISTER,
112 AUDIT_NFT_OP_SETELEM_REGISTER,
113 AUDIT_NFT_OP_SETELEM_UNREGISTER,
114 AUDIT_NFT_OP_GEN_REGISTER,
115 AUDIT_NFT_OP_OBJ_REGISTER,
116 AUDIT_NFT_OP_OBJ_UNREGISTER,
117 AUDIT_NFT_OP_OBJ_RESET,
118 AUDIT_NFT_OP_FLOWTABLE_REGISTER,
119 AUDIT_NFT_OP_FLOWTABLE_UNREGISTER,
120 AUDIT_NFT_OP_INVALID,
c4dad0aa
RGB
121};
122
b915543b 123extern int __init audit_register_class(int class, unsigned *list);
55669bfa 124extern int audit_classify_syscall(int abi, unsigned syscall);
e54dc243 125extern int audit_classify_arch(int arch);
4b588411
AT
126/* only for compat system calls */
127extern unsigned compat_write_class[];
128extern unsigned compat_read_class[];
129extern unsigned compat_dir_class[];
130extern unsigned compat_chattr_class[];
131extern unsigned compat_signal_class[];
132
9e8beeb7 133extern int audit_classify_compat_syscall(int abi, unsigned syscall);
78e2e802
JL
134
135/* audit_names->type values */
136#define AUDIT_TYPE_UNKNOWN 0 /* we don't know yet */
137#define AUDIT_TYPE_NORMAL 1 /* a "normal" audit record */
bfcec708 138#define AUDIT_TYPE_PARENT 2 /* a parent audit record */
4fa6b5ec
JL
139#define AUDIT_TYPE_CHILD_DELETE 3 /* a child being deleted */
140#define AUDIT_TYPE_CHILD_CREATE 4 /* a child being created */
78e2e802 141
2950fa9d
CG
142/* maximized args number that audit_socketcall can process */
143#define AUDITSC_ARGS 6
144
2e28d38a
PH
145/* bit values for ->signal->audit_tty */
146#define AUDIT_TTY_ENABLE BIT(0)
147#define AUDIT_TTY_LOG_PASSWD BIT(1)
148
91a27b2a
JL
149struct filename;
150
f7859590
RGB
151#define AUDIT_OFF 0
152#define AUDIT_ON 1
153#define AUDIT_LOCKED 2
96368701
PM
154#ifdef CONFIG_AUDIT
155/* These are defined in audit.c */
156 /* Public API */
157extern __printf(4, 5)
158void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
159 const char *fmt, ...);
160
161extern struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask, int type);
162extern __printf(2, 3)
163void audit_log_format(struct audit_buffer *ab, const char *fmt, ...);
164extern void audit_log_end(struct audit_buffer *ab);
165extern bool audit_string_contains_control(const char *string,
166 size_t len);
167extern void audit_log_n_hex(struct audit_buffer *ab,
168 const unsigned char *buf,
169 size_t len);
170extern void audit_log_n_string(struct audit_buffer *ab,
171 const char *buf,
172 size_t n);
173extern void audit_log_n_untrustedstring(struct audit_buffer *ab,
174 const char *string,
175 size_t n);
176extern void audit_log_untrustedstring(struct audit_buffer *ab,
177 const char *string);
178extern void audit_log_d_path(struct audit_buffer *ab,
179 const char *prefix,
180 const struct path *path);
181extern void audit_log_key(struct audit_buffer *ab,
182 char *key);
245d7369
KC
183extern void audit_log_path_denied(int type,
184 const char *operation);
96368701 185extern void audit_log_lost(const char *message);
96368701
PM
186
187extern int audit_log_task_context(struct audit_buffer *ab);
2a1fe215 188extern void audit_log_task_info(struct audit_buffer *ab);
96368701
PM
189
190extern int audit_update_lsm_rules(void);
191
192 /* Private API (for audit.c only) */
45a0642b 193extern int audit_rule_change(int type, int seq, void *data, size_t datasz);
96368701
PM
194extern int audit_list_rules_send(struct sk_buff *request_skb, int seq);
195
4b7d248b
RGB
196extern int audit_set_loginuid(kuid_t loginuid);
197
198static inline kuid_t audit_get_loginuid(struct task_struct *tsk)
199{
200 return tsk->loginuid;
201}
202
203static inline unsigned int audit_get_sessionid(struct task_struct *tsk)
204{
205 return tsk->sessionid;
206}
207
96368701 208extern u32 audit_enabled;
b48345aa
RGB
209
210extern int audit_signal_info(int sig, struct task_struct *t);
211
96368701
PM
212#else /* CONFIG_AUDIT */
213static inline __printf(4, 5)
214void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
215 const char *fmt, ...)
216{ }
217static inline struct audit_buffer *audit_log_start(struct audit_context *ctx,
218 gfp_t gfp_mask, int type)
219{
220 return NULL;
221}
222static inline __printf(2, 3)
223void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
224{ }
225static inline void audit_log_end(struct audit_buffer *ab)
226{ }
227static inline void audit_log_n_hex(struct audit_buffer *ab,
228 const unsigned char *buf, size_t len)
229{ }
230static inline void audit_log_n_string(struct audit_buffer *ab,
231 const char *buf, size_t n)
232{ }
233static inline void audit_log_n_untrustedstring(struct audit_buffer *ab,
234 const char *string, size_t n)
235{ }
236static inline void audit_log_untrustedstring(struct audit_buffer *ab,
237 const char *string)
238{ }
239static inline void audit_log_d_path(struct audit_buffer *ab,
240 const char *prefix,
241 const struct path *path)
242{ }
243static inline void audit_log_key(struct audit_buffer *ab, char *key)
244{ }
245d7369 245static inline void audit_log_path_denied(int type, const char *operation)
96368701 246{ }
96368701
PM
247static inline int audit_log_task_context(struct audit_buffer *ab)
248{
249 return 0;
250}
2a1fe215 251static inline void audit_log_task_info(struct audit_buffer *ab)
96368701 252{ }
4b7d248b
RGB
253
254static inline kuid_t audit_get_loginuid(struct task_struct *tsk)
255{
256 return INVALID_UID;
257}
258
259static inline unsigned int audit_get_sessionid(struct task_struct *tsk)
260{
261 return AUDIT_SID_UNSET;
262}
263
f7859590 264#define audit_enabled AUDIT_OFF
b48345aa
RGB
265
266static inline int audit_signal_info(int sig, struct task_struct *t)
267{
268 return 0;
269}
270
96368701
PM
271#endif /* CONFIG_AUDIT */
272
312103d6 273#ifdef CONFIG_AUDIT_COMPAT_GENERIC
356750e3
EP
274#define audit_is_compat(arch) (!((arch) & __AUDIT_ARCH_64BIT))
275#else
276#define audit_is_compat(arch) false
277#endif
278
c9b07eab
AV
279#define AUDIT_INODE_PARENT 1 /* dentry represents the parent */
280#define AUDIT_INODE_HIDDEN 2 /* audit record should be hidden */
281#define AUDIT_INODE_NOEVAL 4 /* audit record incomplete */
282
1da177e4 283#ifdef CONFIG_AUDITSYSCALL
a9ebe0b9
EP
284#include <asm/syscall.h> /* for syscall_get_arch() */
285
1da177e4
LT
286/* These are defined in auditsc.c */
287 /* Public API */
288extern int audit_alloc(struct task_struct *task);
a4ff8dba 289extern void __audit_free(struct task_struct *task);
5bd2182d
PM
290extern void __audit_uring_entry(u8 op);
291extern void __audit_uring_exit(int success, long code);
b4f0d375 292extern void __audit_syscall_entry(int major, unsigned long a0, unsigned long a1,
b05d8447 293 unsigned long a2, unsigned long a3);
d7e7528b 294extern void __audit_syscall_exit(int ret_success, long ret_value);
7ac86265 295extern struct filename *__audit_reusename(const __user char *uptr);
91a27b2a 296extern void __audit_getname(struct filename *name);
adb5c247 297extern void __audit_inode(struct filename *name, const struct dentry *dentry,
79f6530c 298 unsigned int flags);
9f45f5bf 299extern void __audit_file(const struct file *);
d6335d77 300extern void __audit_inode_child(struct inode *parent,
4fa6b5ec
JL
301 const struct dentry *dentry,
302 const unsigned char type);
326bee02 303extern void audit_seccomp(unsigned long syscall, long signr, int code);
ea6eca77
TH
304extern void audit_seccomp_actions_logged(const char *names,
305 const char *old_names, int res);
a5cb013d
AV
306extern void __audit_ptrace(struct task_struct *t);
307
c0b0ae8a
RGB
308static inline void audit_set_context(struct task_struct *task, struct audit_context *ctx)
309{
310 task->audit_context = ctx;
311}
312
cdfb6b34
RGB
313static inline struct audit_context *audit_context(void)
314{
315 return current->audit_context;
316}
317
36734810 318static inline bool audit_dummy_context(void)
d51374ad 319{
cdfb6b34 320 void *p = audit_context();
d51374ad
AV
321 return !p || *(int *)p;
322}
a4ff8dba
EP
323static inline void audit_free(struct task_struct *task)
324{
325 if (unlikely(task->audit_context))
326 __audit_free(task);
327}
5bd2182d
PM
328static inline void audit_uring_entry(u8 op)
329{
330 /*
331 * We intentionally check audit_context() before audit_enabled as most
332 * Linux systems (as of ~2021) rely on systemd which forces audit to
333 * be enabled regardless of the user's audit configuration.
334 */
335 if (unlikely(audit_context() && audit_enabled))
336 __audit_uring_entry(op);
337}
338static inline void audit_uring_exit(int success, long code)
339{
69e9cd66 340 if (unlikely(audit_context()))
5bd2182d
PM
341 __audit_uring_exit(success, code);
342}
91397401 343static inline void audit_syscall_entry(int major, unsigned long a0,
b05d8447
EP
344 unsigned long a1, unsigned long a2,
345 unsigned long a3)
346{
cdfb6b34 347 if (unlikely(audit_context()))
b4f0d375 348 __audit_syscall_entry(major, a0, a1, a2, a3);
b05d8447 349}
d7e7528b
EP
350static inline void audit_syscall_exit(void *pt_regs)
351{
cdfb6b34 352 if (unlikely(audit_context())) {
d7e7528b 353 int success = is_syscall_success(pt_regs);
06bdadd7 354 long return_code = regs_return_value(pt_regs);
d7e7528b
EP
355
356 __audit_syscall_exit(success, return_code);
357 }
358}
7ac86265
JL
359static inline struct filename *audit_reusename(const __user char *name)
360{
361 if (unlikely(!audit_dummy_context()))
362 return __audit_reusename(name);
363 return NULL;
364}
91a27b2a 365static inline void audit_getname(struct filename *name)
d8945bb5 366{
5ac3a9c2 367 if (unlikely(!audit_dummy_context()))
d8945bb5
AV
368 __audit_getname(name);
369}
79f6530c
JL
370static inline void audit_inode(struct filename *name,
371 const struct dentry *dentry,
c9b07eab
AV
372 unsigned int aflags) {
373 if (unlikely(!audit_dummy_context()))
57d46577 374 __audit_inode(name, dentry, aflags);
79f6530c 375}
9f45f5bf
AV
376static inline void audit_file(struct file *file)
377{
378 if (unlikely(!audit_dummy_context()))
379 __audit_file(file);
380}
79f6530c
JL
381static inline void audit_inode_parent_hidden(struct filename *name,
382 const struct dentry *dentry)
383{
5ac3a9c2 384 if (unlikely(!audit_dummy_context()))
79f6530c
JL
385 __audit_inode(name, dentry,
386 AUDIT_INODE_PARENT | AUDIT_INODE_HIDDEN);
73241ccc 387}
d6335d77 388static inline void audit_inode_child(struct inode *parent,
4fa6b5ec
JL
389 const struct dentry *dentry,
390 const unsigned char type) {
5ac3a9c2 391 if (unlikely(!audit_dummy_context()))
4fa6b5ec 392 __audit_inode_child(parent, dentry, type);
73241ccc 393}
0a4ff8c2 394void audit_core_dumps(long signr);
1da177e4 395
a5cb013d
AV
396static inline void audit_ptrace(struct task_struct *t)
397{
398 if (unlikely(!audit_dummy_context()))
399 __audit_ptrace(t);
400}
401
1da177e4 402 /* Private API (for audit.c only) */
a33e6751 403extern void __audit_ipc_obj(struct kern_ipc_perm *ipcp);
2570ebbd 404extern void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, umode_t mode);
d9cfea91 405extern void __audit_bprm(struct linux_binprm *bprm);
2950fa9d 406extern int __audit_socketcall(int nargs, unsigned long *args);
07c49417 407extern int __audit_sockaddr(int len, void *addr);
157cf649 408extern void __audit_fd_pair(int fd1, int fd2);
df0a4283 409extern void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr);
b9047726 410extern void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, const struct timespec64 *abs_timeout);
20114f71 411extern void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification);
7392906e 412extern void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat);
d84f4f99
DH
413extern int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
414 const struct cred *new,
415 const struct cred *old);
ca24a23e 416extern void __audit_log_capset(const struct cred *new, const struct cred *old);
120a795d 417extern void __audit_mmap_fd(int fd, int flags);
571e5c0e 418extern void __audit_openat2_how(struct open_how *how);
ca86cad7 419extern void __audit_log_kern_module(char *name);
032bffd4 420extern void __audit_fanotify(u32 response, struct fanotify_response_info_audit_rule *friar);
2d87a067 421extern void __audit_tk_injoffset(struct timespec64 offset);
7e8eda73 422extern void __audit_ntp_log(const struct audit_ntp_data *ad);
c4dad0aa 423extern void __audit_log_nfcfg(const char *name, u8 af, unsigned int nentries,
14224039 424 enum audit_nfcfgop op, gfp_t gfp);
d8945bb5 425
a33e6751 426static inline void audit_ipc_obj(struct kern_ipc_perm *ipcp)
d8945bb5 427{
5ac3a9c2 428 if (unlikely(!audit_dummy_context()))
a33e6751 429 __audit_ipc_obj(ipcp);
db349509 430}
157cf649 431static inline void audit_fd_pair(int fd1, int fd2)
d8945bb5 432{
5ac3a9c2 433 if (unlikely(!audit_dummy_context()))
157cf649 434 __audit_fd_pair(fd1, fd2);
d8945bb5 435}
2570ebbd 436static inline void audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, umode_t mode)
20ca73bc 437{
5ac3a9c2 438 if (unlikely(!audit_dummy_context()))
e816f370 439 __audit_ipc_set_perm(qbytes, uid, gid, mode);
20ca73bc 440}
9410d228 441static inline void audit_bprm(struct linux_binprm *bprm)
07c49417
EP
442{
443 if (unlikely(!audit_dummy_context()))
d9cfea91 444 __audit_bprm(bprm);
07c49417 445}
2950fa9d 446static inline int audit_socketcall(int nargs, unsigned long *args)
07c49417
EP
447{
448 if (unlikely(!audit_dummy_context()))
2950fa9d
CG
449 return __audit_socketcall(nargs, args);
450 return 0;
07c49417 451}
62bc306e
RGB
452
453static inline int audit_socketcall_compat(int nargs, u32 *args)
454{
455 unsigned long a[AUDITSC_ARGS];
456 int i;
457
458 if (audit_dummy_context())
459 return 0;
460
461 for (i = 0; i < nargs; i++)
462 a[i] = (unsigned long)args[i];
463 return __audit_socketcall(nargs, a);
464}
465
07c49417
EP
466static inline int audit_sockaddr(int len, void *addr)
467{
468 if (unlikely(!audit_dummy_context()))
469 return __audit_sockaddr(len, addr);
470 return 0;
471}
df0a4283 472static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
20ca73bc 473{
5ac3a9c2 474 if (unlikely(!audit_dummy_context()))
564f6993 475 __audit_mq_open(oflag, mode, attr);
20ca73bc 476}
b9047726 477static inline void audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, const struct timespec64 *abs_timeout)
20ca73bc 478{
5ac3a9c2 479 if (unlikely(!audit_dummy_context()))
c32c8af4 480 __audit_mq_sendrecv(mqdes, msg_len, msg_prio, abs_timeout);
20ca73bc 481}
20114f71 482static inline void audit_mq_notify(mqd_t mqdes, const struct sigevent *notification)
20ca73bc 483{
5ac3a9c2 484 if (unlikely(!audit_dummy_context()))
20114f71 485 __audit_mq_notify(mqdes, notification);
20ca73bc 486}
7392906e 487static inline void audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
20ca73bc 488{
5ac3a9c2 489 if (unlikely(!audit_dummy_context()))
7392906e 490 __audit_mq_getsetattr(mqdes, mqstat);
20ca73bc 491}
3fc689e9 492
d84f4f99
DH
493static inline int audit_log_bprm_fcaps(struct linux_binprm *bprm,
494 const struct cred *new,
495 const struct cred *old)
3fc689e9
EP
496{
497 if (unlikely(!audit_dummy_context()))
d84f4f99
DH
498 return __audit_log_bprm_fcaps(bprm, new, old);
499 return 0;
3fc689e9
EP
500}
501
ca24a23e 502static inline void audit_log_capset(const struct cred *new,
d84f4f99 503 const struct cred *old)
e68b75a0
EP
504{
505 if (unlikely(!audit_dummy_context()))
ca24a23e 506 __audit_log_capset(new, old);
e68b75a0
EP
507}
508
120a795d
AV
509static inline void audit_mmap_fd(int fd, int flags)
510{
511 if (unlikely(!audit_dummy_context()))
512 __audit_mmap_fd(fd, flags);
513}
514
571e5c0e
RGB
515static inline void audit_openat2_how(struct open_how *how)
516{
517 if (unlikely(!audit_dummy_context()))
518 __audit_openat2_how(how);
519}
520
ca86cad7
RGB
521static inline void audit_log_kern_module(char *name)
522{
523 if (!audit_dummy_context())
524 __audit_log_kern_module(name);
525}
526
032bffd4 527static inline void audit_fanotify(u32 response, struct fanotify_response_info_audit_rule *friar)
de8cd83e
SG
528{
529 if (!audit_dummy_context())
032bffd4 530 __audit_fanotify(response, friar);
de8cd83e
SG
531}
532
2d87a067
OM
533static inline void audit_tk_injoffset(struct timespec64 offset)
534{
535 /* ignore no-op events */
536 if (offset.tv_sec == 0 && offset.tv_nsec == 0)
537 return;
538
539 if (!audit_dummy_context())
540 __audit_tk_injoffset(offset);
541}
542
7e8eda73
OM
543static inline void audit_ntp_init(struct audit_ntp_data *ad)
544{
545 memset(ad, 0, sizeof(*ad));
546}
547
548static inline void audit_ntp_set_old(struct audit_ntp_data *ad,
549 enum audit_ntp_type type, long long val)
550{
551 ad->vals[type].oldval = val;
552}
553
554static inline void audit_ntp_set_new(struct audit_ntp_data *ad,
555 enum audit_ntp_type type, long long val)
556{
557 ad->vals[type].newval = val;
558}
559
560static inline void audit_ntp_log(const struct audit_ntp_data *ad)
561{
562 if (!audit_dummy_context())
563 __audit_ntp_log(ad);
564}
565
c4dad0aa
RGB
566static inline void audit_log_nfcfg(const char *name, u8 af,
567 unsigned int nentries,
14224039 568 enum audit_nfcfgop op, gfp_t gfp)
c4dad0aa
RGB
569{
570 if (audit_enabled)
14224039 571 __audit_log_nfcfg(name, af, nentries, op, gfp);
c4dad0aa
RGB
572}
573
471a5c7c 574extern int audit_n_rules;
e54dc243 575extern int audit_signals;
d7e7528b 576#else /* CONFIG_AUDITSYSCALL */
9321d526
KC
577static inline int audit_alloc(struct task_struct *task)
578{
579 return 0;
580}
581static inline void audit_free(struct task_struct *task)
582{ }
5bd2182d
PM
583static inline void audit_uring_entry(u8 op)
584{ }
585static inline void audit_uring_exit(int success, long code)
586{ }
91397401 587static inline void audit_syscall_entry(int major, unsigned long a0,
9321d526
KC
588 unsigned long a1, unsigned long a2,
589 unsigned long a3)
590{ }
591static inline void audit_syscall_exit(void *pt_regs)
592{ }
36734810 593static inline bool audit_dummy_context(void)
9321d526 594{
36734810 595 return true;
9321d526 596}
c0b0ae8a
RGB
597static inline void audit_set_context(struct task_struct *task, struct audit_context *ctx)
598{ }
cdfb6b34
RGB
599static inline struct audit_context *audit_context(void)
600{
601 return NULL;
602}
7ac86265
JL
603static inline struct filename *audit_reusename(const __user char *name)
604{
605 return NULL;
606}
91a27b2a 607static inline void audit_getname(struct filename *name)
9321d526 608{ }
adb5c247
JL
609static inline void audit_inode(struct filename *name,
610 const struct dentry *dentry,
c9b07eab 611 unsigned int aflags)
9321d526 612{ }
9f45f5bf
AV
613static inline void audit_file(struct file *file)
614{
615}
79f6530c
JL
616static inline void audit_inode_parent_hidden(struct filename *name,
617 const struct dentry *dentry)
618{ }
d6335d77 619static inline void audit_inode_child(struct inode *parent,
4fa6b5ec
JL
620 const struct dentry *dentry,
621 const unsigned char type)
9321d526
KC
622{ }
623static inline void audit_core_dumps(long signr)
624{ }
9321d526
KC
625static inline void audit_seccomp(unsigned long syscall, long signr, int code)
626{ }
ea6eca77
TH
627static inline void audit_seccomp_actions_logged(const char *names,
628 const char *old_names, int res)
629{ }
9321d526
KC
630static inline void audit_ipc_obj(struct kern_ipc_perm *ipcp)
631{ }
632static inline void audit_ipc_set_perm(unsigned long qbytes, uid_t uid,
633 gid_t gid, umode_t mode)
634{ }
9410d228
RGB
635static inline void audit_bprm(struct linux_binprm *bprm)
636{ }
2950fa9d
CG
637static inline int audit_socketcall(int nargs, unsigned long *args)
638{
639 return 0;
640}
62bc306e
RGB
641
642static inline int audit_socketcall_compat(int nargs, u32 *args)
643{
644 return 0;
645}
646
9321d526
KC
647static inline void audit_fd_pair(int fd1, int fd2)
648{ }
649static inline int audit_sockaddr(int len, void *addr)
650{
651 return 0;
652}
653static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
654{ }
655static inline void audit_mq_sendrecv(mqd_t mqdes, size_t msg_len,
656 unsigned int msg_prio,
b9047726 657 const struct timespec64 *abs_timeout)
9321d526
KC
658{ }
659static inline void audit_mq_notify(mqd_t mqdes,
660 const struct sigevent *notification)
661{ }
662static inline void audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
663{ }
664static inline int audit_log_bprm_fcaps(struct linux_binprm *bprm,
665 const struct cred *new,
666 const struct cred *old)
667{
668 return 0;
669}
ca24a23e
EB
670static inline void audit_log_capset(const struct cred *new,
671 const struct cred *old)
9321d526
KC
672{ }
673static inline void audit_mmap_fd(int fd, int flags)
674{ }
ca86cad7 675
571e5c0e
RGB
676static inline void audit_openat2_how(struct open_how *how)
677{ }
678
ca86cad7
RGB
679static inline void audit_log_kern_module(char *name)
680{
681}
682
032bffd4 683static inline void audit_fanotify(u32 response, struct fanotify_response_info_audit_rule *friar)
de8cd83e
SG
684{ }
685
2d87a067
OM
686static inline void audit_tk_injoffset(struct timespec64 offset)
687{ }
688
7e8eda73
OM
689static inline void audit_ntp_init(struct audit_ntp_data *ad)
690{ }
691
692static inline void audit_ntp_set_old(struct audit_ntp_data *ad,
693 enum audit_ntp_type type, long long val)
694{ }
695
696static inline void audit_ntp_set_new(struct audit_ntp_data *ad,
697 enum audit_ntp_type type, long long val)
698{ }
699
700static inline void audit_ntp_log(const struct audit_ntp_data *ad)
701{ }
702
9321d526
KC
703static inline void audit_ptrace(struct task_struct *t)
704{ }
c4dad0aa
RGB
705
706static inline void audit_log_nfcfg(const char *name, u8 af,
707 unsigned int nentries,
14224039 708 enum audit_nfcfgop op, gfp_t gfp)
c4dad0aa
RGB
709{ }
710
471a5c7c 711#define audit_n_rules 0
e54dc243 712#define audit_signals 0
d7e7528b 713#endif /* CONFIG_AUDITSYSCALL */
1da177e4 714
780a7654
EB
715static inline bool audit_loginuid_set(struct task_struct *tsk)
716{
717 return uid_valid(audit_get_loginuid(tsk));
718}
719
1da177e4 720#endif