|
@@ -360,6 +360,7 @@ extern int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
|
|
|
const struct cred *old);
|
|
|
extern void __audit_log_capset(const struct cred *new, const struct cred *old);
|
|
|
extern void __audit_mmap_fd(int fd, int flags);
|
|
|
+extern void __audit_log_kern_module(char *name);
|
|
|
|
|
|
static inline void audit_ipc_obj(struct kern_ipc_perm *ipcp)
|
|
|
{
|
|
@@ -450,6 +451,12 @@ static inline void audit_mmap_fd(int fd, int flags)
|
|
|
__audit_mmap_fd(fd, flags);
|
|
|
}
|
|
|
|
|
|
+static inline void audit_log_kern_module(char *name)
|
|
|
+{
|
|
|
+ if (!audit_dummy_context())
|
|
|
+ __audit_log_kern_module(name);
|
|
|
+}
|
|
|
+
|
|
|
extern int audit_n_rules;
|
|
|
extern int audit_signals;
|
|
|
#else /* CONFIG_AUDITSYSCALL */
|
|
@@ -561,6 +568,11 @@ static inline void audit_log_capset(const struct cred *new,
|
|
|
{ }
|
|
|
static inline void audit_mmap_fd(int fd, int flags)
|
|
|
{ }
|
|
|
+
|
|
|
+static inline void audit_log_kern_module(char *name)
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
static inline void audit_ptrace(struct task_struct *t)
|
|
|
{ }
|
|
|
#define audit_n_rules 0
|