Skip to content

Commit 9c5457c

Browse files
committed
[BPF] make host networked propcesses work with vxlan
Tunnel key is set at the vxlan device as that the the first place where to set it.
1 parent a9a024c commit 9c5457c

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

felix/bpf-gpl/fib_co_re.h

+27
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,33 @@ static CALI_BPF_INLINE int forward_or_drop(struct cali_tc_ctx *ctx)
164164
goto skip_fib;
165165
}
166166
}
167+
} else if (CALI_F_VXLAN && CALI_F_TO_HEP) {
168+
if (!(ctx->skb->mark & CALI_SKB_MARK_SEEN)) {
169+
/* packet to vxlan from the host, needs to set tunnel key */
170+
struct cali_rt *dest_rt = cali_rt_lookup(&ctx->state->ip_dst);
171+
if (dest_rt == NULL) {
172+
CALI_DEBUG("No route for " IP_FMT, &ctx->state->ip_dst);
173+
goto deny;
174+
}
175+
if (!cali_rt_is_vxlan(dest_rt)) {
176+
CALI_DEBUG("Not a vxlan route for " IP_FMT " at vxlan device", &ctx->state->ip_dst);
177+
goto deny;
178+
}
179+
180+
struct bpf_tunnel_key key = {
181+
.tunnel_id = 4096,
182+
.tunnel_ttl = 16,
183+
};
184+
#ifdef IPVER6
185+
ipv6_addr_t_to_be32_4_ip(key.remote_ipv6, &dest_rt->next_hop);
186+
#else
187+
key.remote_ipv4 = bpf_htonl(dest_rt->next_hop);
188+
#endif
189+
190+
int err = bpf_skb_set_tunnel_key(
191+
ctx->skb, &key, offsetof(struct bpf_tunnel_key, local_ipv4), BPF_F_ZERO_CSUM_TX);
192+
CALI_DEBUG("bpf_skb_set_tunnel_key %d", err);
193+
}
167194
}
168195

169196
#if CALI_FIB_ENABLED

felix/dataplane/linux/bpf_route_mgr.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,12 @@ func (m *bpfRouteManager) calculateRoute(cidr ip.CIDR) routes.ValueInterface {
359359
}
360360
} else if rts&proto.RouteType_REMOTE_TUNNEL == proto.RouteType_REMOTE_TUNNEL {
361361
flags |= routes.FlagsRemoteTunneledHost
362-
route = m.bpfOps.NewValueWithNextHop(flags, cidr.Addr())
362+
switch cgRoute.IpPoolType {
363+
case proto.IPPoolType_VXLAN:
364+
flags |= routes.FlagVXLAN
365+
}
366+
nodeIP := net.ParseIP(cgRoute.DstNodeIp)
367+
route = m.bpfOps.NewValueWithNextHop(flags, ip.FromNetIP(nodeIP))
363368
} else if rts&proto.RouteType_REMOTE_HOST == proto.RouteType_REMOTE_HOST {
364369
flags |= routes.FlagsRemoteHost
365370
if cgRoute.DstNodeIp == "" {

0 commit comments

Comments
 (0)