1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2017-18 David Ahern <dsahern@gmail.com>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 #define KBUILD_MODNAME "foo"
14 #include <uapi/linux/bpf.h>
16 #include <linux/if_ether.h>
17 #include <linux/if_packet.h>
18 #include <linux/if_vlan.h>
20 #include <linux/ipv6.h>
22 #include "bpf_helpers.h"
24 #define IPV6_FLOWINFO_MASK cpu_to_be32(0x0FFFFFFF)
26 struct bpf_map_def
SEC("maps") tx_port
= {
27 .type
= BPF_MAP_TYPE_DEVMAP
,
28 .key_size
= sizeof(int),
29 .value_size
= sizeof(int),
33 /* from include/net/ip.h */
34 static __always_inline
int ip_decrease_ttl(struct iphdr
*iph
)
36 u32 check
= (__force u32
)iph
->check
;
38 check
+= (__force u32
)htons(0x0100);
39 iph
->check
= (__force __sum16
)(check
+ (check
>= 0xFFFF));
43 static __always_inline
int xdp_fwd_flags(struct xdp_md
*ctx
, u32 flags
)
45 void *data_end
= (void *)(long)ctx
->data_end
;
46 void *data
= (void *)(long)ctx
->data
;
47 struct bpf_fib_lookup fib_params
;
48 struct ethhdr
*eth
= data
;
55 nh_off
= sizeof(*eth
);
56 if (data
+ nh_off
> data_end
)
59 __builtin_memset(&fib_params
, 0, sizeof(fib_params
));
61 h_proto
= eth
->h_proto
;
62 if (h_proto
== htons(ETH_P_IP
)) {
65 if (iph
+ 1 > data_end
)
71 fib_params
.family
= AF_INET
;
72 fib_params
.tos
= iph
->tos
;
73 fib_params
.l4_protocol
= iph
->protocol
;
76 fib_params
.tot_len
= ntohs(iph
->tot_len
);
77 fib_params
.ipv4_src
= iph
->saddr
;
78 fib_params
.ipv4_dst
= iph
->daddr
;
79 } else if (h_proto
== htons(ETH_P_IPV6
)) {
80 struct in6_addr
*src
= (struct in6_addr
*) fib_params
.ipv6_src
;
81 struct in6_addr
*dst
= (struct in6_addr
*) fib_params
.ipv6_dst
;
84 if (ip6h
+ 1 > data_end
)
87 if (ip6h
->hop_limit
<= 1)
90 fib_params
.family
= AF_INET6
;
91 fib_params
.flowinfo
= *(__be32
*)ip6h
& IPV6_FLOWINFO_MASK
;
92 fib_params
.l4_protocol
= ip6h
->nexthdr
;
95 fib_params
.tot_len
= ntohs(ip6h
->payload_len
);
102 fib_params
.ifindex
= ctx
->ingress_ifindex
;
104 out_index
= bpf_fib_lookup(ctx
, &fib_params
, sizeof(fib_params
), flags
);
106 /* verify egress index has xdp support
107 * TO-DO bpf_map_lookup_elem(&tx_port, &key) fails with
108 * cannot pass map_type 14 into func bpf_map_lookup_elem#1:
109 * NOTE: without verification that egress index supports XDP
110 * forwarding packets are dropped.
113 if (h_proto
== htons(ETH_P_IP
))
114 ip_decrease_ttl(iph
);
115 else if (h_proto
== htons(ETH_P_IPV6
))
118 memcpy(eth
->h_dest
, fib_params
.dmac
, ETH_ALEN
);
119 memcpy(eth
->h_source
, fib_params
.smac
, ETH_ALEN
);
120 return bpf_redirect_map(&tx_port
, out_index
, 0);
127 int xdp_fwd_prog(struct xdp_md
*ctx
)
129 return xdp_fwd_flags(ctx
, 0);
132 SEC("xdp_fwd_direct")
133 int xdp_fwd_direct_prog(struct xdp_md
*ctx
)
135 return xdp_fwd_flags(ctx
, BPF_FIB_LOOKUP_DIRECT
);
138 char _license
[] SEC("license") = "GPL";