Re: [PATCH net-next v3 1/2] l2tp: account for IP version in SKB headroom
Tom Parkin <[email protected]> Tue, 4 Aug 2026 09:03:35 +0100
| Newsgroups | gmane.linux.kernel,gmane.linux.network |
|---|---|
| Message-ID | <[email protected]> |
--gMbjqxlPp9CFpvop Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 30, 2026 at 02:21:04 +0200, David Bauer wrote: > Account for the IP version of the tunnel when accounting skb headroom on > xmit. This avoids having to potentially copy the skb a second time down > the stack due to allocating not enough space for IPv6 headers in case > the tunnel uses IPv6. >=20 > Signed-off-by: David Bauer <[email protected]> > --- > net/l2tp/l2tp_core.c | 3 ++- > net/l2tp/l2tp_core.h | 1 + > net/l2tp/l2tp_eth.c | 9 ++------- > 3 files changed, 5 insertions(+), 8 deletions(-) >=20 > diff --git a/net/l2tp/l2tp_core.c b/net/l2tp/l2tp_core.c > index 4712cc41881a3..d6fa0f7436629 100644 > --- a/net/l2tp/l2tp_core.c > +++ b/net/l2tp/l2tp_core.c > @@ -1237,7 +1237,7 @@ static int l2tp_xmit_core(struct l2tp_session *sess= ion, struct sk_buff *skb, uns > * make room. Adjust truesize. > */ > uhlen =3D (tunnel->encap =3D=3D L2TP_ENCAPTYPE_UDP) ? sizeof(*uh) : 0; > - headroom =3D NET_SKB_PAD + sizeof(struct iphdr) + uhlen + session->hdr_= len; > + headroom =3D NET_SKB_PAD + tunnel->l3_overhead + uhlen + session->hdr_l= en; > if (skb_cow_head(skb, headroom)) { > kfree_skb(skb); > return NET_XMIT_DROP; > @@ -1688,6 +1688,7 @@ int l2tp_tunnel_register(struct l2tp_tunnel *tunnel= , struct net *net, > } > =20 > sk->sk_allocation =3D GFP_ATOMIC; > + tunnel->l3_overhead =3D kernel_sock_ip_overhead(sk); > release_sock(sk); > =20 > sock_hold(sk); > diff --git a/net/l2tp/l2tp_core.h b/net/l2tp/l2tp_core.h > index ffd8ced3a51ff..aab574376d95f 100644 > --- a/net/l2tp/l2tp_core.h > +++ b/net/l2tp/l2tp_core.h > @@ -167,6 +167,7 @@ struct l2tp_tunnel { > u32 tunnel_id; > u32 peer_tunnel_id; > int version; /* 2=3D>L2TPv2, 3=3D>L2TPv3 */ > + int l3_overhead; /* IP header overhead */ > =20 > char name[L2TP_TUNNEL_NAME_MAX]; /* for logging */ > enum l2tp_encap_type encap; > diff --git a/net/l2tp/l2tp_eth.c b/net/l2tp/l2tp_eth.c > index a4956ef9574cc..9e5f9deac08cf 100644 > --- a/net/l2tp/l2tp_eth.c > +++ b/net/l2tp/l2tp_eth.c > @@ -188,7 +188,6 @@ static void l2tp_eth_adjust_mtu(struct l2tp_tunnel *t= unnel, > struct net_device *dev) > { > unsigned int overhead =3D 0; > - u32 l3_overhead =3D 0; > u32 mtu; > =20 > /* if the encap is UDP, account for UDP header size */ > @@ -197,11 +196,7 @@ static void l2tp_eth_adjust_mtu(struct l2tp_tunnel *= tunnel, > dev->needed_headroom +=3D sizeof(struct udphdr); > } > =20 > - lock_sock(tunnel->sock); > - l3_overhead =3D kernel_sock_ip_overhead(tunnel->sock); > - release_sock(tunnel->sock); > - > - if (l3_overhead =3D=3D 0) { > + if (tunnel->l3_overhead =3D=3D 0) { > /* L3 Overhead couldn't be identified, this could be > * because tunnel->sock was NULL or the socket's > * address family was not IPv4 or IPv6, Minor nit: now that kernel_sock_ip_overhead() is called by l2tp_tunnel_register() at a point where sk cannot be NULL, this comment becomes misleading. It'd be worth rewording to be accurate in the context of this patch IMO. > @@ -212,7 +207,7 @@ static void l2tp_eth_adjust_mtu(struct l2tp_tunnel *t= unnel, > /* Adjust MTU, factor overhead - underlay L3, overlay L2 hdr > * UDP overhead, if any, was already factored in above. > */ > - overhead +=3D session->hdr_len + ETH_HLEN + l3_overhead; > + overhead +=3D session->hdr_len + ETH_HLEN + tunnel->l3_overhead; > =20 > mtu =3D l2tp_tunnel_dst_mtu(tunnel) - overhead; > if (mtu < dev->min_mtu || mtu > dev->max_mtu) > --=20 > 2.53.0 >=20 >=20 --=20 Tom Parkin Katalix Systems Ltd https://katalix.com Catalysts for your Embedded Linux software development --gMbjqxlPp9CFpvop Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEsUkgyDzMwrj81nq0lIwGZQq6i9AFAmpxnNEACgkQlIwGZQq6 i9CL8Af/X1ODwav7TlEPchULqL0srjMpELEyXklyb6l+D5dkOYru/WbOr8SZUrPr EyReRQFcmdjJpKm+Ui4PUrpQLxJG/iufuySHn59dos/j4zFNJtoXMC2r/BrvZz6D e6X8tfDvmVD5YJXcsOsiO+JBinWmlnrkUux2nz35zh1bhz3e4YvnDfy+JHFLvzum loq76L9qiauwu7iwCyHbZxb8yLBb09NZ5rt8mahiH/20d9k+Dw5dzdqGNtiisyfE mBVv6+Mg+km6YqTiSTqqeW277cfOLXIlbOJJYpqfpLn2b8cgOCm+mV5ZklD02vi4 oWzrKN8LvfgcjKrAMbQ2zXXxrTtu9A== =bDrI -----END PGP SIGNATURE----- --gMbjqxlPp9CFpvop--