mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
Use bpf_prog_test_run_opts to test the skb_load_bytes function. Tests the behavior when offset is greater than INT_MAX or a normal value. Signed-off-by: Liu Jian <liujian56@huawei.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Song Liu <songliubraving@fb.com> Link: https://lore.kernel.org/bpf/20220416105801.88708-4-liujian56@huawei.com
19 lines
319 B
C
19 lines
319 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/bpf.h>
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
char _license[] SEC("license") = "GPL";
|
|
|
|
__u32 load_offset = 0;
|
|
int test_result = 0;
|
|
|
|
SEC("tc")
|
|
int skb_process(struct __sk_buff *skb)
|
|
{
|
|
char buf[16];
|
|
|
|
test_result = bpf_skb_load_bytes(skb, load_offset, buf, 10);
|
|
|
|
return 0;
|
|
}
|