Bug 214269

Summary: captree should do a better job of deduplicating displayed trees
Product: Tools Reporter: Andrew G. Morgan (morgan)
Component: libcapAssignee: Andrew G. Morgan (morgan)
Status: RESOLVED CODE_FIX    
Severity: normal    
Priority: P1    
Hardware: All   
OS: Linux   
Kernel Version: n/a Subsystem:
Regression: No Bisected commit-id:

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.