Skip to content

Commit 7ec9fce

Browse files
ebirgerborkmann
authored andcommitted
ip_tunnel: Respect tunnel key's "flow_flags" in IP tunnels
Commit 451ef36 ("ip_tunnels: Add new flow flags field to ip_tunnel_key") added a "flow_flags" member to struct ip_tunnel_key which was later used by the commit in the fixes tag to avoid dropping packets with sources that aren't locally configured when set in bpf_set_tunnel_key(). VXLAN and GENEVE were made to respect this flag, ip tunnels like IPIP and GRE were not. This commit fixes this omission by making ip_tunnel_init_flow() receive the flow flags from the tunnel key in the relevant collect_md paths. Fixes: b8fff74 ("bpf: Set flow flag to allow any source IP in bpf_tunnel_key") Signed-off-by: Eyal Birger <[email protected]> Signed-off-by: Daniel Borkmann <[email protected]> Reviewed-by: Paul Chaignon <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
1 parent 14b20b7 commit 7ec9fce

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,8 @@ mlxsw_sp_span_gretap4_route(const struct net_device *to_dev,
423423

424424
parms = mlxsw_sp_ipip_netdev_parms4(to_dev);
425425
ip_tunnel_init_flow(&fl4, parms.iph.protocol, *daddrp, *saddrp,
426-
0, 0, dev_net(to_dev), parms.link, tun->fwmark, 0);
426+
0, 0, dev_net(to_dev), parms.link, tun->fwmark, 0,
427+
0);
427428

428429
rt = ip_route_output_key(tun->net, &fl4);
429430
if (IS_ERR(rt))

include/net/ip_tunnels.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ static inline void ip_tunnel_init_flow(struct flowi4 *fl4,
246246
__be32 daddr, __be32 saddr,
247247
__be32 key, __u8 tos,
248248
struct net *net, int oif,
249-
__u32 mark, __u32 tun_inner_hash)
249+
__u32 mark, __u32 tun_inner_hash,
250+
__u8 flow_flags)
250251
{
251252
memset(fl4, 0, sizeof(*fl4));
252253

@@ -263,6 +264,7 @@ static inline void ip_tunnel_init_flow(struct flowi4 *fl4,
263264
fl4->fl4_gre_key = key;
264265
fl4->flowi4_mark = mark;
265266
fl4->flowi4_multipath_hash = tun_inner_hash;
267+
fl4->flowi4_flags = flow_flags;
266268
}
267269

268270
int ip_tunnel_init(struct net_device *dev);

net/ipv4/ip_gre.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ static int gre_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
609609
ip_tunnel_init_flow(&fl4, IPPROTO_GRE, key->u.ipv4.dst, key->u.ipv4.src,
610610
tunnel_id_to_key32(key->tun_id),
611611
key->tos & ~INET_ECN_MASK, dev_net(dev), 0,
612-
skb->mark, skb_get_hash(skb));
612+
skb->mark, skb_get_hash(skb), key->flow_flags);
613613
rt = ip_route_output_key(dev_net(dev), &fl4);
614614
if (IS_ERR(rt))
615615
return PTR_ERR(rt);

net/ipv4/ip_tunnel.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ static int ip_tunnel_bind_dev(struct net_device *dev)
295295
ip_tunnel_init_flow(&fl4, iph->protocol, iph->daddr,
296296
iph->saddr, tunnel->parms.o_key,
297297
RT_TOS(iph->tos), dev_net(dev),
298-
tunnel->parms.link, tunnel->fwmark, 0);
298+
tunnel->parms.link, tunnel->fwmark, 0, 0);
299299
rt = ip_route_output_key(tunnel->net, &fl4);
300300

301301
if (!IS_ERR(rt)) {
@@ -570,7 +570,8 @@ void ip_md_tunnel_xmit(struct sk_buff *skb, struct net_device *dev,
570570
}
571571
ip_tunnel_init_flow(&fl4, proto, key->u.ipv4.dst, key->u.ipv4.src,
572572
tunnel_id_to_key32(key->tun_id), RT_TOS(tos),
573-
dev_net(dev), 0, skb->mark, skb_get_hash(skb));
573+
dev_net(dev), 0, skb->mark, skb_get_hash(skb),
574+
key->flow_flags);
574575
if (tunnel->encap.type != TUNNEL_ENCAP_NONE)
575576
goto tx_error;
576577

@@ -729,7 +730,7 @@ void ip_tunnel_xmit(struct sk_buff *skb, struct net_device *dev,
729730
ip_tunnel_init_flow(&fl4, protocol, dst, tnl_params->saddr,
730731
tunnel->parms.o_key, RT_TOS(tos),
731732
dev_net(dev), tunnel->parms.link,
732-
tunnel->fwmark, skb_get_hash(skb));
733+
tunnel->fwmark, skb_get_hash(skb), 0);
733734

734735
if (ip_tunnel_encap(skb, tunnel, &protocol, &fl4) < 0)
735736
goto tx_error;

0 commit comments

Comments
 (0)