bpflist: Display processes with running BPF programs and maps
authorSasha Goldshtein <goldshtn@gmail.com>
Thu, 9 Mar 2017 14:37:50 +0000 (14:37 +0000)
committerSasha Goldshtein <goldshtn@gmail.com>
Thu, 9 Mar 2017 14:37:50 +0000 (14:37 +0000)
commit25933785a9e00882625e2e4af2aa44f2718548ca
tree2b308bc5c9b20671f8ad7f9b947b2859fe0d44d2
parent8968737a8061cdc6cf05a342ae41bb3fbc32abc6
bpflist: Display processes with running BPF programs and maps

This tool displays processes with running BPF programs and maps,
and also optionally kprobes and uprobes. This is a poor-man's version
that snoops BPF file descriptors, as proposed by @brendangregg.

Example:

```
PID    COMM             TYPE     COUNT
4058   fileslower       prog     4
4058   fileslower       map      2
4106   bashreadline     map      1
4106   bashreadline     prog     1
```

Resolves #1036.
README.md
man/man8/bpflist.8 [new file with mode: 0644]
tools/bpflist.py [new file with mode: 0755]
tools/bpflist_example.txt [new file with mode: 0644]