From: Zac Medico <zmedico@gentoo.org>
To: gentoo-portage-dev@lists.gentoo.org
Cc: Zac Medico <zmedico@gentoo.org>
Subject: [gentoo-portage-dev] [PATCH v2] SpawnProcess: re-check cgroup.procs until empty (bug 566420)
Date: Sat, 21 Nov 2015 16:00:31 -0800 [thread overview]
Message-ID: <1448150431-22661-1-git-send-email-zmedico@gentoo.org> (raw)
In-Reply-To: <1448134928-17323-1-git-send-email-zmedico@gentoo.org>
For subshell die support (bug 465008), re-check cgroup.procs until it's
empty, in case any of the listed processes fork before we've had a chance
to kill them.
X-Gentoo-Bug: 566420
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=566420
---
[PATCH v2] limits the cleanup loop to 8 iterations, and logs an eerror
message if there are any lingering pids.
pym/_emerge/SpawnProcess.py | 31 ++++++++++++++++++++++++++++---
1 file changed, 28 insertions(+), 3 deletions(-)
diff --git a/pym/_emerge/SpawnProcess.py b/pym/_emerge/SpawnProcess.py
index 5ab2e67..4ab646d 100644
--- a/pym/_emerge/SpawnProcess.py
+++ b/pym/_emerge/SpawnProcess.py
@@ -16,6 +16,8 @@ from _emerge.SubProcess import SubProcess
import portage
from portage import os
from portage.const import BASH_BINARY
+from portage.localization import _
+from portage.output import EOutput
from portage.util import writemsg_level
from portage.util._async.PipeLogger import PipeLogger
@@ -35,6 +37,10 @@ class SpawnProcess(SubProcess):
__slots__ = ("args",) + \
_spawn_kwarg_names + ("_pipe_logger", "_selinux_type",)
+ # Max number of attempts to kill the processes listed in cgroup.procs,
+ # given that processes may fork before they can be killed.
+ _CGROUP_CLEANUP_RETRY_MAX = 8
+
def _start(self):
if self.fd_pipes is None:
@@ -203,10 +209,24 @@ class SpawnProcess(SubProcess):
elif e.errno != errno.ESRCH:
raise
- # step 1: kill all orphans
- pids = get_pids(self.cgroup)
+ # step 1: kill all orphans (loop in case of new forks)
+ remaining = self._CGROUP_CLEANUP_RETRY_MAX
+ while remaining:
+ remaining -= 1
+ pids = get_pids(self.cgroup)
+ if pids:
+ kill_all(pids, signal.SIGKILL)
+ else:
+ break
+
if pids:
- kill_all(pids, signal.SIGKILL)
+ msg = []
+ msg.append(
+ _("Failed to kill pid(s) in '%(cgroup)s': %(pids)s") % dict(
+ cgroup=os.path.join(self.cgroup, 'cgroup.procs'),
+ pids=' '.join(str(pid) for pid in pids)))
+
+ self._elog('eerror', msg)
# step 2: remove the cgroup
try:
@@ -215,3 +235,8 @@ class SpawnProcess(SubProcess):
# it may be removed already, or busy
# we can't do anything good about it
pass
+
+ def _elog(self, elog_funcname, lines):
+ elog_func = getattr(EOutput(), elog_funcname)
+ for line in lines:
+ elog_func(line)
--
2.4.9
next prev parent reply other threads:[~2015-11-22 0:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-21 19:42 [gentoo-portage-dev] [PATCH] SpawnProcess: re-check cgroup.procs until empty (bug 566420) Zac Medico
2015-11-22 0:00 ` Zac Medico [this message]
2015-11-23 10:32 ` [gentoo-portage-dev] [PATCH v2] " Alexander Berntsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1448150431-22661-1-git-send-email-zmedico@gentoo.org \
--to=zmedico@gentoo.org \
--cc=gentoo-portage-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox