diff options
author | bz <bz@FreeBSD.org> | 2008-11-06 12:33:33 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2008-11-06 12:33:33 +0000 |
commit | 2802110bd58cf14e345dad0068b0927bed98940b (patch) | |
tree | 23028e8a4ea6fd86cc680fe5bbeb4b3926ea904d /sys/netinet/tcp_input.c | |
parent | ee8eea89ff87577fd5901601266123ffb8ab7039 (diff) | |
download | FreeBSD-src-2802110bd58cf14e345dad0068b0927bed98940b.zip FreeBSD-src-2802110bd58cf14e345dad0068b0927bed98940b.tar.gz |
Fix a bug introduced with r182851 splitting tcp_mss() into
tcp_mss() and tcp_mss_update() so that tcp_mtudisc() could
re-use the same code.
In case we return early and got a metricptr to pass the hostcache
info back to the caller we need to initialize the data to a defined
state (zero it) as tcp_hc_get() would do if there was no hit.
Without that the caller would check on random stack garbage which
could lead to undefined results.
This only affected tcp_mss() if there was no routing entry for the peer,
tcp_mtudisc() was not affected.
MFC after: 2 months (along with r182851)
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 1e59c1b..9dd7b8c 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -2847,8 +2847,16 @@ tcp_mss_update(struct tcpcb *tp, int offer, struct hc_metrics_lite *metricptr) /* * No route to sender, stay with default mss and return. */ - if (maxmtu == 0) + if (maxmtu == 0) { + /* + * In case we return early we need to intialize metrics + * to a defined state as tcp_hc_get() would do for us + * if there was no cache hit. + */ + if (metricptr != NULL) + bzero(metricptr, sizeof(struct hc_metrics_lite)); return; + } /* Check the interface for TSO capabilities. */ if (mtuflags & CSUM_TSO) |