Bug 214269 - captree should do a better job of deduplicating displayed trees
Summary: captree should do a better job of deduplicating displayed trees
Status: RESOLVED CODE_FIX
Alias: None
Product: Tools
Classification: Unclassified
Component: libcap (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: Andrew G. Morgan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-09-02 03:20 UTC by Andrew G. Morgan
Modified: 2021-09-02 05:38 UTC (History)
0 users

See Also:
Kernel Version: n/a
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description Andrew G. Morgan 2021-09-02 03:20:26 UTC
Consider the following:

  su foo
    su bar
      su foo

When we ask captree to display 'su' (I'm using the contrib/sucap/su example here to enable ambient inheritance through pam_cap.so) it prints:

--su(43214) "=p"
  +-bash(43240) "cap_setfcap=eip" [^cap_setfcap]
    +-su(43817) "=p"
      +-bash(43826) "cap_setfcap=eip" [^cap_setfcap]
        +-su(43864) "=p"
          +-bash(43867)
--su(43817) "=p"
  +-bash(43826) "cap_setfcap=eip" [^cap_setfcap]
    +-su(43864) "=p"
      +-bash(43867)
--su(43864) "=p"
  +-bash(43867)

That is, captree is find every instance of 'su' and redundantly displaying the process tree beneath it. Ideally, captree would just display:

--su(43214) "=p"
  +-bash(43240) "cap_setfcap=eip" [^cap_setfcap]
    +-su(43817) "=p"
      +-bash(43826) "cap_setfcap=eip" [^cap_setfcap]
        +-su(43864) "=p"
          +-bash(43867)

There are two problems here:

  1. if a PID has been displayed it shouldn't be displayed again
  2. if 1 is true, it is vital that we pick the oldest 'su' for the root of the tree.

I'm going to fix this in two commits. The first (1) is easier, and will cover all use cases until the PID space wraps around.
Comment 1 Andrew G. Morgan 2021-09-02 03:26:57 UTC
Sigh, the example above should have been "consider..."

  su foo
    su foo
      su bar
Comment 2 Andrew G. Morgan 2021-09-02 03:28:23 UTC
This fixes (1):

https://git.kernel.org/pub/scm/libs/libcap/libcap.git/commit/?id=142ad758ffaaec1b4c4e5e7c61287a943f21ff7b

(2) needs a little more thought.

Note You need to log in before you can comment on or make changes to this bug.