Skip to content

Commit eeb4345

Browse files
0x7f454c46gregkh
authored andcommitted
net/ip6_tunnel: Prevent perpetual tunnel growth
[ Upstream commit 21f4d45 ] Similarly to ipv4 tunnel, ipv6 version updates dev->needed_headroom, too. While ipv4 tunnel headroom adjustment growth was limited in commit 5ae1e99 ("net: ip_tunnel: prevent perpetual headroom growth"), ipv6 tunnel yet increases the headroom without any ceiling. Reflect ipv4 tunnel headroom adjustment limit on ipv6 version. Credits to Francesco Ruggeri, who was originally debugging this issue and wrote local Arista-specific patch and a reproducer. Fixes: 8eb30be ("ipv6: Create ip6_tnl_xmit") Cc: Florian Westphal <[email protected]> Cc: Francesco Ruggeri <[email protected]> Signed-off-by: Dmitry Safonov <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jakub Kicinski <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 599f9fa commit eeb4345

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

include/net/ip_tunnels.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,21 @@ struct metadata_dst *iptunnel_metadata_reply(struct metadata_dst *md,
605605
int skb_tunnel_check_pmtu(struct sk_buff *skb, struct dst_entry *encap_dst,
606606
int headroom, bool reply);
607607

608+
static inline void ip_tunnel_adj_headroom(struct net_device *dev,
609+
unsigned int headroom)
610+
{
611+
/* we must cap headroom to some upperlimit, else pskb_expand_head
612+
* will overflow header offsets in skb_headers_offset_update().
613+
*/
614+
const unsigned int max_allowed = 512;
615+
616+
if (headroom > max_allowed)
617+
headroom = max_allowed;
618+
619+
if (headroom > READ_ONCE(dev->needed_headroom))
620+
WRITE_ONCE(dev->needed_headroom, headroom);
621+
}
622+
608623
int iptunnel_handle_offloads(struct sk_buff *skb, int gso_type_mask);
609624

610625
static inline int iptunnel_pull_offloads(struct sk_buff *skb)

net/ipv4/ip_tunnel.c

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -567,20 +567,6 @@ static int tnl_update_pmtu(struct net_device *dev, struct sk_buff *skb,
567567
return 0;
568568
}
569569

570-
static void ip_tunnel_adj_headroom(struct net_device *dev, unsigned int headroom)
571-
{
572-
/* we must cap headroom to some upperlimit, else pskb_expand_head
573-
* will overflow header offsets in skb_headers_offset_update().
574-
*/
575-
static const unsigned int max_allowed = 512;
576-
577-
if (headroom > max_allowed)
578-
headroom = max_allowed;
579-
580-
if (headroom > READ_ONCE(dev->needed_headroom))
581-
WRITE_ONCE(dev->needed_headroom, headroom);
582-
}
583-
584570
void ip_md_tunnel_xmit(struct sk_buff *skb, struct net_device *dev,
585571
u8 proto, int tunnel_hlen)
586572
{

net/ipv6/ip6_tunnel.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,8 +1257,7 @@ int ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev, __u8 dsfield,
12571257
*/
12581258
max_headroom = LL_RESERVED_SPACE(dst->dev) + sizeof(struct ipv6hdr)
12591259
+ dst->header_len + t->hlen;
1260-
if (max_headroom > READ_ONCE(dev->needed_headroom))
1261-
WRITE_ONCE(dev->needed_headroom, max_headroom);
1260+
ip_tunnel_adj_headroom(dev, max_headroom);
12621261

12631262
err = ip6_tnl_encap(skb, t, &proto, fl6);
12641263
if (err)

0 commit comments

Comments
 (0)