mirror of
https://github.com/torvalds/linux.git
synced 2026-09-13 23:50:02 +02:00
net: advertise TCP MSS from the configured MTU, not the learned PMTU
The MSS a host puts in its SYN tells the peer how big a segment it may send us. Right now we can shrink it with a PMTU we learned on our own send path, which is the wrong direction entirely. On asymmetric paths this bites - think DSR load balancers, where the request side goes through a smaller-MTU overlay. We learn a small PMTU going out, then advertise a small MSS, and the peer stays capped for the whole connection even though its path back to us is wide. MSS only shows up in the SYN and never grows back. On symmetric paths we lose nothing by dropping it either: the peer runs its own PMTU discovery and usually already knows the real path MTU. So work out the advertised MSS from the configured route or device MTU and ignore the learned PMTU. Our send side is unchanged, still clamped by tcp_current_mss(). Add ip_dst_mtu_configured()/ip6_dst_mtu_configured() and use them from the two default_advmss() paths. Fixes:1da177e4c3("Linux-2.6.12-rc2") Fixes:164a5e7ad5("ipv4: ipv4_default_advmss() should use route mtu") Cc: stable@vger.kernel.org Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev> Reviewed-by: Eric Dumazet <edumazet@google.com> Link: https://patch.msgid.link/20260815070413.294559-1-jiayuan.chen@linux.dev Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
ec518a7c4b
commit
2640e64195
|
|
@ -506,6 +506,31 @@ static inline unsigned int ip_dst_mtu_maybe_forward(const struct dst_entry *dst,
|
|||
return res;
|
||||
}
|
||||
|
||||
/* Configured/administrative MTU of a route, for advertising the TCP MSS.
|
||||
*
|
||||
* Unlike ip_dst_mtu_maybe_forward(), this deliberately ignores the
|
||||
* ICMP-learned path MTU (rt->rt_pmtu). The advertised MSS bounds what the
|
||||
* peer may send to us and must reflect our receive capability (the device or
|
||||
* route-configured MTU), not a path MTU learned on the reverse (send)
|
||||
* direction, which may not apply to the peer->us path and outlives the fnhe
|
||||
* for the whole connection. See RFC 2923 section 2.3 and the comment above
|
||||
* tcp_advertise_mss().
|
||||
*/
|
||||
static inline unsigned int ip_dst_mtu_configured(const struct dst_entry *dst)
|
||||
{
|
||||
unsigned int mtu, res;
|
||||
|
||||
rcu_read_lock();
|
||||
mtu = dst_metric_raw(dst, RTAX_MTU);
|
||||
if (!mtu)
|
||||
mtu = READ_ONCE(dst_dev_rcu(dst)->mtu);
|
||||
mtu = min_t(unsigned int, mtu, IP_MAX_MTU);
|
||||
res = mtu - lwtunnel_headroom(dst->lwtstate, mtu);
|
||||
rcu_read_unlock();
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
static inline unsigned int ip_skb_dst_mtu(struct sock *sk,
|
||||
const struct sk_buff *skb)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -387,6 +387,43 @@ static inline unsigned int ip6_dst_mtu_maybe_forward(const struct dst_entry *dst
|
|||
return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
|
||||
}
|
||||
|
||||
/* Configured/administrative MTU of a route, for advertising the TCP MSS.
|
||||
*
|
||||
* Unlike ip6_dst_mtu_maybe_forward(), this ignores any ICMPv6-learned path
|
||||
* MTU (which is kept on the RTF_CACHE exception route) and returns the MTU of
|
||||
* the underlying route (fib6_pmtu) or the egress device. The advertised MSS
|
||||
* bounds what the peer may send to us and must reflect our receive
|
||||
* capability, not a path MTU learned on the reverse (send) direction. See
|
||||
* RFC 2923 section 2.3 and the comment above tcp_advertise_mss().
|
||||
*/
|
||||
static inline unsigned int ip6_dst_mtu_configured(const struct dst_entry *dst)
|
||||
{
|
||||
const struct rt6_info *rt = dst_rt6_info(dst);
|
||||
const struct fib6_info *from;
|
||||
struct inet6_dev *idev;
|
||||
unsigned int mtu = 0;
|
||||
|
||||
rcu_read_lock();
|
||||
/* IPv6 keeps the learned PMTU and the configured MTU in the same
|
||||
* RTAX_MTU slot: the learned value sits on this (possibly RTF_CACHE)
|
||||
* dst, the configured one on the underlying route. Reach the latter
|
||||
* via ->from (fib6_pmtu), populated by ip6_route_info_create().
|
||||
*/
|
||||
from = rcu_dereference(rt->from);
|
||||
if (from)
|
||||
mtu = from->fib6_pmtu;
|
||||
if (!mtu) {
|
||||
mtu = IPV6_MIN_MTU;
|
||||
idev = __in6_dev_get(dst_dev_rcu(dst));
|
||||
if (idev)
|
||||
mtu = max_t(unsigned int, mtu, READ_ONCE(idev->cnf.mtu6));
|
||||
}
|
||||
rcu_read_unlock();
|
||||
|
||||
mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
|
||||
return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
|
||||
}
|
||||
|
||||
u32 ip6_mtu_from_fib6(const struct fib6_result *res,
|
||||
const struct in6_addr *daddr,
|
||||
const struct in6_addr *saddr);
|
||||
|
|
|
|||
|
|
@ -1363,8 +1363,8 @@ static unsigned int ipv4_default_advmss(const struct dst_entry *dst)
|
|||
|
||||
rcu_read_lock();
|
||||
net = dst_dev_net_rcu(dst);
|
||||
advmss = max_t(unsigned int, ipv4_mtu(dst) - header_size,
|
||||
net->ipv4.ip_rt_min_advmss);
|
||||
advmss = max_t(unsigned int, ip_dst_mtu_configured(dst) - header_size,
|
||||
net->ipv4.ip_rt_min_advmss);
|
||||
rcu_read_unlock();
|
||||
|
||||
return min(advmss, IPV4_MAX_PMTU - header_size);
|
||||
|
|
|
|||
|
|
@ -3261,7 +3261,7 @@ void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
|
|||
|
||||
static unsigned int ip6_default_advmss(const struct dst_entry *dst)
|
||||
{
|
||||
unsigned int mtu = dst6_mtu(dst);
|
||||
unsigned int mtu = ip6_dst_mtu_configured(dst);
|
||||
struct net *net;
|
||||
|
||||
mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user