Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1247076 > unrolled thread
| Started by | Oleg Nesterov <oleg@redhat.com> |
|---|---|
| First post | 2015-10-14 21:00 +0200 |
| Last post | 2015-10-15 17:40 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" Oleg Nesterov <oleg@redhat.com> - 2015-10-14 21:00 +0200
Re: [PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" Frederic Weisbecker <fweisbec@gmail.com> - 2015-10-15 15:40 +0200
Re: [PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" Oleg Nesterov <oleg@redhat.com> - 2015-10-15 17:30 +0200
Re: [PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" Frederic Weisbecker <fweisbec@gmail.com> - 2015-10-15 17:40 +0200
| From | Oleg Nesterov <oleg@redhat.com> |
|---|---|
| Date | 2015-10-14 21:00 +0200 |
| Subject | [PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" |
| Message-ID | <qjzrj-7fk-9@gated-at.bofh.it> |
This reverts commit bb304a5c6fc63d8506cd9741a3a5f35b73605625.
Because this patch leads to kthread zombies.
call_usermodehelper_exec_sync() does fork() + wait() with "unignored"
SIGCHLD. What we have missed is that this worker thread can have other
children previously forked by call_usermodehelper_exec_work() without
UMH_WAIT_PROC. If such a child exits in between it becomes a zombie
and nobody can reap it (unless/until this worker thread exits too).
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
---
kernel/kmod.c | 44 ++++++++++++++++++++++++--------------------
1 file changed, 24 insertions(+), 20 deletions(-)
diff --git a/kernel/kmod.c b/kernel/kmod.c
index da98d05..d38b2da 100644
--- a/kernel/kmod.c
+++ b/kernel/kmod.c
@@ -265,9 +265,15 @@ out:
do_exit(0);
}
-/* Handles UMH_WAIT_PROC. */
-static void call_usermodehelper_exec_sync(struct subprocess_info *sub_info)
+/*
+ * Handles UMH_WAIT_PROC. Our parent (unbound workqueue) might not be able to
+ * run enough instances to handle usermodehelper completions without blocking
+ * some other pending requests. That's why we use a kernel thread dedicated for
+ * that purpose.
+ */
+static int call_usermodehelper_exec_sync(void *data)
{
+ struct subprocess_info *sub_info = data;
pid_t pid;
/* If SIGCLD is ignored sys_wait4 won't populate the status. */
@@ -281,9 +287,9 @@ static void call_usermodehelper_exec_sync(struct subprocess_info *sub_info)
* Normally it is bogus to call wait4() from in-kernel because
* wait4() wants to write the exit code to a userspace address.
* But call_usermodehelper_exec_sync() always runs as kernel
- * thread (workqueue) and put_user() to a kernel address works
- * OK for kernel threads, due to their having an mm_segment_t
- * which spans the entire address space.
+ * thread and put_user() to a kernel address works OK for kernel
+ * threads, due to their having an mm_segment_t which spans the
+ * entire address space.
*
* Thus the __user pointer cast is valid here.
*/
@@ -298,21 +304,19 @@ static void call_usermodehelper_exec_sync(struct subprocess_info *sub_info)
sub_info->retval = ret;
}
- /* Restore default kernel sig handler */
- kernel_sigaction(SIGCHLD, SIG_IGN);
-
umh_complete(sub_info);
+ do_exit(0);
}
/*
- * We need to create the usermodehelper kernel thread from a task that is affine
+ * This function doesn't strictly needs to be called asynchronously. But we
+ * need to create the usermodehelper kernel threads from a task that is affine
* to an optimized set of CPUs (or nohz housekeeping ones) such that they
* inherit a widest affinity irrespective of call_usermodehelper() callers with
* possibly reduced affinity (eg: per-cpu workqueues). We don't want
* usermodehelper targets to contend a busy CPU.
*
- * Unbound workqueues provide such wide affinity and allow to block on
- * UMH_WAIT_PROC requests without blocking pending request (up to some limit).
+ * Unbound workqueues provide such wide affinity.
*
* Besides, workqueues provide the privilege level that caller might not have
* to perform the usermodehelper request.
@@ -322,18 +326,18 @@ static void call_usermodehelper_exec_work(struct work_struct *work)
{
struct subprocess_info *sub_info =
container_of(work, struct subprocess_info, work);
+ pid_t pid;
- if (sub_info->wait & UMH_WAIT_PROC) {
- call_usermodehelper_exec_sync(sub_info);
- } else {
- pid_t pid;
-
+ if (sub_info->wait & UMH_WAIT_PROC)
+ pid = kernel_thread(call_usermodehelper_exec_sync, sub_info,
+ CLONE_FS | CLONE_FILES | SIGCHLD);
+ else
pid = kernel_thread(call_usermodehelper_exec_async, sub_info,
SIGCHLD);
- if (pid < 0) {
- sub_info->retval = pid;
- umh_complete(sub_info);
- }
+
+ if (pid < 0) {
+ sub_info->retval = pid;
+ umh_complete(sub_info);
}
}
--
2.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Frederic Weisbecker <fweisbec@gmail.com> |
|---|---|
| Date | 2015-10-15 15:40 +0200 |
| Subject | Re: [PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" |
| Message-ID | <qjQVb-7Re-11@gated-at.bofh.it> |
| In reply to | #1247076 |
On Wed, Oct 14, 2015 at 08:52:09PM +0200, Oleg Nesterov wrote: > This reverts commit bb304a5c6fc63d8506cd9741a3a5f35b73605625. > > Because this patch leads to kthread zombies. > > call_usermodehelper_exec_sync() does fork() + wait() with "unignored" > SIGCHLD. What we have missed is that this worker thread can have other > children previously forked by call_usermodehelper_exec_work() without > UMH_WAIT_PROC. If such a child exits in between it becomes a zombie > and nobody can reap it (unless/until this worker thread exits too). I missed that indeed. But then when we create the async thread with UMH_NO_WAIT, who reaps it? It's created by the workqueue which never exits. And on others cases, who buries the sync thread? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Oleg Nesterov <oleg@redhat.com> |
|---|---|
| Date | 2015-10-15 17:30 +0200 |
| Subject | Re: [PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" |
| Message-ID | <qjSDF-1Zy-55@gated-at.bofh.it> |
| In reply to | #1247801 |
On 10/15, Frederic Weisbecker wrote: > > On Wed, Oct 14, 2015 at 08:52:09PM +0200, Oleg Nesterov wrote: > > This reverts commit bb304a5c6fc63d8506cd9741a3a5f35b73605625. > > > > Because this patch leads to kthread zombies. > > > > call_usermodehelper_exec_sync() does fork() + wait() with "unignored" > > SIGCHLD. What we have missed is that this worker thread can have other > > children previously forked by call_usermodehelper_exec_work() without > > UMH_WAIT_PROC. If such a child exits in between it becomes a zombie > > and nobody can reap it (unless/until this worker thread exits too). > > I missed that indeed. Heh me too ;) > But then when we create the async thread with > UMH_NO_WAIT, who reaps it? It's created by the workqueue which never > exits. It is auto-reaped because SIGCHILD is ignored. And this is why bb304a5c6fc6 is wrong; it can die while UMH_WAIT_PROC case waits for the new child. > And on others cases, who buries the sync thread? The same. Please see V2 I sent. I'll try to send more cleanups soon to make this all more explicit. Oleg. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Frederic Weisbecker <fweisbec@gmail.com> |
|---|---|
| Date | 2015-10-15 17:40 +0200 |
| Subject | Re: [PATCH 1/1] Revert "kmod: handle UMH_WAIT_PROC from system unbound workqueue" |
| Message-ID | <qjSNk-2aP-11@gated-at.bofh.it> |
| In reply to | #1247894 |
On Thu, Oct 15, 2015 at 05:18:19PM +0200, Oleg Nesterov wrote: > On 10/15, Frederic Weisbecker wrote: > > > > On Wed, Oct 14, 2015 at 08:52:09PM +0200, Oleg Nesterov wrote: > > > This reverts commit bb304a5c6fc63d8506cd9741a3a5f35b73605625. > > > > > > Because this patch leads to kthread zombies. > > > > > > call_usermodehelper_exec_sync() does fork() + wait() with "unignored" > > > SIGCHLD. What we have missed is that this worker thread can have other > > > children previously forked by call_usermodehelper_exec_work() without > > > UMH_WAIT_PROC. If such a child exits in between it becomes a zombie > > > and nobody can reap it (unless/until this worker thread exits too). > > > > I missed that indeed. > > Heh me too ;) > > > But then when we create the async thread with > > UMH_NO_WAIT, who reaps it? It's created by the workqueue which never > > exits. > > It is auto-reaped because SIGCHILD is ignored. And this is why > bb304a5c6fc6 is wrong; it can die while UMH_WAIT_PROC case waits > for the new child. Oooh, that's subtle! > > > And on others cases, who buries the sync thread? > > The same. > > Please see V2 I sent. I'll try to send more cleanups soon to make > this all more explicit. Ok. > Oleg. > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web