|
@@ -1752,7 +1752,7 @@ static u64 bpf_skb_set_tunnel_key(u64 r1, u64 r2, u64 size, u64 flags, u64 r5)
|
|
|
u8 compat[sizeof(struct bpf_tunnel_key)];
|
|
|
struct ip_tunnel_info *info;
|
|
|
|
|
|
- if (unlikely(flags & ~(BPF_F_TUNINFO_IPV6)))
|
|
|
+ if (unlikely(flags & ~(BPF_F_TUNINFO_IPV6 | BPF_F_ZERO_CSUM_TX)))
|
|
|
return -EINVAL;
|
|
|
if (unlikely(size != sizeof(struct bpf_tunnel_key))) {
|
|
|
switch (size) {
|
|
@@ -1776,7 +1776,7 @@ static u64 bpf_skb_set_tunnel_key(u64 r1, u64 r2, u64 size, u64 flags, u64 r5)
|
|
|
info = &md->u.tun_info;
|
|
|
info->mode = IP_TUNNEL_INFO_TX;
|
|
|
|
|
|
- info->key.tun_flags = TUNNEL_KEY;
|
|
|
+ info->key.tun_flags = TUNNEL_KEY | TUNNEL_CSUM;
|
|
|
info->key.tun_id = cpu_to_be64(from->tunnel_id);
|
|
|
info->key.tos = from->tunnel_tos;
|
|
|
info->key.ttl = from->tunnel_ttl;
|
|
@@ -1787,6 +1787,8 @@ static u64 bpf_skb_set_tunnel_key(u64 r1, u64 r2, u64 size, u64 flags, u64 r5)
|
|
|
sizeof(from->remote_ipv6));
|
|
|
} else {
|
|
|
info->key.u.ipv4.dst = cpu_to_be32(from->remote_ipv4);
|
|
|
+ if (flags & BPF_F_ZERO_CSUM_TX)
|
|
|
+ info->key.tun_flags &= ~TUNNEL_CSUM;
|
|
|
}
|
|
|
|
|
|
return 0;
|