Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9887cba1 authored by Willem de Bruijn's avatar Willem de Bruijn Committed by David S. Miller
Browse files

ip: limit use of gso_size to udp



The ipcm(6)_cookie field gso_size is set only in the udp path. The ip
layer copies this to cork only if sk_type is SOCK_DGRAM. This check
proved too permissive. Ping and l2tp sockets have the same type.

Limit to sockets of type SOCK_DGRAM and protocol IPPROTO_UDP to
exclude ping sockets.

v1 -> v2
- remove irrelevant whitespace changes

Fixes: bec1f6f6 ("udp: generate gso with UDP_SEGMENT")
Reported-by: default avatarMaciej Żenczykowski <maze@google.com>
Signed-off-by: default avatarWillem de Bruijn <willemb@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b6cfffa7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1145,7 +1145,8 @@ static int ip_setup_cork(struct sock *sk, struct inet_cork *cork,
	cork->fragsize = ip_sk_use_pmtu(sk) ?
			 dst_mtu(&rt->dst) : rt->dst.dev->mtu;

	cork->gso_size = sk->sk_type == SOCK_DGRAM ? ipc->gso_size : 0;
	cork->gso_size = sk->sk_type == SOCK_DGRAM &&
			 sk->sk_protocol == IPPROTO_UDP ? ipc->gso_size : 0;
	cork->dst = &rt->dst;
	cork->length = 0;
	cork->ttl = ipc->ttl;
+2 −1
Original line number Diff line number Diff line
@@ -1219,7 +1219,8 @@ static int ip6_setup_cork(struct sock *sk, struct inet_cork_full *cork,
	if (mtu < IPV6_MIN_MTU)
		return -EINVAL;
	cork->base.fragsize = mtu;
	cork->base.gso_size = sk->sk_type == SOCK_DGRAM ? ipc6->gso_size : 0;
	cork->base.gso_size = sk->sk_type == SOCK_DGRAM &&
			      sk->sk_protocol == IPPROTO_UDP ? ipc6->gso_size : 0;

	if (dst_allfrag(xfrm_dst_path(&rt->dst)))
		cork->base.flags |= IPCORK_ALLFRAG;