e80f2a0d19
'lport' and 'rport' in bpf_prog1() of sockmap_verdict_prog.c is not used, just remove them. Signed-off-by: Menglong Dong <imagedong@tencent.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Acked-by: Song Liu <songliubraving@fb.com> Link: https://lore.kernel.org/bpf/20220113031658.633290-1-imagedong@tencent.com
34 lines
705 B
C
34 lines
705 B
C
#include <linux/bpf.h>
|
|
#include <bpf/bpf_helpers.h>
|
|
#include <bpf/bpf_endian.h>
|
|
|
|
SEC("sk_skb1")
|
|
int bpf_prog1(struct __sk_buff *skb)
|
|
{
|
|
void *data_end = (void *)(long) skb->data_end;
|
|
void *data = (void *)(long) skb->data;
|
|
__u8 *d = data;
|
|
int err;
|
|
|
|
if (data + 10 > data_end) {
|
|
err = bpf_skb_pull_data(skb, 10);
|
|
if (err)
|
|
return SK_DROP;
|
|
|
|
data_end = (void *)(long)skb->data_end;
|
|
data = (void *)(long)skb->data;
|
|
if (data + 10 > data_end)
|
|
return SK_DROP;
|
|
}
|
|
|
|
/* This write/read is a bit pointless but tests the verifier and
|
|
* strparser handler for read/write pkt data and access into sk
|
|
* fields.
|
|
*/
|
|
d = data;
|
|
d[7] = 1;
|
|
return skb->len;
|
|
}
|
|
|
|
char _license[] SEC("license") = "GPL";
|