procps/src
Chris Down 4b44ab98c1 pgrep: Add support for ignoring ancestors with -A/--ignore-ancestors
pgrep and friends naturally filter their own processes from their
matches. The same issue can occur when elevating with tools like sudo or
doas, where the elevating shim layers linger as a parent and are
returned in the results. For example:

    % sudo pkill -9 -cf someelevatedcmdline
    1
    zsh: killed     sudo pkill -9 -cf someelevatedcmdline

This is a situation we've actually seen in production, where some poor
soul changes how permission management works (for example with Linux's
hidepid option), needs to elevate a pgrep or pkill call, and now ends up
with more than they bargained for. Even after the issue is noticed,
resolving it requires reinventing some of the pgrep logic, which is
unfortunate.

This commit adds the -A/--ignore-ancestors option which excludes pgrep's
ancestors from the results:

    % sudo ./pkill -9 -Acf someelevatedcmdline
    0

We looks at multiple layers of the process hierarchy because, while
things like sudo only have one layer of shimming, some mechanisms (like
those found in a typical container manager like those found in Docker or
Kubernetes) may have many more.

Signed-off-by: Chris Down <chris@chrisdown.name>
2022-08-31 07:37:10 +00:00
..
ps build-sys: Relocate lib/ 2022-08-29 20:28:03 +10:00
tests build-sys: Relocate lib/ 2022-08-29 20:28:03 +10:00
top build-sys: Relocate lib/ 2022-08-29 20:28:03 +10:00
free.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
kill.c misc: Move all binaries to src 2022-08-29 18:29:28 +10:00
pgrep.c pgrep: Add support for ignoring ancestors with -A/--ignore-ancestors 2022-08-31 07:37:10 +00:00
pidof.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
pmap.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
pwdx.c misc: Move all binaries to src 2022-08-29 18:29:28 +10:00
skill.c skill: Update include location too 2022-08-29 21:37:40 +10:00
slabtop.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
sysctl.c misc: Move all binaries to src 2022-08-29 18:29:28 +10:00
tload.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
uptime.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
vmstat.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
w.c build-sys: Relocate library to library/ 2022-08-29 19:02:44 +10:00
watch.c misc: Move all binaries to src 2022-08-29 18:29:28 +10:00