Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Nov 2017 12:40:01 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 223745] PROC_REAP_KILL misses descendants if another process has become a reaper in between
Message-ID:  <bug-223745-8@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223745

            Bug ID: 223745
           Summary: PROC_REAP_KILL misses descendants if another process
                    has become a reaper in between
           Product: Base System
           Version: CURRENT
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: kern
          Assignee: freebsd-bugs@FreeBSD.org
          Reporter: muh.muhten@gmail.com

PROC_REAP_KILL sends a signal to processes that (when REAPER_KILL_CHILDREN =
is
not set) _are to be reaped by_ the reaper of the specified process.

If that reaper has a descendant which has acquired reaper status, then the
descendant reaper's descendants will not be considered descendants of the
reaper of the specified process.

An implication is that, if a reaper kills all its descendants with SIGKILL,=
 it
can still have children reparented to it due to their reaper getting killed.

I don't see many situations where it would be useful to signal a paraphylet=
ic
subtree of a reaper's descendant. On the other hand, it would be useful to =
be
signal a subtree in such a way that a process cannot "escape" being killed.=
 The
latter is sort of achieved by repeatedly signalling all descendants of a re=
aper
until no children can be killed, but the call has not failed on any particu=
lar
process (i.e. rk_fpid =3D=3D -1); however, this requires that the reaper be
specified by its own pid (and not that of a descendant, since that descenda=
nt
will die) and on the whole does not seem reasonable.

I suggest a flag for PROC_REAP_KILL to recursively kill the descendants of
reaper descendants of reapers.

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-223745-8>