mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
Add nk_forward.bpf.c, a BPF program that forwards skbs matching some IPv6 prefix received on eth0 ifindex to a specified netkit ifindex. This will be needed by netkit container tests. Signed-off-by: David Wei <dw@davidwei.uk> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Stanislav Fomichev <sdf@fomichev.me> Reviewed-by: Nikolay Aleksandrov <razor@blackwall.org> Link: https://patch.msgid.link/20260115082603.219152-14-daniel@iogearbox.net Signed-off-by: Paolo Abeni <pabeni@redhat.com>
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/bpf.h>
|
|
#include <linux/pkt_cls.h>
|
|
#include <linux/if_ether.h>
|
|
#include <linux/ipv6.h>
|
|
#include <linux/in6.h>
|
|
#include <bpf/bpf_endian.h>
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
#define TC_ACT_OK 0
|
|
#define ETH_P_IPV6 0x86DD
|
|
|
|
#define ctx_ptr(field) ((void *)(long)(field))
|
|
|
|
#define v6_p64_equal(a, b) (a.s6_addr32[0] == b.s6_addr32[0] && \
|
|
a.s6_addr32[1] == b.s6_addr32[1])
|
|
|
|
volatile __u32 netkit_ifindex;
|
|
volatile __u8 ipv6_prefix[16];
|
|
|
|
SEC("tc/ingress")
|
|
int tc_redirect_peer(struct __sk_buff *skb)
|
|
{
|
|
void *data_end = ctx_ptr(skb->data_end);
|
|
void *data = ctx_ptr(skb->data);
|
|
struct in6_addr *peer_addr;
|
|
struct ipv6hdr *ip6h;
|
|
struct ethhdr *eth;
|
|
|
|
peer_addr = (struct in6_addr *)ipv6_prefix;
|
|
|
|
if (skb->protocol != bpf_htons(ETH_P_IPV6))
|
|
return TC_ACT_OK;
|
|
|
|
eth = data;
|
|
if ((void *)(eth + 1) > data_end)
|
|
return TC_ACT_OK;
|
|
|
|
ip6h = data + sizeof(struct ethhdr);
|
|
if ((void *)(ip6h + 1) > data_end)
|
|
return TC_ACT_OK;
|
|
|
|
if (!v6_p64_equal(ip6h->daddr, (*peer_addr)))
|
|
return TC_ACT_OK;
|
|
|
|
return bpf_redirect_peer(netkit_ifindex, 0);
|
|
}
|
|
|
|
char __license[] SEC("license") = "GPL";
|