[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-id: <20171018203230.29871-4-k.opasiak@samsung.com>
Date: Wed, 18 Oct 2017 22:32:29 +0200
From: Krzysztof Opasiak <k.opasiak@...sung.com>
To: gregkh@...uxfoundation.org, viro@...iv.linux.org.uk, arnd@...db.de
Cc: linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org,
linux-arch@...r.kernel.org, k.lewandowsk@...sung.com,
l.stelmach@...sung.com, p.szewczyk@...sung.com,
b.zolnierkie@...sung.com, andrzej.p@...sung.com,
kopasiak90@...il.com, Krzysztof Opasiak <k.opasiak@...sung.com>
Subject: [PATCH 3/4][PoC][RFC] Connect rlimit-events with process life cycle
Add rlimit-events call to process lifecycle to ensure that
we get notified whenever process dies (to cleanup our watch
levels) or forks (to implement watch levels inheritance).
Signed-off-by: Krzysztof Opasiak <k.opasiak@...sung.com>
---
kernel/exit.c | 4 ++++
kernel/fork.c | 16 +++++++++++++++-
2 files changed, 19 insertions(+), 1 deletion(-)
diff --git a/kernel/exit.c b/kernel/exit.c
index 516acdb0e0ec..c7e435ac4428 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -62,6 +62,7 @@
#include <linux/kcov.h>
#include <linux/random.h>
#include <linux/rcuwait.h>
+#include <linux/rlimit_noti.h>
#include <linux/uaccess.h>
#include <asm/unistd.h>
@@ -858,6 +859,9 @@ void __noreturn do_exit(long code)
if (group_dead)
tty_audit_exit();
audit_free(tsk);
+#ifdef CONFIG_RLIMIT_NOTIFICATION
+ rlimit_noti_task_exit(tsk);
+#endif
tsk->exit_code = code;
taskstats_exit(tsk, group_dead);
diff --git a/kernel/fork.c b/kernel/fork.c
index a98336d154b6..3d102b116688 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -98,6 +98,8 @@
#include <trace/events/sched.h>
+#include <linux/rlimit_noti.h>
+
#define CREATE_TRACE_POINTS
#include <trace/events/task.h>
@@ -1395,9 +1397,21 @@ static int copy_signal(unsigned long clone_flags, struct task_struct *tsk)
#endif
task_lock(current->group_leader);
- memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim);
+ memcpy(sig->rlim, current->signal->rlim, sizeof(sig->rlim));
task_unlock(current->group_leader);
+#ifdef CONFIG_RLIMIT_NOTIFICATION
+ {
+ int ret;
+
+ ret = rlimit_noti_task_fork(current->group_leader, tsk);
+ if (ret) {
+ kmem_cache_free(signal_cachep, sig);
+ return ret;
+ }
+ }
+#endif
+
posix_cpu_timers_init_group(sig);
tty_audit_fork(sig);
--
2.9.3
Powered by blists - more mailing lists