1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| #include <linux/bpf.h>
| #include "bpf_helpers.h"
| #include "bpf_util.h"
| #include "bpf_endian.h"
|
| int _version SEC("version") = 1;
|
| #define bpf_printk(fmt, ...) \
| ({ \
| char ____fmt[] = fmt; \
| bpf_trace_printk(____fmt, sizeof(____fmt), \
| ##__VA_ARGS__); \
| })
|
| SEC("sk_msg1")
| int bpf_prog1(struct sk_msg_md *msg)
| {
| void *data_end = (void *)(long) msg->data_end;
| void *data = (void *)(long) msg->data;
|
| char *d;
|
| if (data + 8 > data_end)
| return SK_DROP;
|
| bpf_printk("data length %i\n", (__u64)msg->data_end - (__u64)msg->data);
| d = (char *)data;
| bpf_printk("hello sendmsg hook %i %i\n", d[0], d[1]);
|
| return SK_PASS;
| }
|
| char _license[] SEC("license") = "GPL";
|
|