diff options
author | Daniel Borkmann <[email protected]> | 2023-10-24 23:49:02 +0200 |
---|---|---|
committer | Martin KaFai Lau <[email protected]> | 2023-10-24 16:07:32 -0700 |
commit | bec981a4add6dd6a63065e54e2b2e67c2af6c3fa (patch) | |
tree | acd73a5086c3e112b9673d2ec175ee8a8441c6e5 /scripts/generate_rust_analyzer.py | |
parent | 92a85e18ad4705c66ace55a19f4f8301ef0eb59f (diff) |
bpftool: Extend net dump with netkit progs
Add support to dump BPF programs on netkit via bpftool. This includes both
the BPF link and attach ops programs. Dumped information contain the attach
location, function entry name, program ID and link ID when applicable.
Example with tc BPF link:
# ./bpftool net
xdp:
tc:
nk1(22) netkit/peer tc1 prog_id 43 link_id 12
[...]
Example with json dump:
# ./bpftool net --json | jq
[
{
"xdp": [],
"tc": [
{
"devname": "nk1",
"ifindex": 18,
"kind": "netkit/primary",
"name": "tc1",
"prog_id": 29,
"prog_flags": [],
"link_id": 8,
"link_flags": []
}
],
"flow_dissector": [],
"netfilter": []
}
]
Signed-off-by: Daniel Borkmann <[email protected]>
Reviewed-by: Quentin Monnet <[email protected]>
Acked-by: Martin KaFai Lau <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Martin KaFai Lau <[email protected]>
Diffstat (limited to 'scripts/generate_rust_analyzer.py')
0 files changed, 0 insertions, 0 deletions