12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #include <linux/skbuff.h>
- #include <linux/netdevice.h>
- #include <uapi/linux/bpf.h>
- #include <linux/version.h>
- #include "bpf_helpers.h"
- #define _(P) ({typeof(P) val = 0; bpf_probe_read(&val, sizeof(val), &P); val;})
- SEC("kprobe/__netif_receive_skb_core")
- int bpf_prog1(struct pt_regs *ctx)
- {
-
- char devname[IFNAMSIZ];
- struct net_device *dev;
- struct sk_buff *skb;
- int len;
-
- skb = (struct sk_buff *) PT_REGS_PARM1(ctx);
- dev = _(skb->dev);
- len = _(skb->len);
- bpf_probe_read(devname, sizeof(devname), dev->name);
- if (devname[0] == 'l' && devname[1] == 'o') {
- char fmt[] = "skb %p len %d\n";
-
- bpf_trace_printk(fmt, sizeof(fmt), skb, len);
- }
- return 0;
- }
- char _license[] SEC("license") = "GPL";
- u32 _version SEC("version") = LINUX_VERSION_CODE;
|