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