英文: BPF tracepoint args and why they're different in different example code 问题 我已经做了很多关于编写用于跟踪点的...
BPF:UDP套接字的sock_ops等效功能
英文: BPF: sock_ops equivalent for UDP sockets 问题 BPF_PROG_TYPE_SOCK_OPS是一种BPF程序类型,当对TCP套接字执行一组操作时会调用它...
eBPF: 存储堆栈变量在映射中时超过了 BPF 堆栈限制
英文: eBPF: BPF stack limit exceeded when storing stack variable in map 问题 我有以下的eBPF程序: #include <s...
在eBPF中不断增加地图标识符(map ids)。
英文: Continuously increasing map ids in eBPF 问题 I am running eBPF sockops program. During testing, I ...
使用BPF从struct msghr中提取数据包数据。
英文: Extract packet data using BPF from struct msghr 问题 以下是您的代码的翻译部分: 我正在尝试钩住sock_sendmsg并打印数据包数据。以下是...
在BPF_CGROUP_INET_INGRESS挂钩上访问入口数据包信息
英文: Access ingress packet data on BPF_CGROUP_INET_INGRESS hook 问题 我想检查特定 cgroup 上传入数据包的数据。我发现 BPF_PR...
BPF_PROG_TYPE_SOCK_OPS 和 BPF_PROG_TYPE_CGROUP_SOCK 之间的区别是什么?
英文: Difference between BPF_PROG_TYPE_SOCK_OPS and BPF_PROG_TYPE_CGROUP_SOCK 问题 The BPF_PROG_TYPE_SOC...
eBPF地图在循环中并发更新和删除
英文: eBPF map concurrent update and delete in a loop 问题 目标情景是我想使用ebpf程序实现流量日志记录,并将该程序附加到不同的网络接口上,使用tc...
将eBPF sockops程序附加到特定容器的cgroup
英文: Attach eBPF sockops program to a specific container cgroup 问题 我想将一个eBPF sockops程序附加到特定的Kubernete...
ebpf kprobe argument not matching the syscall
英文: ebpf kprobe argument not matching the syscall 问题 I'm learning eBPF and I'm playing with it in or...