mirror of https://github.com/dynup/kpatch
46 lines
1.1 KiB
Diff
46 lines
1.1 KiB
Diff
diff -Nupr src.orig/kernel/audit.c src/kernel/audit.c
|
|
--- src.orig/kernel/audit.c 2016-12-15 19:56:00.196000000 +0000
|
|
+++ src/kernel/audit.c 2016-12-15 19:56:56.868000000 +0000
|
|
@@ -213,6 +213,12 @@ void audit_panic(const char *message)
|
|
}
|
|
}
|
|
|
|
+void kpatch_audit_foo(void)
|
|
+{
|
|
+ if (!jiffies)
|
|
+ printk("kpatch audit foo\n");
|
|
+}
|
|
+
|
|
static inline int audit_rate_check(void)
|
|
{
|
|
static unsigned long last_check = 0;
|
|
@@ -223,6 +229,7 @@ static inline int audit_rate_check(void)
|
|
unsigned long elapsed;
|
|
int retval = 0;
|
|
|
|
+ kpatch_audit_foo();
|
|
if (!audit_rate_limit) return 1;
|
|
|
|
spin_lock_irqsave(&lock, flags);
|
|
@@ -242,6 +249,11 @@ static inline int audit_rate_check(void)
|
|
return retval;
|
|
}
|
|
|
|
+noinline void kpatch_audit_check(void)
|
|
+{
|
|
+ audit_rate_check();
|
|
+}
|
|
+
|
|
/**
|
|
* audit_log_lost - conditionally log lost audit message event
|
|
* @message: the message stating reason for lost audit message
|
|
@@ -288,6 +300,8 @@ static int audit_log_config_change(char
|
|
struct audit_buffer *ab;
|
|
int rc = 0;
|
|
|
|
+ kpatch_audit_check();
|
|
+
|
|
ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
|
|
if (unlikely(!ab))
|
|
return rc;
|