1c398230bSWarner Losh /*- 251369649SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 351369649SPedro F. Giffuni * 4e79adb8eSGarrett Wollman * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994, 1995 5df8bae1dSRodney W. Grimes * The Regents of the University of California. All rights reserved. 6dbc42409SLawrence Stewart * Copyright (c) 2007-2008,2010 7dbc42409SLawrence Stewart * Swinburne University of Technology, Melbourne, Australia. 8dbc42409SLawrence Stewart * Copyright (c) 2009-2010 Lawrence Stewart <lstewart@freebsd.org> 9dbc42409SLawrence Stewart * Copyright (c) 2010 The FreeBSD Foundation 10fa046d87SRobert Watson * Copyright (c) 2010-2011 Juniper Networks, Inc. 11dbc42409SLawrence Stewart * All rights reserved. 12dbc42409SLawrence Stewart * 13dbc42409SLawrence Stewart * Portions of this software were developed at the Centre for Advanced Internet 14891b8ed4SLawrence Stewart * Architectures, Swinburne University of Technology, by Lawrence Stewart, 15891b8ed4SLawrence Stewart * James Healy and David Hayes, made possible in part by a grant from the Cisco 16891b8ed4SLawrence Stewart * University Research Program Fund at Community Foundation Silicon Valley. 17dbc42409SLawrence Stewart * 18dbc42409SLawrence Stewart * Portions of this software were developed at the Centre for Advanced 19dbc42409SLawrence Stewart * Internet Architectures, Swinburne University of Technology, Melbourne, 20dbc42409SLawrence Stewart * Australia by David Hayes under sponsorship from the FreeBSD Foundation. 21df8bae1dSRodney W. Grimes * 22fa046d87SRobert Watson * Portions of this software were developed by Robert N. M. Watson under 23fa046d87SRobert Watson * contract to Juniper Networks, Inc. 24fa046d87SRobert Watson * 25df8bae1dSRodney W. Grimes * Redistribution and use in source and binary forms, with or without 26df8bae1dSRodney W. Grimes * modification, are permitted provided that the following conditions 27df8bae1dSRodney W. Grimes * are met: 28df8bae1dSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 29df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer. 30df8bae1dSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 31df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 32df8bae1dSRodney W. Grimes * documentation and/or other materials provided with the distribution. 33fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors 34df8bae1dSRodney W. Grimes * may be used to endorse or promote products derived from this software 35df8bae1dSRodney W. Grimes * without specific prior written permission. 36df8bae1dSRodney W. Grimes * 37df8bae1dSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 38df8bae1dSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 39df8bae1dSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 40df8bae1dSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 41df8bae1dSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 42df8bae1dSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 43df8bae1dSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 44df8bae1dSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 45df8bae1dSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 46df8bae1dSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 47df8bae1dSRodney W. Grimes * SUCH DAMAGE. 48df8bae1dSRodney W. Grimes * 49e79adb8eSGarrett Wollman * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95 50df8bae1dSRodney W. Grimes */ 51df8bae1dSRodney W. Grimes 524b421e2dSMike Silbersack #include <sys/cdefs.h> 534b421e2dSMike Silbersack __FBSDID("$FreeBSD$"); 544b421e2dSMike Silbersack 551cfd4b53SBruce M Simpson #include "opt_inet.h" 56fb59c426SYoshinobu Inoue #include "opt_inet6.h" 573a2a9f79SYoshinobu Inoue #include "opt_ipsec.h" 580cc12cc5SJoerg Wunsch #include "opt_tcpdebug.h" 590cc12cc5SJoerg Wunsch 60df8bae1dSRodney W. Grimes #include <sys/param.h> 6198163b98SPoul-Henning Kamp #include <sys/kernel.h> 62bd79708dSJonathan T. Looney #ifdef TCP_HHOOK 6339bc9de5SLawrence Stewart #include <sys/hhook.h> 64bd79708dSJonathan T. Looney #endif 65df8bae1dSRodney W. Grimes #include <sys/malloc.h> 66df8bae1dSRodney W. Grimes #include <sys/mbuf.h> 67a29f300eSGarrett Wollman #include <sys/proc.h> /* for proc0 declaration */ 68df8bae1dSRodney W. Grimes #include <sys/protosw.h> 6957f60867SMark Johnston #include <sys/sdt.h> 70960ed29cSSeigo Tanimura #include <sys/signalvar.h> 71df8bae1dSRodney W. Grimes #include <sys/socket.h> 72df8bae1dSRodney W. Grimes #include <sys/socketvar.h> 73960ed29cSSeigo Tanimura #include <sys/sysctl.h> 74816a3d83SPoul-Henning Kamp #include <sys/syslog.h> 75960ed29cSSeigo Tanimura #include <sys/systm.h> 76df8bae1dSRodney W. Grimes 77e79adb8eSGarrett Wollman #include <machine/cpu.h> /* before tcp_seq.h, for tcp_random18() */ 78e79adb8eSGarrett Wollman 7912e2e970SAndre Oppermann #include <vm/uma.h> 8012e2e970SAndre Oppermann 81df8bae1dSRodney W. Grimes #include <net/if.h> 8276039bc8SGleb Smirnoff #include <net/if_var.h> 83df8bae1dSRodney W. Grimes #include <net/route.h> 84530c0060SRobert Watson #include <net/vnet.h> 85df8bae1dSRodney W. Grimes 86773673c1SAndre Oppermann #define TCPSTATES /* for logging */ 87773673c1SAndre Oppermann 88df8bae1dSRodney W. Grimes #include <netinet/in.h> 8957f60867SMark Johnston #include <netinet/in_kdtrace.h> 90960ed29cSSeigo Tanimura #include <netinet/in_pcb.h> 91df8bae1dSRodney W. Grimes #include <netinet/in_systm.h> 92df8bae1dSRodney W. Grimes #include <netinet/ip.h> 938e8aab7aSAndre Oppermann #include <netinet/ip_icmp.h> /* required for icmp_var.h */ 94686cdd19SJun-ichiro itojun Hagino #include <netinet/icmp_var.h> /* for ICMP_BANDLIM */ 95df8bae1dSRodney W. Grimes #include <netinet/ip_var.h> 96ef39adf0SAndre Oppermann #include <netinet/ip_options.h> 97686cdd19SJun-ichiro itojun Hagino #include <netinet/ip6.h> 98686cdd19SJun-ichiro itojun Hagino #include <netinet/icmp6.h> 99686cdd19SJun-ichiro itojun Hagino #include <netinet6/in6_pcb.h> 100b66d74c1SGleb Smirnoff #include <netinet6/in6_var.h> 101960ed29cSSeigo Tanimura #include <netinet6/ip6_var.h> 102960ed29cSSeigo Tanimura #include <netinet6/nd6.h> 1032de3e790SGleb Smirnoff #include <netinet/tcp.h> 104df8bae1dSRodney W. Grimes #include <netinet/tcp_fsm.h> 1052529f56eSJonathan T. Looney #include <netinet/tcp_log_buf.h> 106df8bae1dSRodney W. Grimes #include <netinet/tcp_seq.h> 107df8bae1dSRodney W. Grimes #include <netinet/tcp_timer.h> 108df8bae1dSRodney W. Grimes #include <netinet/tcp_var.h> 109fb59c426SYoshinobu Inoue #include <netinet6/tcp6_var.h> 110df8bae1dSRodney W. Grimes #include <netinet/tcpip.h> 1114644fda3SGleb Smirnoff #include <netinet/cc/cc.h> 112c560df6fSPatrick Kelsey #include <netinet/tcp_fastopen.h> 11386a996e6SHiren Panchasara #ifdef TCPPCAP 11486a996e6SHiren Panchasara #include <netinet/tcp_pcap.h> 11586a996e6SHiren Panchasara #endif 116c325962bSMike Silbersack #include <netinet/tcp_syncache.h> 117610ee2f9SDavid Greenman #ifdef TCPDEBUG 118df8bae1dSRodney W. Grimes #include <netinet/tcp_debug.h> 119fb59c426SYoshinobu Inoue #endif /* TCPDEBUG */ 12009fe6320SNavdeep Parhar #ifdef TCP_OFFLOAD 12109fe6320SNavdeep Parhar #include <netinet/tcp_offload.h> 12209fe6320SNavdeep Parhar #endif 123fb59c426SYoshinobu Inoue 124fcf59617SAndrey V. Elsukov #include <netipsec/ipsec_support.h> 125b9234fafSSam Leffler 126db4f9cc7SJonathan Lemon #include <machine/in_cksum.h> 127db4f9cc7SJonathan Lemon 128aed55708SRobert Watson #include <security/mac/mac_framework.h> 129aed55708SRobert Watson 130dbc42409SLawrence Stewart const int tcprexmtthresh = 3; 1310312fbe9SPoul-Henning Kamp 132773673c1SAndre Oppermann int tcp_log_in_vain = 0; 133816a3d83SPoul-Henning Kamp SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_in_vain, CTLFLAG_RW, 134eddfbb76SRobert Watson &tcp_log_in_vain, 0, 135eddfbb76SRobert Watson "Log all incoming TCP segments to closed ports"); 136816a3d83SPoul-Henning Kamp 13782cea7e6SBjoern A. Zeeb VNET_DEFINE(int, blackhole) = 0; 13882cea7e6SBjoern A. Zeeb #define V_blackhole VNET(blackhole) 1396df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, blackhole, CTLFLAG_VNET | CTLFLAG_RW, 140eddfbb76SRobert Watson &VNET_NAME(blackhole), 0, 141eddfbb76SRobert Watson "Do not send RST on segments to closed ports"); 14216f7f31fSGeoff Rehmet 14382cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_delack_enabled) = 1; 1446df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, delayed_ack, CTLFLAG_VNET | CTLFLAG_RW, 145eddfbb76SRobert Watson &VNET_NAME(tcp_delack_enabled), 0, 1463d177f46SBill Fumerola "Delay ACK to try and piggyback it onto a data packet"); 147f498eeeeSDavid Greenman 14882cea7e6SBjoern A. Zeeb VNET_DEFINE(int, drop_synfin) = 0; 1496df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, drop_synfin, CTLFLAG_VNET | CTLFLAG_RW, 150eddfbb76SRobert Watson &VNET_NAME(drop_synfin), 0, 151eddfbb76SRobert Watson "Drop TCP packets with SYN+FIN set"); 152f8613305SDag-Erling Smørgrav 15312eeb81fSHiren Panchasara VNET_DEFINE(int, tcp_do_rfc6675_pipe) = 0; 154054d38e3SHiren Panchasara SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc6675_pipe, CTLFLAG_VNET | CTLFLAG_RW, 15512eeb81fSHiren Panchasara &VNET_NAME(tcp_do_rfc6675_pipe), 0, 15612eeb81fSHiren Panchasara "Use calculated pipe/in-flight bytes per RFC 6675"); 15712eeb81fSHiren Panchasara 15882cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_rfc3042) = 1; 1596df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3042, CTLFLAG_VNET | CTLFLAG_RW, 160eddfbb76SRobert Watson &VNET_NAME(tcp_do_rfc3042), 0, 161eddfbb76SRobert Watson "Enable RFC 3042 (Limited Transmit)"); 162582a954bSJeffrey Hsu 16382cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_rfc3390) = 1; 1646df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3390, CTLFLAG_VNET | CTLFLAG_RW, 165eddfbb76SRobert Watson &VNET_NAME(tcp_do_rfc3390), 0, 166da3a8a1aSJeffrey Hsu "Enable RFC 3390 (Increasing TCP's Initial Congestion Window)"); 167da3a8a1aSJeffrey Hsu 168356c7958SHiren Panchasara VNET_DEFINE(int, tcp_initcwnd_segments) = 10; 169356c7958SHiren Panchasara SYSCTL_INT(_net_inet_tcp, OID_AUTO, initcwnd_segments, 170356c7958SHiren Panchasara CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(tcp_initcwnd_segments), 0, 171356c7958SHiren Panchasara "Slow-start flight size (initial congestion window) in number of segments"); 17209440655SAndre Oppermann 17382cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_rfc3465) = 1; 1746df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3465, CTLFLAG_VNET | CTLFLAG_RW, 175eddfbb76SRobert Watson &VNET_NAME(tcp_do_rfc3465), 0, 17624cb0f22SLawrence Stewart "Enable RFC 3465 (Appropriate Byte Counting)"); 177eddfbb76SRobert Watson 17882cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_abc_l_var) = 2; 1796df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, abc_l_var, CTLFLAG_VNET | CTLFLAG_RW, 180eddfbb76SRobert Watson &VNET_NAME(tcp_abc_l_var), 2, 18124cb0f22SLawrence Stewart "Cap the max cwnd increment during slow-start to this number of segments"); 18224cb0f22SLawrence Stewart 1836472ac3dSEd Schouten static SYSCTL_NODE(_net_inet_tcp, OID_AUTO, ecn, CTLFLAG_RW, 0, "TCP ECN"); 184f2512ba1SRui Paulo 185883054b4SDon Lewis VNET_DEFINE(int, tcp_do_ecn) = 2; 1866df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp_ecn, OID_AUTO, enable, CTLFLAG_VNET | CTLFLAG_RW, 187eddfbb76SRobert Watson &VNET_NAME(tcp_do_ecn), 0, 188eddfbb76SRobert Watson "TCP ECN support"); 189eddfbb76SRobert Watson 19082cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_ecn_maxretries) = 1; 1916df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp_ecn, OID_AUTO, maxretries, CTLFLAG_VNET | CTLFLAG_RW, 192eddfbb76SRobert Watson &VNET_NAME(tcp_ecn_maxretries), 0, 193eddfbb76SRobert Watson "Max retries before giving up on ECN"); 194eddfbb76SRobert Watson 1953220a212SGleb Smirnoff VNET_DEFINE(int, tcp_insecure_syn) = 0; 1966df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, insecure_syn, CTLFLAG_VNET | CTLFLAG_RW, 1973220a212SGleb Smirnoff &VNET_NAME(tcp_insecure_syn), 0, 1983220a212SGleb Smirnoff "Follow RFC793 instead of RFC5961 criteria for accepting SYN packets"); 1993220a212SGleb Smirnoff 20082cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_insecure_rst) = 0; 2016df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, insecure_rst, CTLFLAG_VNET | CTLFLAG_RW, 202eddfbb76SRobert Watson &VNET_NAME(tcp_insecure_rst), 0, 2033220a212SGleb Smirnoff "Follow RFC793 instead of RFC5961 criteria for accepting RST packets"); 204a69968eeSMike Silbersack 205fba0cea1SBjoern A. Zeeb VNET_DEFINE(int, tcp_recvspace) = 1024*64; 206873789cbSAndre Oppermann #define V_tcp_recvspace VNET(tcp_recvspace) 2076df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, TCPCTL_RECVSPACE, recvspace, CTLFLAG_VNET | CTLFLAG_RW, 208873789cbSAndre Oppermann &VNET_NAME(tcp_recvspace), 0, "Initial receive socket buffer size"); 209873789cbSAndre Oppermann 21082cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_autorcvbuf) = 1; 2116df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, recvbuf_auto, CTLFLAG_VNET | CTLFLAG_RW, 212eddfbb76SRobert Watson &VNET_NAME(tcp_do_autorcvbuf), 0, 2138b615593SMarko Zec "Enable automatic receive buffer sizing"); 2146741ecf5SAndre Oppermann 21582cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_autorcvbuf_inc) = 16*1024; 2166df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, recvbuf_inc, CTLFLAG_VNET | CTLFLAG_RW, 217eddfbb76SRobert Watson &VNET_NAME(tcp_autorcvbuf_inc), 0, 2186489fe65SAndre Oppermann "Incrementor step size of automatic receive buffer"); 2196741ecf5SAndre Oppermann 220b233773bSBjoern A. Zeeb VNET_DEFINE(int, tcp_autorcvbuf_max) = 2*1024*1024; 2216df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, recvbuf_max, CTLFLAG_VNET | CTLFLAG_RW, 222eddfbb76SRobert Watson &VNET_NAME(tcp_autorcvbuf_max), 0, 2238b615593SMarko Zec "Max size of automatic receive buffer"); 2246741ecf5SAndre Oppermann 225eddfbb76SRobert Watson VNET_DEFINE(struct inpcbhead, tcb); 22644e33a07SMarko Zec #define tcb6 tcb /* for KAME src sync over BSD*'s */ 22782cea7e6SBjoern A. Zeeb VNET_DEFINE(struct inpcbinfo, tcbinfo); 228df8bae1dSRodney W. Grimes 229315e3e38SRobert Watson /* 230bf840a17SGleb Smirnoff * TCP statistics are stored in an array of counter(9)s, which size matches 231bf840a17SGleb Smirnoff * size of struct tcpstat. TCP running connection count is a regular array. 2325923c293SGleb Smirnoff */ 2335da0521fSAndrey V. Elsukov VNET_PCPUSTAT_DEFINE(struct tcpstat, tcpstat); 2345da0521fSAndrey V. Elsukov SYSCTL_VNET_PCPUSTAT(_net_inet_tcp, TCPCTL_STATS, stats, struct tcpstat, 2355da0521fSAndrey V. Elsukov tcpstat, "TCP statistics (struct tcpstat, netinet/tcp_var.h)"); 236bf840a17SGleb Smirnoff VNET_DEFINE(counter_u64_t, tcps_states[TCP_NSTATES]); 237bf840a17SGleb Smirnoff SYSCTL_COUNTER_U64_ARRAY(_net_inet_tcp, TCPCTL_STATES, states, CTLFLAG_RD | 238d4d32b9fSHans Petter Selasky CTLFLAG_VNET, &VNET_NAME(tcps_states)[0], TCP_NSTATES, 239bf840a17SGleb Smirnoff "TCP connection counts by TCP state"); 240bf840a17SGleb Smirnoff 241bf840a17SGleb Smirnoff static void 242bf840a17SGleb Smirnoff tcp_vnet_init(const void *unused) 243bf840a17SGleb Smirnoff { 244bf840a17SGleb Smirnoff 245f59d975eSGleb Smirnoff COUNTER_ARRAY_ALLOC(V_tcps_states, TCP_NSTATES, M_WAITOK); 246bf840a17SGleb Smirnoff VNET_PCPUSTAT_ALLOC(tcpstat, M_WAITOK); 247bf840a17SGleb Smirnoff } 248bf840a17SGleb Smirnoff VNET_SYSINIT(tcp_vnet_init, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY, 249bf840a17SGleb Smirnoff tcp_vnet_init, NULL); 2505923c293SGleb Smirnoff 2515923c293SGleb Smirnoff #ifdef VIMAGE 252bf840a17SGleb Smirnoff static void 253bf840a17SGleb Smirnoff tcp_vnet_uninit(const void *unused) 254bf840a17SGleb Smirnoff { 255bf840a17SGleb Smirnoff 256f59d975eSGleb Smirnoff COUNTER_ARRAY_FREE(V_tcps_states, TCP_NSTATES); 257bf840a17SGleb Smirnoff VNET_PCPUSTAT_FREE(tcpstat); 258bf840a17SGleb Smirnoff } 259bf840a17SGleb Smirnoff VNET_SYSUNINIT(tcp_vnet_uninit, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY, 260bf840a17SGleb Smirnoff tcp_vnet_uninit, NULL); 2615923c293SGleb Smirnoff #endif /* VIMAGE */ 262bf840a17SGleb Smirnoff 2635923c293SGleb Smirnoff /* 264315e3e38SRobert Watson * Kernel module interface for updating tcpstat. The argument is an index 2655923c293SGleb Smirnoff * into tcpstat treated as an array. 266315e3e38SRobert Watson */ 267315e3e38SRobert Watson void 268315e3e38SRobert Watson kmod_tcpstat_inc(int statnum) 269315e3e38SRobert Watson { 270315e3e38SRobert Watson 2715da0521fSAndrey V. Elsukov counter_u64_add(VNET(tcpstat)[statnum], 1); 272315e3e38SRobert Watson } 273315e3e38SRobert Watson 274bd79708dSJonathan T. Looney #ifdef TCP_HHOOK 275dbc42409SLawrence Stewart /* 27639bc9de5SLawrence Stewart * Wrapper for the TCP established input helper hook. 27739bc9de5SLawrence Stewart */ 27855bceb1eSRandall Stewart void 27939bc9de5SLawrence Stewart hhook_run_tcp_est_in(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to) 28039bc9de5SLawrence Stewart { 28139bc9de5SLawrence Stewart struct tcp_hhook_data hhook_data; 28239bc9de5SLawrence Stewart 28339bc9de5SLawrence Stewart if (V_tcp_hhh[HHOOK_TCP_EST_IN]->hhh_nhooks > 0) { 28439bc9de5SLawrence Stewart hhook_data.tp = tp; 28539bc9de5SLawrence Stewart hhook_data.th = th; 28639bc9de5SLawrence Stewart hhook_data.to = to; 28739bc9de5SLawrence Stewart 28839bc9de5SLawrence Stewart hhook_run_hooks(V_tcp_hhh[HHOOK_TCP_EST_IN], &hhook_data, 28939bc9de5SLawrence Stewart tp->osd); 29039bc9de5SLawrence Stewart } 29139bc9de5SLawrence Stewart } 292bd79708dSJonathan T. Looney #endif 29339bc9de5SLawrence Stewart 29439bc9de5SLawrence Stewart /* 295dbc42409SLawrence Stewart * CC wrapper hook functions 296dbc42409SLawrence Stewart */ 29755bceb1eSRandall Stewart void 2984b7b743cSLawrence Stewart cc_ack_received(struct tcpcb *tp, struct tcphdr *th, uint16_t nsegs, 2994b7b743cSLawrence Stewart uint16_t type) 300f2512ba1SRui Paulo { 301dbc42409SLawrence Stewart INP_WLOCK_ASSERT(tp->t_inpcb); 302f2512ba1SRui Paulo 3034b7b743cSLawrence Stewart tp->ccv->nsegs = nsegs; 304dbc42409SLawrence Stewart tp->ccv->bytes_this_ack = BYTES_THIS_ACK(tp, th); 3055b648e79SLawrence Stewart if (tp->snd_cwnd <= tp->snd_wnd) 306dbc42409SLawrence Stewart tp->ccv->flags |= CCF_CWND_LIMITED; 307dbc42409SLawrence Stewart else 308dbc42409SLawrence Stewart tp->ccv->flags &= ~CCF_CWND_LIMITED; 309dbc42409SLawrence Stewart 310dbc42409SLawrence Stewart if (type == CC_ACK) { 311dbc42409SLawrence Stewart if (tp->snd_cwnd > tp->snd_ssthresh) { 312dbc42409SLawrence Stewart tp->t_bytes_acked += min(tp->ccv->bytes_this_ack, 3134b7b743cSLawrence Stewart nsegs * V_tcp_abc_l_var * tcp_maxseg(tp)); 314dbc42409SLawrence Stewart if (tp->t_bytes_acked >= tp->snd_cwnd) { 315dbc42409SLawrence Stewart tp->t_bytes_acked -= tp->snd_cwnd; 316dbc42409SLawrence Stewart tp->ccv->flags |= CCF_ABC_SENTAWND; 317dbc42409SLawrence Stewart } 318dbc42409SLawrence Stewart } else { 319dbc42409SLawrence Stewart tp->ccv->flags &= ~CCF_ABC_SENTAWND; 320dbc42409SLawrence Stewart tp->t_bytes_acked = 0; 321dbc42409SLawrence Stewart } 322dbc42409SLawrence Stewart } 323dbc42409SLawrence Stewart 324dbc42409SLawrence Stewart if (CC_ALGO(tp)->ack_received != NULL) { 325dbc42409SLawrence Stewart /* XXXLAS: Find a way to live without this */ 326dbc42409SLawrence Stewart tp->ccv->curack = th->th_ack; 327dbc42409SLawrence Stewart CC_ALGO(tp)->ack_received(tp->ccv, type); 328dbc42409SLawrence Stewart } 329dbc42409SLawrence Stewart } 330dbc42409SLawrence Stewart 33155bceb1eSRandall Stewart void 332dbc42409SLawrence Stewart cc_conn_init(struct tcpcb *tp) 333dbc42409SLawrence Stewart { 334dbc42409SLawrence Stewart struct hc_metrics_lite metrics; 335dbc42409SLawrence Stewart struct inpcb *inp = tp->t_inpcb; 3360c39d38dSGleb Smirnoff u_int maxseg; 337dbc42409SLawrence Stewart int rtt; 338dbc42409SLawrence Stewart 339dbc42409SLawrence Stewart INP_WLOCK_ASSERT(tp->t_inpcb); 340dbc42409SLawrence Stewart 341dbc42409SLawrence Stewart tcp_hc_get(&inp->inp_inc, &metrics); 3420c39d38dSGleb Smirnoff maxseg = tcp_maxseg(tp); 343dbc42409SLawrence Stewart 344dbc42409SLawrence Stewart if (tp->t_srtt == 0 && (rtt = metrics.rmx_rtt)) { 345dbc42409SLawrence Stewart tp->t_srtt = rtt; 346dbc42409SLawrence Stewart tp->t_rttbest = tp->t_srtt + TCP_RTT_SCALE; 347dbc42409SLawrence Stewart TCPSTAT_INC(tcps_usedrtt); 348dbc42409SLawrence Stewart if (metrics.rmx_rttvar) { 349dbc42409SLawrence Stewart tp->t_rttvar = metrics.rmx_rttvar; 350dbc42409SLawrence Stewart TCPSTAT_INC(tcps_usedrttvar); 351dbc42409SLawrence Stewart } else { 352dbc42409SLawrence Stewart /* default variation is +- 1 rtt */ 353dbc42409SLawrence Stewart tp->t_rttvar = 354dbc42409SLawrence Stewart tp->t_srtt * TCP_RTTVAR_SCALE / TCP_RTT_SCALE; 355dbc42409SLawrence Stewart } 356dbc42409SLawrence Stewart TCPT_RANGESET(tp->t_rxtcur, 357dbc42409SLawrence Stewart ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1, 358dbc42409SLawrence Stewart tp->t_rttmin, TCPTV_REXMTMAX); 359dbc42409SLawrence Stewart } 360dbc42409SLawrence Stewart if (metrics.rmx_ssthresh) { 361dbc42409SLawrence Stewart /* 362dbc42409SLawrence Stewart * There's some sort of gateway or interface 363dbc42409SLawrence Stewart * buffer limit on the path. Use this to set 364a4641f4eSPedro F. Giffuni * the slow start threshold, but set the 365dbc42409SLawrence Stewart * threshold to no less than 2*mss. 366dbc42409SLawrence Stewart */ 3670c39d38dSGleb Smirnoff tp->snd_ssthresh = max(2 * maxseg, metrics.rmx_ssthresh); 368dbc42409SLawrence Stewart TCPSTAT_INC(tcps_usedssthresh); 369dbc42409SLawrence Stewart } 370dbc42409SLawrence Stewart 371dbc42409SLawrence Stewart /* 3729ec4a4ccSAndre Oppermann * Set the initial slow-start flight size. 373dbc42409SLawrence Stewart * 374cf8f04f4SAndre Oppermann * RFC5681 Section 3.1 specifies the default conservative values. 375cf8f04f4SAndre Oppermann * RFC3390 specifies slightly more aggressive values. 376b8b4cfcdSSergey Kandaurov * RFC6928 increases it to ten segments. 377356c7958SHiren Panchasara * Support for user specified value for initial flight size. 378cf8f04f4SAndre Oppermann * 379cf8f04f4SAndre Oppermann * If a SYN or SYN/ACK was lost and retransmitted, we have to 380cf8f04f4SAndre Oppermann * reduce the initial CWND to one segment as congestion is likely 381cf8f04f4SAndre Oppermann * requiring us to be cautious. 382dbc42409SLawrence Stewart */ 383cf8f04f4SAndre Oppermann if (tp->snd_cwnd == 1) 3840c39d38dSGleb Smirnoff tp->snd_cwnd = maxseg; /* SYN(-ACK) lost */ 385356c7958SHiren Panchasara else if (V_tcp_initcwnd_segments) 3860c39d38dSGleb Smirnoff tp->snd_cwnd = min(V_tcp_initcwnd_segments * maxseg, 3870c39d38dSGleb Smirnoff max(2 * maxseg, V_tcp_initcwnd_segments * 1460)); 388cf8f04f4SAndre Oppermann else if (V_tcp_do_rfc3390) 3890c39d38dSGleb Smirnoff tp->snd_cwnd = min(4 * maxseg, max(2 * maxseg, 4380)); 39022efabd4SAndre Oppermann else { 39122efabd4SAndre Oppermann /* Per RFC5681 Section 3.1 */ 3920c39d38dSGleb Smirnoff if (maxseg > 2190) 3930c39d38dSGleb Smirnoff tp->snd_cwnd = 2 * maxseg; 3940c39d38dSGleb Smirnoff else if (maxseg > 1095) 3950c39d38dSGleb Smirnoff tp->snd_cwnd = 3 * maxseg; 396dbc42409SLawrence Stewart else 3970c39d38dSGleb Smirnoff tp->snd_cwnd = 4 * maxseg; 39822efabd4SAndre Oppermann } 399dbc42409SLawrence Stewart 400dbc42409SLawrence Stewart if (CC_ALGO(tp)->conn_init != NULL) 401dbc42409SLawrence Stewart CC_ALGO(tp)->conn_init(tp->ccv); 402dbc42409SLawrence Stewart } 403dbc42409SLawrence Stewart 404dbc42409SLawrence Stewart void inline 405dbc42409SLawrence Stewart cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type) 406dbc42409SLawrence Stewart { 4070c39d38dSGleb Smirnoff u_int maxseg; 4080c39d38dSGleb Smirnoff 409dbc42409SLawrence Stewart INP_WLOCK_ASSERT(tp->t_inpcb); 410dbc42409SLawrence Stewart 411dbc42409SLawrence Stewart switch(type) { 412dbc42409SLawrence Stewart case CC_NDUPACK: 413dbc42409SLawrence Stewart if (!IN_FASTRECOVERY(tp->t_flags)) { 414f2512ba1SRui Paulo tp->snd_recover = tp->snd_max; 415f2512ba1SRui Paulo if (tp->t_flags & TF_ECN_PERMIT) 416f2512ba1SRui Paulo tp->t_flags |= TF_ECN_SND_CWR; 417f2512ba1SRui Paulo } 418dbc42409SLawrence Stewart break; 419dbc42409SLawrence Stewart case CC_ECN: 420dbc42409SLawrence Stewart if (!IN_CONGRECOVERY(tp->t_flags)) { 421dbc42409SLawrence Stewart TCPSTAT_INC(tcps_ecn_rcwnd); 422dbc42409SLawrence Stewart tp->snd_recover = tp->snd_max; 423dbc42409SLawrence Stewart if (tp->t_flags & TF_ECN_PERMIT) 424dbc42409SLawrence Stewart tp->t_flags |= TF_ECN_SND_CWR; 425dbc42409SLawrence Stewart } 426dbc42409SLawrence Stewart break; 427dbc42409SLawrence Stewart case CC_RTO: 4280c39d38dSGleb Smirnoff maxseg = tcp_maxseg(tp); 429dbc42409SLawrence Stewart tp->t_dupacks = 0; 430dbc42409SLawrence Stewart tp->t_bytes_acked = 0; 431dbc42409SLawrence Stewart EXIT_RECOVERY(tp->t_flags); 43243053c12SSean Bruno tp->snd_ssthresh = max(2, min(tp->snd_wnd, tp->snd_cwnd) / 2 / 43343053c12SSean Bruno maxseg) * maxseg; 4340c39d38dSGleb Smirnoff tp->snd_cwnd = maxseg; 435dbc42409SLawrence Stewart break; 436dbc42409SLawrence Stewart case CC_RTO_ERR: 437dbc42409SLawrence Stewart TCPSTAT_INC(tcps_sndrexmitbad); 438dbc42409SLawrence Stewart /* RTO was unnecessary, so reset everything. */ 439dbc42409SLawrence Stewart tp->snd_cwnd = tp->snd_cwnd_prev; 440dbc42409SLawrence Stewart tp->snd_ssthresh = tp->snd_ssthresh_prev; 441dbc42409SLawrence Stewart tp->snd_recover = tp->snd_recover_prev; 442dbc42409SLawrence Stewart if (tp->t_flags & TF_WASFRECOVERY) 443dbc42409SLawrence Stewart ENTER_FASTRECOVERY(tp->t_flags); 444dbc42409SLawrence Stewart if (tp->t_flags & TF_WASCRECOVERY) 445dbc42409SLawrence Stewart ENTER_CONGRECOVERY(tp->t_flags); 446dbc42409SLawrence Stewart tp->snd_nxt = tp->snd_max; 447672dc4aeSJohn Baldwin tp->t_flags &= ~TF_PREVVALID; 448dbc42409SLawrence Stewart tp->t_badrxtwin = 0; 449dbc42409SLawrence Stewart break; 450dbc42409SLawrence Stewart } 451dbc42409SLawrence Stewart 452dbc42409SLawrence Stewart if (CC_ALGO(tp)->cong_signal != NULL) { 453dbc42409SLawrence Stewart if (th != NULL) 454dbc42409SLawrence Stewart tp->ccv->curack = th->th_ack; 455dbc42409SLawrence Stewart CC_ALGO(tp)->cong_signal(tp->ccv, type); 456dbc42409SLawrence Stewart } 457dbc42409SLawrence Stewart } 458dbc42409SLawrence Stewart 45955bceb1eSRandall Stewart void inline 460dbc42409SLawrence Stewart cc_post_recovery(struct tcpcb *tp, struct tcphdr *th) 461dbc42409SLawrence Stewart { 462dbc42409SLawrence Stewart INP_WLOCK_ASSERT(tp->t_inpcb); 463dbc42409SLawrence Stewart 464dbc42409SLawrence Stewart /* XXXLAS: KASSERT that we're in recovery? */ 465dbc42409SLawrence Stewart 466dbc42409SLawrence Stewart if (CC_ALGO(tp)->post_recovery != NULL) { 467dbc42409SLawrence Stewart tp->ccv->curack = th->th_ack; 468dbc42409SLawrence Stewart CC_ALGO(tp)->post_recovery(tp->ccv); 469dbc42409SLawrence Stewart } 470dbc42409SLawrence Stewart /* XXXLAS: EXIT_RECOVERY ? */ 471dbc42409SLawrence Stewart tp->t_bytes_acked = 0; 472dbc42409SLawrence Stewart } 4730312fbe9SPoul-Henning Kamp 474df8bae1dSRodney W. Grimes /* 475262c1c1aSMatthew Dillon * Indicate whether this ack should be delayed. We can delay the ack if 47685536381SHiren Panchasara * following conditions are met: 47785536381SHiren Panchasara * - There is no delayed ack timer in progress. 47885536381SHiren Panchasara * - Our last ack wasn't a 0-sized window. We never want to delay 47985536381SHiren Panchasara * the ack that opens up a 0-sized window. 48085536381SHiren Panchasara * - LRO wasn't used for this segment. We make sure by checking that the 48185536381SHiren Panchasara * segment size is not larger than the MSS. 482d8c85a26SJonathan Lemon */ 483c1e5a6e5SAndre Oppermann #define DELAY_ACK(tp, tlen) \ 484b8152ba7SAndre Oppermann ((!tcp_timer_active(tp, TT_DELACK) && \ 485a14c749fSJonathan Lemon (tp->t_flags & TF_RXWIN0SENT) == 0) && \ 4860c39d38dSGleb Smirnoff (tlen <= tp->t_maxseg) && \ 487603724d3SBjoern A. Zeeb (V_tcp_delack_enabled || (tp->t_flags & TF_NEEDSYN))) 488d8c85a26SJonathan Lemon 48964807b30SHiren Panchasara static void inline 49064807b30SHiren Panchasara cc_ecnpkt_handler(struct tcpcb *tp, struct tcphdr *th, uint8_t iptos) 49164807b30SHiren Panchasara { 49264807b30SHiren Panchasara INP_WLOCK_ASSERT(tp->t_inpcb); 49364807b30SHiren Panchasara 49464807b30SHiren Panchasara if (CC_ALGO(tp)->ecnpkt_handler != NULL) { 49564807b30SHiren Panchasara switch (iptos & IPTOS_ECN_MASK) { 49664807b30SHiren Panchasara case IPTOS_ECN_CE: 49764807b30SHiren Panchasara tp->ccv->flags |= CCF_IPHDR_CE; 49864807b30SHiren Panchasara break; 49964807b30SHiren Panchasara case IPTOS_ECN_ECT0: 50064807b30SHiren Panchasara tp->ccv->flags &= ~CCF_IPHDR_CE; 50164807b30SHiren Panchasara break; 50264807b30SHiren Panchasara case IPTOS_ECN_ECT1: 50364807b30SHiren Panchasara tp->ccv->flags &= ~CCF_IPHDR_CE; 50464807b30SHiren Panchasara break; 50564807b30SHiren Panchasara } 50664807b30SHiren Panchasara 50764807b30SHiren Panchasara if (th->th_flags & TH_CWR) 50864807b30SHiren Panchasara tp->ccv->flags |= CCF_TCPHDR_CWR; 50964807b30SHiren Panchasara else 51064807b30SHiren Panchasara tp->ccv->flags &= ~CCF_TCPHDR_CWR; 51164807b30SHiren Panchasara 51264807b30SHiren Panchasara if (tp->t_flags & TF_DELACK) 51364807b30SHiren Panchasara tp->ccv->flags |= CCF_DELACK; 51464807b30SHiren Panchasara else 51564807b30SHiren Panchasara tp->ccv->flags &= ~CCF_DELACK; 51664807b30SHiren Panchasara 51764807b30SHiren Panchasara CC_ALGO(tp)->ecnpkt_handler(tp->ccv); 51864807b30SHiren Panchasara 51964807b30SHiren Panchasara if (tp->ccv->flags & CCF_ACKNOW) 52064807b30SHiren Panchasara tcp_timer_activate(tp, TT_DELACK, tcp_delacktime); 52164807b30SHiren Panchasara } 52264807b30SHiren Panchasara } 52364807b30SHiren Panchasara 524df8bae1dSRodney W. Grimes /* 5258d573cc1SAndre Oppermann * TCP input handling is split into multiple parts: 5268d573cc1SAndre Oppermann * tcp6_input is a thin wrapper around tcp_input for the extended 5278d573cc1SAndre Oppermann * ip6_protox[] call format in ip6_input 5288d573cc1SAndre Oppermann * tcp_input handles primary segment validation, inpcb lookup and 5298d573cc1SAndre Oppermann * SYN processing on listen sockets 5308d573cc1SAndre Oppermann * tcp_do_segment processes the ACK and text of the segment for 5318d573cc1SAndre Oppermann * establishing, established and closing connections 532df8bae1dSRodney W. Grimes */ 533fb59c426SYoshinobu Inoue #ifdef INET6 534fb59c426SYoshinobu Inoue int 535ad3f9ab3SAndre Oppermann tcp6_input(struct mbuf **mp, int *offp, int proto) 536fb59c426SYoshinobu Inoue { 537ad3f9ab3SAndre Oppermann struct mbuf *m = *mp; 53833841545SHajimu UMEMOTO struct in6_ifaddr *ia6; 5393e88eb90SAndrey V. Elsukov struct ip6_hdr *ip6; 540fb59c426SYoshinobu Inoue 541fb59c426SYoshinobu Inoue IP6_EXTHDR_CHECK(m, *offp, sizeof(struct tcphdr), IPPROTO_DONE); 542fb59c426SYoshinobu Inoue 543fb59c426SYoshinobu Inoue /* 544fb59c426SYoshinobu Inoue * draft-itojun-ipv6-tcp-to-anycast 545fb59c426SYoshinobu Inoue * better place to put this in? 546fb59c426SYoshinobu Inoue */ 5473e88eb90SAndrey V. Elsukov ip6 = mtod(m, struct ip6_hdr *); 5483e88eb90SAndrey V. Elsukov ia6 = in6ifa_ifwithaddr(&ip6->ip6_dst, 0 /* XXX */); 54933841545SHajimu UMEMOTO if (ia6 && (ia6->ia6_flags & IN6_IFF_ANYCAST)) { 550fb59c426SYoshinobu Inoue struct ip6_hdr *ip6; 551fb59c426SYoshinobu Inoue 5528c0fec80SRobert Watson ifa_free(&ia6->ia_ifa); 553fb59c426SYoshinobu Inoue ip6 = mtod(m, struct ip6_hdr *); 554fb59c426SYoshinobu Inoue icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR, 555fb59c426SYoshinobu Inoue (caddr_t)&ip6->ip6_dst - (caddr_t)ip6); 5568f5a8818SKevin Lo return (IPPROTO_DONE); 557fb59c426SYoshinobu Inoue } 55877d396fdSMaksim Yevmenkin if (ia6) 55977d396fdSMaksim Yevmenkin ifa_free(&ia6->ia_ifa); 560fb59c426SYoshinobu Inoue 5618f5a8818SKevin Lo return (tcp_input(mp, offp, proto)); 562fb59c426SYoshinobu Inoue } 563b287c6c7SBjoern A. Zeeb #endif /* INET6 */ 564fb59c426SYoshinobu Inoue 5658f5a8818SKevin Lo int 5668f5a8818SKevin Lo tcp_input(struct mbuf **mp, int *offp, int proto) 567df8bae1dSRodney W. Grimes { 5688f5a8818SKevin Lo struct mbuf *m = *mp; 569b287c6c7SBjoern A. Zeeb struct tcphdr *th = NULL; 570ad3f9ab3SAndre Oppermann struct ip *ip = NULL; 571ad3f9ab3SAndre Oppermann struct inpcb *inp = NULL; 572302ce8d6SAndre Oppermann struct tcpcb *tp = NULL; 573302ce8d6SAndre Oppermann struct socket *so = NULL; 574e79adb8eSGarrett Wollman u_char *optp = NULL; 5758f5a8818SKevin Lo int off0; 57626f9a767SRodney W. Grimes int optlen = 0; 577b287c6c7SBjoern A. Zeeb #ifdef INET 578b287c6c7SBjoern A. Zeeb int len; 579b287c6c7SBjoern A. Zeeb #endif 580b287c6c7SBjoern A. Zeeb int tlen = 0, off; 581fb59c426SYoshinobu Inoue int drop_hdrlen; 582ad3f9ab3SAndre Oppermann int thflags; 583302ce8d6SAndre Oppermann int rstreason = 0; /* For badport_bandlim accounting purposes */ 5841d7ee746SKurt Lidl uint8_t iptos; 585c1de64a4SAndrey V. Elsukov struct m_tag *fwd_tag = NULL; 5866573d758SMatt Macy struct epoch_tracker et; 587c068736aSJeffrey Hsu #ifdef INET6 588302ce8d6SAndre Oppermann struct ip6_hdr *ip6 = NULL; 589c068736aSJeffrey Hsu int isipv6; 590c068736aSJeffrey Hsu #else 591a160e630SAndre Oppermann const void *ip6 = NULL; 592b287c6c7SBjoern A. Zeeb #endif /* INET6 */ 593302ce8d6SAndre Oppermann struct tcpopt to; /* options in this segment */ 594a160e630SAndre Oppermann char *s = NULL; /* address and port logging */ 595252ca428SRobert Watson int ti_locked; 596610ee2f9SDavid Greenman #ifdef TCPDEBUG 597c068736aSJeffrey Hsu /* 598c068736aSJeffrey Hsu * The size of tcp_saveipgen must be the size of the max ip header, 599c068736aSJeffrey Hsu * now IPv6. 600c068736aSJeffrey Hsu */ 60114739780SMaxim Konovalov u_char tcp_saveipgen[IP6_HDR_LEN]; 602410bb1bfSLuigi Rizzo struct tcphdr tcp_savetcp; 603610ee2f9SDavid Greenman short ostate = 0; 604610ee2f9SDavid Greenman #endif 605c068736aSJeffrey Hsu 606fb59c426SYoshinobu Inoue #ifdef INET6 607fb59c426SYoshinobu Inoue isipv6 = (mtod(m, struct ip *)->ip_v == 6) ? 1 : 0; 608fb59c426SYoshinobu Inoue #endif 609a0292f23SGarrett Wollman 6108f5a8818SKevin Lo off0 = *offp; 6118f5a8818SKevin Lo m = *mp; 6128f5a8818SKevin Lo *mp = NULL; 613302ce8d6SAndre Oppermann to.to_flags = 0; 61478b50714SRobert Watson TCPSTAT_INC(tcps_rcvtotal); 615fb59c426SYoshinobu Inoue 61604d3a452SHajimu UMEMOTO #ifdef INET6 617b287c6c7SBjoern A. Zeeb if (isipv6) { 6188d573cc1SAndre Oppermann /* IP6_EXTHDR_CHECK() is already done at tcp6_input(). */ 61945747ba5SBjoern A. Zeeb 62045747ba5SBjoern A. Zeeb if (m->m_len < (sizeof(*ip6) + sizeof(*th))) { 62145747ba5SBjoern A. Zeeb m = m_pullup(m, sizeof(*ip6) + sizeof(*th)); 62245747ba5SBjoern A. Zeeb if (m == NULL) { 62345747ba5SBjoern A. Zeeb TCPSTAT_INC(tcps_rcvshort); 6248f5a8818SKevin Lo return (IPPROTO_DONE); 62545747ba5SBjoern A. Zeeb } 62645747ba5SBjoern A. Zeeb } 62745747ba5SBjoern A. Zeeb 628fb59c426SYoshinobu Inoue ip6 = mtod(m, struct ip6_hdr *); 62945747ba5SBjoern A. Zeeb th = (struct tcphdr *)((caddr_t)ip6 + off0); 630fb59c426SYoshinobu Inoue tlen = sizeof(*ip6) + ntohs(ip6->ip6_plen) - off0; 631356ab07eSBjoern A. Zeeb if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID_IPV6) { 63245747ba5SBjoern A. Zeeb if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR) 63345747ba5SBjoern A. Zeeb th->th_sum = m->m_pkthdr.csum_data; 63445747ba5SBjoern A. Zeeb else 63545747ba5SBjoern A. Zeeb th->th_sum = in6_cksum_pseudo(ip6, tlen, 63645747ba5SBjoern A. Zeeb IPPROTO_TCP, m->m_pkthdr.csum_data); 63745747ba5SBjoern A. Zeeb th->th_sum ^= 0xffff; 63845747ba5SBjoern A. Zeeb } else 63945747ba5SBjoern A. Zeeb th->th_sum = in6_cksum(m, IPPROTO_TCP, off0, tlen); 64045747ba5SBjoern A. Zeeb if (th->th_sum) { 64178b50714SRobert Watson TCPSTAT_INC(tcps_rcvbadsum); 642fb59c426SYoshinobu Inoue goto drop; 643fb59c426SYoshinobu Inoue } 64433841545SHajimu UMEMOTO 64533841545SHajimu UMEMOTO /* 64633841545SHajimu UMEMOTO * Be proactive about unspecified IPv6 address in source. 64733841545SHajimu UMEMOTO * As we use all-zero to indicate unbounded/unconnected pcb, 64833841545SHajimu UMEMOTO * unspecified IPv6 address can be used to confuse us. 64933841545SHajimu UMEMOTO * 65033841545SHajimu UMEMOTO * Note that packets with unspecified IPv6 destination is 65133841545SHajimu UMEMOTO * already dropped in ip6_input. 65233841545SHajimu UMEMOTO */ 65333841545SHajimu UMEMOTO if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) { 65433841545SHajimu UMEMOTO /* XXX stat */ 65533841545SHajimu UMEMOTO goto drop; 65633841545SHajimu UMEMOTO } 6571d7ee746SKurt Lidl iptos = (ntohl(ip6->ip6_flow) >> 20) & 0xff; 658b287c6c7SBjoern A. Zeeb } 65904d3a452SHajimu UMEMOTO #endif 660b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6) 661b287c6c7SBjoern A. Zeeb else 662b287c6c7SBjoern A. Zeeb #endif 663b287c6c7SBjoern A. Zeeb #ifdef INET 664b287c6c7SBjoern A. Zeeb { 665df8bae1dSRodney W. Grimes /* 666df8bae1dSRodney W. Grimes * Get IP and TCP header together in first mbuf. 667df8bae1dSRodney W. Grimes * Note: IP leaves IP header in first mbuf. 668df8bae1dSRodney W. Grimes */ 669fb59c426SYoshinobu Inoue if (off0 > sizeof (struct ip)) { 670105bd211SGleb Smirnoff ip_stripoptions(m); 671fb59c426SYoshinobu Inoue off0 = sizeof(struct ip); 672fb59c426SYoshinobu Inoue } 673df8bae1dSRodney W. Grimes if (m->m_len < sizeof (struct tcpiphdr)) { 6744dfdffe9SAndre Oppermann if ((m = m_pullup(m, sizeof (struct tcpiphdr))) 6754dfdffe9SAndre Oppermann == NULL) { 67678b50714SRobert Watson TCPSTAT_INC(tcps_rcvshort); 6778f5a8818SKevin Lo return (IPPROTO_DONE); 678df8bae1dSRodney W. Grimes } 679df8bae1dSRodney W. Grimes } 680fb59c426SYoshinobu Inoue ip = mtod(m, struct ip *); 681db4f9cc7SJonathan Lemon th = (struct tcphdr *)((caddr_t)ip + off0); 6828ad458a4SGleb Smirnoff tlen = ntohs(ip->ip_len) - off0; 683df8bae1dSRodney W. Grimes 6841d7ee746SKurt Lidl iptos = ip->ip_tos; 685db4f9cc7SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) { 686db4f9cc7SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR) 687db4f9cc7SJonathan Lemon th->th_sum = m->m_pkthdr.csum_data; 688db4f9cc7SJonathan Lemon else 689db4f9cc7SJonathan Lemon th->th_sum = in_pseudo(ip->ip_src.s_addr, 690c068736aSJeffrey Hsu ip->ip_dst.s_addr, 6918f134647SGleb Smirnoff htonl(m->m_pkthdr.csum_data + tlen + 692c068736aSJeffrey Hsu IPPROTO_TCP)); 693db4f9cc7SJonathan Lemon th->th_sum ^= 0xffff; 694db4f9cc7SJonathan Lemon } else { 6958f134647SGleb Smirnoff struct ipovly *ipov = (struct ipovly *)ip; 6968f134647SGleb Smirnoff 697df8bae1dSRodney W. Grimes /* 698df8bae1dSRodney W. Grimes * Checksum extended TCP header and data. 699df8bae1dSRodney W. Grimes */ 7008f134647SGleb Smirnoff len = off0 + tlen; 701fb59c426SYoshinobu Inoue bzero(ipov->ih_x1, sizeof(ipov->ih_x1)); 7028f134647SGleb Smirnoff ipov->ih_len = htons(tlen); 703fb59c426SYoshinobu Inoue th->th_sum = in_cksum(m, len); 70457f60867SMark Johnston /* Reset length for SDT probes. */ 7051d7ee746SKurt Lidl ip->ip_len = htons(len); 7061d7ee746SKurt Lidl /* Reset TOS bits */ 7071d7ee746SKurt Lidl ip->ip_tos = iptos; 7081d7ee746SKurt Lidl /* Re-initialization for later version check */ 7091d7ee746SKurt Lidl ip->ip_v = IPVERSION; 710b2fe54bcSAndrey V. Elsukov ip->ip_hl = off0 >> 2; 711db4f9cc7SJonathan Lemon } 71257f60867SMark Johnston 713fb59c426SYoshinobu Inoue if (th->th_sum) { 71478b50714SRobert Watson TCPSTAT_INC(tcps_rcvbadsum); 715df8bae1dSRodney W. Grimes goto drop; 716df8bae1dSRodney W. Grimes } 717fb59c426SYoshinobu Inoue } 718b287c6c7SBjoern A. Zeeb #endif /* INET */ 719df8bae1dSRodney W. Grimes 720df8bae1dSRodney W. Grimes /* 721df8bae1dSRodney W. Grimes * Check that TCP offset makes sense, 722df8bae1dSRodney W. Grimes * pull out TCP options and adjust length. XXX 723df8bae1dSRodney W. Grimes */ 724fb59c426SYoshinobu Inoue off = th->th_off << 2; 725df8bae1dSRodney W. Grimes if (off < sizeof (struct tcphdr) || off > tlen) { 72678b50714SRobert Watson TCPSTAT_INC(tcps_rcvbadoff); 727df8bae1dSRodney W. Grimes goto drop; 728df8bae1dSRodney W. Grimes } 729fb59c426SYoshinobu Inoue tlen -= off; /* tlen is used instead of ti->ti_len */ 730df8bae1dSRodney W. Grimes if (off > sizeof (struct tcphdr)) { 73104d3a452SHajimu UMEMOTO #ifdef INET6 732b287c6c7SBjoern A. Zeeb if (isipv6) { 7338f5a8818SKevin Lo IP6_EXTHDR_CHECK(m, off0, off, IPPROTO_DONE); 734fb59c426SYoshinobu Inoue ip6 = mtod(m, struct ip6_hdr *); 735fb59c426SYoshinobu Inoue th = (struct tcphdr *)((caddr_t)ip6 + off0); 736b287c6c7SBjoern A. Zeeb } 73704d3a452SHajimu UMEMOTO #endif 738b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6) 739b287c6c7SBjoern A. Zeeb else 740b287c6c7SBjoern A. Zeeb #endif 741b287c6c7SBjoern A. Zeeb #ifdef INET 742b287c6c7SBjoern A. Zeeb { 743df8bae1dSRodney W. Grimes if (m->m_len < sizeof(struct ip) + off) { 744c068736aSJeffrey Hsu if ((m = m_pullup(m, sizeof (struct ip) + off)) 7454dfdffe9SAndre Oppermann == NULL) { 74678b50714SRobert Watson TCPSTAT_INC(tcps_rcvshort); 7478f5a8818SKevin Lo return (IPPROTO_DONE); 748df8bae1dSRodney W. Grimes } 749fb59c426SYoshinobu Inoue ip = mtod(m, struct ip *); 750fb59c426SYoshinobu Inoue th = (struct tcphdr *)((caddr_t)ip + off0); 751fb59c426SYoshinobu Inoue } 752df8bae1dSRodney W. Grimes } 753b287c6c7SBjoern A. Zeeb #endif 754df8bae1dSRodney W. Grimes optlen = off - sizeof (struct tcphdr); 755fb59c426SYoshinobu Inoue optp = (u_char *)(th + 1); 756df8bae1dSRodney W. Grimes } 757fb59c426SYoshinobu Inoue thflags = th->th_flags; 758df8bae1dSRodney W. Grimes 759e46cd3d4SDag-Erling Smørgrav /* 760df8bae1dSRodney W. Grimes * Convert TCP protocol specific fields to host format. 761df8bae1dSRodney W. Grimes */ 7622903309aSAttilio Rao tcp_fields_to_host(th); 763df8bae1dSRodney W. Grimes 764df8bae1dSRodney W. Grimes /* 765794235b7SAndre Oppermann * Delay dropping TCP, IP headers, IPv6 ext headers, and TCP options. 766755c1f07SAndras Olah */ 767fb59c426SYoshinobu Inoue drop_hdrlen = off0 + off; 768755c1f07SAndras Olah 769755c1f07SAndras Olah /* 770fa046d87SRobert Watson * Locate pcb for segment; if we're likely to add or remove a 771a7c7f2a7SJohn Baldwin * connection then first acquire pcbinfo lock. There are three cases 772fa046d87SRobert Watson * where we might discover later we need a write lock despite the 773a7c7f2a7SJohn Baldwin * flags: ACKs moving a connection out of the syncache, ACKs for a 774a7c7f2a7SJohn Baldwin * connection in TIMEWAIT and SYNs not targeting a listening socket. 775df8bae1dSRodney W. Grimes */ 776a7c7f2a7SJohn Baldwin if ((thflags & (TH_FIN | TH_RST)) != 0) { 7776573d758SMatt Macy INP_INFO_RLOCK_ET(&V_tcbinfo, et); 778ff9b006dSJulien Charbon ti_locked = TI_RLOCKED; 779fa046d87SRobert Watson } else 780fa046d87SRobert Watson ti_locked = TI_UNLOCKED; 781252ca428SRobert Watson 7828d573cc1SAndre Oppermann /* 7838d573cc1SAndre Oppermann * Grab info from PACKET_TAG_IPFORWARD tag prepended to the chain. 7848d573cc1SAndre Oppermann */ 785b8056faeSGleb Smirnoff if ( 786b8056faeSGleb Smirnoff #ifdef INET6 787b8056faeSGleb Smirnoff (isipv6 && (m->m_flags & M_IP6_NEXTHOP)) 788b8056faeSGleb Smirnoff #ifdef INET 789b8056faeSGleb Smirnoff || (!isipv6 && (m->m_flags & M_IP_NEXTHOP)) 790b8056faeSGleb Smirnoff #endif 791b8056faeSGleb Smirnoff #endif 792b8056faeSGleb Smirnoff #if defined(INET) && !defined(INET6) 793b8056faeSGleb Smirnoff (m->m_flags & M_IP_NEXTHOP) 794b8056faeSGleb Smirnoff #endif 795b8056faeSGleb Smirnoff ) 7969b932e9eSAndre Oppermann fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL); 7979b932e9eSAndre Oppermann 798ce7ad664SEd Maste findpcb: 799ce7ad664SEd Maste #ifdef INVARIANTS 800ff9b006dSJulien Charbon if (ti_locked == TI_RLOCKED) { 801ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 802ce7ad664SEd Maste } else { 803ce7ad664SEd Maste INP_INFO_UNLOCK_ASSERT(&V_tcbinfo); 804ce7ad664SEd Maste } 805ce7ad664SEd Maste #endif 8068a006adbSBjoern A. Zeeb #ifdef INET6 8078a006adbSBjoern A. Zeeb if (isipv6 && fwd_tag != NULL) { 8088a006adbSBjoern A. Zeeb struct sockaddr_in6 *next_hop6; 8098a006adbSBjoern A. Zeeb 8108a006adbSBjoern A. Zeeb next_hop6 = (struct sockaddr_in6 *)(fwd_tag + 1); 8118a006adbSBjoern A. Zeeb /* 8128a006adbSBjoern A. Zeeb * Transparently forwarded. Pretend to be the destination. 8138a006adbSBjoern A. Zeeb * Already got one like this? 8148a006adbSBjoern A. Zeeb */ 8158a006adbSBjoern A. Zeeb inp = in6_pcblookup_mbuf(&V_tcbinfo, 8168a006adbSBjoern A. Zeeb &ip6->ip6_src, th->th_sport, &ip6->ip6_dst, th->th_dport, 8178a006adbSBjoern A. Zeeb INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif, m); 8188a006adbSBjoern A. Zeeb if (!inp) { 8198a006adbSBjoern A. Zeeb /* 8208a006adbSBjoern A. Zeeb * It's new. Try to find the ambushing socket. 8218a006adbSBjoern A. Zeeb * Because we've rewritten the destination address, 8228a006adbSBjoern A. Zeeb * any hardware-generated hash is ignored. 8238a006adbSBjoern A. Zeeb */ 8248a006adbSBjoern A. Zeeb inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_src, 8258a006adbSBjoern A. Zeeb th->th_sport, &next_hop6->sin6_addr, 8268a006adbSBjoern A. Zeeb next_hop6->sin6_port ? ntohs(next_hop6->sin6_port) : 8278a006adbSBjoern A. Zeeb th->th_dport, INPLOOKUP_WILDCARD | 8288a006adbSBjoern A. Zeeb INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif); 8298a006adbSBjoern A. Zeeb } 830c1de64a4SAndrey V. Elsukov } else if (isipv6) { 8318a006adbSBjoern A. Zeeb inp = in6_pcblookup_mbuf(&V_tcbinfo, &ip6->ip6_src, 8328a006adbSBjoern A. Zeeb th->th_sport, &ip6->ip6_dst, th->th_dport, 8338a006adbSBjoern A. Zeeb INPLOOKUP_WILDCARD | INPLOOKUP_WLOCKPCB, 8348a006adbSBjoern A. Zeeb m->m_pkthdr.rcvif, m); 8358a006adbSBjoern A. Zeeb } 8368a006adbSBjoern A. Zeeb #endif /* INET6 */ 8378a006adbSBjoern A. Zeeb #if defined(INET6) && defined(INET) 8388a006adbSBjoern A. Zeeb else 8398a006adbSBjoern A. Zeeb #endif 8408a006adbSBjoern A. Zeeb #ifdef INET 8418a006adbSBjoern A. Zeeb if (fwd_tag != NULL) { 8429b932e9eSAndre Oppermann struct sockaddr_in *next_hop; 8439b932e9eSAndre Oppermann 8449b932e9eSAndre Oppermann next_hop = (struct sockaddr_in *)(fwd_tag+1); 845f9e354dfSJulian Elischer /* 8462b25acc1SLuigi Rizzo * Transparently forwarded. Pretend to be the destination. 847f9e354dfSJulian Elischer * already got one like this? 848f9e354dfSJulian Elischer */ 849d3c1f003SRobert Watson inp = in_pcblookup_mbuf(&V_tcbinfo, ip->ip_src, th->th_sport, 850fa046d87SRobert Watson ip->ip_dst, th->th_dport, INPLOOKUP_WLOCKPCB, 851d3c1f003SRobert Watson m->m_pkthdr.rcvif, m); 852fa046d87SRobert Watson if (!inp) { 853fa046d87SRobert Watson /* 854fa046d87SRobert Watson * It's new. Try to find the ambushing socket. 855d3c1f003SRobert Watson * Because we've rewritten the destination address, 856d3c1f003SRobert Watson * any hardware-generated hash is ignored. 857fa046d87SRobert Watson */ 858fa046d87SRobert Watson inp = in_pcblookup(&V_tcbinfo, ip->ip_src, 859fa046d87SRobert Watson th->th_sport, next_hop->sin_addr, 860fa046d87SRobert Watson next_hop->sin_port ? ntohs(next_hop->sin_port) : 861fa046d87SRobert Watson th->th_dport, INPLOOKUP_WILDCARD | 862fa046d87SRobert Watson INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif); 863f9e354dfSJulian Elischer } 864b10fbdeaSAndre Oppermann } else 865d3c1f003SRobert Watson inp = in_pcblookup_mbuf(&V_tcbinfo, ip->ip_src, 866fa046d87SRobert Watson th->th_sport, ip->ip_dst, th->th_dport, 867fa046d87SRobert Watson INPLOOKUP_WILDCARD | INPLOOKUP_WLOCKPCB, 868d3c1f003SRobert Watson m->m_pkthdr.rcvif, m); 8698a006adbSBjoern A. Zeeb #endif /* INET */ 870f9e354dfSJulian Elischer 871df8bae1dSRodney W. Grimes /* 872574b6964SAndre Oppermann * If the INPCB does not exist then all data in the incoming 873574b6964SAndre Oppermann * segment is discarded and an appropriate RST is sent back. 8748b07e49aSJulian Elischer * XXX MRT Send RST using which routing table? 875df8bae1dSRodney W. Grimes */ 876816a3d83SPoul-Henning Kamp if (inp == NULL) { 877574b6964SAndre Oppermann /* 878574b6964SAndre Oppermann * Log communication attempts to ports that are not 879574b6964SAndre Oppermann * in use. 880574b6964SAndre Oppermann */ 881574b6964SAndre Oppermann if ((tcp_log_in_vain == 1 && (thflags & TH_SYN)) || 882574b6964SAndre Oppermann tcp_log_in_vain == 2) { 883b7d747ecSAndre Oppermann if ((s = tcp_log_vain(NULL, th, (void *)ip, ip6))) 884df541e5fSAndre Oppermann log(LOG_INFO, "%s; %s: Connection attempt " 885df541e5fSAndre Oppermann "to closed port\n", s, __func__); 8862e4e1b4cSGeoff Rehmet } 887574b6964SAndre Oppermann /* 888574b6964SAndre Oppermann * When blackholing do not respond with a RST but 889574b6964SAndre Oppermann * completely ignore the segment and drop it. 890574b6964SAndre Oppermann */ 891603724d3SBjoern A. Zeeb if ((V_blackhole == 1 && (thflags & TH_SYN)) || 892603724d3SBjoern A. Zeeb V_blackhole == 2) 8931929eae1SAndre Oppermann goto dropunlock; 894574b6964SAndre Oppermann 895a57815efSBosko Milekic rstreason = BANDLIM_RST_CLOSEDPORT; 896a57815efSBosko Milekic goto dropwithreset; 897816a3d83SPoul-Henning Kamp } 898fa046d87SRobert Watson INP_WLOCK_ASSERT(inp); 899f5cf1e5fSJulien Charbon /* 900f5cf1e5fSJulien Charbon * While waiting for inp lock during the lookup, another thread 901f5cf1e5fSJulien Charbon * can have dropped the inpcb, in which case we need to loop back 902f5cf1e5fSJulien Charbon * and try to find a new inpcb to deliver to. 903f5cf1e5fSJulien Charbon */ 904f5cf1e5fSJulien Charbon if (inp->inp_flags & INP_DROPPED) { 905f5cf1e5fSJulien Charbon INP_WUNLOCK(inp); 906f5cf1e5fSJulien Charbon inp = NULL; 907f5cf1e5fSJulien Charbon goto findpcb; 908f5cf1e5fSJulien Charbon } 909c2529042SHans Petter Selasky if ((inp->inp_flowtype == M_HASHTYPE_NONE) && 910c2529042SHans Petter Selasky (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) && 911c2529042SHans Petter Selasky ((inp->inp_socket == NULL) || 912c2529042SHans Petter Selasky (inp->inp_socket->so_options & SO_ACCEPTCONN) == 0)) { 91380cb9f21SKip Macy inp->inp_flowid = m->m_pkthdr.flowid; 9142f719932SAdrian Chadd inp->inp_flowtype = M_HASHTYPE_GET(m); 91580cb9f21SKip Macy } 916fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT) 917a2589465SKen Smith #ifdef INET6 918fcf59617SAndrey V. Elsukov if (isipv6 && IPSEC_ENABLED(ipv6) && 919fcf59617SAndrey V. Elsukov IPSEC_CHECK_POLICY(ipv6, m, inp) != 0) { 920a2589465SKen Smith goto dropunlock; 921a2589465SKen Smith } 922fcf59617SAndrey V. Elsukov #ifdef INET 923fcf59617SAndrey V. Elsukov else 924fcf59617SAndrey V. Elsukov #endif 925fcf59617SAndrey V. Elsukov #endif /* INET6 */ 926fcf59617SAndrey V. Elsukov #ifdef INET 927fcf59617SAndrey V. Elsukov if (IPSEC_ENABLED(ipv4) && 928fcf59617SAndrey V. Elsukov IPSEC_CHECK_POLICY(ipv4, m, inp) != 0) { 929fcf59617SAndrey V. Elsukov goto dropunlock; 930fcf59617SAndrey V. Elsukov } 931fcf59617SAndrey V. Elsukov #endif /* INET */ 932a2589465SKen Smith #endif /* IPSEC */ 933a2589465SKen Smith 9348d573cc1SAndre Oppermann /* 9358d573cc1SAndre Oppermann * Check the minimum TTL for socket. 9368d573cc1SAndre Oppermann */ 93734f83c52SGeorge V. Neville-Neil if (inp->inp_ip_minttl != 0) { 93834f83c52SGeorge V. Neville-Neil #ifdef INET6 9392d8868dbSJonathan T. Looney if (isipv6) { 9402d8868dbSJonathan T. Looney if (inp->inp_ip_minttl > ip6->ip6_hlim) 941302ce8d6SAndre Oppermann goto dropunlock; 9422d8868dbSJonathan T. Looney } else 94334f83c52SGeorge V. Neville-Neil #endif 94434f83c52SGeorge V. Neville-Neil if (inp->inp_ip_minttl > ip->ip_ttl) 945302ce8d6SAndre Oppermann goto dropunlock; 94634f83c52SGeorge V. Neville-Neil } 947936cd18dSAndre Oppermann 948340c35deSJonathan Lemon /* 949252ca428SRobert Watson * A previous connection in TIMEWAIT state is supposed to catch stray 950252ca428SRobert Watson * or duplicate segments arriving late. If this segment was a 9510989f56cSRobert Watson * legitimate new connection attempt, the old INPCB gets removed and 952252ca428SRobert Watson * we can try again to find a listening socket. 953252ca428SRobert Watson * 954fa046d87SRobert Watson * At this point, due to earlier optimism, we may hold only an inpcb 955fa046d87SRobert Watson * lock, and not the inpcbinfo write lock. If so, we need to try to 956fa046d87SRobert Watson * acquire it, or if that fails, acquire a reference on the inpcb, 957fa046d87SRobert Watson * drop all locks, acquire a global write lock, and then re-acquire 958fa046d87SRobert Watson * the inpcb lock. We may at that point discover that another thread 959fa046d87SRobert Watson * has tried to free the inpcb, in which case we need to loop back 960fa046d87SRobert Watson * and try to find a new inpcb to deliver to. 961fa046d87SRobert Watson * 962fa046d87SRobert Watson * XXXRW: It may be time to rethink timewait locking. 963340c35deSJonathan Lemon */ 964ad71fe3cSRobert Watson if (inp->inp_flags & INP_TIMEWAIT) { 965fa046d87SRobert Watson if (ti_locked == TI_UNLOCKED) { 9666573d758SMatt Macy INP_INFO_RLOCK_ET(&V_tcbinfo, et); 967ff9b006dSJulien Charbon ti_locked = TI_RLOCKED; 968252ca428SRobert Watson } 969ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 970252ca428SRobert Watson 971340c35deSJonathan Lemon if (thflags & TH_SYN) 972f72167f4SAndre Oppermann tcp_dooptions(&to, optp, optlen, TO_SYN); 9738d573cc1SAndre Oppermann /* 9748d573cc1SAndre Oppermann * NB: tcp_twcheck unlocks the INP and frees the mbuf. 9758d573cc1SAndre Oppermann */ 9762104448fSAndre Oppermann if (tcp_twcheck(inp, &to, th, m, tlen)) 977340c35deSJonathan Lemon goto findpcb; 9786573d758SMatt Macy INP_INFO_RUNLOCK_ET(&V_tcbinfo, et); 9798f5a8818SKevin Lo return (IPPROTO_DONE); 980340c35deSJonathan Lemon } 981794235b7SAndre Oppermann /* 982794235b7SAndre Oppermann * The TCPCB may no longer exist if the connection is winding 983794235b7SAndre Oppermann * down or it is in the CLOSED state. Either way we drop the 984794235b7SAndre Oppermann * segment and send an appropriate response. 985794235b7SAndre Oppermann */ 986df8bae1dSRodney W. Grimes tp = intotcpcb(inp); 987a160e630SAndre Oppermann if (tp == NULL || tp->t_state == TCPS_CLOSED) { 988a57815efSBosko Milekic rstreason = BANDLIM_RST_CLOSEDPORT; 989a57815efSBosko Milekic goto dropwithreset; 99009f81a46SBosko Milekic } 991df8bae1dSRodney W. Grimes 99209fe6320SNavdeep Parhar #ifdef TCP_OFFLOAD 99309fe6320SNavdeep Parhar if (tp->t_flags & TF_TOE) { 99409fe6320SNavdeep Parhar tcp_offload_input(tp, m); 99509fe6320SNavdeep Parhar m = NULL; /* consumed by the TOE driver */ 99609fe6320SNavdeep Parhar goto dropunlock; 99709fe6320SNavdeep Parhar } 99809fe6320SNavdeep Parhar #endif 99909fe6320SNavdeep Parhar 1000252ca428SRobert Watson /* 1001252ca428SRobert Watson * We've identified a valid inpcb, but it could be that we need an 1002fa046d87SRobert Watson * inpcbinfo write lock but don't hold it. In this case, attempt to 1003fa046d87SRobert Watson * acquire using the same strategy as the TIMEWAIT case above. If we 1004fa046d87SRobert Watson * relock, we have to jump back to 'relocked' as the connection might 1005fa046d87SRobert Watson * now be in TIMEWAIT. 1006252ca428SRobert Watson */ 1007fa046d87SRobert Watson #ifdef INVARIANTS 1008a7c7f2a7SJohn Baldwin if ((thflags & (TH_FIN | TH_RST)) != 0) 1009ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 1010fa046d87SRobert Watson #endif 1011a7c7f2a7SJohn Baldwin if (!((tp->t_state == TCPS_ESTABLISHED && (thflags & TH_SYN) == 0) || 1012281a0fd4SPatrick Kelsey (tp->t_state == TCPS_LISTEN && (thflags & TH_SYN) && 101368bd7ed1SJonathan T. Looney !IS_FASTOPEN(tp->t_flags)))) { 1014fa046d87SRobert Watson if (ti_locked == TI_UNLOCKED) { 10156573d758SMatt Macy INP_INFO_RLOCK_ET(&V_tcbinfo, et); 1016ff9b006dSJulien Charbon ti_locked = TI_RLOCKED; 1017252ca428SRobert Watson } 1018ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 1019252ca428SRobert Watson } 1020252ca428SRobert Watson 1021c488362eSRobert Watson #ifdef MAC 10228501a69cSRobert Watson INP_WLOCK_ASSERT(inp); 102330d239bcSRobert Watson if (mac_inpcb_check_deliver(inp, m)) 1024302ce8d6SAndre Oppermann goto dropunlock; 1025c488362eSRobert Watson #endif 1026a557af22SRobert Watson so = inp->inp_socket; 1027302ce8d6SAndre Oppermann KASSERT(so != NULL, ("%s: so == NULL", __func__)); 1028610ee2f9SDavid Greenman #ifdef TCPDEBUG 1029df8bae1dSRodney W. Grimes if (so->so_options & SO_DEBUG) { 1030df8bae1dSRodney W. Grimes ostate = tp->t_state; 103110fe523eSMaxim Konovalov #ifdef INET6 10326f697424SBjoern A. Zeeb if (isipv6) { 1033540e8b7eSJeffrey Hsu bcopy((char *)ip6, (char *)tcp_saveipgen, sizeof(*ip6)); 1034d30d90dcSMaxim Konovalov } else 10356f697424SBjoern A. Zeeb #endif 1036540e8b7eSJeffrey Hsu bcopy((char *)ip, (char *)tcp_saveipgen, sizeof(*ip)); 1037fb59c426SYoshinobu Inoue tcp_savetcp = *th; 1038df8bae1dSRodney W. Grimes } 1039b287c6c7SBjoern A. Zeeb #endif /* TCPDEBUG */ 1040db33b3e6SAndre Oppermann /* 1041db33b3e6SAndre Oppermann * When the socket is accepting connections (the INPCB is in LISTEN 1042db33b3e6SAndre Oppermann * state) we look into the SYN cache if this is a new connection 1043a7c7f2a7SJohn Baldwin * attempt or the completion of a previous one. 1044db33b3e6SAndre Oppermann */ 104545274760SJonathan T. Looney KASSERT(tp->t_state == TCPS_LISTEN || !(so->so_options & SO_ACCEPTCONN), 104645274760SJonathan T. Looney ("%s: so accepting but tp %p not listening", __func__, tp)); 104745274760SJonathan T. Looney if (tp->t_state == TCPS_LISTEN && (so->so_options & SO_ACCEPTCONN)) { 1048540e8b7eSJeffrey Hsu struct in_conninfo inc; 1049540e8b7eSJeffrey Hsu 10508bfb1918SAndre Oppermann bzero(&inc, sizeof(inc)); 1051302ce8d6SAndre Oppermann #ifdef INET6 1052be2ac88cSJonathan Lemon if (isipv6) { 1053dcdb4371SBjoern A. Zeeb inc.inc_flags |= INC_ISIPV6; 1054*5dff1c38SMichael Tuexen if (inp->inp_inc.inc_flags & INC_IPV6MINMTU) 1055*5dff1c38SMichael Tuexen inc.inc_flags |= INC_IPV6MINMTU; 1056be2ac88cSJonathan Lemon inc.inc6_faddr = ip6->ip6_src; 1057be2ac88cSJonathan Lemon inc.inc6_laddr = ip6->ip6_dst; 1058302ce8d6SAndre Oppermann } else 1059302ce8d6SAndre Oppermann #endif 1060302ce8d6SAndre Oppermann { 1061be2ac88cSJonathan Lemon inc.inc_faddr = ip->ip_src; 1062be2ac88cSJonathan Lemon inc.inc_laddr = ip->ip_dst; 1063be2ac88cSJonathan Lemon } 1064be2ac88cSJonathan Lemon inc.inc_fport = th->th_sport; 1065be2ac88cSJonathan Lemon inc.inc_lport = th->th_dport; 10667973fba3SJulian Elischer inc.inc_fibnum = so->so_fibnum; 1067be2ac88cSJonathan Lemon 1068fb59c426SYoshinobu Inoue /* 10698d573cc1SAndre Oppermann * Check for an existing connection attempt in syncache if 10708d573cc1SAndre Oppermann * the flag is only ACK. A successful lookup creates a new 10718d573cc1SAndre Oppermann * socket appended to the listen queue in SYN_RECEIVED state. 1072fb59c426SYoshinobu Inoue */ 1073be2ac88cSJonathan Lemon if ((thflags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK) { 1074a7c7f2a7SJohn Baldwin 1075ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 1076bf6d304aSAndre Oppermann /* 1077bf6d304aSAndre Oppermann * Parse the TCP options here because 1078bf6d304aSAndre Oppermann * syncookies need access to the reflected 1079bf6d304aSAndre Oppermann * timestamp. 1080bf6d304aSAndre Oppermann */ 1081bf6d304aSAndre Oppermann tcp_dooptions(&to, optp, optlen, 0); 10829fa198beSAndre Oppermann /* 10839fa198beSAndre Oppermann * NB: syncache_expand() doesn't unlock 10849fa198beSAndre Oppermann * inp and tcpinfo locks. 10859fa198beSAndre Oppermann */ 1086fcf59617SAndrey V. Elsukov rstreason = syncache_expand(&inc, &to, th, &so, m); 1087fcf59617SAndrey V. Elsukov if (rstreason < 0) { 1088fcf59617SAndrey V. Elsukov /* 1089fcf59617SAndrey V. Elsukov * A failing TCP MD5 signature comparison 1090fcf59617SAndrey V. Elsukov * must result in the segment being dropped 1091fcf59617SAndrey V. Elsukov * and must not produce any response back 1092fcf59617SAndrey V. Elsukov * to the sender. 1093fcf59617SAndrey V. Elsukov */ 1094fcf59617SAndrey V. Elsukov goto dropunlock; 1095fcf59617SAndrey V. Elsukov } else if (rstreason == 0) { 10964195b4afSPaul Traina /* 1097e207f800SAndre Oppermann * No syncache entry or ACK was not 1098be2ac88cSJonathan Lemon * for our SYN/ACK. Send a RST. 10998d573cc1SAndre Oppermann * NB: syncache did its own logging 11008d573cc1SAndre Oppermann * of the failure cause. 11014195b4afSPaul Traina */ 1102be2ac88cSJonathan Lemon rstreason = BANDLIM_RST_OPENPORT; 1103be2ac88cSJonathan Lemon goto dropwithreset; 1104be2ac88cSJonathan Lemon } 110509c305ebSPatrick Kelsey tfo_socket_result: 1106f76fcf6dSJeffrey Hsu if (so == NULL) { 1107be2ac88cSJonathan Lemon /* 1108e207f800SAndre Oppermann * We completed the 3-way handshake 1109e207f800SAndre Oppermann * but could not allocate a socket 1110e207f800SAndre Oppermann * either due to memory shortage, 1111e207f800SAndre Oppermann * listen queue length limits or 1112a160e630SAndre Oppermann * global socket limits. Send RST 1113a160e630SAndre Oppermann * or wait and have the remote end 1114a160e630SAndre Oppermann * retransmit the ACK for another 1115a160e630SAndre Oppermann * try. 1116be2ac88cSJonathan Lemon */ 1117a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1118a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 11198d573cc1SAndre Oppermann "Socket allocation failed due to " 11208d573cc1SAndre Oppermann "limits or memory shortage, %s\n", 1121ac957cd2SJulian Elischer s, __func__, 1122ac957cd2SJulian Elischer V_tcp_sc_rst_sock_fail ? 1123ac957cd2SJulian Elischer "sending RST" : "try again"); 1124603724d3SBjoern A. Zeeb if (V_tcp_sc_rst_sock_fail) { 1125e207f800SAndre Oppermann rstreason = BANDLIM_UNLIMITED; 1126e207f800SAndre Oppermann goto dropwithreset; 1127a160e630SAndre Oppermann } else 1128a160e630SAndre Oppermann goto dropunlock; 1129f76fcf6dSJeffrey Hsu } 1130be2ac88cSJonathan Lemon /* 1131be2ac88cSJonathan Lemon * Socket is created in state SYN_RECEIVED. 11328d573cc1SAndre Oppermann * Unlock the listen socket, lock the newly 11338d573cc1SAndre Oppermann * created socket and update the tp variable. 1134be2ac88cSJonathan Lemon */ 11358501a69cSRobert Watson INP_WUNLOCK(inp); /* listen socket */ 1136be2ac88cSJonathan Lemon inp = sotoinpcb(so); 1137ff9b006dSJulien Charbon /* 1138ff9b006dSJulien Charbon * New connection inpcb is already locked by 1139ff9b006dSJulien Charbon * syncache_expand(). 1140ff9b006dSJulien Charbon */ 1141ff9b006dSJulien Charbon INP_WLOCK_ASSERT(inp); 1142be2ac88cSJonathan Lemon tp = intotcpcb(inp); 11438d573cc1SAndre Oppermann KASSERT(tp->t_state == TCPS_SYN_RECEIVED, 11448d573cc1SAndre Oppermann ("%s: ", __func__)); 1145be2ac88cSJonathan Lemon /* 1146302ce8d6SAndre Oppermann * Process the segment and the data it 1147302ce8d6SAndre Oppermann * contains. tcp_do_segment() consumes 1148302ce8d6SAndre Oppermann * the mbuf chain and unlocks the inpcb. 1149302ce8d6SAndre Oppermann */ 11506138da62SMichael Tuexen TCP_PROBE5(receive, NULL, tp, m, tp, th); 115155bceb1eSRandall Stewart tp->t_fb->tfb_tcp_do_segment(m, th, so, tp, drop_hdrlen, tlen, 11526573d758SMatt Macy iptos); 11536573d758SMatt Macy if (ti_locked == TI_RLOCKED) 11546573d758SMatt Macy INP_INFO_RUNLOCK_ET(&V_tcbinfo, et); 11558f5a8818SKevin Lo return (IPPROTO_DONE); 1156be2ac88cSJonathan Lemon } 1157a160e630SAndre Oppermann /* 11588d573cc1SAndre Oppermann * Segment flag validation for new connection attempts: 11598d573cc1SAndre Oppermann * 1160a160e630SAndre Oppermann * Our (SYN|ACK) response was rejected. 1161a160e630SAndre Oppermann * Check with syncache and remove entry to prevent 1162a160e630SAndre Oppermann * retransmits. 116319bc77c5SAndre Oppermann * 116419bc77c5SAndre Oppermann * NB: syncache_chkrst does its own logging of failure 116519bc77c5SAndre Oppermann * causes. 1166a160e630SAndre Oppermann */ 1167a160e630SAndre Oppermann if (thflags & TH_RST) { 116819bc77c5SAndre Oppermann syncache_chkrst(&inc, th); 1169a160e630SAndre Oppermann goto dropunlock; 1170a160e630SAndre Oppermann } 1171a160e630SAndre Oppermann /* 1172a160e630SAndre Oppermann * We can't do anything without SYN. 1173a160e630SAndre Oppermann */ 1174a160e630SAndre Oppermann if ((thflags & TH_SYN) == 0) { 1175a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1176a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 1177773673c1SAndre Oppermann "SYN is missing, segment ignored\n", 11788d573cc1SAndre Oppermann s, __func__); 117978b50714SRobert Watson TCPSTAT_INC(tcps_badsyn); 1180a160e630SAndre Oppermann goto dropunlock; 1181a160e630SAndre Oppermann } 1182a160e630SAndre Oppermann /* 1183a160e630SAndre Oppermann * (SYN|ACK) is bogus on a listen socket. 1184a160e630SAndre Oppermann */ 1185fb59c426SYoshinobu Inoue if (thflags & TH_ACK) { 1186a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1187a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 11888d573cc1SAndre Oppermann "SYN|ACK invalid, segment rejected\n", 11898d573cc1SAndre Oppermann s, __func__); 1190a160e630SAndre Oppermann syncache_badack(&inc); /* XXX: Not needed! */ 119178b50714SRobert Watson TCPSTAT_INC(tcps_badsyn); 1192a57815efSBosko Milekic rstreason = BANDLIM_RST_OPENPORT; 1193a57815efSBosko Milekic goto dropwithreset; 11944195b4afSPaul Traina } 1195a160e630SAndre Oppermann /* 1196a160e630SAndre Oppermann * If the drop_synfin option is enabled, drop all 1197a160e630SAndre Oppermann * segments with both the SYN and FIN bits set. 1198a160e630SAndre Oppermann * This prevents e.g. nmap from identifying the 1199a160e630SAndre Oppermann * TCP/IP stack. 1200a160e630SAndre Oppermann * XXX: Poor reasoning. nmap has other methods 1201a160e630SAndre Oppermann * and is constantly refining its stack detection 1202a160e630SAndre Oppermann * strategies. 12038d573cc1SAndre Oppermann * XXX: This is a violation of the TCP specification 1204a160e630SAndre Oppermann * and was used by RFC1644. 1205a160e630SAndre Oppermann */ 1206603724d3SBjoern A. Zeeb if ((thflags & TH_FIN) && V_drop_synfin) { 1207a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1208a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 1209773673c1SAndre Oppermann "SYN|FIN segment ignored (based on " 12108d573cc1SAndre Oppermann "sysctl setting)\n", s, __func__); 121178b50714SRobert Watson TCPSTAT_INC(tcps_badsyn); 1212302ce8d6SAndre Oppermann goto dropunlock; 1213ebb0cbeaSPaul Traina } 1214be2ac88cSJonathan Lemon /* 1215be2ac88cSJonathan Lemon * Segment's flags are (SYN) or (SYN|FIN). 1216a160e630SAndre Oppermann * 1217a160e630SAndre Oppermann * TH_PUSH, TH_URG, TH_ECE, TH_CWR are ignored 1218a160e630SAndre Oppermann * as they do not affect the state of the TCP FSM. 1219a160e630SAndre Oppermann * The data pointed to by TH_URG and th_urp is ignored. 1220be2ac88cSJonathan Lemon */ 1221a160e630SAndre Oppermann KASSERT((thflags & (TH_RST|TH_ACK)) == 0, 1222a160e630SAndre Oppermann ("%s: Listen socket: TH_RST or TH_ACK set", __func__)); 1223a160e630SAndre Oppermann KASSERT(thflags & (TH_SYN), 1224a160e630SAndre Oppermann ("%s: Listen socket: TH_SYN not set", __func__)); 122533841545SHajimu UMEMOTO #ifdef INET6 122633841545SHajimu UMEMOTO /* 122733841545SHajimu UMEMOTO * If deprecated address is forbidden, 122833841545SHajimu UMEMOTO * we do not accept SYN to deprecated interface 122933841545SHajimu UMEMOTO * address to prevent any new inbound connection from 123033841545SHajimu UMEMOTO * getting established. 123133841545SHajimu UMEMOTO * When we do not accept SYN, we send a TCP RST, 123233841545SHajimu UMEMOTO * with deprecated source address (instead of dropping 123333841545SHajimu UMEMOTO * it). We compromise it as it is much better for peer 123433841545SHajimu UMEMOTO * to send a RST, and RST will be the final packet 123533841545SHajimu UMEMOTO * for the exchange. 123633841545SHajimu UMEMOTO * 123733841545SHajimu UMEMOTO * If we do not forbid deprecated addresses, we accept 123833841545SHajimu UMEMOTO * the SYN packet. RFC2462 does not suggest dropping 123933841545SHajimu UMEMOTO * SYN in this case. 124033841545SHajimu UMEMOTO * If we decipher RFC2462 5.5.4, it says like this: 124133841545SHajimu UMEMOTO * 1. use of deprecated addr with existing 124233841545SHajimu UMEMOTO * communication is okay - "SHOULD continue to be 124333841545SHajimu UMEMOTO * used" 124433841545SHajimu UMEMOTO * 2. use of it with new communication: 124533841545SHajimu UMEMOTO * (2a) "SHOULD NOT be used if alternate address 124633841545SHajimu UMEMOTO * with sufficient scope is available" 124733841545SHajimu UMEMOTO * (2b) nothing mentioned otherwise. 124833841545SHajimu UMEMOTO * Here we fall into (2b) case as we have no choice in 124933841545SHajimu UMEMOTO * our source address selection - we must obey the peer. 125033841545SHajimu UMEMOTO * 125133841545SHajimu UMEMOTO * The wording in RFC2462 is confusing, and there are 125233841545SHajimu UMEMOTO * multiple description text for deprecated address 125333841545SHajimu UMEMOTO * handling - worse, they are not exactly the same. 125433841545SHajimu UMEMOTO * I believe 5.5.4 is the best one, so we follow 5.5.4. 125533841545SHajimu UMEMOTO */ 1256603724d3SBjoern A. Zeeb if (isipv6 && !V_ip6_use_deprecated) { 125733841545SHajimu UMEMOTO struct in6_ifaddr *ia6; 125833841545SHajimu UMEMOTO 12593e88eb90SAndrey V. Elsukov ia6 = in6ifa_ifwithaddr(&ip6->ip6_dst, 0 /* XXX */); 12608c0fec80SRobert Watson if (ia6 != NULL && 126133841545SHajimu UMEMOTO (ia6->ia6_flags & IN6_IFF_DEPRECATED)) { 12628c0fec80SRobert Watson ifa_free(&ia6->ia_ifa); 1263a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1264a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 12658d573cc1SAndre Oppermann "Connection attempt to deprecated " 12668d573cc1SAndre Oppermann "IPv6 address rejected\n", 1267a160e630SAndre Oppermann s, __func__); 126833841545SHajimu UMEMOTO rstreason = BANDLIM_RST_OPENPORT; 126933841545SHajimu UMEMOTO goto dropwithreset; 127033841545SHajimu UMEMOTO } 127177d396fdSMaksim Yevmenkin if (ia6) 12728c0fec80SRobert Watson ifa_free(&ia6->ia_ifa); 127333841545SHajimu UMEMOTO } 1274b287c6c7SBjoern A. Zeeb #endif /* INET6 */ 127565f28919SJesper Skriver /* 1276db33b3e6SAndre Oppermann * Basic sanity checks on incoming SYN requests: 12778d573cc1SAndre Oppermann * Don't respond if the destination is a link layer 1278db33b3e6SAndre Oppermann * broadcast according to RFC1122 4.2.3.10, p. 104. 12798d573cc1SAndre Oppermann * If it is from this socket it must be forged. 12808d573cc1SAndre Oppermann * Don't respond if the source or destination is a 12818d573cc1SAndre Oppermann * global or subnet broad- or multicast address. 128293ec91baSCrist J. Clark * Note that it is quite possible to receive unicast 128393ec91baSCrist J. Clark * link-layer packets with a broadcast IP address. Use 128493ec91baSCrist J. Clark * in_broadcast() to find them. 1285be2ac88cSJonathan Lemon */ 12868d573cc1SAndre Oppermann if (m->m_flags & (M_BCAST|M_MCAST)) { 12878d573cc1SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 12888d573cc1SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 12898d573cc1SAndre Oppermann "Connection attempt from broad- or multicast " 1290773673c1SAndre Oppermann "link layer address ignored\n", s, __func__); 1291302ce8d6SAndre Oppermann goto dropunlock; 12928d573cc1SAndre Oppermann } 1293db33b3e6SAndre Oppermann #ifdef INET6 1294b287c6c7SBjoern A. Zeeb if (isipv6) { 1295db33b3e6SAndre Oppermann if (th->th_dport == th->th_sport && 1296a160e630SAndre Oppermann IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &ip6->ip6_src)) { 1297a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1298a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 12998d573cc1SAndre Oppermann "Connection attempt to/from self " 1300773673c1SAndre Oppermann "ignored\n", s, __func__); 1301302ce8d6SAndre Oppermann goto dropunlock; 1302a160e630SAndre Oppermann } 1303be2ac88cSJonathan Lemon if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) || 1304a160e630SAndre Oppermann IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) { 1305a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1306a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 13078d573cc1SAndre Oppermann "Connection attempt from/to multicast " 1308773673c1SAndre Oppermann "address ignored\n", s, __func__); 1309302ce8d6SAndre Oppermann goto dropunlock; 1310a160e630SAndre Oppermann } 1311b287c6c7SBjoern A. Zeeb } 1312db33b3e6SAndre Oppermann #endif 1313b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6) 1314b287c6c7SBjoern A. Zeeb else 1315b287c6c7SBjoern A. Zeeb #endif 1316b287c6c7SBjoern A. Zeeb #ifdef INET 1317b287c6c7SBjoern A. Zeeb { 1318db33b3e6SAndre Oppermann if (th->th_dport == th->th_sport && 1319a160e630SAndre Oppermann ip->ip_dst.s_addr == ip->ip_src.s_addr) { 1320a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1321a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 13228d573cc1SAndre Oppermann "Connection attempt from/to self " 1323773673c1SAndre Oppermann "ignored\n", s, __func__); 1324302ce8d6SAndre Oppermann goto dropunlock; 1325a160e630SAndre Oppermann } 1326be2ac88cSJonathan Lemon if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) || 1327be2ac88cSJonathan Lemon IN_MULTICAST(ntohl(ip->ip_src.s_addr)) || 13282ca2159fSCrist J. Clark ip->ip_src.s_addr == htonl(INADDR_BROADCAST) || 1329a160e630SAndre Oppermann in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) { 1330a160e630SAndre Oppermann if ((s = tcp_log_addrs(&inc, th, NULL, NULL))) 1331a160e630SAndre Oppermann log(LOG_DEBUG, "%s; %s: Listen socket: " 13328d573cc1SAndre Oppermann "Connection attempt from/to broad- " 1333773673c1SAndre Oppermann "or multicast address ignored\n", 1334a160e630SAndre Oppermann s, __func__); 1335302ce8d6SAndre Oppermann goto dropunlock; 1336c068736aSJeffrey Hsu } 1337a160e630SAndre Oppermann } 1338b287c6c7SBjoern A. Zeeb #endif 1339be2ac88cSJonathan Lemon /* 1340db33b3e6SAndre Oppermann * SYN appears to be valid. Create compressed TCP state 1341db33b3e6SAndre Oppermann * for syncache. 1342be2ac88cSJonathan Lemon */ 13433c653157SHartmut Brandt #ifdef TCPDEBUG 13443c653157SHartmut Brandt if (so->so_options & SO_DEBUG) 13453c653157SHartmut Brandt tcp_trace(TA_INPUT, ostate, tp, 13463c653157SHartmut Brandt (void *)tcp_saveipgen, &tcp_savetcp, 0); 13473c653157SHartmut Brandt #endif 13482b9c9984SGeorge V. Neville-Neil TCP_PROBE3(debug__input, tp, th, m); 1349f72167f4SAndre Oppermann tcp_dooptions(&to, optp, optlen, TO_SYN); 1350281a0fd4SPatrick Kelsey if (syncache_add(&inc, &to, th, inp, &so, m, NULL, NULL)) 135109c305ebSPatrick Kelsey goto tfo_socket_result; 135218a75309SPatrick Kelsey 1353be2ac88cSJonathan Lemon /* 13544d6e7130SAndre Oppermann * Entry added to syncache and mbuf consumed. 1355a7c7f2a7SJohn Baldwin * Only the listen socket is unlocked by syncache_add(). 1356be2ac88cSJonathan Lemon */ 1357ff9b006dSJulien Charbon if (ti_locked == TI_RLOCKED) { 13586573d758SMatt Macy INP_INFO_RUNLOCK_ET(&V_tcbinfo, et); 1359a7c7f2a7SJohn Baldwin ti_locked = TI_UNLOCKED; 1360a7c7f2a7SJohn Baldwin } 1361603724d3SBjoern A. Zeeb INP_INFO_UNLOCK_ASSERT(&V_tcbinfo); 13628f5a8818SKevin Lo return (IPPROTO_DONE); 1363982c1675SAndre Oppermann } else if (tp->t_state == TCPS_LISTEN) { 1364982c1675SAndre Oppermann /* 1365982c1675SAndre Oppermann * When a listen socket is torn down the SO_ACCEPTCONN 1366982c1675SAndre Oppermann * flag is removed first while connections are drained 1367982c1675SAndre Oppermann * from the accept queue in a unlock/lock cycle of the 1368982c1675SAndre Oppermann * ACCEPT_LOCK, opening a race condition allowing a SYN 1369982c1675SAndre Oppermann * attempt go through unhandled. 1370982c1675SAndre Oppermann */ 1371982c1675SAndre Oppermann goto dropunlock; 1372f76fcf6dSJeffrey Hsu } 1373fcf59617SAndrey V. Elsukov #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1374fcf59617SAndrey V. Elsukov if (tp->t_flags & TF_SIGNATURE) { 1375fcf59617SAndrey V. Elsukov tcp_dooptions(&to, optp, optlen, thflags); 1376fcf59617SAndrey V. Elsukov if ((to.to_flags & TOF_SIGNATURE) == 0) { 1377fcf59617SAndrey V. Elsukov TCPSTAT_INC(tcps_sig_err_nosigopt); 13782903309aSAttilio Rao goto dropunlock; 13792903309aSAttilio Rao } 1380fcf59617SAndrey V. Elsukov if (!TCPMD5_ENABLED() || 1381fcf59617SAndrey V. Elsukov TCPMD5_INPUT(m, th, to.to_signature) != 0) 1382fcf59617SAndrey V. Elsukov goto dropunlock; 13832903309aSAttilio Rao } 13842903309aSAttilio Rao #endif 13852b9c9984SGeorge V. Neville-Neil TCP_PROBE5(receive, NULL, tp, m, tp, th); 138657f60867SMark Johnston 1387302ce8d6SAndre Oppermann /* 13888d573cc1SAndre Oppermann * Segment belongs to a connection in SYN_SENT, ESTABLISHED or later 13898d573cc1SAndre Oppermann * state. tcp_do_segment() always consumes the mbuf chain, unlocks 13908d573cc1SAndre Oppermann * the inpcb, and unlocks pcbinfo. 1391302ce8d6SAndre Oppermann */ 13926573d758SMatt Macy tp->t_fb->tfb_tcp_do_segment(m, th, so, tp, drop_hdrlen, tlen, iptos); 13936573d758SMatt Macy if (ti_locked == TI_RLOCKED) 13946573d758SMatt Macy INP_INFO_RUNLOCK_ET(&V_tcbinfo, et); 13958f5a8818SKevin Lo return (IPPROTO_DONE); 1396be2ac88cSJonathan Lemon 1397302ce8d6SAndre Oppermann dropwithreset: 13982b9c9984SGeorge V. Neville-Neil TCP_PROBE5(receive, NULL, tp, m, tp, th); 139957f60867SMark Johnston 1400ff9b006dSJulien Charbon if (ti_locked == TI_RLOCKED) { 14016573d758SMatt Macy INP_INFO_RUNLOCK_ET(&V_tcbinfo, et); 1402252ca428SRobert Watson ti_locked = TI_UNLOCKED; 1403fa046d87SRobert Watson } 1404fa046d87SRobert Watson #ifdef INVARIANTS 1405fa046d87SRobert Watson else { 1406fa046d87SRobert Watson KASSERT(ti_locked == TI_UNLOCKED, ("%s: dropwithreset " 1407fa046d87SRobert Watson "ti_locked: %d", __func__, ti_locked)); 1408fa046d87SRobert Watson INP_INFO_UNLOCK_ASSERT(&V_tcbinfo); 1409fa046d87SRobert Watson } 1410fa046d87SRobert Watson #endif 1411014ea782SRobert Watson 1412014ea782SRobert Watson if (inp != NULL) { 1413302ce8d6SAndre Oppermann tcp_dropwithreset(m, th, tp, tlen, rstreason); 1414014ea782SRobert Watson INP_WUNLOCK(inp); 1415dd8ac7f9SRobert Watson } else 1416014ea782SRobert Watson tcp_dropwithreset(m, th, NULL, tlen, rstreason); 1417302ce8d6SAndre Oppermann m = NULL; /* mbuf chain got consumed. */ 1418014ea782SRobert Watson goto drop; 1419014ea782SRobert Watson 1420302ce8d6SAndre Oppermann dropunlock: 142157f60867SMark Johnston if (m != NULL) 14222b9c9984SGeorge V. Neville-Neil TCP_PROBE5(receive, NULL, tp, m, tp, th); 142357f60867SMark Johnston 1424ff9b006dSJulien Charbon if (ti_locked == TI_RLOCKED) { 14256573d758SMatt Macy INP_INFO_RUNLOCK_ET(&V_tcbinfo, et); 1426252ca428SRobert Watson ti_locked = TI_UNLOCKED; 1427fa046d87SRobert Watson } 1428fa046d87SRobert Watson #ifdef INVARIANTS 1429fa046d87SRobert Watson else { 1430fa046d87SRobert Watson KASSERT(ti_locked == TI_UNLOCKED, ("%s: dropunlock " 1431fa046d87SRobert Watson "ti_locked: %d", __func__, ti_locked)); 1432fa046d87SRobert Watson INP_INFO_UNLOCK_ASSERT(&V_tcbinfo); 1433fa046d87SRobert Watson } 1434fa046d87SRobert Watson #endif 1435252ca428SRobert Watson 14369fa198beSAndre Oppermann if (inp != NULL) 14378501a69cSRobert Watson INP_WUNLOCK(inp); 1438014ea782SRobert Watson 1439302ce8d6SAndre Oppermann drop: 1440603724d3SBjoern A. Zeeb INP_INFO_UNLOCK_ASSERT(&V_tcbinfo); 1441a160e630SAndre Oppermann if (s != NULL) 1442a160e630SAndre Oppermann free(s, M_TCPLOG); 1443302ce8d6SAndre Oppermann if (m != NULL) 1444302ce8d6SAndre Oppermann m_freem(m); 14458f5a8818SKevin Lo return (IPPROTO_DONE); 1446302ce8d6SAndre Oppermann } 1447302ce8d6SAndre Oppermann 1448e44c1887SSteven Hartland /* 1449e44c1887SSteven Hartland * Automatic sizing of receive socket buffer. Often the send 1450e44c1887SSteven Hartland * buffer size is not optimally adjusted to the actual network 1451e44c1887SSteven Hartland * conditions at hand (delay bandwidth product). Setting the 1452e44c1887SSteven Hartland * buffer size too small limits throughput on links with high 1453e44c1887SSteven Hartland * bandwidth and high delay (eg. trans-continental/oceanic links). 1454e44c1887SSteven Hartland * 1455e44c1887SSteven Hartland * On the receive side the socket buffer memory is only rarely 1456e44c1887SSteven Hartland * used to any significant extent. This allows us to be much 1457e44c1887SSteven Hartland * more aggressive in scaling the receive socket buffer. For 1458e44c1887SSteven Hartland * the case that the buffer space is actually used to a large 1459e44c1887SSteven Hartland * extent and we run out of kernel memory we can simply drop 1460e44c1887SSteven Hartland * the new segments; TCP on the sender will just retransmit it 1461e44c1887SSteven Hartland * later. Setting the buffer size too big may only consume too 1462e44c1887SSteven Hartland * much kernel memory if the application doesn't read() from 1463e44c1887SSteven Hartland * the socket or packet loss or reordering makes use of the 1464e44c1887SSteven Hartland * reassembly queue. 1465e44c1887SSteven Hartland * 1466e44c1887SSteven Hartland * The criteria to step up the receive buffer one notch are: 1467e44c1887SSteven Hartland * 1. Application has not set receive buffer size with 1468e44c1887SSteven Hartland * SO_RCVBUF. Setting SO_RCVBUF clears SB_AUTOSIZE. 1469e44c1887SSteven Hartland * 2. the number of bytes received during the time it takes 1470e44c1887SSteven Hartland * one timestamp to be reflected back to us (the RTT); 1471e44c1887SSteven Hartland * 3. received bytes per RTT is within seven eighth of the 1472e44c1887SSteven Hartland * current socket buffer size; 1473e44c1887SSteven Hartland * 4. receive buffer size has not hit maximal automatic size; 1474e44c1887SSteven Hartland * 1475e44c1887SSteven Hartland * This algorithm does one step per RTT at most and only if 1476e44c1887SSteven Hartland * we receive a bulk stream w/o packet losses or reorderings. 1477e44c1887SSteven Hartland * Shrinking the buffer during idle times is not necessary as 1478e44c1887SSteven Hartland * it doesn't consume any memory when idle. 1479e44c1887SSteven Hartland * 1480e44c1887SSteven Hartland * TODO: Only step up if the application is actually serving 1481e44c1887SSteven Hartland * the buffer to better manage the socket buffer resources. 1482e44c1887SSteven Hartland */ 1483e44c1887SSteven Hartland int 1484e44c1887SSteven Hartland tcp_autorcvbuf(struct mbuf *m, struct tcphdr *th, struct socket *so, 1485e44c1887SSteven Hartland struct tcpcb *tp, int tlen) 1486e44c1887SSteven Hartland { 1487e44c1887SSteven Hartland int newsize = 0; 1488e44c1887SSteven Hartland 1489e44c1887SSteven Hartland if (V_tcp_do_autorcvbuf && (so->so_rcv.sb_flags & SB_AUTOSIZE) && 1490e44c1887SSteven Hartland tp->t_srtt != 0 && tp->rfbuf_ts != 0 && 1491e44c1887SSteven Hartland TCP_TS_TO_TICKS(tcp_ts_getticks() - tp->rfbuf_ts) > 1492e44c1887SSteven Hartland (tp->t_srtt >> TCP_RTT_SHIFT)) { 1493e44c1887SSteven Hartland if (tp->rfbuf_cnt > (so->so_rcv.sb_hiwat / 8 * 7) && 1494e44c1887SSteven Hartland so->so_rcv.sb_hiwat < V_tcp_autorcvbuf_max) { 1495e44c1887SSteven Hartland newsize = min(so->so_rcv.sb_hiwat + 1496e44c1887SSteven Hartland V_tcp_autorcvbuf_inc, V_tcp_autorcvbuf_max); 1497e44c1887SSteven Hartland } 1498e44c1887SSteven Hartland TCP_PROBE6(receive__autoresize, NULL, tp, m, tp, th, newsize); 1499e44c1887SSteven Hartland 1500e44c1887SSteven Hartland /* Start over with next RTT. */ 1501e44c1887SSteven Hartland tp->rfbuf_ts = 0; 1502e44c1887SSteven Hartland tp->rfbuf_cnt = 0; 1503e44c1887SSteven Hartland } else { 1504e44c1887SSteven Hartland tp->rfbuf_cnt += tlen; /* add up */ 1505e44c1887SSteven Hartland } 1506e44c1887SSteven Hartland 1507e44c1887SSteven Hartland return (newsize); 1508e44c1887SSteven Hartland } 1509e44c1887SSteven Hartland 151055bceb1eSRandall Stewart void 1511302ce8d6SAndre Oppermann tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so, 15126573d758SMatt Macy struct tcpcb *tp, int drop_hdrlen, int tlen, uint8_t iptos) 1513302ce8d6SAndre Oppermann { 1514021eaf79SHiren Panchasara int thflags, acked, ourfinisacked, needoutput = 0, sack_changed; 1515302ce8d6SAndre Oppermann int rstreason, todrop, win; 15163ac12506SJonathan T. Looney uint32_t tiwin; 15174b7b743cSLawrence Stewart uint16_t nsegs; 151807dacf03SAndre Oppermann char *s; 151907dacf03SAndre Oppermann struct in_conninfo *inc; 1520c11a15bfSGleb Smirnoff struct mbuf *mfree; 1521302ce8d6SAndre Oppermann struct tcpopt to; 1522281a0fd4SPatrick Kelsey int tfo_syn; 1523302ce8d6SAndre Oppermann 152414739780SMaxim Konovalov #ifdef TCPDEBUG 152514739780SMaxim Konovalov /* 152614739780SMaxim Konovalov * The size of tcp_saveipgen must be the size of the max ip header, 152714739780SMaxim Konovalov * now IPv6. 152814739780SMaxim Konovalov */ 152914739780SMaxim Konovalov u_char tcp_saveipgen[IP6_HDR_LEN]; 153014739780SMaxim Konovalov struct tcphdr tcp_savetcp; 153114739780SMaxim Konovalov short ostate = 0; 153214739780SMaxim Konovalov #endif 1533302ce8d6SAndre Oppermann thflags = th->th_flags; 153407dacf03SAndre Oppermann inc = &tp->t_inpcb->inp_inc; 1535d64a46eaSLawrence Stewart tp->sackhint.last_sack_ack = 0; 1536021eaf79SHiren Panchasara sack_changed = 0; 15374b7b743cSLawrence Stewart nsegs = max(1, m->m_pkthdr.lro_nsegs); 1538252ca428SRobert Watson /* 1539252ca428SRobert Watson * If this is either a state-changing packet or current state isn't 1540252ca428SRobert Watson * established, we require a write lock on tcbinfo. Otherwise, we 15410989f56cSRobert Watson * allow the tcbinfo to be in either alocked or unlocked, as the 15420989f56cSRobert Watson * caller may have unnecessarily acquired a write lock due to a race. 1543252ca428SRobert Watson */ 1544252ca428SRobert Watson if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0 || 1545252ca428SRobert Watson tp->t_state != TCPS_ESTABLISHED) { 1546ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 1547252ca428SRobert Watson } 15488501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 1549679d9708SAndre Oppermann KASSERT(tp->t_state > TCPS_LISTEN, ("%s: TCPS_LISTEN", 1550679d9708SAndre Oppermann __func__)); 1551679d9708SAndre Oppermann KASSERT(tp->t_state != TCPS_TIME_WAIT, ("%s: TCPS_TIME_WAIT", 1552679d9708SAndre Oppermann __func__)); 1553df8bae1dSRodney W. Grimes 155486a996e6SHiren Panchasara #ifdef TCPPCAP 155586a996e6SHiren Panchasara /* Save segment, if requested. */ 155686a996e6SHiren Panchasara tcp_pcap_add(th, m, &(tp->t_inpkts)); 155786a996e6SHiren Panchasara #endif 15582529f56eSJonathan T. Looney TCP_LOG_EVENT(tp, th, &so->so_rcv, &so->so_snd, TCP_LOG_IN, 0, 15592529f56eSJonathan T. Looney tlen, NULL, true); 156086a996e6SHiren Panchasara 1561013f4df6SMichael Tuexen if ((thflags & TH_SYN) && (thflags & TH_FIN) && V_drop_synfin) { 1562013f4df6SMichael Tuexen if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1563013f4df6SMichael Tuexen log(LOG_DEBUG, "%s; %s: " 1564013f4df6SMichael Tuexen "SYN|FIN segment ignored (based on " 1565013f4df6SMichael Tuexen "sysctl setting)\n", s, __func__); 1566013f4df6SMichael Tuexen free(s, M_TCPLOG); 1567013f4df6SMichael Tuexen } 1568013f4df6SMichael Tuexen goto drop; 1569013f4df6SMichael Tuexen } 1570013f4df6SMichael Tuexen 1571df8bae1dSRodney W. Grimes /* 1572ebfd7534SMichael Tuexen * If a segment with the ACK-bit set arrives in the SYN-SENT state 1573ebfd7534SMichael Tuexen * check SEQ.ACK first. 1574ebfd7534SMichael Tuexen */ 1575ebfd7534SMichael Tuexen if ((tp->t_state == TCPS_SYN_SENT) && (thflags & TH_ACK) && 1576ebfd7534SMichael Tuexen (SEQ_LEQ(th->th_ack, tp->iss) || SEQ_GT(th->th_ack, tp->snd_max))) { 1577ebfd7534SMichael Tuexen rstreason = BANDLIM_UNLIMITED; 1578ebfd7534SMichael Tuexen goto dropwithreset; 1579ebfd7534SMichael Tuexen } 1580ebfd7534SMichael Tuexen 1581ebfd7534SMichael Tuexen /* 1582df8bae1dSRodney W. Grimes * Segment received on connection. 1583df8bae1dSRodney W. Grimes * Reset idle time and keep-alive timer. 1584e8949f74SAndre Oppermann * XXX: This should be done after segment 1585e8949f74SAndre Oppermann * validation to ignore broken/spoofed segs. 1586df8bae1dSRodney W. Grimes */ 15879b8b58e0SJonathan Lemon tp->t_rcvtime = ticks; 1588df8bae1dSRodney W. Grimes 1589df8bae1dSRodney W. Grimes /* 1590c52102ddSHiren Panchasara * Scale up the window into a 32-bit value. 1591e8949f74SAndre Oppermann * For the SYN_SENT state the scale is zero. 1592464fcfbcSAndre Oppermann */ 1593464fcfbcSAndre Oppermann tiwin = th->th_win << tp->snd_scale; 1594464fcfbcSAndre Oppermann 1595464fcfbcSAndre Oppermann /* 1596f2512ba1SRui Paulo * TCP ECN processing. 1597f2512ba1SRui Paulo */ 1598f2512ba1SRui Paulo if (tp->t_flags & TF_ECN_PERMIT) { 15999c251892SRui Paulo if (thflags & TH_CWR) 16009c251892SRui Paulo tp->t_flags &= ~TF_ECN_SND_ECE; 1601f2512ba1SRui Paulo switch (iptos & IPTOS_ECN_MASK) { 1602f2512ba1SRui Paulo case IPTOS_ECN_CE: 1603f2512ba1SRui Paulo tp->t_flags |= TF_ECN_SND_ECE; 160478b50714SRobert Watson TCPSTAT_INC(tcps_ecn_ce); 1605f2512ba1SRui Paulo break; 1606f2512ba1SRui Paulo case IPTOS_ECN_ECT0: 160778b50714SRobert Watson TCPSTAT_INC(tcps_ecn_ect0); 1608f2512ba1SRui Paulo break; 1609f2512ba1SRui Paulo case IPTOS_ECN_ECT1: 161078b50714SRobert Watson TCPSTAT_INC(tcps_ecn_ect1); 1611f2512ba1SRui Paulo break; 1612f2512ba1SRui Paulo } 161364807b30SHiren Panchasara 161464807b30SHiren Panchasara /* Process a packet differently from RFC3168. */ 161564807b30SHiren Panchasara cc_ecnpkt_handler(tp, th, iptos); 161664807b30SHiren Panchasara 1617dbc42409SLawrence Stewart /* Congestion experienced. */ 1618dbc42409SLawrence Stewart if (thflags & TH_ECE) { 1619dbc42409SLawrence Stewart cc_cong_signal(tp, th, CC_ECN); 1620f2512ba1SRui Paulo } 1621f2512ba1SRui Paulo } 1622f2512ba1SRui Paulo 1623f2512ba1SRui Paulo /* 1624f72167f4SAndre Oppermann * Parse options on any incoming segment. 1625f72167f4SAndre Oppermann */ 1626302ce8d6SAndre Oppermann tcp_dooptions(&to, (u_char *)(th + 1), 1627302ce8d6SAndre Oppermann (th->th_off << 2) - sizeof(struct tcphdr), 1628302ce8d6SAndre Oppermann (thflags & TH_SYN) ? TO_SYN : 0); 1629f72167f4SAndre Oppermann 1630fcf59617SAndrey V. Elsukov #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1631fcf59617SAndrey V. Elsukov if ((tp->t_flags & TF_SIGNATURE) != 0 && 1632fcf59617SAndrey V. Elsukov (to.to_flags & TOF_SIGNATURE) == 0) { 1633fcf59617SAndrey V. Elsukov TCPSTAT_INC(tcps_sig_err_sigopt); 1634fcf59617SAndrey V. Elsukov /* XXX: should drop? */ 1635fcf59617SAndrey V. Elsukov } 1636fcf59617SAndrey V. Elsukov #endif 1637f72167f4SAndre Oppermann /* 1638f72167f4SAndre Oppermann * If echoed timestamp is later than the current time, 1639bf6d304aSAndre Oppermann * fall back to non RFC1323 RTT calculation. Normalize 1640bf6d304aSAndre Oppermann * timestamp if syncookies were used when this connection 1641bf6d304aSAndre Oppermann * was established. 1642f72167f4SAndre Oppermann */ 1643bf6d304aSAndre Oppermann if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { 1644e16fa5caSJohn-Mark Gurney to.to_tsecr -= tp->ts_offset; 1645d8951c8aSBjoern A. Zeeb if (TSTMP_GT(to.to_tsecr, tcp_ts_getticks())) 1646f72167f4SAndre Oppermann to.to_tsecr = 0; 164710d20c84SMatt Macy else if (tp->t_flags & TF_PREVVALID && 164810d20c84SMatt Macy tp->t_badrxtwin != 0 && SEQ_LT(to.to_tsecr, tp->t_badrxtwin)) 164910d20c84SMatt Macy cc_cong_signal(tp, th, CC_RTO_ERR); 1650bf6d304aSAndre Oppermann } 165107dacf03SAndre Oppermann /* 165297d8d152SAndre Oppermann * Process options only when we get SYN/ACK back. The SYN case 165397d8d152SAndre Oppermann * for incoming connections is handled in tcp_syncache. 16545396d0f8SAndre Oppermann * According to RFC1323 the window field in a SYN (i.e., a <SYN> 16555396d0f8SAndre Oppermann * or <SYN,ACK>) segment itself is never scaled. 165697d8d152SAndre Oppermann * XXX this is traditional behavior, may need to be cleaned up. 1657df8bae1dSRodney W. Grimes */ 16580a389eabSSimon L. B. Nielsen if (tp->t_state == TCPS_SYN_SENT && (thflags & TH_SYN)) { 1659464fcfbcSAndre Oppermann if ((to.to_flags & TOF_SCALE) && 1660464fcfbcSAndre Oppermann (tp->t_flags & TF_REQ_SCALE)) { 1661be2ac88cSJonathan Lemon tp->t_flags |= TF_RCVD_SCALE; 166202a1a643SAndre Oppermann tp->snd_scale = to.to_wscale; 1663be2ac88cSJonathan Lemon } 16645396d0f8SAndre Oppermann /* 16655396d0f8SAndre Oppermann * Initial send window. It will be updated with 16665396d0f8SAndre Oppermann * the next incoming segment to the scaled value. 16675396d0f8SAndre Oppermann */ 16685396d0f8SAndre Oppermann tp->snd_wnd = th->th_win; 1669be2ac88cSJonathan Lemon if (to.to_flags & TOF_TS) { 1670be2ac88cSJonathan Lemon tp->t_flags |= TF_RCVD_TSTMP; 1671be2ac88cSJonathan Lemon tp->ts_recent = to.to_tsval; 1672d8951c8aSBjoern A. Zeeb tp->ts_recent_age = tcp_ts_getticks(); 1673be2ac88cSJonathan Lemon } 1674be2ac88cSJonathan Lemon if (to.to_flags & TOF_MSS) 1675be2ac88cSJonathan Lemon tcp_mss(tp, to.to_mss); 16763529149eSAndre Oppermann if ((tp->t_flags & TF_SACK_PERMIT) && 16773529149eSAndre Oppermann (to.to_flags & TOF_SACKPERM) == 0) 16783529149eSAndre Oppermann tp->t_flags &= ~TF_SACK_PERMIT; 1679c560df6fSPatrick Kelsey if (IS_FASTOPEN(tp->t_flags)) { 1680a026a53aSMichael Tuexen if (to.to_flags & TOF_FASTOPEN) { 1681a026a53aSMichael Tuexen uint16_t mss; 1682a026a53aSMichael Tuexen 1683a026a53aSMichael Tuexen if (to.to_flags & TOF_MSS) 1684a026a53aSMichael Tuexen mss = to.to_mss; 1685c560df6fSPatrick Kelsey else 1686a026a53aSMichael Tuexen if ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0) 1687a026a53aSMichael Tuexen mss = TCP6_MSS; 1688a026a53aSMichael Tuexen else 1689a026a53aSMichael Tuexen mss = TCP_MSS; 1690a026a53aSMichael Tuexen tcp_fastopen_update_cache(tp, mss, 1691a026a53aSMichael Tuexen to.to_tfo_len, to.to_tfo_cookie); 1692a026a53aSMichael Tuexen } else 1693c560df6fSPatrick Kelsey tcp_fastopen_disable_path(tp); 1694c560df6fSPatrick Kelsey } 16956d90faf3SPaul Saab } 16966d90faf3SPaul Saab 1697df8bae1dSRodney W. Grimes /* 16984da9052aSMichael Tuexen * If timestamps were negotiated during SYN/ACK they should 16994da9052aSMichael Tuexen * appear on every segment during this session and vice versa. 17004da9052aSMichael Tuexen */ 17014da9052aSMichael Tuexen if ((tp->t_flags & TF_RCVD_TSTMP) && !(to.to_flags & TOF_TS)) { 17024da9052aSMichael Tuexen if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 17034da9052aSMichael Tuexen log(LOG_DEBUG, "%s; %s: Timestamp missing, " 17044da9052aSMichael Tuexen "no action\n", s, __func__); 17054da9052aSMichael Tuexen free(s, M_TCPLOG); 17064da9052aSMichael Tuexen } 17074da9052aSMichael Tuexen } 17084da9052aSMichael Tuexen if (!(tp->t_flags & TF_RCVD_TSTMP) && (to.to_flags & TOF_TS)) { 17094da9052aSMichael Tuexen if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 17104da9052aSMichael Tuexen log(LOG_DEBUG, "%s; %s: Timestamp not expected, " 17114da9052aSMichael Tuexen "no action\n", s, __func__); 17124da9052aSMichael Tuexen free(s, M_TCPLOG); 17134da9052aSMichael Tuexen } 17144da9052aSMichael Tuexen } 17154da9052aSMichael Tuexen 17164da9052aSMichael Tuexen /* 1717df8bae1dSRodney W. Grimes * Header prediction: check for the two common cases 1718df8bae1dSRodney W. Grimes * of a uni-directional data xfer. If the packet has 1719df8bae1dSRodney W. Grimes * no control flags, is in-sequence, the window didn't 1720df8bae1dSRodney W. Grimes * change and we're not retransmitting, it's a 1721df8bae1dSRodney W. Grimes * candidate. If the length is zero and the ack moved 1722df8bae1dSRodney W. Grimes * forward, we're the sender side of the xfer. Just 1723df8bae1dSRodney W. Grimes * free the data acked & wake any higher level process 1724df8bae1dSRodney W. Grimes * that was blocked waiting for space. If the length 1725df8bae1dSRodney W. Grimes * is non-zero and the ack didn't move, we're the 1726df8bae1dSRodney W. Grimes * receiver side. If we're getting packets in-order 1727df8bae1dSRodney W. Grimes * (the reassembly queue is empty), add the data to 1728df8bae1dSRodney W. Grimes * the socket buffer and note that we need a delayed ack. 1729a0292f23SGarrett Wollman * Make sure that the hidden state-flags are also off. 1730c5ad39b9SAndre Oppermann * Since we check for TCPS_ESTABLISHED first, it can only 1731a0292f23SGarrett Wollman * be TH_NEEDSYN. 1732df8bae1dSRodney W. Grimes */ 1733df8bae1dSRodney W. Grimes if (tp->t_state == TCPS_ESTABLISHED && 1734c5ad39b9SAndre Oppermann th->th_seq == tp->rcv_nxt && 1735fb59c426SYoshinobu Inoue (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK && 1736c5ad39b9SAndre Oppermann tp->snd_nxt == tp->snd_max && 1737c5ad39b9SAndre Oppermann tiwin && tiwin == tp->snd_wnd && 1738a0292f23SGarrett Wollman ((tp->t_flags & (TF_NEEDSYN|TF_NEEDFIN)) == 0) && 1739c28440dbSRandall Stewart SEGQ_EMPTY(tp) && 17404741bfcbSPatrick Kelsey ((to.to_flags & TOF_TS) == 0 || 1741c5ad39b9SAndre Oppermann TSTMP_GEQ(to.to_tsval, tp->ts_recent)) ) { 1742df8bae1dSRodney W. Grimes 1743df8bae1dSRodney W. Grimes /* 1744df8bae1dSRodney W. Grimes * If last ACK falls within this segment's sequence numbers, 1745df8bae1dSRodney W. Grimes * record the timestamp. 1746a0292f23SGarrett Wollman * NOTE that the test is modified according to the latest 1747a0292f23SGarrett Wollman * proposal of the tcplw@cray.com list (Braden 1993/04/26). 1748df8bae1dSRodney W. Grimes */ 1749be2ac88cSJonathan Lemon if ((to.to_flags & TOF_TS) != 0 && 1750fb59c426SYoshinobu Inoue SEQ_LEQ(th->th_seq, tp->last_ack_sent)) { 1751d8951c8aSBjoern A. Zeeb tp->ts_recent_age = tcp_ts_getticks(); 1752a0292f23SGarrett Wollman tp->ts_recent = to.to_tsval; 1753df8bae1dSRodney W. Grimes } 1754df8bae1dSRodney W. Grimes 1755fb59c426SYoshinobu Inoue if (tlen == 0) { 1756fb59c426SYoshinobu Inoue if (SEQ_GT(th->th_ack, tp->snd_una) && 1757fb59c426SYoshinobu Inoue SEQ_LEQ(th->th_ack, tp->snd_max) && 1758dbc42409SLawrence Stewart !IN_RECOVERY(tp->t_flags) && 1759fc30a251SAndre Oppermann (to.to_flags & TOF_SACK) == 0 && 1760dbc42409SLawrence Stewart TAILQ_EMPTY(&tp->snd_holes)) { 1761df8bae1dSRodney W. Grimes /* 1762e8949f74SAndre Oppermann * This is a pure ack for outstanding data. 1763df8bae1dSRodney W. Grimes */ 176478b50714SRobert Watson TCPSTAT_INC(tcps_predack); 1765252ca428SRobert Watson 17669b8b58e0SJonathan Lemon /* 176710d20c84SMatt Macy * "bad retransmit" recovery without timestamps. 17689b8b58e0SJonathan Lemon */ 176910d20c84SMatt Macy if ((to.to_flags & TOF_TS) == 0 && 177010d20c84SMatt Macy tp->t_rxtshift == 1 && 1771672dc4aeSJohn Baldwin tp->t_flags & TF_PREVVALID && 17726dfb8b31SJohn Baldwin (int)(ticks - tp->t_badrxtwin) < 0) { 1773dbc42409SLawrence Stewart cc_cong_signal(tp, th, CC_RTO_ERR); 17749b8b58e0SJonathan Lemon } 1775fa55172bSMatthew Dillon 1776fa55172bSMatthew Dillon /* 1777fa55172bSMatthew Dillon * Recalculate the transmit timer / rtt. 1778fa55172bSMatthew Dillon * 1779fa55172bSMatthew Dillon * Some boxes send broken timestamp replies 1780fa55172bSMatthew Dillon * during the SYN+ACK phase, ignore 1781fa55172bSMatthew Dillon * timestamps of 0 or we could calculate a 1782fa55172bSMatthew Dillon * huge RTT and blow up the retransmit timer. 1783fa55172bSMatthew Dillon */ 1784fa55172bSMatthew Dillon if ((to.to_flags & TOF_TS) != 0 && 1785fa55172bSMatthew Dillon to.to_tsecr) { 17863ac12506SJonathan T. Looney uint32_t t; 1787d8951c8aSBjoern A. Zeeb 1788d8951c8aSBjoern A. Zeeb t = tcp_ts_getticks() - to.to_tsecr; 1789d8951c8aSBjoern A. Zeeb if (!tp->t_rttlow || tp->t_rttlow > t) 1790d8951c8aSBjoern A. Zeeb tp->t_rttlow = t; 1791a0292f23SGarrett Wollman tcp_xmit_timer(tp, 1792d8951c8aSBjoern A. Zeeb TCP_TS_TO_TICKS(t) + 1); 1793fa55172bSMatthew Dillon } else if (tp->t_rtttime && 1794fa55172bSMatthew Dillon SEQ_GT(th->th_ack, tp->t_rtseq)) { 1795eaf80179SAndre Oppermann if (!tp->t_rttlow || 1796eaf80179SAndre Oppermann tp->t_rttlow > ticks - tp->t_rtttime) 1797eaf80179SAndre Oppermann tp->t_rttlow = ticks - tp->t_rtttime; 1798c068736aSJeffrey Hsu tcp_xmit_timer(tp, 1799c068736aSJeffrey Hsu ticks - tp->t_rtttime); 1800fa55172bSMatthew Dillon } 1801dbc42409SLawrence Stewart acked = BYTES_THIS_ACK(tp, th); 180239bc9de5SLawrence Stewart 1803bd79708dSJonathan T. Looney #ifdef TCP_HHOOK 180439bc9de5SLawrence Stewart /* Run HHOOK_TCP_ESTABLISHED_IN helper hooks. */ 180539bc9de5SLawrence Stewart hhook_run_tcp_est_in(tp, th, &to); 1806bd79708dSJonathan T. Looney #endif 180739bc9de5SLawrence Stewart 18084b7b743cSLawrence Stewart TCPSTAT_ADD(tcps_rcvackpack, nsegs); 180978b50714SRobert Watson TCPSTAT_ADD(tcps_rcvackbyte, acked); 1810df8bae1dSRodney W. Grimes sbdrop(&so->so_snd, acked); 18119d11646dSJeffrey Hsu if (SEQ_GT(tp->snd_una, tp->snd_recover) && 18129d11646dSJeffrey Hsu SEQ_LEQ(th->th_ack, tp->snd_recover)) 18139d11646dSJeffrey Hsu tp->snd_recover = th->th_ack - 1; 1814dbc42409SLawrence Stewart 1815dbc42409SLawrence Stewart /* 1816dbc42409SLawrence Stewart * Let the congestion control algorithm update 1817dbc42409SLawrence Stewart * congestion control related information. This 1818dbc42409SLawrence Stewart * typically means increasing the congestion 1819dbc42409SLawrence Stewart * window. 1820dbc42409SLawrence Stewart */ 18214b7b743cSLawrence Stewart cc_ack_received(tp, th, nsegs, CC_ACK); 1822dbc42409SLawrence Stewart 18239d11646dSJeffrey Hsu tp->snd_una = th->th_ack; 18241645d090SJeff Roberson /* 1825e8949f74SAndre Oppermann * Pull snd_wl2 up to prevent seq wrap relative 18261645d090SJeff Roberson * to th_ack. 18271645d090SJeff Roberson */ 1828cb942153SJeffrey Hsu tp->snd_wl2 = th->th_ack; 1829b5addd85SJeffrey Hsu tp->t_dupacks = 0; 1830df8bae1dSRodney W. Grimes m_freem(m); 1831df8bae1dSRodney W. Grimes 1832df8bae1dSRodney W. Grimes /* 1833df8bae1dSRodney W. Grimes * If all outstanding data are acked, stop 1834df8bae1dSRodney W. Grimes * retransmit timer, otherwise restart timer 1835df8bae1dSRodney W. Grimes * using current (possibly backed-off) value. 1836df8bae1dSRodney W. Grimes * If process is waiting for space, 1837df8bae1dSRodney W. Grimes * wakeup/selwakeup/signal. If data 1838df8bae1dSRodney W. Grimes * are ready to send, let tcp_output 1839df8bae1dSRodney W. Grimes * decide between more output or persist. 1840e8949f74SAndre Oppermann */ 18413c653157SHartmut Brandt #ifdef TCPDEBUG 18423c653157SHartmut Brandt if (so->so_options & SO_DEBUG) 18433c653157SHartmut Brandt tcp_trace(TA_INPUT, ostate, tp, 18443c653157SHartmut Brandt (void *)tcp_saveipgen, 18453c653157SHartmut Brandt &tcp_savetcp, 0); 18463c653157SHartmut Brandt #endif 18472b9c9984SGeorge V. Neville-Neil TCP_PROBE3(debug__input, tp, th, m); 1848df8bae1dSRodney W. Grimes if (tp->snd_una == tp->snd_max) 1849b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_REXMT, 0); 1850b8152ba7SAndre Oppermann else if (!tcp_timer_active(tp, TT_PERSIST)) 1851b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_REXMT, 1852b8152ba7SAndre Oppermann tp->t_rxtcur); 1853df8bae1dSRodney W. Grimes sowwakeup(so); 1854cfa6009eSGleb Smirnoff if (sbavail(&so->so_snd)) 185555bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 1856a14c749fSJonathan Lemon goto check_delack; 1857df8bae1dSRodney W. Grimes } 1858fb59c426SYoshinobu Inoue } else if (th->th_ack == tp->snd_una && 1859fb59c426SYoshinobu Inoue tlen <= sbspace(&so->so_rcv)) { 18606741ecf5SAndre Oppermann int newsize = 0; /* automatic sockbuf scaling */ 18616741ecf5SAndre Oppermann 1862df8bae1dSRodney W. Grimes /* 1863252ca428SRobert Watson * This is a pure, in-sequence data packet with 1864252ca428SRobert Watson * nothing on the reassembly queue and we have enough 1865252ca428SRobert Watson * buffer space to take it. 1866df8bae1dSRodney W. Grimes */ 18676d90faf3SPaul Saab /* Clean receiver SACK report if present */ 18683529149eSAndre Oppermann if ((tp->t_flags & TF_SACK_PERMIT) && tp->rcv_numsacks) 18696d90faf3SPaul Saab tcp_clean_sackreport(tp); 187078b50714SRobert Watson TCPSTAT_INC(tcps_preddat); 1871fb59c426SYoshinobu Inoue tp->rcv_nxt += tlen; 18721645d090SJeff Roberson /* 18731645d090SJeff Roberson * Pull snd_wl1 up to prevent seq wrap relative to 18741645d090SJeff Roberson * th_seq. 18751645d090SJeff Roberson */ 187660ee3bb2SAndre Oppermann tp->snd_wl1 = th->th_seq; 18771645d090SJeff Roberson /* 18781645d090SJeff Roberson * Pull rcv_up up to prevent seq wrap relative to 18791645d090SJeff Roberson * rcv_nxt. 18801645d090SJeff Roberson */ 18811645d090SJeff Roberson tp->rcv_up = tp->rcv_nxt; 18824b7b743cSLawrence Stewart TCPSTAT_ADD(tcps_rcvpack, nsegs); 188378b50714SRobert Watson TCPSTAT_ADD(tcps_rcvbyte, tlen); 18843c653157SHartmut Brandt #ifdef TCPDEBUG 18853c653157SHartmut Brandt if (so->so_options & SO_DEBUG) 18863c653157SHartmut Brandt tcp_trace(TA_INPUT, ostate, tp, 18873c653157SHartmut Brandt (void *)tcp_saveipgen, &tcp_savetcp, 0); 18883c653157SHartmut Brandt #endif 18892b9c9984SGeorge V. Neville-Neil TCP_PROBE3(debug__input, tp, th, m); 18905d06879aSGeorge V. Neville-Neil 1891e44c1887SSteven Hartland newsize = tcp_autorcvbuf(m, th, so, tp, tlen); 18926741ecf5SAndre Oppermann 18936741ecf5SAndre Oppermann /* Add data to socket buffer. */ 18941e4d7da7SRobert Watson SOCKBUF_LOCK(&so->so_rcv); 1895c0b99ffaSRobert Watson if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 1896c1c36a2cSMike Silbersack m_freem(m); 1897c1c36a2cSMike Silbersack } else { 18986741ecf5SAndre Oppermann /* 18996741ecf5SAndre Oppermann * Set new socket buffer size. 19006741ecf5SAndre Oppermann * Give up when limit is reached. 19016741ecf5SAndre Oppermann */ 19026741ecf5SAndre Oppermann if (newsize) 19036741ecf5SAndre Oppermann if (!sbreserve_locked(&so->so_rcv, 19046c8286e4SRobert Watson newsize, so, NULL)) 19056741ecf5SAndre Oppermann so->so_rcv.sb_flags &= ~SB_AUTOSIZE; 1906fb59c426SYoshinobu Inoue m_adj(m, drop_hdrlen); /* delayed header drop */ 1907651e4e6aSGleb Smirnoff sbappendstream_locked(&so->so_rcv, m, 0); 1908c1c36a2cSMike Silbersack } 1909e8949f74SAndre Oppermann /* NB: sorwakeup_locked() does an implicit unlock. */ 19101e4d7da7SRobert Watson sorwakeup_locked(so); 1911c1e5a6e5SAndre Oppermann if (DELAY_ACK(tp, tlen)) { 19123bfd6421SJonathan Lemon tp->t_flags |= TF_DELACK; 1913f498eeeeSDavid Greenman } else { 1914e612a582SDavid Greenman tp->t_flags |= TF_ACKNOW; 191555bceb1eSRandall Stewart tp->t_fb->tfb_tcp_output(tp); 1916e612a582SDavid Greenman } 1917a14c749fSJonathan Lemon goto check_delack; 1918df8bae1dSRodney W. Grimes } 1919df8bae1dSRodney W. Grimes } 1920df8bae1dSRodney W. Grimes 1921df8bae1dSRodney W. Grimes /* 1922df8bae1dSRodney W. Grimes * Calculate amount of space in receive window, 1923df8bae1dSRodney W. Grimes * and then do TCP input processing. 1924df8bae1dSRodney W. Grimes * Receive window is amount of space in rcv queue, 1925df8bae1dSRodney W. Grimes * but not less than advertised window. 1926df8bae1dSRodney W. Grimes */ 1927df8bae1dSRodney W. Grimes win = sbspace(&so->so_rcv); 1928df8bae1dSRodney W. Grimes if (win < 0) 1929df8bae1dSRodney W. Grimes win = 0; 193066e39adcSJohn Polstra tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt)); 1931df8bae1dSRodney W. Grimes 1932df8bae1dSRodney W. Grimes switch (tp->t_state) { 1933df8bae1dSRodney W. Grimes 1934df8bae1dSRodney W. Grimes /* 1935764d8cefSBill Fenner * If the state is SYN_RECEIVED: 1936764d8cefSBill Fenner * if seg contains an ACK, but not for our SYN/ACK, send a RST. 1937764d8cefSBill Fenner */ 1938764d8cefSBill Fenner case TCPS_SYN_RECEIVED: 1939fb59c426SYoshinobu Inoue if ((thflags & TH_ACK) && 1940fb59c426SYoshinobu Inoue (SEQ_LEQ(th->th_ack, tp->snd_una) || 1941a57815efSBosko Milekic SEQ_GT(th->th_ack, tp->snd_max))) { 1942a57815efSBosko Milekic rstreason = BANDLIM_RST_OPENPORT; 1943a57815efSBosko Milekic goto dropwithreset; 1944a57815efSBosko Milekic } 194568bd7ed1SJonathan T. Looney if (IS_FASTOPEN(tp->t_flags)) { 1946281a0fd4SPatrick Kelsey /* 1947281a0fd4SPatrick Kelsey * When a TFO connection is in SYN_RECEIVED, the 1948281a0fd4SPatrick Kelsey * only valid packets are the initial SYN, a 1949281a0fd4SPatrick Kelsey * retransmit/copy of the initial SYN (possibly with 1950281a0fd4SPatrick Kelsey * a subset of the original data), a valid ACK, a 1951281a0fd4SPatrick Kelsey * FIN, or a RST. 1952281a0fd4SPatrick Kelsey */ 1953281a0fd4SPatrick Kelsey if ((thflags & (TH_SYN|TH_ACK)) == (TH_SYN|TH_ACK)) { 1954281a0fd4SPatrick Kelsey rstreason = BANDLIM_RST_OPENPORT; 1955281a0fd4SPatrick Kelsey goto dropwithreset; 1956281a0fd4SPatrick Kelsey } else if (thflags & TH_SYN) { 1957281a0fd4SPatrick Kelsey /* non-initial SYN is ignored */ 1958281a0fd4SPatrick Kelsey if ((tcp_timer_active(tp, TT_DELACK) || 1959281a0fd4SPatrick Kelsey tcp_timer_active(tp, TT_REXMT))) 1960281a0fd4SPatrick Kelsey goto drop; 1961281a0fd4SPatrick Kelsey } else if (!(thflags & (TH_ACK|TH_FIN|TH_RST))) { 1962281a0fd4SPatrick Kelsey goto drop; 1963281a0fd4SPatrick Kelsey } 1964281a0fd4SPatrick Kelsey } 1965764d8cefSBill Fenner break; 1966764d8cefSBill Fenner 1967764d8cefSBill Fenner /* 1968df8bae1dSRodney W. Grimes * If the state is SYN_SENT: 196998732609SMichael Tuexen * if seg contains a RST with valid ACK (SEQ.ACK has already 197098732609SMichael Tuexen * been verified), then drop the connection. 197198732609SMichael Tuexen * if seg contains a RST without an ACK, drop the seg. 197298732609SMichael Tuexen * if seg does not contain SYN, then drop the seg. 1973df8bae1dSRodney W. Grimes * Otherwise this is an acceptable SYN segment 1974df8bae1dSRodney W. Grimes * initialize tp->rcv_nxt and tp->irs 1975df8bae1dSRodney W. Grimes * if seg contains ack then advance tp->snd_una 1976f2512ba1SRui Paulo * if seg contains an ECE and ECN support is enabled, the stream 1977f2512ba1SRui Paulo * is ECN capable. 1978df8bae1dSRodney W. Grimes * if SYN has been acked change to ESTABLISHED else SYN_RCVD state 1979df8bae1dSRodney W. Grimes * arrange for segment to be acked (eventually) 1980df8bae1dSRodney W. Grimes * continue processing rest of data/controls, beginning with URG 1981df8bae1dSRodney W. Grimes */ 1982df8bae1dSRodney W. Grimes case TCPS_SYN_SENT: 198357f60867SMark Johnston if ((thflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) { 1984d9fae5abSAndriy Gapon TCP_PROBE5(connect__refused, NULL, tp, 19852b9c9984SGeorge V. Neville-Neil m, tp, th); 1986df8bae1dSRodney W. Grimes tp = tcp_drop(tp, ECONNREFUSED); 198757f60867SMark Johnston } 19880ca3f933SAndre Oppermann if (thflags & TH_RST) 1989df8bae1dSRodney W. Grimes goto drop; 19900ca3f933SAndre Oppermann if (!(thflags & TH_SYN)) 1991df8bae1dSRodney W. Grimes goto drop; 1992464fcfbcSAndre Oppermann 1993fb59c426SYoshinobu Inoue tp->irs = th->th_seq; 1994df8bae1dSRodney W. Grimes tcp_rcvseqinit(tp); 1995fb59c426SYoshinobu Inoue if (thflags & TH_ACK) { 1996c560df6fSPatrick Kelsey int tfo_partial_ack = 0; 1997c560df6fSPatrick Kelsey 199878b50714SRobert Watson TCPSTAT_INC(tcps_connects); 1999845799c1SAndras Olah soisconnected(so); 2000c488362eSRobert Watson #ifdef MAC 200130d239bcSRobert Watson mac_socketpeer_set_from_mbuf(m, so); 2002c488362eSRobert Watson #endif 2003845799c1SAndras Olah /* Do window scaling on this connection? */ 2004845799c1SAndras Olah if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) == 2005845799c1SAndras Olah (TF_RCVD_SCALE|TF_REQ_SCALE)) { 2006845799c1SAndras Olah tp->rcv_scale = tp->request_r_scale; 2007845799c1SAndras Olah } 20083ac12506SJonathan T. Looney tp->rcv_adv += min(tp->rcv_wnd, 2009766282cbSJohn Baldwin TCP_MAXWIN << tp->rcv_scale); 2010a0292f23SGarrett Wollman tp->snd_una++; /* SYN is acked */ 2011a0292f23SGarrett Wollman /* 2012c560df6fSPatrick Kelsey * If not all the data that was sent in the TFO SYN 2013c560df6fSPatrick Kelsey * has been acked, resend the remainder right away. 2014c560df6fSPatrick Kelsey */ 2015c560df6fSPatrick Kelsey if (IS_FASTOPEN(tp->t_flags) && 2016c560df6fSPatrick Kelsey (tp->snd_una != tp->snd_max)) { 2017c560df6fSPatrick Kelsey tp->snd_nxt = th->th_ack; 2018c560df6fSPatrick Kelsey tfo_partial_ack = 1; 2019c560df6fSPatrick Kelsey } 2020c560df6fSPatrick Kelsey /* 2021a0292f23SGarrett Wollman * If there's data, delay ACK; if there's also a FIN 2022a0292f23SGarrett Wollman * ACKNOW will be turned on later. 2023a0292f23SGarrett Wollman */ 2024c560df6fSPatrick Kelsey if (DELAY_ACK(tp, tlen) && tlen != 0 && !tfo_partial_ack) 2025b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_DELACK, 2026b8152ba7SAndre Oppermann tcp_delacktime); 2027a0292f23SGarrett Wollman else 2028a0292f23SGarrett Wollman tp->t_flags |= TF_ACKNOW; 2029f2512ba1SRui Paulo 2030603724d3SBjoern A. Zeeb if ((thflags & TH_ECE) && V_tcp_do_ecn) { 2031f2512ba1SRui Paulo tp->t_flags |= TF_ECN_PERMIT; 203278b50714SRobert Watson TCPSTAT_INC(tcps_ecn_shs); 2033f2512ba1SRui Paulo } 2034f2512ba1SRui Paulo 2035a0292f23SGarrett Wollman /* 2036a0292f23SGarrett Wollman * Received <SYN,ACK> in SYN_SENT[*] state. 2037a0292f23SGarrett Wollman * Transitions: 2038a0292f23SGarrett Wollman * SYN_SENT --> ESTABLISHED 2039a0292f23SGarrett Wollman * SYN_SENT* --> FIN_WAIT_1 2040a0292f23SGarrett Wollman */ 20419b8b58e0SJonathan Lemon tp->t_starttime = ticks; 2042a0292f23SGarrett Wollman if (tp->t_flags & TF_NEEDFIN) { 204357f60867SMark Johnston tcp_state_change(tp, TCPS_FIN_WAIT_1); 2044a0292f23SGarrett Wollman tp->t_flags &= ~TF_NEEDFIN; 2045fb59c426SYoshinobu Inoue thflags &= ~TH_SYN; 20467ff19458SPaul Traina } else { 204757f60867SMark Johnston tcp_state_change(tp, TCPS_ESTABLISHED); 2048d9fae5abSAndriy Gapon TCP_PROBE5(connect__established, NULL, tp, 20492b9c9984SGeorge V. Neville-Neil m, tp, th); 2050dbc42409SLawrence Stewart cc_conn_init(tp); 20519077f387SGleb Smirnoff tcp_timer_activate(tp, TT_KEEP, 20529077f387SGleb Smirnoff TP_KEEPIDLE(tp)); 20537ff19458SPaul Traina } 2054a0292f23SGarrett Wollman } else { 2055a0292f23SGarrett Wollman /* 2056c068736aSJeffrey Hsu * Received initial SYN in SYN-SENT[*] state => 2057153edc50SHiren Panchasara * simultaneous open. 2058c068736aSJeffrey Hsu * If it succeeds, connection is * half-synchronized. 2059c068736aSJeffrey Hsu * Otherwise, do 3-way handshake: 2060a0292f23SGarrett Wollman * SYN-SENT -> SYN-RECEIVED 2061a0292f23SGarrett Wollman * SYN-SENT* -> SYN-RECEIVED* 2062a0292f23SGarrett Wollman */ 20634b8e98d6SQing Li tp->t_flags |= (TF_ACKNOW | TF_NEEDSYN); 2064b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_REXMT, 0); 206557f60867SMark Johnston tcp_state_change(tp, TCPS_SYN_RECEIVED); 2066a0292f23SGarrett Wollman } 2067df8bae1dSRodney W. Grimes 2068ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 20698501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 20707cfc6904SRobert Watson 2071df8bae1dSRodney W. Grimes /* 2072fb59c426SYoshinobu Inoue * Advance th->th_seq to correspond to first data byte. 2073df8bae1dSRodney W. Grimes * If data, trim to stay within window, 2074df8bae1dSRodney W. Grimes * dropping FIN if necessary. 2075df8bae1dSRodney W. Grimes */ 2076fb59c426SYoshinobu Inoue th->th_seq++; 2077fb59c426SYoshinobu Inoue if (tlen > tp->rcv_wnd) { 2078fb59c426SYoshinobu Inoue todrop = tlen - tp->rcv_wnd; 2079df8bae1dSRodney W. Grimes m_adj(m, -todrop); 2080fb59c426SYoshinobu Inoue tlen = tp->rcv_wnd; 2081fb59c426SYoshinobu Inoue thflags &= ~TH_FIN; 208278b50714SRobert Watson TCPSTAT_INC(tcps_rcvpackafterwin); 208378b50714SRobert Watson TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop); 2084df8bae1dSRodney W. Grimes } 2085fb59c426SYoshinobu Inoue tp->snd_wl1 = th->th_seq - 1; 2086fb59c426SYoshinobu Inoue tp->rcv_up = th->th_seq; 2087a0292f23SGarrett Wollman /* 2088a0292f23SGarrett Wollman * Client side of transaction: already sent SYN and data. 2089a0292f23SGarrett Wollman * If the remote host used T/TCP to validate the SYN, 2090a0292f23SGarrett Wollman * our data will be ACK'd; if so, enter normal data segment 2091a0292f23SGarrett Wollman * processing in the middle of step 5, ack processing. 2092a0292f23SGarrett Wollman * Otherwise, goto step 6. 2093a0292f23SGarrett Wollman */ 2094fb59c426SYoshinobu Inoue if (thflags & TH_ACK) 2095a0292f23SGarrett Wollman goto process_ACK; 2096c068736aSJeffrey Hsu 2097df8bae1dSRodney W. Grimes goto step6; 2098c068736aSJeffrey Hsu 2099a0292f23SGarrett Wollman /* 2100a0292f23SGarrett Wollman * If the state is LAST_ACK or CLOSING or TIME_WAIT: 2101c94c54e4SAndre Oppermann * do normal processing. 2102a0292f23SGarrett Wollman * 2103c94c54e4SAndre Oppermann * NB: Leftover from RFC1644 T/TCP. Cases to be reused later. 2104a0292f23SGarrett Wollman */ 2105a0292f23SGarrett Wollman case TCPS_LAST_ACK: 2106a0292f23SGarrett Wollman case TCPS_CLOSING: 2107a0292f23SGarrett Wollman break; /* continue normal processing */ 2108df8bae1dSRodney W. Grimes } 2109df8bae1dSRodney W. Grimes 2110df8bae1dSRodney W. Grimes /* 2111df8bae1dSRodney W. Grimes * States other than LISTEN or SYN_SENT. 211280ab7c0eSGarrett Wollman * First check the RST flag and sequence number since reset segments 211380ab7c0eSGarrett Wollman * are exempt from the timestamp and connection count tests. This 211480ab7c0eSGarrett Wollman * fixes a bug introduced by the Stevens, vol. 2, p. 960 bugfix 211580ab7c0eSGarrett Wollman * below which allowed reset segments in half the sequence space 211680ab7c0eSGarrett Wollman * to fall though and be processed (which gives forged reset 211780ab7c0eSGarrett Wollman * segments with a random sequence number a 50 percent chance of 211880ab7c0eSGarrett Wollman * killing a connection). 211980ab7c0eSGarrett Wollman * Then check timestamp, if present. 2120a0292f23SGarrett Wollman * Then check the connection count, if present. 2121df8bae1dSRodney W. Grimes * Then check that at least some bytes of segment are within 2122df8bae1dSRodney W. Grimes * receive window. If segment begins before rcv_nxt, 2123df8bae1dSRodney W. Grimes * drop leading data (and SYN); if nothing left, just ack. 212480ab7c0eSGarrett Wollman */ 2125fb59c426SYoshinobu Inoue if (thflags & TH_RST) { 21263220a212SGleb Smirnoff /* 21273220a212SGleb Smirnoff * RFC5961 Section 3.2 21283220a212SGleb Smirnoff * 21293220a212SGleb Smirnoff * - RST drops connection only if SEG.SEQ == RCV.NXT. 21303220a212SGleb Smirnoff * - If RST is in window, we send challenge ACK. 21313220a212SGleb Smirnoff * 21323220a212SGleb Smirnoff * Note: to take into account delayed ACKs, we should 21333220a212SGleb Smirnoff * test against last_ack_sent instead of rcv_nxt. 21343220a212SGleb Smirnoff * Note 2: we handle special case of closed window, not 21353220a212SGleb Smirnoff * covered by the RFC. 21363220a212SGleb Smirnoff */ 21373220a212SGleb Smirnoff if ((SEQ_GEQ(th->th_seq, tp->last_ack_sent) && 21383220a212SGleb Smirnoff SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) || 21393220a212SGleb Smirnoff (tp->rcv_wnd == 0 && tp->last_ack_sent == th->th_seq)) { 214080ab7c0eSGarrett Wollman 2141ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 21423220a212SGleb Smirnoff KASSERT(tp->t_state != TCPS_SYN_SENT, 21433220a212SGleb Smirnoff ("%s: TH_RST for TCPS_SYN_SENT th %p tp %p", 21443220a212SGleb Smirnoff __func__, th, tp)); 21453220a212SGleb Smirnoff 21463220a212SGleb Smirnoff if (V_tcp_insecure_rst || 21473220a212SGleb Smirnoff tp->last_ack_sent == th->th_seq) { 21483220a212SGleb Smirnoff TCPSTAT_INC(tcps_drops); 21493220a212SGleb Smirnoff /* Drop the connection. */ 21503220a212SGleb Smirnoff switch (tp->t_state) { 215180ab7c0eSGarrett Wollman case TCPS_SYN_RECEIVED: 215280ab7c0eSGarrett Wollman so->so_error = ECONNREFUSED; 215380ab7c0eSGarrett Wollman goto close; 215480ab7c0eSGarrett Wollman case TCPS_ESTABLISHED: 215580ab7c0eSGarrett Wollman case TCPS_FIN_WAIT_1: 215680ab7c0eSGarrett Wollman case TCPS_FIN_WAIT_2: 215780ab7c0eSGarrett Wollman case TCPS_CLOSE_WAIT: 21586779a1a1SMichael Tuexen case TCPS_CLOSING: 21596779a1a1SMichael Tuexen case TCPS_LAST_ACK: 216080ab7c0eSGarrett Wollman so->so_error = ECONNRESET; 216180ab7c0eSGarrett Wollman close: 21623220a212SGleb Smirnoff /* FALLTHROUGH */ 21633220a212SGleb Smirnoff default: 216480ab7c0eSGarrett Wollman tp = tcp_close(tp); 21653220a212SGleb Smirnoff } 21663220a212SGleb Smirnoff } else { 21673220a212SGleb Smirnoff TCPSTAT_INC(tcps_badrst); 21683220a212SGleb Smirnoff /* Send challenge ACK. */ 21693220a212SGleb Smirnoff tcp_respond(tp, mtod(m, void *), th, m, 21703220a212SGleb Smirnoff tp->rcv_nxt, tp->snd_nxt, TH_ACK); 21713220a212SGleb Smirnoff tp->last_ack_sent = tp->rcv_nxt; 21723220a212SGleb Smirnoff m = NULL; 21733220a212SGleb Smirnoff } 21743220a212SGleb Smirnoff } 21753220a212SGleb Smirnoff goto drop; 21763220a212SGleb Smirnoff } 217780ab7c0eSGarrett Wollman 21783220a212SGleb Smirnoff /* 21793220a212SGleb Smirnoff * RFC5961 Section 4.2 21803220a212SGleb Smirnoff * Send challenge ACK for any SYN in synchronized state. 21813220a212SGleb Smirnoff */ 2182281a0fd4SPatrick Kelsey if ((thflags & TH_SYN) && tp->t_state != TCPS_SYN_SENT && 2183281a0fd4SPatrick Kelsey tp->t_state != TCPS_SYN_RECEIVED) { 2184ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 2185252ca428SRobert Watson 21863220a212SGleb Smirnoff TCPSTAT_INC(tcps_badsyn); 21873220a212SGleb Smirnoff if (V_tcp_insecure_syn && 21883220a212SGleb Smirnoff SEQ_GEQ(th->th_seq, tp->last_ack_sent) && 21893220a212SGleb Smirnoff SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) { 21903220a212SGleb Smirnoff tp = tcp_drop(tp, ECONNRESET); 21913220a212SGleb Smirnoff rstreason = BANDLIM_UNLIMITED; 21923220a212SGleb Smirnoff } else { 21933220a212SGleb Smirnoff /* Send challenge ACK. */ 21943220a212SGleb Smirnoff tcp_respond(tp, mtod(m, void *), th, m, tp->rcv_nxt, 21953220a212SGleb Smirnoff tp->snd_nxt, TH_ACK); 21963220a212SGleb Smirnoff tp->last_ack_sent = tp->rcv_nxt; 21973220a212SGleb Smirnoff m = NULL; 219880ab7c0eSGarrett Wollman } 219980ab7c0eSGarrett Wollman goto drop; 220080ab7c0eSGarrett Wollman } 220180ab7c0eSGarrett Wollman 220280ab7c0eSGarrett Wollman /* 2203df8bae1dSRodney W. Grimes * RFC 1323 PAWS: If we have a timestamp reply on this segment 2204df8bae1dSRodney W. Grimes * and it's less than ts_recent, drop it. 2205df8bae1dSRodney W. Grimes */ 2206be2ac88cSJonathan Lemon if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent && 220780ab7c0eSGarrett Wollman TSTMP_LT(to.to_tsval, tp->ts_recent)) { 2208df8bae1dSRodney W. Grimes 2209df8bae1dSRodney W. Grimes /* Check to see if ts_recent is over 24 days old. */ 2210d8951c8aSBjoern A. Zeeb if (tcp_ts_getticks() - tp->ts_recent_age > TCP_PAWS_IDLE) { 2211df8bae1dSRodney W. Grimes /* 2212df8bae1dSRodney W. Grimes * Invalidate ts_recent. If this segment updates 2213df8bae1dSRodney W. Grimes * ts_recent, the age will be reset later and ts_recent 2214df8bae1dSRodney W. Grimes * will get a valid value. If it does not, setting 2215df8bae1dSRodney W. Grimes * ts_recent to zero will at least satisfy the 2216df8bae1dSRodney W. Grimes * requirement that zero be placed in the timestamp 2217df8bae1dSRodney W. Grimes * echo reply when ts_recent isn't valid. The 2218df8bae1dSRodney W. Grimes * age isn't reset until we get a valid ts_recent 2219df8bae1dSRodney W. Grimes * because we don't want out-of-order segments to be 2220df8bae1dSRodney W. Grimes * dropped when ts_recent is old. 2221df8bae1dSRodney W. Grimes */ 2222df8bae1dSRodney W. Grimes tp->ts_recent = 0; 2223df8bae1dSRodney W. Grimes } else { 222478b50714SRobert Watson TCPSTAT_INC(tcps_rcvduppack); 222578b50714SRobert Watson TCPSTAT_ADD(tcps_rcvdupbyte, tlen); 222678b50714SRobert Watson TCPSTAT_INC(tcps_pawsdrop); 222707fd333dSMatthew Dillon if (tlen) 2228df8bae1dSRodney W. Grimes goto dropafterack; 22291ab4789dSMatthew Dillon goto drop; 22301ab4789dSMatthew Dillon } 2231df8bae1dSRodney W. Grimes } 2232df8bae1dSRodney W. Grimes 2233a0292f23SGarrett Wollman /* 223480ab7c0eSGarrett Wollman * In the SYN-RECEIVED state, validate that the packet belongs to 223580ab7c0eSGarrett Wollman * this connection before trimming the data to fit the receive 223680ab7c0eSGarrett Wollman * window. Check the sequence number versus IRS since we know 223780ab7c0eSGarrett Wollman * the sequence numbers haven't wrapped. This is a partial fix 223880ab7c0eSGarrett Wollman * for the "LAND" DoS attack. 223980ab7c0eSGarrett Wollman */ 2240a57815efSBosko Milekic if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) { 2241a57815efSBosko Milekic rstreason = BANDLIM_RST_OPENPORT; 2242a57815efSBosko Milekic goto dropwithreset; 2243a57815efSBosko Milekic } 224480ab7c0eSGarrett Wollman 2245fb59c426SYoshinobu Inoue todrop = tp->rcv_nxt - th->th_seq; 2246df8bae1dSRodney W. Grimes if (todrop > 0) { 2247831ad37eSXin LI if (thflags & TH_SYN) { 2248fb59c426SYoshinobu Inoue thflags &= ~TH_SYN; 2249fb59c426SYoshinobu Inoue th->th_seq++; 2250fb59c426SYoshinobu Inoue if (th->th_urp > 1) 2251fb59c426SYoshinobu Inoue th->th_urp--; 2252df8bae1dSRodney W. Grimes else 2253fb59c426SYoshinobu Inoue thflags &= ~TH_URG; 2254df8bae1dSRodney W. Grimes todrop--; 2255df8bae1dSRodney W. Grimes } 2256df8bae1dSRodney W. Grimes /* 2257dac20301SGarrett Wollman * Following if statement from Stevens, vol. 2, p. 960. 2258df8bae1dSRodney W. Grimes */ 2259fb59c426SYoshinobu Inoue if (todrop > tlen 2260fb59c426SYoshinobu Inoue || (todrop == tlen && (thflags & TH_FIN) == 0)) { 2261dac20301SGarrett Wollman /* 2262dac20301SGarrett Wollman * Any valid FIN must be to the left of the window. 2263dac20301SGarrett Wollman * At this point the FIN must be a duplicate or out 2264dac20301SGarrett Wollman * of sequence; drop it. 2265dac20301SGarrett Wollman */ 2266fb59c426SYoshinobu Inoue thflags &= ~TH_FIN; 2267dac20301SGarrett Wollman 2268df8bae1dSRodney W. Grimes /* 2269dac20301SGarrett Wollman * Send an ACK to resynchronize and drop any data. 2270dac20301SGarrett Wollman * But keep on processing for RST or ACK. 2271df8bae1dSRodney W. Grimes */ 2272dac20301SGarrett Wollman tp->t_flags |= TF_ACKNOW; 2273fb59c426SYoshinobu Inoue todrop = tlen; 227478b50714SRobert Watson TCPSTAT_INC(tcps_rcvduppack); 227578b50714SRobert Watson TCPSTAT_ADD(tcps_rcvdupbyte, todrop); 2276df8bae1dSRodney W. Grimes } else { 227778b50714SRobert Watson TCPSTAT_INC(tcps_rcvpartduppack); 227878b50714SRobert Watson TCPSTAT_ADD(tcps_rcvpartdupbyte, todrop); 2279df8bae1dSRodney W. Grimes } 2280fb59c426SYoshinobu Inoue drop_hdrlen += todrop; /* drop from the top afterwards */ 2281fb59c426SYoshinobu Inoue th->th_seq += todrop; 2282fb59c426SYoshinobu Inoue tlen -= todrop; 2283fb59c426SYoshinobu Inoue if (th->th_urp > todrop) 2284fb59c426SYoshinobu Inoue th->th_urp -= todrop; 2285df8bae1dSRodney W. Grimes else { 2286fb59c426SYoshinobu Inoue thflags &= ~TH_URG; 2287fb59c426SYoshinobu Inoue th->th_urp = 0; 2288df8bae1dSRodney W. Grimes } 2289df8bae1dSRodney W. Grimes } 2290df8bae1dSRodney W. Grimes 2291df8bae1dSRodney W. Grimes /* 2292df8bae1dSRodney W. Grimes * If new data are received on a connection after the 2293df8bae1dSRodney W. Grimes * user processes are gone, then RST the other end. 2294df8bae1dSRodney W. Grimes */ 2295df8bae1dSRodney W. Grimes if ((so->so_state & SS_NOFDREF) && 2296fb59c426SYoshinobu Inoue tp->t_state > TCPS_CLOSE_WAIT && tlen) { 2297ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 2298252ca428SRobert Watson 229907dacf03SAndre Oppermann if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 230007dacf03SAndre Oppermann log(LOG_DEBUG, "%s; %s: %s: Received %d bytes of data " 230107dacf03SAndre Oppermann "after socket was closed, " 230207dacf03SAndre Oppermann "sending RST and removing tcpcb\n", 2303e31d8aa3SMike Silbersack s, __func__, tcpstates[tp->t_state], tlen); 2304773673c1SAndre Oppermann free(s, M_TCPLOG); 2305773673c1SAndre Oppermann } 2306df8bae1dSRodney W. Grimes tp = tcp_close(tp); 230778b50714SRobert Watson TCPSTAT_INC(tcps_rcvafterclose); 2308a57815efSBosko Milekic rstreason = BANDLIM_UNLIMITED; 2309df8bae1dSRodney W. Grimes goto dropwithreset; 2310df8bae1dSRodney W. Grimes } 2311df8bae1dSRodney W. Grimes 2312df8bae1dSRodney W. Grimes /* 2313df8bae1dSRodney W. Grimes * If segment ends after window, drop trailing data 2314df8bae1dSRodney W. Grimes * (and PUSH and FIN); if nothing left, just ACK. 2315df8bae1dSRodney W. Grimes */ 2316fb59c426SYoshinobu Inoue todrop = (th->th_seq + tlen) - (tp->rcv_nxt + tp->rcv_wnd); 2317df8bae1dSRodney W. Grimes if (todrop > 0) { 231878b50714SRobert Watson TCPSTAT_INC(tcps_rcvpackafterwin); 2319fb59c426SYoshinobu Inoue if (todrop >= tlen) { 232078b50714SRobert Watson TCPSTAT_ADD(tcps_rcvbyteafterwin, tlen); 2321df8bae1dSRodney W. Grimes /* 2322df8bae1dSRodney W. Grimes * If window is closed can only take segments at 2323df8bae1dSRodney W. Grimes * window edge, and have to drop data and PUSH from 2324df8bae1dSRodney W. Grimes * incoming segments. Continue processing, but 2325df8bae1dSRodney W. Grimes * remember to ack. Otherwise, drop segment 2326df8bae1dSRodney W. Grimes * and ack. 2327df8bae1dSRodney W. Grimes */ 2328fb59c426SYoshinobu Inoue if (tp->rcv_wnd == 0 && th->th_seq == tp->rcv_nxt) { 2329df8bae1dSRodney W. Grimes tp->t_flags |= TF_ACKNOW; 233078b50714SRobert Watson TCPSTAT_INC(tcps_rcvwinprobe); 2331df8bae1dSRodney W. Grimes } else 2332df8bae1dSRodney W. Grimes goto dropafterack; 2333df8bae1dSRodney W. Grimes } else 233478b50714SRobert Watson TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop); 2335df8bae1dSRodney W. Grimes m_adj(m, -todrop); 2336fb59c426SYoshinobu Inoue tlen -= todrop; 2337fb59c426SYoshinobu Inoue thflags &= ~(TH_PUSH|TH_FIN); 2338df8bae1dSRodney W. Grimes } 2339df8bae1dSRodney W. Grimes 2340df8bae1dSRodney W. Grimes /* 2341df8bae1dSRodney W. Grimes * If last ACK falls within this segment's sequence numbers, 2342df8bae1dSRodney W. Grimes * record its timestamp. 2343cf09195bSPaul Saab * NOTE: 2344cf09195bSPaul Saab * 1) That the test incorporates suggestions from the latest 2345a0292f23SGarrett Wollman * proposal of the tcplw@cray.com list (Braden 1993/04/26). 2346cf09195bSPaul Saab * 2) That updating only on newer timestamps interferes with 2347cf09195bSPaul Saab * our earlier PAWS tests, so this check should be solely 2348cf09195bSPaul Saab * predicated on the sequence space of this segment. 2349cf09195bSPaul Saab * 3) That we modify the segment boundary check to be 2350cf09195bSPaul Saab * Last.ACK.Sent <= SEG.SEQ + SEG.Len 2351cf09195bSPaul Saab * instead of RFC1323's 2352cf09195bSPaul Saab * Last.ACK.Sent < SEG.SEQ + SEG.Len, 2353cf09195bSPaul Saab * This modified check allows us to overcome RFC1323's 2354cf09195bSPaul Saab * limitations as described in Stevens TCP/IP Illustrated 2355cf09195bSPaul Saab * Vol. 2 p.869. In such cases, we can still calculate the 2356cf09195bSPaul Saab * RTT correctly when RCV.NXT == Last.ACK.Sent. 2357df8bae1dSRodney W. Grimes */ 2358be2ac88cSJonathan Lemon if ((to.to_flags & TOF_TS) != 0 && 2359cf09195bSPaul Saab SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 2360cf09195bSPaul Saab SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 2361cf09195bSPaul Saab ((thflags & (TH_SYN|TH_FIN)) != 0))) { 2362d8951c8aSBjoern A. Zeeb tp->ts_recent_age = tcp_ts_getticks(); 2363a0292f23SGarrett Wollman tp->ts_recent = to.to_tsval; 2364df8bae1dSRodney W. Grimes } 2365df8bae1dSRodney W. Grimes 2366df8bae1dSRodney W. Grimes /* 2367a0292f23SGarrett Wollman * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN 2368a0292f23SGarrett Wollman * flag is on (half-synchronized state), then queue data for 2369a0292f23SGarrett Wollman * later processing; else drop segment and return. 2370a0292f23SGarrett Wollman */ 2371fb59c426SYoshinobu Inoue if ((thflags & TH_ACK) == 0) { 2372a0292f23SGarrett Wollman if (tp->t_state == TCPS_SYN_RECEIVED || 2373281a0fd4SPatrick Kelsey (tp->t_flags & TF_NEEDSYN)) { 2374281a0fd4SPatrick Kelsey if (tp->t_state == TCPS_SYN_RECEIVED && 237568bd7ed1SJonathan T. Looney IS_FASTOPEN(tp->t_flags)) { 2376281a0fd4SPatrick Kelsey tp->snd_wnd = tiwin; 2377281a0fd4SPatrick Kelsey cc_conn_init(tp); 2378281a0fd4SPatrick Kelsey } 2379a0292f23SGarrett Wollman goto step6; 2380281a0fd4SPatrick Kelsey } else if (tp->t_flags & TF_ACKNOW) 23815e1aa279SDavid Malone goto dropafterack; 2382a0292f23SGarrett Wollman else 2383a0292f23SGarrett Wollman goto drop; 2384a0292f23SGarrett Wollman } 2385df8bae1dSRodney W. Grimes 2386df8bae1dSRodney W. Grimes /* 2387df8bae1dSRodney W. Grimes * Ack processing. 2388df8bae1dSRodney W. Grimes */ 2389df8bae1dSRodney W. Grimes switch (tp->t_state) { 2390df8bae1dSRodney W. Grimes 2391df8bae1dSRodney W. Grimes /* 2392764d8cefSBill Fenner * In SYN_RECEIVED state, the ack ACKs our SYN, so enter 2393764d8cefSBill Fenner * ESTABLISHED state and continue processing. 2394764d8cefSBill Fenner * The ACK was checked above. 2395df8bae1dSRodney W. Grimes */ 2396df8bae1dSRodney W. Grimes case TCPS_SYN_RECEIVED: 2397a0292f23SGarrett Wollman 239878b50714SRobert Watson TCPSTAT_INC(tcps_connects); 2399df8bae1dSRodney W. Grimes soisconnected(so); 2400df8bae1dSRodney W. Grimes /* Do window scaling? */ 2401df8bae1dSRodney W. Grimes if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) == 2402df8bae1dSRodney W. Grimes (TF_RCVD_SCALE|TF_REQ_SCALE)) { 2403df8bae1dSRodney W. Grimes tp->rcv_scale = tp->request_r_scale; 2404464fcfbcSAndre Oppermann tp->snd_wnd = tiwin; 2405df8bae1dSRodney W. Grimes } 2406a0292f23SGarrett Wollman /* 2407a0292f23SGarrett Wollman * Make transitions: 2408a0292f23SGarrett Wollman * SYN-RECEIVED -> ESTABLISHED 2409a0292f23SGarrett Wollman * SYN-RECEIVED* -> FIN-WAIT-1 2410a0292f23SGarrett Wollman */ 24119b8b58e0SJonathan Lemon tp->t_starttime = ticks; 241218a75309SPatrick Kelsey if (IS_FASTOPEN(tp->t_flags) && tp->t_tfo_pending) { 2413281a0fd4SPatrick Kelsey tcp_fastopen_decrement_counter(tp->t_tfo_pending); 2414281a0fd4SPatrick Kelsey tp->t_tfo_pending = NULL; 2415281a0fd4SPatrick Kelsey 2416281a0fd4SPatrick Kelsey /* 2417281a0fd4SPatrick Kelsey * Account for the ACK of our SYN prior to 2418281a0fd4SPatrick Kelsey * regular ACK processing below. 2419281a0fd4SPatrick Kelsey */ 2420281a0fd4SPatrick Kelsey tp->snd_una++; 2421281a0fd4SPatrick Kelsey } 24228db239dcSMichael Tuexen if (tp->t_flags & TF_NEEDFIN) { 24238db239dcSMichael Tuexen tcp_state_change(tp, TCPS_FIN_WAIT_1); 24248db239dcSMichael Tuexen tp->t_flags &= ~TF_NEEDFIN; 24258db239dcSMichael Tuexen } else { 24268db239dcSMichael Tuexen tcp_state_change(tp, TCPS_ESTABLISHED); 24278db239dcSMichael Tuexen TCP_PROBE5(accept__established, NULL, tp, 24288db239dcSMichael Tuexen m, tp, th); 2429281a0fd4SPatrick Kelsey /* 2430281a0fd4SPatrick Kelsey * TFO connections call cc_conn_init() during SYN 2431281a0fd4SPatrick Kelsey * processing. Calling it again here for such 2432281a0fd4SPatrick Kelsey * connections is not harmless as it would undo the 2433281a0fd4SPatrick Kelsey * snd_cwnd reduction that occurs when a TFO SYN|ACK 2434281a0fd4SPatrick Kelsey * is retransmitted. 2435281a0fd4SPatrick Kelsey */ 243668bd7ed1SJonathan T. Looney if (!IS_FASTOPEN(tp->t_flags)) 2437dbc42409SLawrence Stewart cc_conn_init(tp); 24389077f387SGleb Smirnoff tcp_timer_activate(tp, TT_KEEP, TP_KEEPIDLE(tp)); 24397ff19458SPaul Traina } 2440a0292f23SGarrett Wollman /* 2441a0292f23SGarrett Wollman * If segment contains data or ACK, will call tcp_reass() 2442a0292f23SGarrett Wollman * later; if not, do so now to pass queued data to user. 2443a0292f23SGarrett Wollman */ 2444fb59c426SYoshinobu Inoue if (tlen == 0 && (thflags & TH_FIN) == 0) 2445c28440dbSRandall Stewart (void) tcp_reass(tp, (struct tcphdr *)0, NULL, 0, 2446a0292f23SGarrett Wollman (struct mbuf *)0); 244760ee3bb2SAndre Oppermann tp->snd_wl1 = th->th_seq - 1; 244893b0017fSPhilippe Charnier /* FALLTHROUGH */ 2449df8bae1dSRodney W. Grimes 2450df8bae1dSRodney W. Grimes /* 2451df8bae1dSRodney W. Grimes * In ESTABLISHED state: drop duplicate ACKs; ACK out of range 2452df8bae1dSRodney W. Grimes * ACKs. If the ack is in the range 2453fb59c426SYoshinobu Inoue * tp->snd_una < th->th_ack <= tp->snd_max 2454fb59c426SYoshinobu Inoue * then advance tp->snd_una to th->th_ack and drop 2455df8bae1dSRodney W. Grimes * data from the retransmission queue. If this ACK reflects 2456df8bae1dSRodney W. Grimes * more up to date window information we update our window information. 2457df8bae1dSRodney W. Grimes */ 2458df8bae1dSRodney W. Grimes case TCPS_ESTABLISHED: 2459df8bae1dSRodney W. Grimes case TCPS_FIN_WAIT_1: 2460df8bae1dSRodney W. Grimes case TCPS_FIN_WAIT_2: 2461df8bae1dSRodney W. Grimes case TCPS_CLOSE_WAIT: 2462df8bae1dSRodney W. Grimes case TCPS_CLOSING: 2463df8bae1dSRodney W. Grimes case TCPS_LAST_ACK: 24645a53ca16SPaul Saab if (SEQ_GT(th->th_ack, tp->snd_max)) { 246578b50714SRobert Watson TCPSTAT_INC(tcps_rcvacktoomuch); 24665a53ca16SPaul Saab goto dropafterack; 24675a53ca16SPaul Saab } 24683529149eSAndre Oppermann if ((tp->t_flags & TF_SACK_PERMIT) && 2469fc30a251SAndre Oppermann ((to.to_flags & TOF_SACK) || 2470fc30a251SAndre Oppermann !TAILQ_EMPTY(&tp->snd_holes))) 2471021eaf79SHiren Panchasara sack_changed = tcp_sack_doack(tp, &to, th->th_ack); 247212eeb81fSHiren Panchasara else 247312eeb81fSHiren Panchasara /* 247412eeb81fSHiren Panchasara * Reset the value so that previous (valid) value 247512eeb81fSHiren Panchasara * from the last ack with SACK doesn't get used. 247612eeb81fSHiren Panchasara */ 247712eeb81fSHiren Panchasara tp->sackhint.sacked_bytes = 0; 247839bc9de5SLawrence Stewart 2479bd79708dSJonathan T. Looney #ifdef TCP_HHOOK 248039bc9de5SLawrence Stewart /* Run HHOOK_TCP_ESTABLISHED_IN helper hooks. */ 248139bc9de5SLawrence Stewart hhook_run_tcp_est_in(tp, th, &to); 2482bd79708dSJonathan T. Looney #endif 248339bc9de5SLawrence Stewart 2484fb59c426SYoshinobu Inoue if (SEQ_LEQ(th->th_ack, tp->snd_una)) { 24850c39d38dSGleb Smirnoff u_int maxseg; 24860c39d38dSGleb Smirnoff 24870c39d38dSGleb Smirnoff maxseg = tcp_maxseg(tp); 2488021eaf79SHiren Panchasara if (tlen == 0 && 2489021eaf79SHiren Panchasara (tiwin == tp->snd_wnd || 2490021eaf79SHiren Panchasara (tp->t_flags & TF_SACK_PERMIT))) { 249162b90589SPeter Wemm /* 249262b90589SPeter Wemm * If this is the first time we've seen a 249362b90589SPeter Wemm * FIN from the remote, this is not a 249462b90589SPeter Wemm * duplicate and it needs to be processed 249562b90589SPeter Wemm * normally. This happens during a 249662b90589SPeter Wemm * simultaneous close. 249762b90589SPeter Wemm */ 249862b90589SPeter Wemm if ((thflags & TH_FIN) && 249962b90589SPeter Wemm (TCPS_HAVERCVDFIN(tp->t_state) == 0)) { 250062b90589SPeter Wemm tp->t_dupacks = 0; 250162b90589SPeter Wemm break; 250262b90589SPeter Wemm } 250378b50714SRobert Watson TCPSTAT_INC(tcps_rcvdupack); 2504df8bae1dSRodney W. Grimes /* 2505df8bae1dSRodney W. Grimes * If we have outstanding data (other than 2506df8bae1dSRodney W. Grimes * a window probe), this is a completely 2507df8bae1dSRodney W. Grimes * duplicate ack (ie, window info didn't 25085f30ec9bSEitan Adler * change and FIN isn't set), 25095f30ec9bSEitan Adler * the ack is the biggest we've 2510df8bae1dSRodney W. Grimes * seen and we've seen exactly our rexmt 2511a4641f4eSPedro F. Giffuni * threshold of them, assume a packet 2512df8bae1dSRodney W. Grimes * has been dropped and retransmit it. 2513df8bae1dSRodney W. Grimes * Kludge snd_nxt & the congestion 2514df8bae1dSRodney W. Grimes * window so we send only this one 2515df8bae1dSRodney W. Grimes * packet. 2516df8bae1dSRodney W. Grimes * 2517df8bae1dSRodney W. Grimes * We know we're losing at the current 2518df8bae1dSRodney W. Grimes * window size so do congestion avoidance 2519df8bae1dSRodney W. Grimes * (set ssthresh to half the current window 2520df8bae1dSRodney W. Grimes * and pull our congestion window back to 2521df8bae1dSRodney W. Grimes * the new ssthresh). 2522df8bae1dSRodney W. Grimes * 2523df8bae1dSRodney W. Grimes * Dup acks mean that packets have left the 2524df8bae1dSRodney W. Grimes * network (they're now cached at the receiver) 2525df8bae1dSRodney W. Grimes * so bump cwnd by the amount in the receiver 2526df8bae1dSRodney W. Grimes * to keep a constant cwnd packets in the 2527df8bae1dSRodney W. Grimes * network. 2528f2512ba1SRui Paulo * 2529f2512ba1SRui Paulo * When using TCP ECN, notify the peer that 2530f2512ba1SRui Paulo * we reduced the cwnd. 2531df8bae1dSRodney W. Grimes */ 2532021eaf79SHiren Panchasara /* 2533021eaf79SHiren Panchasara * Following 2 kinds of acks should not affect 2534021eaf79SHiren Panchasara * dupack counting: 2535021eaf79SHiren Panchasara * 1) Old acks 2536021eaf79SHiren Panchasara * 2) Acks with SACK but without any new SACK 2537021eaf79SHiren Panchasara * information in them. These could result from 2538021eaf79SHiren Panchasara * any anomaly in the network like a switch 2539021eaf79SHiren Panchasara * duplicating packets or a possible DoS attack. 2540021eaf79SHiren Panchasara */ 2541021eaf79SHiren Panchasara if (th->th_ack != tp->snd_una || 2542021eaf79SHiren Panchasara ((tp->t_flags & TF_SACK_PERMIT) && 2543021eaf79SHiren Panchasara !sack_changed)) 2544021eaf79SHiren Panchasara break; 2545021eaf79SHiren Panchasara else if (!tcp_timer_active(tp, TT_REXMT)) 2546df8bae1dSRodney W. Grimes tp->t_dupacks = 0; 2547cb942153SJeffrey Hsu else if (++tp->t_dupacks > tcprexmtthresh || 2548dbc42409SLawrence Stewart IN_FASTRECOVERY(tp->t_flags)) { 25494b7b743cSLawrence Stewart cc_ack_received(tp, th, nsegs, 25504b7b743cSLawrence Stewart CC_DUPACK); 25513529149eSAndre Oppermann if ((tp->t_flags & TF_SACK_PERMIT) && 2552dbc42409SLawrence Stewart IN_FASTRECOVERY(tp->t_flags)) { 2553808f11b7SPaul Saab int awnd; 255425e6f9edSPaul Saab 255525e6f9edSPaul Saab /* 255625e6f9edSPaul Saab * Compute the amount of data in flight first. 25574c3972f0SHiren Panchasara * We can inject new data into the pipe iff 255825e6f9edSPaul Saab * we have less than 1/2 the original window's 255925e6f9edSPaul Saab * worth of data in flight. 256025e6f9edSPaul Saab */ 256112eeb81fSHiren Panchasara if (V_tcp_do_rfc6675_pipe) 256212eeb81fSHiren Panchasara awnd = tcp_compute_pipe(tp); 256312eeb81fSHiren Panchasara else 2564808f11b7SPaul Saab awnd = (tp->snd_nxt - tp->snd_fack) + 25650077b016SPaul Saab tp->sackhint.sack_bytes_rexmit; 256612eeb81fSHiren Panchasara 2567808f11b7SPaul Saab if (awnd < tp->snd_ssthresh) { 25680c39d38dSGleb Smirnoff tp->snd_cwnd += maxseg; 256925e6f9edSPaul Saab if (tp->snd_cwnd > tp->snd_ssthresh) 257025e6f9edSPaul Saab tp->snd_cwnd = tp->snd_ssthresh; 257125e6f9edSPaul Saab } 257225e6f9edSPaul Saab } else 25730c39d38dSGleb Smirnoff tp->snd_cwnd += maxseg; 257455bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 257546f58482SJonathan Lemon goto drop; 2576cb942153SJeffrey Hsu } else if (tp->t_dupacks == tcprexmtthresh) { 2577cb942153SJeffrey Hsu tcp_seq onxt = tp->snd_nxt; 2578a0445c2eSJayanth Vijayaraghavan 2579a0445c2eSJayanth Vijayaraghavan /* 2580a0445c2eSJayanth Vijayaraghavan * If we're doing sack, check to 2581a0445c2eSJayanth Vijayaraghavan * see if we're already in sack 2582a0445c2eSJayanth Vijayaraghavan * recovery. If we're not doing sack, 2583a0445c2eSJayanth Vijayaraghavan * check to see if we're in newreno 2584a0445c2eSJayanth Vijayaraghavan * recovery. 2585a0445c2eSJayanth Vijayaraghavan */ 25863529149eSAndre Oppermann if (tp->t_flags & TF_SACK_PERMIT) { 2587dbc42409SLawrence Stewart if (IN_FASTRECOVERY(tp->t_flags)) { 2588a0445c2eSJayanth Vijayaraghavan tp->t_dupacks = 0; 2589a0445c2eSJayanth Vijayaraghavan break; 2590a0445c2eSJayanth Vijayaraghavan } 2591dbc42409SLawrence Stewart } else { 2592a0445c2eSJayanth Vijayaraghavan if (SEQ_LEQ(th->th_ack, 25939d11646dSJeffrey Hsu tp->snd_recover)) { 2594cb942153SJeffrey Hsu tp->t_dupacks = 0; 2595cb942153SJeffrey Hsu break; 259646f58482SJonathan Lemon } 2597a0445c2eSJayanth Vijayaraghavan } 2598dbc42409SLawrence Stewart /* Congestion signal before ack. */ 2599dbc42409SLawrence Stewart cc_cong_signal(tp, th, CC_NDUPACK); 26004b7b743cSLawrence Stewart cc_ack_received(tp, th, nsegs, 26014b7b743cSLawrence Stewart CC_DUPACK); 2602b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_REXMT, 0); 26039b8b58e0SJonathan Lemon tp->t_rtttime = 0; 26043529149eSAndre Oppermann if (tp->t_flags & TF_SACK_PERMIT) { 260578b50714SRobert Watson TCPSTAT_INC( 260678b50714SRobert Watson tcps_sack_recovery_episode); 2607a55db2b6SPaul Saab tp->sack_newdata = tp->snd_nxt; 26080c39d38dSGleb Smirnoff tp->snd_cwnd = maxseg; 260955bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 26106d90faf3SPaul Saab goto drop; 26116d90faf3SPaul Saab } 2612fb59c426SYoshinobu Inoue tp->snd_nxt = th->th_ack; 26130c39d38dSGleb Smirnoff tp->snd_cwnd = maxseg; 261455bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 261548d2549cSJeffrey Hsu KASSERT(tp->snd_limited <= 2, 2616302ce8d6SAndre Oppermann ("%s: tp->snd_limited too big", 2617302ce8d6SAndre Oppermann __func__)); 2618df8bae1dSRodney W. Grimes tp->snd_cwnd = tp->snd_ssthresh + 26190c39d38dSGleb Smirnoff maxseg * 262048d2549cSJeffrey Hsu (tp->t_dupacks - tp->snd_limited); 2621df8bae1dSRodney W. Grimes if (SEQ_GT(onxt, tp->snd_nxt)) 2622df8bae1dSRodney W. Grimes tp->snd_nxt = onxt; 2623df8bae1dSRodney W. Grimes goto drop; 2624603724d3SBjoern A. Zeeb } else if (V_tcp_do_rfc3042) { 262562d4443fSHiren Panchasara /* 262662d4443fSHiren Panchasara * Process first and second duplicate 262762d4443fSHiren Panchasara * ACKs. Each indicates a segment 262862d4443fSHiren Panchasara * leaving the network, creating room 262962d4443fSHiren Panchasara * for more. Make sure we can send a 263062d4443fSHiren Panchasara * packet on reception of each duplicate 263162d4443fSHiren Panchasara * ACK by increasing snd_cwnd by one 263262d4443fSHiren Panchasara * segment. Restore the original 263362d4443fSHiren Panchasara * snd_cwnd after packet transmission. 263462d4443fSHiren Panchasara */ 26354b7b743cSLawrence Stewart cc_ack_received(tp, th, nsegs, 26364b7b743cSLawrence Stewart CC_DUPACK); 26373ac12506SJonathan T. Looney uint32_t oldcwnd = tp->snd_cwnd; 263848d2549cSJeffrey Hsu tcp_seq oldsndmax = tp->snd_max; 263948d2549cSJeffrey Hsu u_int sent; 26405628dd08SAndre Oppermann int avail; 264189c02376SJeffrey Hsu 2642582a954bSJeffrey Hsu KASSERT(tp->t_dupacks == 1 || 2643582a954bSJeffrey Hsu tp->t_dupacks == 2, 2644302ce8d6SAndre Oppermann ("%s: dupacks not 1 or 2", 2645302ce8d6SAndre Oppermann __func__)); 264661a36e3dSJeffrey Hsu if (tp->t_dupacks == 1) 264748d2549cSJeffrey Hsu tp->snd_limited = 0; 264861a36e3dSJeffrey Hsu tp->snd_cwnd = 264961a36e3dSJeffrey Hsu (tp->snd_nxt - tp->snd_una) + 265061a36e3dSJeffrey Hsu (tp->t_dupacks - tp->snd_limited) * 26510c39d38dSGleb Smirnoff maxseg; 26525628dd08SAndre Oppermann /* 26535628dd08SAndre Oppermann * Only call tcp_output when there 26545628dd08SAndre Oppermann * is new data available to be sent. 26555628dd08SAndre Oppermann * Otherwise we would send pure ACKs. 26565628dd08SAndre Oppermann */ 26575628dd08SAndre Oppermann SOCKBUF_LOCK(&so->so_snd); 2658cfa6009eSGleb Smirnoff avail = sbavail(&so->so_snd) - 26595628dd08SAndre Oppermann (tp->snd_nxt - tp->snd_una); 26605628dd08SAndre Oppermann SOCKBUF_UNLOCK(&so->so_snd); 26615628dd08SAndre Oppermann if (avail > 0) 266255bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 266348d2549cSJeffrey Hsu sent = tp->snd_max - oldsndmax; 26640c39d38dSGleb Smirnoff if (sent > maxseg) { 266589c02376SJeffrey Hsu KASSERT((tp->t_dupacks == 2 && 266689c02376SJeffrey Hsu tp->snd_limited == 0) || 26670c39d38dSGleb Smirnoff (sent == maxseg + 1 && 266889c02376SJeffrey Hsu tp->t_flags & TF_SENTFIN), 2669302ce8d6SAndre Oppermann ("%s: sent too much", 2670302ce8d6SAndre Oppermann __func__)); 267148d2549cSJeffrey Hsu tp->snd_limited = 2; 267248d2549cSJeffrey Hsu } else if (sent > 0) 267348d2549cSJeffrey Hsu ++tp->snd_limited; 2674582a954bSJeffrey Hsu tp->snd_cwnd = oldcwnd; 2675582a954bSJeffrey Hsu goto drop; 2676df8bae1dSRodney W. Grimes } 2677021eaf79SHiren Panchasara } 2678df8bae1dSRodney W. Grimes break; 2679021eaf79SHiren Panchasara } else { 2680021eaf79SHiren Panchasara /* 2681021eaf79SHiren Panchasara * This ack is advancing the left edge, reset the 2682021eaf79SHiren Panchasara * counter. 2683021eaf79SHiren Panchasara */ 2684021eaf79SHiren Panchasara tp->t_dupacks = 0; 2685021eaf79SHiren Panchasara /* 2686021eaf79SHiren Panchasara * If this ack also has new SACK info, increment the 2687021eaf79SHiren Panchasara * counter as per rfc6675. 2688021eaf79SHiren Panchasara */ 2689021eaf79SHiren Panchasara if ((tp->t_flags & TF_SACK_PERMIT) && sack_changed) 2690021eaf79SHiren Panchasara tp->t_dupacks++; 2691df8bae1dSRodney W. Grimes } 2692cb942153SJeffrey Hsu 2693302ce8d6SAndre Oppermann KASSERT(SEQ_GT(th->th_ack, tp->snd_una), 2694302ce8d6SAndre Oppermann ("%s: th_ack <= snd_una", __func__)); 2695cb942153SJeffrey Hsu 2696df8bae1dSRodney W. Grimes /* 2697df8bae1dSRodney W. Grimes * If the congestion window was inflated to account 2698df8bae1dSRodney W. Grimes * for the other side's cached packets, retract it. 2699df8bae1dSRodney W. Grimes */ 2700dbc42409SLawrence Stewart if (IN_FASTRECOVERY(tp->t_flags)) { 2701cb942153SJeffrey Hsu if (SEQ_LT(th->th_ack, tp->snd_recover)) { 27023529149eSAndre Oppermann if (tp->t_flags & TF_SACK_PERMIT) 27036d90faf3SPaul Saab tcp_sack_partialack(tp, th); 27046d90faf3SPaul Saab else 2705c068736aSJeffrey Hsu tcp_newreno_partial_ack(tp, th); 2706dbc42409SLawrence Stewart } else 2707dbc42409SLawrence Stewart cc_post_recovery(tp, th); 270846f58482SJonathan Lemon } 2709a0292f23SGarrett Wollman /* 2710a0292f23SGarrett Wollman * If we reach this point, ACK is not a duplicate, 2711a0292f23SGarrett Wollman * i.e., it ACKs something we sent. 2712a0292f23SGarrett Wollman */ 2713a0292f23SGarrett Wollman if (tp->t_flags & TF_NEEDSYN) { 2714a0292f23SGarrett Wollman /* 2715a0292f23SGarrett Wollman * T/TCP: Connection was half-synchronized, and our 2716a0292f23SGarrett Wollman * SYN has been ACK'd (so connection is now fully 271707e43e10SAndras Olah * synchronized). Go to non-starred state, 271807e43e10SAndras Olah * increment snd_una for ACK of SYN, and check if 271907e43e10SAndras Olah * we can do window scaling. 2720a0292f23SGarrett Wollman */ 2721a0292f23SGarrett Wollman tp->t_flags &= ~TF_NEEDSYN; 2722a0292f23SGarrett Wollman tp->snd_una++; 272307e43e10SAndras Olah /* Do window scaling? */ 272407e43e10SAndras Olah if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) == 272507e43e10SAndras Olah (TF_RCVD_SCALE|TF_REQ_SCALE)) { 272607e43e10SAndras Olah tp->rcv_scale = tp->request_r_scale; 2727464fcfbcSAndre Oppermann /* Send window already scaled. */ 272807e43e10SAndras Olah } 2729a0292f23SGarrett Wollman } 2730a0292f23SGarrett Wollman 2731a0292f23SGarrett Wollman process_ACK: 27328501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 27337cfc6904SRobert Watson 2734dbc42409SLawrence Stewart acked = BYTES_THIS_ACK(tp, th); 2735b8c2cd15SJonathan T. Looney KASSERT(acked >= 0, ("%s: acked unexepectedly negative " 2736b8c2cd15SJonathan T. Looney "(tp->snd_una=%u, th->th_ack=%u, tp=%p, m=%p)", __func__, 2737b8c2cd15SJonathan T. Looney tp->snd_una, th->th_ack, tp, m)); 27384b7b743cSLawrence Stewart TCPSTAT_ADD(tcps_rcvackpack, nsegs); 273978b50714SRobert Watson TCPSTAT_ADD(tcps_rcvackbyte, acked); 2740df8bae1dSRodney W. Grimes 2741df8bae1dSRodney W. Grimes /* 27429b8b58e0SJonathan Lemon * If we just performed our first retransmit, and the ACK 27439b8b58e0SJonathan Lemon * arrives within our recovery window, then it was a mistake 27449b8b58e0SJonathan Lemon * to do the retransmit in the first place. Recover our 27459b8b58e0SJonathan Lemon * original cwnd and ssthresh, and proceed to transmit where 27469b8b58e0SJonathan Lemon * we left off. 27479b8b58e0SJonathan Lemon */ 274810d20c84SMatt Macy if (tp->t_rxtshift == 1 && 274910d20c84SMatt Macy tp->t_flags & TF_PREVVALID && 275010d20c84SMatt Macy tp->t_badrxtwin && 275110d20c84SMatt Macy SEQ_LT(to.to_tsecr, tp->t_badrxtwin)) 2752dbc42409SLawrence Stewart cc_cong_signal(tp, th, CC_RTO_ERR); 27539b8b58e0SJonathan Lemon 27549b8b58e0SJonathan Lemon /* 2755df8bae1dSRodney W. Grimes * If we have a timestamp reply, update smoothed 2756df8bae1dSRodney W. Grimes * round trip time. If no timestamp is present but 2757df8bae1dSRodney W. Grimes * transmit timer is running and timed sequence 2758df8bae1dSRodney W. Grimes * number was acked, update smoothed round trip time. 2759df8bae1dSRodney W. Grimes * Since we now have an rtt measurement, cancel the 2760df8bae1dSRodney W. Grimes * timer backoff (cf., Phil Karn's retransmit alg.). 2761df8bae1dSRodney W. Grimes * Recompute the initial retransmit timer. 2762fa55172bSMatthew Dillon * 2763fa55172bSMatthew Dillon * Some boxes send broken timestamp replies 2764fa55172bSMatthew Dillon * during the SYN+ACK phase, ignore 2765fa55172bSMatthew Dillon * timestamps of 0 or we could calculate a 2766fa55172bSMatthew Dillon * huge RTT and blow up the retransmit timer. 2767df8bae1dSRodney W. Grimes */ 2768d8951c8aSBjoern A. Zeeb if ((to.to_flags & TOF_TS) != 0 && to.to_tsecr) { 27693ac12506SJonathan T. Looney uint32_t t; 2770d8951c8aSBjoern A. Zeeb 2771d8951c8aSBjoern A. Zeeb t = tcp_ts_getticks() - to.to_tsecr; 2772d8951c8aSBjoern A. Zeeb if (!tp->t_rttlow || tp->t_rttlow > t) 2773d8951c8aSBjoern A. Zeeb tp->t_rttlow = t; 2774d8951c8aSBjoern A. Zeeb tcp_xmit_timer(tp, TCP_TS_TO_TICKS(t) + 1); 2775fa55172bSMatthew Dillon } else if (tp->t_rtttime && SEQ_GT(th->th_ack, tp->t_rtseq)) { 2776eaf80179SAndre Oppermann if (!tp->t_rttlow || tp->t_rttlow > ticks - tp->t_rtttime) 2777eaf80179SAndre Oppermann tp->t_rttlow = ticks - tp->t_rtttime; 27789b8b58e0SJonathan Lemon tcp_xmit_timer(tp, ticks - tp->t_rtttime); 2779fa55172bSMatthew Dillon } 2780df8bae1dSRodney W. Grimes 2781df8bae1dSRodney W. Grimes /* 2782df8bae1dSRodney W. Grimes * If all outstanding data is acked, stop retransmit 2783df8bae1dSRodney W. Grimes * timer and remember to restart (more output or persist). 2784df8bae1dSRodney W. Grimes * If there is more data to be acked, restart retransmit 2785df8bae1dSRodney W. Grimes * timer, using current (possibly backed-off) value. 2786df8bae1dSRodney W. Grimes */ 2787fb59c426SYoshinobu Inoue if (th->th_ack == tp->snd_max) { 2788b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_REXMT, 0); 2789df8bae1dSRodney W. Grimes needoutput = 1; 2790b8152ba7SAndre Oppermann } else if (!tcp_timer_active(tp, TT_PERSIST)) 2791b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur); 2792a0292f23SGarrett Wollman 2793a0292f23SGarrett Wollman /* 2794a0292f23SGarrett Wollman * If no data (only SYN) was ACK'd, 2795a0292f23SGarrett Wollman * skip rest of ACK processing. 2796a0292f23SGarrett Wollman */ 2797a0292f23SGarrett Wollman if (acked == 0) 2798a0292f23SGarrett Wollman goto step6; 2799a0292f23SGarrett Wollman 2800df8bae1dSRodney W. Grimes /* 2801dbc42409SLawrence Stewart * Let the congestion control algorithm update congestion 2802dbc42409SLawrence Stewart * control related information. This typically means increasing 2803dbc42409SLawrence Stewart * the congestion window. 2804df8bae1dSRodney W. Grimes */ 28054b7b743cSLawrence Stewart cc_ack_received(tp, th, nsegs, CC_ACK); 2806dbc42409SLawrence Stewart 28075905999bSRobert Watson SOCKBUF_LOCK(&so->so_snd); 2808cfa6009eSGleb Smirnoff if (acked > sbavail(&so->so_snd)) { 2809b8c2cd15SJonathan T. Looney if (tp->snd_wnd >= sbavail(&so->so_snd)) 2810cfa6009eSGleb Smirnoff tp->snd_wnd -= sbavail(&so->so_snd); 2811b8c2cd15SJonathan T. Looney else 2812b8c2cd15SJonathan T. Looney tp->snd_wnd = 0; 2813c11a15bfSGleb Smirnoff mfree = sbcut_locked(&so->so_snd, 2814cfa6009eSGleb Smirnoff (int)sbavail(&so->so_snd)); 2815df8bae1dSRodney W. Grimes ourfinisacked = 1; 2816df8bae1dSRodney W. Grimes } else { 2817c11a15bfSGleb Smirnoff mfree = sbcut_locked(&so->so_snd, acked); 28183ac12506SJonathan T. Looney if (tp->snd_wnd >= (uint32_t) acked) 281960ee3bb2SAndre Oppermann tp->snd_wnd -= acked; 2820b8c2cd15SJonathan T. Looney else 2821b8c2cd15SJonathan T. Looney tp->snd_wnd = 0; 2822df8bae1dSRodney W. Grimes ourfinisacked = 0; 2823df8bae1dSRodney W. Grimes } 2824564aab1fSAndre Oppermann /* NB: sowwakeup_locked() does an implicit unlock. */ 28251e4d7da7SRobert Watson sowwakeup_locked(so); 2826c11a15bfSGleb Smirnoff m_freem(mfree); 2827e8949f74SAndre Oppermann /* Detect una wraparound. */ 2828dbc42409SLawrence Stewart if (!IN_RECOVERY(tp->t_flags) && 28299d11646dSJeffrey Hsu SEQ_GT(tp->snd_una, tp->snd_recover) && 28309d11646dSJeffrey Hsu SEQ_LEQ(th->th_ack, tp->snd_recover)) 28319d11646dSJeffrey Hsu tp->snd_recover = th->th_ack - 1; 2832dbc42409SLawrence Stewart /* XXXLAS: Can this be moved up into cc_post_recovery? */ 2833dbc42409SLawrence Stewart if (IN_RECOVERY(tp->t_flags) && 283424cb0f22SLawrence Stewart SEQ_GEQ(th->th_ack, tp->snd_recover)) { 2835dbc42409SLawrence Stewart EXIT_RECOVERY(tp->t_flags); 283624cb0f22SLawrence Stewart } 2837fb59c426SYoshinobu Inoue tp->snd_una = th->th_ack; 28383529149eSAndre Oppermann if (tp->t_flags & TF_SACK_PERMIT) { 28396d90faf3SPaul Saab if (SEQ_GT(tp->snd_una, tp->snd_recover)) 28406d90faf3SPaul Saab tp->snd_recover = tp->snd_una; 28416d90faf3SPaul Saab } 2842df8bae1dSRodney W. Grimes if (SEQ_LT(tp->snd_nxt, tp->snd_una)) 2843df8bae1dSRodney W. Grimes tp->snd_nxt = tp->snd_una; 2844df8bae1dSRodney W. Grimes 2845df8bae1dSRodney W. Grimes switch (tp->t_state) { 2846df8bae1dSRodney W. Grimes 2847df8bae1dSRodney W. Grimes /* 2848df8bae1dSRodney W. Grimes * In FIN_WAIT_1 STATE in addition to the processing 2849df8bae1dSRodney W. Grimes * for the ESTABLISHED state if our FIN is now acknowledged 2850df8bae1dSRodney W. Grimes * then enter FIN_WAIT_2. 2851df8bae1dSRodney W. Grimes */ 2852df8bae1dSRodney W. Grimes case TCPS_FIN_WAIT_1: 2853df8bae1dSRodney W. Grimes if (ourfinisacked) { 2854df8bae1dSRodney W. Grimes /* 2855df8bae1dSRodney W. Grimes * If we can't receive any more 2856df8bae1dSRodney W. Grimes * data, then closing user can proceed. 2857df8bae1dSRodney W. Grimes * Starting the timer is contrary to the 2858df8bae1dSRodney W. Grimes * specification, but if we don't get a FIN 2859df8bae1dSRodney W. Grimes * we'll hang forever. 2860e8949f74SAndre Oppermann * 2861e8949f74SAndre Oppermann * XXXjl: 2862340c35deSJonathan Lemon * we should release the tp also, and use a 2863340c35deSJonathan Lemon * compressed state. 2864340c35deSJonathan Lemon */ 2865c0b99ffaSRobert Watson if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 286603e49181SSeigo Tanimura soisdisconnected(so); 28679077f387SGleb Smirnoff tcp_timer_activate(tp, TT_2MSL, 28689077f387SGleb Smirnoff (tcp_fast_finwait2_recycle ? 28699077f387SGleb Smirnoff tcp_finwait2_timeout : 28709077f387SGleb Smirnoff TP_MAXIDLE(tp))); 28714cc20ab1SSeigo Tanimura } 287257f60867SMark Johnston tcp_state_change(tp, TCPS_FIN_WAIT_2); 2873df8bae1dSRodney W. Grimes } 2874df8bae1dSRodney W. Grimes break; 2875df8bae1dSRodney W. Grimes 2876df8bae1dSRodney W. Grimes /* 2877df8bae1dSRodney W. Grimes * In CLOSING STATE in addition to the processing for 2878df8bae1dSRodney W. Grimes * the ESTABLISHED state if the ACK acknowledges our FIN 2879df8bae1dSRodney W. Grimes * then enter the TIME-WAIT state, otherwise ignore 2880df8bae1dSRodney W. Grimes * the segment. 2881df8bae1dSRodney W. Grimes */ 2882df8bae1dSRodney W. Grimes case TCPS_CLOSING: 2883df8bae1dSRodney W. Grimes if (ourfinisacked) { 2884ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 288511a20fb8SJeffrey Hsu tcp_twstart(tp); 2886340c35deSJonathan Lemon m_freem(m); 2887679d9708SAndre Oppermann return; 2888df8bae1dSRodney W. Grimes } 2889df8bae1dSRodney W. Grimes break; 2890df8bae1dSRodney W. Grimes 2891df8bae1dSRodney W. Grimes /* 2892df8bae1dSRodney W. Grimes * In LAST_ACK, we may still be waiting for data to drain 2893df8bae1dSRodney W. Grimes * and/or to be acked, as well as for the ack of our FIN. 2894df8bae1dSRodney W. Grimes * If our FIN is now acknowledged, delete the TCB, 2895df8bae1dSRodney W. Grimes * enter the closed state and return. 2896df8bae1dSRodney W. Grimes */ 2897df8bae1dSRodney W. Grimes case TCPS_LAST_ACK: 2898df8bae1dSRodney W. Grimes if (ourfinisacked) { 2899ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 2900df8bae1dSRodney W. Grimes tp = tcp_close(tp); 2901df8bae1dSRodney W. Grimes goto drop; 2902df8bae1dSRodney W. Grimes } 2903df8bae1dSRodney W. Grimes break; 2904df8bae1dSRodney W. Grimes } 2905df8bae1dSRodney W. Grimes } 2906df8bae1dSRodney W. Grimes 2907df8bae1dSRodney W. Grimes step6: 29088501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 29097cfc6904SRobert Watson 2910df8bae1dSRodney W. Grimes /* 291160ee3bb2SAndre Oppermann * Update window information. 291260ee3bb2SAndre Oppermann * Don't look at window if no ACK: TAC's send garbage on first SYN. 2913df8bae1dSRodney W. Grimes */ 291460ee3bb2SAndre Oppermann if ((thflags & TH_ACK) && 291560ee3bb2SAndre Oppermann (SEQ_LT(tp->snd_wl1, th->th_seq) || 291660ee3bb2SAndre Oppermann (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) || 291760ee3bb2SAndre Oppermann (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) { 291860ee3bb2SAndre Oppermann /* keep track of pure window updates */ 291960ee3bb2SAndre Oppermann if (tlen == 0 && 292060ee3bb2SAndre Oppermann tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd) 292178b50714SRobert Watson TCPSTAT_INC(tcps_rcvwinupd); 2922df8bae1dSRodney W. Grimes tp->snd_wnd = tiwin; 292360ee3bb2SAndre Oppermann tp->snd_wl1 = th->th_seq; 292460ee3bb2SAndre Oppermann tp->snd_wl2 = th->th_ack; 2925df8bae1dSRodney W. Grimes if (tp->snd_wnd > tp->max_sndwnd) 2926df8bae1dSRodney W. Grimes tp->max_sndwnd = tp->snd_wnd; 292760ee3bb2SAndre Oppermann needoutput = 1; 2928df8bae1dSRodney W. Grimes } 2929df8bae1dSRodney W. Grimes 2930df8bae1dSRodney W. Grimes /* 2931df8bae1dSRodney W. Grimes * Process segments with URG. 2932df8bae1dSRodney W. Grimes */ 2933fb59c426SYoshinobu Inoue if ((thflags & TH_URG) && th->th_urp && 2934df8bae1dSRodney W. Grimes TCPS_HAVERCVDFIN(tp->t_state) == 0) { 2935df8bae1dSRodney W. Grimes /* 2936df8bae1dSRodney W. Grimes * This is a kludge, but if we receive and accept 2937df8bae1dSRodney W. Grimes * random urgent pointers, we'll crash in 2938df8bae1dSRodney W. Grimes * soreceive. It's hard to imagine someone 2939df8bae1dSRodney W. Grimes * actually wanting to send this much urgent data. 2940df8bae1dSRodney W. Grimes */ 294118ad5842SRobert Watson SOCKBUF_LOCK(&so->so_rcv); 2942cfa6009eSGleb Smirnoff if (th->th_urp + sbavail(&so->so_rcv) > sb_max) { 2943fb59c426SYoshinobu Inoue th->th_urp = 0; /* XXX */ 2944fb59c426SYoshinobu Inoue thflags &= ~TH_URG; /* XXX */ 294518ad5842SRobert Watson SOCKBUF_UNLOCK(&so->so_rcv); /* XXX */ 2946df8bae1dSRodney W. Grimes goto dodata; /* XXX */ 2947df8bae1dSRodney W. Grimes } 2948df8bae1dSRodney W. Grimes /* 2949df8bae1dSRodney W. Grimes * If this segment advances the known urgent pointer, 2950df8bae1dSRodney W. Grimes * then mark the data stream. This should not happen 2951df8bae1dSRodney W. Grimes * in CLOSE_WAIT, CLOSING, LAST_ACK or TIME_WAIT STATES since 2952df8bae1dSRodney W. Grimes * a FIN has been received from the remote side. 2953df8bae1dSRodney W. Grimes * In these states we ignore the URG. 2954df8bae1dSRodney W. Grimes * 2955df8bae1dSRodney W. Grimes * According to RFC961 (Assigned Protocols), 2956df8bae1dSRodney W. Grimes * the urgent pointer points to the last octet 2957df8bae1dSRodney W. Grimes * of urgent data. We continue, however, 2958df8bae1dSRodney W. Grimes * to consider it to indicate the first octet 2959df8bae1dSRodney W. Grimes * of data past the urgent section as the original 2960df8bae1dSRodney W. Grimes * spec states (in one of two places). 2961df8bae1dSRodney W. Grimes */ 2962fb59c426SYoshinobu Inoue if (SEQ_GT(th->th_seq+th->th_urp, tp->rcv_up)) { 2963fb59c426SYoshinobu Inoue tp->rcv_up = th->th_seq + th->th_urp; 2964cfa6009eSGleb Smirnoff so->so_oobmark = sbavail(&so->so_rcv) + 2965df8bae1dSRodney W. Grimes (tp->rcv_up - tp->rcv_nxt) - 1; 2966927c5ceaSRobert Watson if (so->so_oobmark == 0) 2967c0b99ffaSRobert Watson so->so_rcv.sb_state |= SBS_RCVATMARK; 2968df8bae1dSRodney W. Grimes sohasoutofband(so); 2969df8bae1dSRodney W. Grimes tp->t_oobflags &= ~(TCPOOB_HAVEDATA | TCPOOB_HADDATA); 2970df8bae1dSRodney W. Grimes } 297118ad5842SRobert Watson SOCKBUF_UNLOCK(&so->so_rcv); 2972df8bae1dSRodney W. Grimes /* 2973df8bae1dSRodney W. Grimes * Remove out of band data so doesn't get presented to user. 2974df8bae1dSRodney W. Grimes * This can happen independent of advancing the URG pointer, 2975df8bae1dSRodney W. Grimes * but if two URG's are pending at once, some out-of-band 2976df8bae1dSRodney W. Grimes * data may creep in... ick. 2977df8bae1dSRodney W. Grimes */ 29783ac12506SJonathan T. Looney if (th->th_urp <= (uint32_t)tlen && 297930613f56SJeffrey Hsu !(so->so_options & SO_OOBINLINE)) { 298030613f56SJeffrey Hsu /* hdr drop is delayed */ 298130613f56SJeffrey Hsu tcp_pulloutofband(so, th, m, drop_hdrlen); 298230613f56SJeffrey Hsu } 2983c068736aSJeffrey Hsu } else { 2984df8bae1dSRodney W. Grimes /* 2985df8bae1dSRodney W. Grimes * If no out of band data is expected, 2986df8bae1dSRodney W. Grimes * pull receive urgent pointer along 2987df8bae1dSRodney W. Grimes * with the receive window. 2988df8bae1dSRodney W. Grimes */ 2989df8bae1dSRodney W. Grimes if (SEQ_GT(tp->rcv_nxt, tp->rcv_up)) 2990df8bae1dSRodney W. Grimes tp->rcv_up = tp->rcv_nxt; 2991c068736aSJeffrey Hsu } 2992df8bae1dSRodney W. Grimes dodata: /* XXX */ 29938501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 29947cfc6904SRobert Watson 2995df8bae1dSRodney W. Grimes /* 2996df8bae1dSRodney W. Grimes * Process the segment text, merging it into the TCP sequencing queue, 2997df8bae1dSRodney W. Grimes * and arranging for acknowledgment of receipt if necessary. 2998df8bae1dSRodney W. Grimes * This process logically involves adjusting tp->rcv_wnd as data 2999df8bae1dSRodney W. Grimes * is presented to the user (this happens in tcp_usrreq.c, 3000df8bae1dSRodney W. Grimes * case PRU_RCVD). If a FIN has already been received on this 3001df8bae1dSRodney W. Grimes * connection then we just ignore the text. 3002df8bae1dSRodney W. Grimes */ 3003281a0fd4SPatrick Kelsey tfo_syn = ((tp->t_state == TCPS_SYN_RECEIVED) && 300468bd7ed1SJonathan T. Looney IS_FASTOPEN(tp->t_flags)); 3005281a0fd4SPatrick Kelsey if ((tlen || (thflags & TH_FIN) || tfo_syn) && 3006df8bae1dSRodney W. Grimes TCPS_HAVERCVDFIN(tp->t_state) == 0) { 300769e03620SPaul Saab tcp_seq save_start = th->th_seq; 3008fb59c426SYoshinobu Inoue m_adj(m, drop_hdrlen); /* delayed header drop */ 3009e4b64281SJesper Skriver /* 3010c068736aSJeffrey Hsu * Insert segment which includes th into TCP reassembly queue 3011c068736aSJeffrey Hsu * with control block tp. Set thflags to whether reassembly now 3012c068736aSJeffrey Hsu * includes a segment with FIN. This handles the common case 3013c068736aSJeffrey Hsu * inline (segment is the next to be received on an established 3014c068736aSJeffrey Hsu * connection, and the queue is empty), avoiding linkage into 3015c068736aSJeffrey Hsu * and removal from the queue and repetition of various 3016c068736aSJeffrey Hsu * conversions. 3017c068736aSJeffrey Hsu * Set DELACK for segments received in order, but ack 3018c068736aSJeffrey Hsu * immediately when segments are out of order (so 3019c068736aSJeffrey Hsu * fast retransmit can work). 3020e4b64281SJesper Skriver */ 30214741bfcbSPatrick Kelsey if (th->th_seq == tp->rcv_nxt && 3022c28440dbSRandall Stewart SEGQ_EMPTY(tp) && 3023281a0fd4SPatrick Kelsey (TCPS_HAVEESTABLISHED(tp->t_state) || 3024281a0fd4SPatrick Kelsey tfo_syn)) { 3025281a0fd4SPatrick Kelsey if (DELAY_ACK(tp, tlen) || tfo_syn) 30263bfd6421SJonathan Lemon tp->t_flags |= TF_DELACK; 3027e4b64281SJesper Skriver else 3028e4b64281SJesper Skriver tp->t_flags |= TF_ACKNOW; 3029e4b64281SJesper Skriver tp->rcv_nxt += tlen; 3030e4b64281SJesper Skriver thflags = th->th_flags & TH_FIN; 303178b50714SRobert Watson TCPSTAT_INC(tcps_rcvpack); 303278b50714SRobert Watson TCPSTAT_ADD(tcps_rcvbyte, tlen); 30331e4d7da7SRobert Watson SOCKBUF_LOCK(&so->so_rcv); 3034c0b99ffaSRobert Watson if (so->so_rcv.sb_state & SBS_CANTRCVMORE) 3035c1c36a2cSMike Silbersack m_freem(m); 3036c1c36a2cSMike Silbersack else 3037651e4e6aSGleb Smirnoff sbappendstream_locked(&so->so_rcv, m, 0); 3038e8949f74SAndre Oppermann /* NB: sorwakeup_locked() does an implicit unlock. */ 30391e4d7da7SRobert Watson sorwakeup_locked(so); 3040e4b64281SJesper Skriver } else { 3041e8949f74SAndre Oppermann /* 3042e8949f74SAndre Oppermann * XXX: Due to the header drop above "th" is 3043e8949f74SAndre Oppermann * theoretically invalid by now. Fortunately 3044e8949f74SAndre Oppermann * m_adj() doesn't actually frees any mbufs 3045e8949f74SAndre Oppermann * when trimming from the head. 3046e8949f74SAndre Oppermann */ 3047c28440dbSRandall Stewart thflags = tcp_reass(tp, th, &save_start, &tlen, m); 3048e4b64281SJesper Skriver tp->t_flags |= TF_ACKNOW; 3049e4b64281SJesper Skriver } 30503529149eSAndre Oppermann if (tlen > 0 && (tp->t_flags & TF_SACK_PERMIT)) 3051f194524fSAndre Oppermann tcp_update_sack_list(tp, save_start, save_start + tlen); 3052302ce8d6SAndre Oppermann #if 0 3053df8bae1dSRodney W. Grimes /* 3054df8bae1dSRodney W. Grimes * Note the amount of data that peer has sent into 3055df8bae1dSRodney W. Grimes * our window, in order to estimate the sender's 3056df8bae1dSRodney W. Grimes * buffer size. 3057302ce8d6SAndre Oppermann * XXX: Unused. 3058df8bae1dSRodney W. Grimes */ 3059f701e30dSJohn Baldwin if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt)) 3060df8bae1dSRodney W. Grimes len = so->so_rcv.sb_hiwat - (tp->rcv_adv - tp->rcv_nxt); 3061f701e30dSJohn Baldwin else 3062f701e30dSJohn Baldwin len = so->so_rcv.sb_hiwat; 3063302ce8d6SAndre Oppermann #endif 3064df8bae1dSRodney W. Grimes } else { 3065df8bae1dSRodney W. Grimes m_freem(m); 3066fb59c426SYoshinobu Inoue thflags &= ~TH_FIN; 3067df8bae1dSRodney W. Grimes } 3068df8bae1dSRodney W. Grimes 3069df8bae1dSRodney W. Grimes /* 3070df8bae1dSRodney W. Grimes * If FIN is received ACK the FIN and let the user know 3071df8bae1dSRodney W. Grimes * that the connection is closing. 3072df8bae1dSRodney W. Grimes */ 3073fb59c426SYoshinobu Inoue if (thflags & TH_FIN) { 3074df8bae1dSRodney W. Grimes if (TCPS_HAVERCVDFIN(tp->t_state) == 0) { 3075df8bae1dSRodney W. Grimes socantrcvmore(so); 3076a0292f23SGarrett Wollman /* 3077a0292f23SGarrett Wollman * If connection is half-synchronized 3078d3eede9dSAndras Olah * (ie NEEDSYN flag on) then delay ACK, 3079a0292f23SGarrett Wollman * so it may be piggybacked when SYN is sent. 3080a0292f23SGarrett Wollman * Otherwise, since we received a FIN then no 3081a0292f23SGarrett Wollman * more input can be expected, send ACK now. 3082a0292f23SGarrett Wollman */ 30833bfd6421SJonathan Lemon if (tp->t_flags & TF_NEEDSYN) 30843bfd6421SJonathan Lemon tp->t_flags |= TF_DELACK; 3085a0292f23SGarrett Wollman else 3086df8bae1dSRodney W. Grimes tp->t_flags |= TF_ACKNOW; 3087df8bae1dSRodney W. Grimes tp->rcv_nxt++; 3088df8bae1dSRodney W. Grimes } 3089df8bae1dSRodney W. Grimes switch (tp->t_state) { 3090df8bae1dSRodney W. Grimes 3091df8bae1dSRodney W. Grimes /* 3092df8bae1dSRodney W. Grimes * In SYN_RECEIVED and ESTABLISHED STATES 3093df8bae1dSRodney W. Grimes * enter the CLOSE_WAIT state. 3094df8bae1dSRodney W. Grimes */ 3095df8bae1dSRodney W. Grimes case TCPS_SYN_RECEIVED: 30969b8b58e0SJonathan Lemon tp->t_starttime = ticks; 30979b8b58e0SJonathan Lemon /* FALLTHROUGH */ 3098df8bae1dSRodney W. Grimes case TCPS_ESTABLISHED: 309957f60867SMark Johnston tcp_state_change(tp, TCPS_CLOSE_WAIT); 3100df8bae1dSRodney W. Grimes break; 3101df8bae1dSRodney W. Grimes 3102df8bae1dSRodney W. Grimes /* 3103df8bae1dSRodney W. Grimes * If still in FIN_WAIT_1 STATE FIN has not been acked so 3104df8bae1dSRodney W. Grimes * enter the CLOSING state. 3105df8bae1dSRodney W. Grimes */ 3106df8bae1dSRodney W. Grimes case TCPS_FIN_WAIT_1: 310757f60867SMark Johnston tcp_state_change(tp, TCPS_CLOSING); 3108df8bae1dSRodney W. Grimes break; 3109df8bae1dSRodney W. Grimes 3110df8bae1dSRodney W. Grimes /* 3111df8bae1dSRodney W. Grimes * In FIN_WAIT_2 state enter the TIME_WAIT state, 3112df8bae1dSRodney W. Grimes * starting the time-wait timer, turning off the other 3113df8bae1dSRodney W. Grimes * standard timers. 3114df8bae1dSRodney W. Grimes */ 3115df8bae1dSRodney W. Grimes case TCPS_FIN_WAIT_2: 3116ff9b006dSJulien Charbon INP_INFO_RLOCK_ASSERT(&V_tcbinfo); 3117252ca428SRobert Watson 3118340c35deSJonathan Lemon tcp_twstart(tp); 3119679d9708SAndre Oppermann return; 3120df8bae1dSRodney W. Grimes } 3121df8bae1dSRodney W. Grimes } 3122610ee2f9SDavid Greenman #ifdef TCPDEBUG 31234cc20ab1SSeigo Tanimura if (so->so_options & SO_DEBUG) 3124fb59c426SYoshinobu Inoue tcp_trace(TA_INPUT, ostate, tp, (void *)tcp_saveipgen, 3125fb59c426SYoshinobu Inoue &tcp_savetcp, 0); 3126610ee2f9SDavid Greenman #endif 31272b9c9984SGeorge V. Neville-Neil TCP_PROBE3(debug__input, tp, th, m); 3128df8bae1dSRodney W. Grimes 3129df8bae1dSRodney W. Grimes /* 3130df8bae1dSRodney W. Grimes * Return any desired output. 3131df8bae1dSRodney W. Grimes */ 3132df8bae1dSRodney W. Grimes if (needoutput || (tp->t_flags & TF_ACKNOW)) 313355bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 31347792ea27SJeffrey Hsu 3135a14c749fSJonathan Lemon check_delack: 31368501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 3137252ca428SRobert Watson 3138a14c749fSJonathan Lemon if (tp->t_flags & TF_DELACK) { 31393bfd6421SJonathan Lemon tp->t_flags &= ~TF_DELACK; 3140b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_DELACK, tcp_delacktime); 31413bfd6421SJonathan Lemon } 31428501a69cSRobert Watson INP_WUNLOCK(tp->t_inpcb); 3143679d9708SAndre Oppermann return; 3144df8bae1dSRodney W. Grimes 3145df8bae1dSRodney W. Grimes dropafterack: 3146df8bae1dSRodney W. Grimes /* 3147df8bae1dSRodney W. Grimes * Generate an ACK dropping incoming segment if it occupies 3148df8bae1dSRodney W. Grimes * sequence space, where the ACK reflects our state. 314980ab7c0eSGarrett Wollman * 315080ab7c0eSGarrett Wollman * We can now skip the test for the RST flag since all 315180ab7c0eSGarrett Wollman * paths to this code happen after packets containing 315280ab7c0eSGarrett Wollman * RST have been dropped. 315380ab7c0eSGarrett Wollman * 315480ab7c0eSGarrett Wollman * In the SYN-RECEIVED state, don't send an ACK unless the 315580ab7c0eSGarrett Wollman * segment we received passes the SYN-RECEIVED ACK test. 315680ab7c0eSGarrett Wollman * If it fails send a RST. This breaks the loop in the 315780ab7c0eSGarrett Wollman * "LAND" DoS attack, and also prevents an ACK storm 315880ab7c0eSGarrett Wollman * between two listening ports that have been sent forged 315980ab7c0eSGarrett Wollman * SYN segments, each with the source address of the other. 3160df8bae1dSRodney W. Grimes */ 3161fb59c426SYoshinobu Inoue if (tp->t_state == TCPS_SYN_RECEIVED && (thflags & TH_ACK) && 3162fb59c426SYoshinobu Inoue (SEQ_GT(tp->snd_una, th->th_ack) || 3163a57815efSBosko Milekic SEQ_GT(th->th_ack, tp->snd_max)) ) { 3164a57815efSBosko Milekic rstreason = BANDLIM_RST_OPENPORT; 3165a57815efSBosko Milekic goto dropwithreset; 3166a57815efSBosko Milekic } 3167a0292f23SGarrett Wollman #ifdef TCPDEBUG 31684cc20ab1SSeigo Tanimura if (so->so_options & SO_DEBUG) 3169fb59c426SYoshinobu Inoue tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen, 3170fb59c426SYoshinobu Inoue &tcp_savetcp, 0); 3171a0292f23SGarrett Wollman #endif 31722b9c9984SGeorge V. Neville-Neil TCP_PROBE3(debug__input, tp, th, m); 3173df8bae1dSRodney W. Grimes tp->t_flags |= TF_ACKNOW; 317455bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 31758501a69cSRobert Watson INP_WUNLOCK(tp->t_inpcb); 3176d6915262SRobert Watson m_freem(m); 3177679d9708SAndre Oppermann return; 3178df8bae1dSRodney W. Grimes 3179df8bae1dSRodney W. Grimes dropwithreset: 3180a0ca0871SRobert Watson if (tp != NULL) { 3181302ce8d6SAndre Oppermann tcp_dropwithreset(m, th, tp, tlen, rstreason); 31828501a69cSRobert Watson INP_WUNLOCK(tp->t_inpcb); 3183dd8ac7f9SRobert Watson } else 3184a0ca0871SRobert Watson tcp_dropwithreset(m, th, NULL, tlen, rstreason); 3185679d9708SAndre Oppermann return; 3186df8bae1dSRodney W. Grimes 3187df8bae1dSRodney W. Grimes drop: 3188df8bae1dSRodney W. Grimes /* 3189df8bae1dSRodney W. Grimes * Drop space held by incoming segment and return. 3190df8bae1dSRodney W. Grimes */ 3191610ee2f9SDavid Greenman #ifdef TCPDEBUG 31921c53f806SRobert Watson if (tp == NULL || (tp->t_inpcb->inp_socket->so_options & SO_DEBUG)) 3193fb59c426SYoshinobu Inoue tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen, 3194fb59c426SYoshinobu Inoue &tcp_savetcp, 0); 3195a0292f23SGarrett Wollman #endif 31962b9c9984SGeorge V. Neville-Neil TCP_PROBE3(debug__input, tp, th, m); 31971c53f806SRobert Watson if (tp != NULL) 31988501a69cSRobert Watson INP_WUNLOCK(tp->t_inpcb); 3199d6915262SRobert Watson m_freem(m); 3200302ce8d6SAndre Oppermann } 3201302ce8d6SAndre Oppermann 3202302ce8d6SAndre Oppermann /* 32030ca3f933SAndre Oppermann * Issue RST and make ACK acceptable to originator of segment. 32040ca3f933SAndre Oppermann * The mbuf must still include the original packet header. 32050ca3f933SAndre Oppermann * tp may be NULL. 3206302ce8d6SAndre Oppermann */ 320755bceb1eSRandall Stewart void 3208302ce8d6SAndre Oppermann tcp_dropwithreset(struct mbuf *m, struct tcphdr *th, struct tcpcb *tp, 3209302ce8d6SAndre Oppermann int tlen, int rstreason) 3210302ce8d6SAndre Oppermann { 3211b287c6c7SBjoern A. Zeeb #ifdef INET 3212302ce8d6SAndre Oppermann struct ip *ip; 3213b287c6c7SBjoern A. Zeeb #endif 3214302ce8d6SAndre Oppermann #ifdef INET6 3215302ce8d6SAndre Oppermann struct ip6_hdr *ip6; 3216302ce8d6SAndre Oppermann #endif 32177a3244ccSRobert Watson 32187a3244ccSRobert Watson if (tp != NULL) { 32198501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 32207a3244ccSRobert Watson } 32217a3244ccSRobert Watson 32220ca3f933SAndre Oppermann /* Don't bother if destination was broadcast/multicast. */ 3223302ce8d6SAndre Oppermann if ((th->th_flags & TH_RST) || m->m_flags & (M_BCAST|M_MCAST)) 3224302ce8d6SAndre Oppermann goto drop; 3225302ce8d6SAndre Oppermann #ifdef INET6 3226302ce8d6SAndre Oppermann if (mtod(m, struct ip *)->ip_v == 6) { 3227302ce8d6SAndre Oppermann ip6 = mtod(m, struct ip6_hdr *); 3228302ce8d6SAndre Oppermann if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) || 3229302ce8d6SAndre Oppermann IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) 3230302ce8d6SAndre Oppermann goto drop; 3231302ce8d6SAndre Oppermann /* IPv6 anycast check is done at tcp6_input() */ 3232b287c6c7SBjoern A. Zeeb } 3233302ce8d6SAndre Oppermann #endif 3234b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6) 3235b287c6c7SBjoern A. Zeeb else 3236b287c6c7SBjoern A. Zeeb #endif 3237b287c6c7SBjoern A. Zeeb #ifdef INET 3238302ce8d6SAndre Oppermann { 3239302ce8d6SAndre Oppermann ip = mtod(m, struct ip *); 3240302ce8d6SAndre Oppermann if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) || 3241302ce8d6SAndre Oppermann IN_MULTICAST(ntohl(ip->ip_src.s_addr)) || 3242302ce8d6SAndre Oppermann ip->ip_src.s_addr == htonl(INADDR_BROADCAST) || 3243302ce8d6SAndre Oppermann in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) 3244302ce8d6SAndre Oppermann goto drop; 3245302ce8d6SAndre Oppermann } 3246b287c6c7SBjoern A. Zeeb #endif 3247302ce8d6SAndre Oppermann 3248302ce8d6SAndre Oppermann /* Perform bandwidth limiting. */ 3249302ce8d6SAndre Oppermann if (badport_bandlim(rstreason) < 0) 3250302ce8d6SAndre Oppermann goto drop; 3251302ce8d6SAndre Oppermann 3252302ce8d6SAndre Oppermann /* tcp_respond consumes the mbuf chain. */ 3253302ce8d6SAndre Oppermann if (th->th_flags & TH_ACK) { 3254302ce8d6SAndre Oppermann tcp_respond(tp, mtod(m, void *), th, m, (tcp_seq)0, 3255302ce8d6SAndre Oppermann th->th_ack, TH_RST); 3256302ce8d6SAndre Oppermann } else { 3257302ce8d6SAndre Oppermann if (th->th_flags & TH_SYN) 3258302ce8d6SAndre Oppermann tlen++; 32594ddd5aadSMichael Tuexen if (th->th_flags & TH_FIN) 32604ddd5aadSMichael Tuexen tlen++; 3261302ce8d6SAndre Oppermann tcp_respond(tp, mtod(m, void *), th, m, th->th_seq+tlen, 3262302ce8d6SAndre Oppermann (tcp_seq)0, TH_RST|TH_ACK); 3263302ce8d6SAndre Oppermann } 3264302ce8d6SAndre Oppermann return; 3265302ce8d6SAndre Oppermann drop: 3266302ce8d6SAndre Oppermann m_freem(m); 3267df8bae1dSRodney W. Grimes } 3268df8bae1dSRodney W. Grimes 3269be2ac88cSJonathan Lemon /* 3270be2ac88cSJonathan Lemon * Parse TCP options and place in tcpopt. 3271be2ac88cSJonathan Lemon */ 327255bceb1eSRandall Stewart void 3273ad3f9ab3SAndre Oppermann tcp_dooptions(struct tcpopt *to, u_char *cp, int cnt, int flags) 3274df8bae1dSRodney W. Grimes { 3275df8bae1dSRodney W. Grimes int opt, optlen; 3276df8bae1dSRodney W. Grimes 3277be2ac88cSJonathan Lemon to->to_flags = 0; 3278df8bae1dSRodney W. Grimes for (; cnt > 0; cnt -= optlen, cp += optlen) { 3279df8bae1dSRodney W. Grimes opt = cp[0]; 3280df8bae1dSRodney W. Grimes if (opt == TCPOPT_EOL) 3281df8bae1dSRodney W. Grimes break; 3282df8bae1dSRodney W. Grimes if (opt == TCPOPT_NOP) 3283df8bae1dSRodney W. Grimes optlen = 1; 3284df8bae1dSRodney W. Grimes else { 3285b474779fSJun-ichiro itojun Hagino if (cnt < 2) 3286b474779fSJun-ichiro itojun Hagino break; 3287df8bae1dSRodney W. Grimes optlen = cp[1]; 3288b474779fSJun-ichiro itojun Hagino if (optlen < 2 || optlen > cnt) 3289df8bae1dSRodney W. Grimes break; 3290df8bae1dSRodney W. Grimes } 3291df8bae1dSRodney W. Grimes switch (opt) { 3292df8bae1dSRodney W. Grimes case TCPOPT_MAXSEG: 3293df8bae1dSRodney W. Grimes if (optlen != TCPOLEN_MAXSEG) 3294df8bae1dSRodney W. Grimes continue; 3295f72167f4SAndre Oppermann if (!(flags & TO_SYN)) 3296df8bae1dSRodney W. Grimes continue; 3297be2ac88cSJonathan Lemon to->to_flags |= TOF_MSS; 3298be2ac88cSJonathan Lemon bcopy((char *)cp + 2, 3299be2ac88cSJonathan Lemon (char *)&to->to_mss, sizeof(to->to_mss)); 3300fd8e4ebcSMike Barcroft to->to_mss = ntohs(to->to_mss); 3301df8bae1dSRodney W. Grimes break; 3302df8bae1dSRodney W. Grimes case TCPOPT_WINDOW: 3303df8bae1dSRodney W. Grimes if (optlen != TCPOLEN_WINDOW) 3304df8bae1dSRodney W. Grimes continue; 3305f72167f4SAndre Oppermann if (!(flags & TO_SYN)) 3306df8bae1dSRodney W. Grimes continue; 3307be2ac88cSJonathan Lemon to->to_flags |= TOF_SCALE; 330802a1a643SAndre Oppermann to->to_wscale = min(cp[2], TCP_MAX_WINSHIFT); 3309df8bae1dSRodney W. Grimes break; 3310df8bae1dSRodney W. Grimes case TCPOPT_TIMESTAMP: 3311df8bae1dSRodney W. Grimes if (optlen != TCPOLEN_TIMESTAMP) 3312df8bae1dSRodney W. Grimes continue; 3313be2ac88cSJonathan Lemon to->to_flags |= TOF_TS; 3314a0292f23SGarrett Wollman bcopy((char *)cp + 2, 3315a0292f23SGarrett Wollman (char *)&to->to_tsval, sizeof(to->to_tsval)); 3316fd8e4ebcSMike Barcroft to->to_tsval = ntohl(to->to_tsval); 3317a0292f23SGarrett Wollman bcopy((char *)cp + 6, 3318a0292f23SGarrett Wollman (char *)&to->to_tsecr, sizeof(to->to_tsecr)); 3319fd8e4ebcSMike Barcroft to->to_tsecr = ntohl(to->to_tsecr); 3320df8bae1dSRodney W. Grimes break; 33211cfd4b53SBruce M Simpson case TCPOPT_SIGNATURE: 3322fcf59617SAndrey V. Elsukov /* 3323fcf59617SAndrey V. Elsukov * In order to reply to a host which has set the 3324fcf59617SAndrey V. Elsukov * TCP_SIGNATURE option in its initial SYN, we have 3325fcf59617SAndrey V. Elsukov * to record the fact that the option was observed 3326fcf59617SAndrey V. Elsukov * here for the syncache code to perform the correct 3327fcf59617SAndrey V. Elsukov * response. 3328fcf59617SAndrey V. Elsukov */ 33291cfd4b53SBruce M Simpson if (optlen != TCPOLEN_SIGNATURE) 33301cfd4b53SBruce M Simpson continue; 3331df47e437SAndre Oppermann to->to_flags |= TOF_SIGNATURE; 3332df47e437SAndre Oppermann to->to_signature = cp + 2; 33331cfd4b53SBruce M Simpson break; 33346d90faf3SPaul Saab case TCPOPT_SACK_PERMITTED: 3335f72167f4SAndre Oppermann if (optlen != TCPOLEN_SACK_PERMITTED) 33366d90faf3SPaul Saab continue; 3337f72167f4SAndre Oppermann if (!(flags & TO_SYN)) 3338f72167f4SAndre Oppermann continue; 3339603724d3SBjoern A. Zeeb if (!V_tcp_do_sack) 3340f72167f4SAndre Oppermann continue; 3341fc30a251SAndre Oppermann to->to_flags |= TOF_SACKPERM; 33426d90faf3SPaul Saab break; 33436d90faf3SPaul Saab case TCPOPT_SACK: 33445a53ca16SPaul Saab if (optlen <= 2 || (optlen - 2) % TCPOLEN_SACK != 0) 33456d90faf3SPaul Saab continue; 3346b728e902SAndre Oppermann if (flags & TO_SYN) 3347b728e902SAndre Oppermann continue; 3348fc30a251SAndre Oppermann to->to_flags |= TOF_SACK; 33495a53ca16SPaul Saab to->to_nsacks = (optlen - 2) / TCPOLEN_SACK; 33505a53ca16SPaul Saab to->to_sacks = cp + 2; 335178b50714SRobert Watson TCPSTAT_INC(tcps_sack_rcv_blocks); 33526d90faf3SPaul Saab break; 3353281a0fd4SPatrick Kelsey case TCPOPT_FAST_OPEN: 3354c560df6fSPatrick Kelsey /* 3355c560df6fSPatrick Kelsey * Cookie length validation is performed by the 3356c560df6fSPatrick Kelsey * server side cookie checking code or the client 3357c560df6fSPatrick Kelsey * side cookie cache update code. 3358c560df6fSPatrick Kelsey */ 3359281a0fd4SPatrick Kelsey if (!(flags & TO_SYN)) 3360281a0fd4SPatrick Kelsey continue; 3361c560df6fSPatrick Kelsey if (!V_tcp_fastopen_client_enable && 3362c560df6fSPatrick Kelsey !V_tcp_fastopen_server_enable) 3363281a0fd4SPatrick Kelsey continue; 3364281a0fd4SPatrick Kelsey to->to_flags |= TOF_FASTOPEN; 3365281a0fd4SPatrick Kelsey to->to_tfo_len = optlen - 2; 3366281a0fd4SPatrick Kelsey to->to_tfo_cookie = to->to_tfo_len ? cp + 2 : NULL; 3367281a0fd4SPatrick Kelsey break; 3368be2ac88cSJonathan Lemon default: 3369be2ac88cSJonathan Lemon continue; 3370df8bae1dSRodney W. Grimes } 3371df8bae1dSRodney W. Grimes } 3372df8bae1dSRodney W. Grimes } 3373df8bae1dSRodney W. Grimes 3374df8bae1dSRodney W. Grimes /* 3375df8bae1dSRodney W. Grimes * Pull out of band byte out of a segment so 3376df8bae1dSRodney W. Grimes * it doesn't appear in the user's data queue. 3377df8bae1dSRodney W. Grimes * It is still reflected in the segment length for 3378df8bae1dSRodney W. Grimes * sequencing purposes. 3379df8bae1dSRodney W. Grimes */ 338055bceb1eSRandall Stewart void 3381ad3f9ab3SAndre Oppermann tcp_pulloutofband(struct socket *so, struct tcphdr *th, struct mbuf *m, 3382ad3f9ab3SAndre Oppermann int off) 3383df8bae1dSRodney W. Grimes { 3384fb59c426SYoshinobu Inoue int cnt = off + th->th_urp - 1; 3385df8bae1dSRodney W. Grimes 3386df8bae1dSRodney W. Grimes while (cnt >= 0) { 3387df8bae1dSRodney W. Grimes if (m->m_len > cnt) { 3388df8bae1dSRodney W. Grimes char *cp = mtod(m, caddr_t) + cnt; 3389df8bae1dSRodney W. Grimes struct tcpcb *tp = sototcpcb(so); 3390df8bae1dSRodney W. Grimes 33918501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 33927a3244ccSRobert Watson 3393df8bae1dSRodney W. Grimes tp->t_iobc = *cp; 3394df8bae1dSRodney W. Grimes tp->t_oobflags |= TCPOOB_HAVEDATA; 3395df8bae1dSRodney W. Grimes bcopy(cp+1, cp, (unsigned)(m->m_len - cnt - 1)); 3396df8bae1dSRodney W. Grimes m->m_len--; 339769a34685SYoshinobu Inoue if (m->m_flags & M_PKTHDR) 339869a34685SYoshinobu Inoue m->m_pkthdr.len--; 3399df8bae1dSRodney W. Grimes return; 3400df8bae1dSRodney W. Grimes } 3401df8bae1dSRodney W. Grimes cnt -= m->m_len; 3402df8bae1dSRodney W. Grimes m = m->m_next; 34034dfdffe9SAndre Oppermann if (m == NULL) 3404df8bae1dSRodney W. Grimes break; 3405df8bae1dSRodney W. Grimes } 3406df8bae1dSRodney W. Grimes panic("tcp_pulloutofband"); 3407df8bae1dSRodney W. Grimes } 3408df8bae1dSRodney W. Grimes 3409df8bae1dSRodney W. Grimes /* 3410df8bae1dSRodney W. Grimes * Collect new round-trip time estimate 3411df8bae1dSRodney W. Grimes * and update averages and current timeout. 3412df8bae1dSRodney W. Grimes */ 341355bceb1eSRandall Stewart void 3414ad3f9ab3SAndre Oppermann tcp_xmit_timer(struct tcpcb *tp, int rtt) 3415df8bae1dSRodney W. Grimes { 3416ad3f9ab3SAndre Oppermann int delta; 3417233e8c18SGarrett Wollman 34188501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 34192be3bf22SRobert Watson 342078b50714SRobert Watson TCPSTAT_INC(tcps_rttupdated); 3421233e8c18SGarrett Wollman tp->t_rttupdated++; 34225ede40dcSRyan Stone if ((tp->t_srtt != 0) && (tp->t_rxtshift <= TCP_RTT_INVALIDATE)) { 3423233e8c18SGarrett Wollman /* 3424233e8c18SGarrett Wollman * srtt is stored as fixed point with 5 bits after the 3425233e8c18SGarrett Wollman * binary point (i.e., scaled by 8). The following magic 3426233e8c18SGarrett Wollman * is equivalent to the smoothing algorithm in rfc793 with 3427233e8c18SGarrett Wollman * an alpha of .875 (srtt = rtt/8 + srtt*7/8 in fixed 3428233e8c18SGarrett Wollman * point). Adjust rtt to origin 0. 3429233e8c18SGarrett Wollman */ 3430233e8c18SGarrett Wollman delta = ((rtt - 1) << TCP_DELTA_SHIFT) 3431233e8c18SGarrett Wollman - (tp->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT)); 3432233e8c18SGarrett Wollman 3433233e8c18SGarrett Wollman if ((tp->t_srtt += delta) <= 0) 3434233e8c18SGarrett Wollman tp->t_srtt = 1; 3435233e8c18SGarrett Wollman 3436233e8c18SGarrett Wollman /* 3437233e8c18SGarrett Wollman * We accumulate a smoothed rtt variance (actually, a 3438233e8c18SGarrett Wollman * smoothed mean difference), then set the retransmit 3439233e8c18SGarrett Wollman * timer to smoothed rtt + 4 times the smoothed variance. 3440233e8c18SGarrett Wollman * rttvar is stored as fixed point with 4 bits after the 3441233e8c18SGarrett Wollman * binary point (scaled by 16). The following is 3442233e8c18SGarrett Wollman * equivalent to rfc793 smoothing with an alpha of .75 3443233e8c18SGarrett Wollman * (rttvar = rttvar*3/4 + |delta| / 4). This replaces 3444233e8c18SGarrett Wollman * rfc793's wired-in beta. 3445233e8c18SGarrett Wollman */ 3446233e8c18SGarrett Wollman if (delta < 0) 3447233e8c18SGarrett Wollman delta = -delta; 3448233e8c18SGarrett Wollman delta -= tp->t_rttvar >> (TCP_RTTVAR_SHIFT - TCP_DELTA_SHIFT); 3449233e8c18SGarrett Wollman if ((tp->t_rttvar += delta) <= 0) 3450233e8c18SGarrett Wollman tp->t_rttvar = 1; 34511fcc99b5SMatthew Dillon if (tp->t_rttbest > tp->t_srtt + tp->t_rttvar) 34521fcc99b5SMatthew Dillon tp->t_rttbest = tp->t_srtt + tp->t_rttvar; 3453233e8c18SGarrett Wollman } else { 3454233e8c18SGarrett Wollman /* 3455233e8c18SGarrett Wollman * No rtt measurement yet - use the unsmoothed rtt. 3456233e8c18SGarrett Wollman * Set the variance to half the rtt (so our first 3457233e8c18SGarrett Wollman * retransmit happens at 3*rtt). 3458233e8c18SGarrett Wollman */ 3459233e8c18SGarrett Wollman tp->t_srtt = rtt << TCP_RTT_SHIFT; 3460233e8c18SGarrett Wollman tp->t_rttvar = rtt << (TCP_RTTVAR_SHIFT - 1); 34611fcc99b5SMatthew Dillon tp->t_rttbest = tp->t_srtt + tp->t_rttvar; 3462233e8c18SGarrett Wollman } 34639b8b58e0SJonathan Lemon tp->t_rtttime = 0; 3464df8bae1dSRodney W. Grimes tp->t_rxtshift = 0; 3465df8bae1dSRodney W. Grimes 3466df8bae1dSRodney W. Grimes /* 3467df8bae1dSRodney W. Grimes * the retransmit should happen at rtt + 4 * rttvar. 3468df8bae1dSRodney W. Grimes * Because of the way we do the smoothing, srtt and rttvar 3469df8bae1dSRodney W. Grimes * will each average +1/2 tick of bias. When we compute 3470df8bae1dSRodney W. Grimes * the retransmit timer, we want 1/2 tick of rounding and 3471df8bae1dSRodney W. Grimes * 1 extra tick because of +-1/2 tick uncertainty in the 3472df8bae1dSRodney W. Grimes * firing of the timer. The bias will give us exactly the 3473df8bae1dSRodney W. Grimes * 1.5 tick we need. But, because the bias is 3474df8bae1dSRodney W. Grimes * statistical, we have to test that we don't drop below 3475df8bae1dSRodney W. Grimes * the minimum feasible timer (which is 2 ticks). 3476df8bae1dSRodney W. Grimes */ 3477233e8c18SGarrett Wollman TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp), 34789e2874b0SGarrett Wollman max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX); 3479df8bae1dSRodney W. Grimes 3480df8bae1dSRodney W. Grimes /* 3481df8bae1dSRodney W. Grimes * We received an ack for a packet that wasn't retransmitted; 3482df8bae1dSRodney W. Grimes * it is probably safe to discard any error indications we've 3483df8bae1dSRodney W. Grimes * received recently. This isn't quite right, but close enough 3484df8bae1dSRodney W. Grimes * for now (a route might have failed after we sent a segment, 3485df8bae1dSRodney W. Grimes * and the return path might not be symmetrical). 3486df8bae1dSRodney W. Grimes */ 3487df8bae1dSRodney W. Grimes tp->t_softerror = 0; 3488df8bae1dSRodney W. Grimes } 3489df8bae1dSRodney W. Grimes 3490df8bae1dSRodney W. Grimes /* 3491df8bae1dSRodney W. Grimes * Determine a reasonable value for maxseg size. 3492df8bae1dSRodney W. Grimes * If the route is known, check route for mtu. 34934faaea55SAndre Oppermann * If none, use an mss that can be handled on the outgoing interface 34944faaea55SAndre Oppermann * without forcing IP to fragment. If no route is found, route has no mtu, 3495df8bae1dSRodney W. Grimes * or the destination isn't local, use a default, hopefully conservative 3496df8bae1dSRodney W. Grimes * size (usually 512 or the default IP max size, but no more than the mtu 3497df8bae1dSRodney W. Grimes * of the interface), as we can't discover anything about intervening 3498df8bae1dSRodney W. Grimes * gateways or networks. We also initialize the congestion/slow start 3499df8bae1dSRodney W. Grimes * window to be a single segment if the destination isn't local. 3500df8bae1dSRodney W. Grimes * While looking at the routing entry, we also initialize other path-dependent 3501df8bae1dSRodney W. Grimes * parameters from pre-set or cached values in the routing entry. 3502a0292f23SGarrett Wollman * 35030c39d38dSGleb Smirnoff * NOTE that resulting t_maxseg doesn't include space for TCP options or 35040c39d38dSGleb Smirnoff * IP options, e.g. IPSEC data, since length of this data may vary, and 35050c39d38dSGleb Smirnoff * thus it is calculated for every segment separately in tcp_output(). 3506a0292f23SGarrett Wollman * 350797d8d152SAndre Oppermann * NOTE that this routine is only called when we process an incoming 3508ef341ee1SGleb Smirnoff * segment, or an ICMP need fragmentation datagram. Outgoing SYN/ACK MSS 3509ef341ee1SGleb Smirnoff * settings are handled in tcp_mssopt(). 3510df8bae1dSRodney W. Grimes */ 3511a0292f23SGarrett Wollman void 3512ef341ee1SGleb Smirnoff tcp_mss_update(struct tcpcb *tp, int offer, int mtuoffer, 35133c914c54SAndre Oppermann struct hc_metrics_lite *metricptr, struct tcp_ifcap *cap) 3514df8bae1dSRodney W. Grimes { 3515b287c6c7SBjoern A. Zeeb int mss = 0; 35163ac12506SJonathan T. Looney uint32_t maxmtu = 0; 3517c068736aSJeffrey Hsu struct inpcb *inp = tp->t_inpcb; 351897d8d152SAndre Oppermann struct hc_metrics_lite metrics; 3519fb59c426SYoshinobu Inoue #ifdef INET6 3520c068736aSJeffrey Hsu int isipv6 = ((inp->inp_vflag & INP_IPV6) != 0) ? 1 : 0; 3521c068736aSJeffrey Hsu size_t min_protoh = isipv6 ? 3522c068736aSJeffrey Hsu sizeof (struct ip6_hdr) + sizeof (struct tcphdr) : 3523c068736aSJeffrey Hsu sizeof (struct tcpiphdr); 3524c068736aSJeffrey Hsu #else 3525c068736aSJeffrey Hsu const size_t min_protoh = sizeof(struct tcpiphdr); 3526fb59c426SYoshinobu Inoue #endif 3527df8bae1dSRodney W. Grimes 35288501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 35297a3244ccSRobert Watson 3530ef341ee1SGleb Smirnoff if (mtuoffer != -1) { 3531ef341ee1SGleb Smirnoff KASSERT(offer == -1, ("%s: conflict", __func__)); 3532ef341ee1SGleb Smirnoff offer = mtuoffer - min_protoh; 3533ef341ee1SGleb Smirnoff } 3534ef341ee1SGleb Smirnoff 3535e8949f74SAndre Oppermann /* Initialize. */ 353697d8d152SAndre Oppermann #ifdef INET6 353797d8d152SAndre Oppermann if (isipv6) { 35383c914c54SAndre Oppermann maxmtu = tcp_maxmtu6(&inp->inp_inc, cap); 35390c39d38dSGleb Smirnoff tp->t_maxseg = V_tcp_v6mssdflt; 3540b287c6c7SBjoern A. Zeeb } 354197d8d152SAndre Oppermann #endif 3542b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6) 3543b287c6c7SBjoern A. Zeeb else 3544b287c6c7SBjoern A. Zeeb #endif 3545b287c6c7SBjoern A. Zeeb #ifdef INET 354697d8d152SAndre Oppermann { 35473c914c54SAndre Oppermann maxmtu = tcp_maxmtu(&inp->inp_inc, cap); 35480c39d38dSGleb Smirnoff tp->t_maxseg = V_tcp_mssdflt; 3549df8bae1dSRodney W. Grimes } 3550b287c6c7SBjoern A. Zeeb #endif 3551df8bae1dSRodney W. Grimes 355297d8d152SAndre Oppermann /* 3553e8949f74SAndre Oppermann * No route to sender, stay with default mss and return. 355497d8d152SAndre Oppermann */ 35556f01cac6SBjoern A. Zeeb if (maxmtu == 0) { 35566f01cac6SBjoern A. Zeeb /* 35578e5c87f4SBjoern A. Zeeb * In case we return early we need to initialize metrics 35586f01cac6SBjoern A. Zeeb * to a defined state as tcp_hc_get() would do for us 35596f01cac6SBjoern A. Zeeb * if there was no cache hit. 35606f01cac6SBjoern A. Zeeb */ 35616f01cac6SBjoern A. Zeeb if (metricptr != NULL) 35626f01cac6SBjoern A. Zeeb bzero(metricptr, sizeof(struct hc_metrics_lite)); 356397d8d152SAndre Oppermann return; 35646f01cac6SBjoern A. Zeeb } 356597d8d152SAndre Oppermann 3566e8949f74SAndre Oppermann /* What have we got? */ 356797d8d152SAndre Oppermann switch (offer) { 356897d8d152SAndre Oppermann case 0: 356997d8d152SAndre Oppermann /* 357097d8d152SAndre Oppermann * Offer == 0 means that there was no MSS on the SYN 3571c3b02504SBjoern A. Zeeb * segment, in this case we use tcp_mssdflt as 35720c39d38dSGleb Smirnoff * already assigned to t_maxseg above. 357397d8d152SAndre Oppermann */ 35740c39d38dSGleb Smirnoff offer = tp->t_maxseg; 357597d8d152SAndre Oppermann break; 357697d8d152SAndre Oppermann 357797d8d152SAndre Oppermann case -1: 3578a0292f23SGarrett Wollman /* 3579c94c54e4SAndre Oppermann * Offer == -1 means that we didn't receive SYN yet. 3580a0292f23SGarrett Wollman */ 358197d8d152SAndre Oppermann /* FALLTHROUGH */ 358297d8d152SAndre Oppermann 358397d8d152SAndre Oppermann default: 3584a0292f23SGarrett Wollman /* 358553369ac9SAndre Oppermann * Prevent DoS attack with too small MSS. Round up 358653369ac9SAndre Oppermann * to at least minmss. 358753369ac9SAndre Oppermann */ 3588603724d3SBjoern A. Zeeb offer = max(offer, V_tcp_minmss); 358997d8d152SAndre Oppermann } 3590a0292f23SGarrett Wollman 3591df8bae1dSRodney W. Grimes /* 3592e8949f74SAndre Oppermann * rmx information is now retrieved from tcp_hostcache. 3593df8bae1dSRodney W. Grimes */ 359497d8d152SAndre Oppermann tcp_hc_get(&inp->inp_inc, &metrics); 35953cee92e0SBjoern A. Zeeb if (metricptr != NULL) 35963cee92e0SBjoern A. Zeeb bcopy(&metrics, metricptr, sizeof(struct hc_metrics_lite)); 359797d8d152SAndre Oppermann 3598df8bae1dSRodney W. Grimes /* 3599cc412412SHiren Panchasara * If there's a discovered mtu in tcp hostcache, use it. 3600cc412412SHiren Panchasara * Else, use the link mtu. 3601df8bae1dSRodney W. Grimes */ 360297d8d152SAndre Oppermann if (metrics.rmx_mtu) 36032d166c02SAndre Oppermann mss = min(metrics.rmx_mtu, maxmtu) - min_protoh; 3604c068736aSJeffrey Hsu else { 360531b3783cSHajimu UMEMOTO #ifdef INET6 3606fb59c426SYoshinobu Inoue if (isipv6) { 360797d8d152SAndre Oppermann mss = maxmtu - min_protoh; 3608603724d3SBjoern A. Zeeb if (!V_path_mtu_discovery && 360997d8d152SAndre Oppermann !in6_localaddr(&inp->in6p_faddr)) 3610603724d3SBjoern A. Zeeb mss = min(mss, V_tcp_v6mssdflt); 3611b287c6c7SBjoern A. Zeeb } 3612b3399803SHajimu UMEMOTO #endif 3613b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6) 3614b287c6c7SBjoern A. Zeeb else 3615b287c6c7SBjoern A. Zeeb #endif 3616b287c6c7SBjoern A. Zeeb #ifdef INET 361797d8d152SAndre Oppermann { 361897d8d152SAndre Oppermann mss = maxmtu - min_protoh; 3619603724d3SBjoern A. Zeeb if (!V_path_mtu_discovery && 362097d8d152SAndre Oppermann !in_localaddr(inp->inp_faddr)) 3621603724d3SBjoern A. Zeeb mss = min(mss, V_tcp_mssdflt); 3622a0292f23SGarrett Wollman } 3623b287c6c7SBjoern A. Zeeb #endif 36243cee92e0SBjoern A. Zeeb /* 36253cee92e0SBjoern A. Zeeb * XXX - The above conditional (mss = maxmtu - min_protoh) 36263cee92e0SBjoern A. Zeeb * probably violates the TCP spec. 36273cee92e0SBjoern A. Zeeb * The problem is that, since we don't know the 36283cee92e0SBjoern A. Zeeb * other end's MSS, we are supposed to use a conservative 36293cee92e0SBjoern A. Zeeb * default. But, if we do that, then MTU discovery will 36303cee92e0SBjoern A. Zeeb * never actually take place, because the conservative 36313cee92e0SBjoern A. Zeeb * default is much less than the MTUs typically seen 36323cee92e0SBjoern A. Zeeb * on the Internet today. For the moment, we'll sweep 36333cee92e0SBjoern A. Zeeb * this under the carpet. 36343cee92e0SBjoern A. Zeeb * 36353cee92e0SBjoern A. Zeeb * The conservative default might not actually be a problem 36363cee92e0SBjoern A. Zeeb * if the only case this occurs is when sending an initial 36373cee92e0SBjoern A. Zeeb * SYN with options and data to a host we've never talked 36383cee92e0SBjoern A. Zeeb * to before. Then, they will reply with an MSS value which 36393cee92e0SBjoern A. Zeeb * will get recorded and the new parameters should get 36403cee92e0SBjoern A. Zeeb * recomputed. For Further Study. 36413cee92e0SBjoern A. Zeeb */ 364297d8d152SAndre Oppermann } 3643a0292f23SGarrett Wollman mss = min(mss, offer); 364497d8d152SAndre Oppermann 3645a0292f23SGarrett Wollman /* 36460c39d38dSGleb Smirnoff * Sanity check: make sure that maxseg will be large 36473cee92e0SBjoern A. Zeeb * enough to allow some data on segments even if the 36483cee92e0SBjoern A. Zeeb * all the option space is used (40bytes). Otherwise 36493cee92e0SBjoern A. Zeeb * funny things may happen in tcp_output. 36500c39d38dSGleb Smirnoff * 36510c39d38dSGleb Smirnoff * XXXGL: shouldn't we reserve space for IP/IPv6 options? 36523cee92e0SBjoern A. Zeeb */ 36533cee92e0SBjoern A. Zeeb mss = max(mss, 64); 36543cee92e0SBjoern A. Zeeb 365597d8d152SAndre Oppermann tp->t_maxseg = mss; 36563cee92e0SBjoern A. Zeeb } 36573cee92e0SBjoern A. Zeeb 36583cee92e0SBjoern A. Zeeb void 36593cee92e0SBjoern A. Zeeb tcp_mss(struct tcpcb *tp, int offer) 36603cee92e0SBjoern A. Zeeb { 3661dbc42409SLawrence Stewart int mss; 36623ac12506SJonathan T. Looney uint32_t bufsize; 36633cee92e0SBjoern A. Zeeb struct inpcb *inp; 36643cee92e0SBjoern A. Zeeb struct socket *so; 36653cee92e0SBjoern A. Zeeb struct hc_metrics_lite metrics; 36663c914c54SAndre Oppermann struct tcp_ifcap cap; 3667dbc42409SLawrence Stewart 36683cee92e0SBjoern A. Zeeb KASSERT(tp != NULL, ("%s: tp == NULL", __func__)); 36693cee92e0SBjoern A. Zeeb 36703c914c54SAndre Oppermann bzero(&cap, sizeof(cap)); 36713c914c54SAndre Oppermann tcp_mss_update(tp, offer, -1, &metrics, &cap); 36723cee92e0SBjoern A. Zeeb 36733cee92e0SBjoern A. Zeeb mss = tp->t_maxseg; 36743cee92e0SBjoern A. Zeeb inp = tp->t_inpcb; 367597d8d152SAndre Oppermann 3676df8bae1dSRodney W. Grimes /* 367797d8d152SAndre Oppermann * If there's a pipesize, change the socket buffer to that size, 367897d8d152SAndre Oppermann * don't change if sb_hiwat is different than default (then it 367997d8d152SAndre Oppermann * has been changed on purpose with setsockopt). 368097d8d152SAndre Oppermann * Make the socket buffers an integral number of mss units; 368197d8d152SAndre Oppermann * if the mss is larger than the socket buffer, decrease the mss. 3682df8bae1dSRodney W. Grimes */ 3683c3b02504SBjoern A. Zeeb so = inp->inp_socket; 36843f11a2f3SRobert Watson SOCKBUF_LOCK(&so->so_snd); 3685e233e2acSAndre Oppermann if ((so->so_snd.sb_hiwat == V_tcp_sendspace) && metrics.rmx_sendpipe) 368697d8d152SAndre Oppermann bufsize = metrics.rmx_sendpipe; 368797d8d152SAndre Oppermann else 3688df8bae1dSRodney W. Grimes bufsize = so->so_snd.sb_hiwat; 3689df8bae1dSRodney W. Grimes if (bufsize < mss) 3690df8bae1dSRodney W. Grimes mss = bufsize; 3691df8bae1dSRodney W. Grimes else { 3692df8bae1dSRodney W. Grimes bufsize = roundup(bufsize, mss); 3693df8bae1dSRodney W. Grimes if (bufsize > sb_max) 3694df8bae1dSRodney W. Grimes bufsize = sb_max; 369588c39af3SRuslan Ermilov if (bufsize > so->so_snd.sb_hiwat) 36963f11a2f3SRobert Watson (void)sbreserve_locked(&so->so_snd, bufsize, so, NULL); 3697df8bae1dSRodney W. Grimes } 36983f11a2f3SRobert Watson SOCKBUF_UNLOCK(&so->so_snd); 3699784ce8faSHiren Panchasara /* 3700784ce8faSHiren Panchasara * Sanity check: make sure that maxseg will be large 3701784ce8faSHiren Panchasara * enough to allow some data on segments even if the 3702784ce8faSHiren Panchasara * all the option space is used (40bytes). Otherwise 3703784ce8faSHiren Panchasara * funny things may happen in tcp_output. 3704784ce8faSHiren Panchasara * 3705784ce8faSHiren Panchasara * XXXGL: shouldn't we reserve space for IP/IPv6 options? 3706784ce8faSHiren Panchasara */ 3707784ce8faSHiren Panchasara tp->t_maxseg = max(mss, 64); 3708df8bae1dSRodney W. Grimes 37093f11a2f3SRobert Watson SOCKBUF_LOCK(&so->so_rcv); 3710e233e2acSAndre Oppermann if ((so->so_rcv.sb_hiwat == V_tcp_recvspace) && metrics.rmx_recvpipe) 371197d8d152SAndre Oppermann bufsize = metrics.rmx_recvpipe; 371297d8d152SAndre Oppermann else 3713df8bae1dSRodney W. Grimes bufsize = so->so_rcv.sb_hiwat; 3714df8bae1dSRodney W. Grimes if (bufsize > mss) { 3715df8bae1dSRodney W. Grimes bufsize = roundup(bufsize, mss); 3716df8bae1dSRodney W. Grimes if (bufsize > sb_max) 3717df8bae1dSRodney W. Grimes bufsize = sb_max; 371888c39af3SRuslan Ermilov if (bufsize > so->so_rcv.sb_hiwat) 37193f11a2f3SRobert Watson (void)sbreserve_locked(&so->so_rcv, bufsize, so, NULL); 3720df8bae1dSRodney W. Grimes } 37213f11a2f3SRobert Watson SOCKBUF_UNLOCK(&so->so_rcv); 372291d6cfa6SBjoern A. Zeeb 372391d6cfa6SBjoern A. Zeeb /* Check the interface for TSO capabilities. */ 37243c914c54SAndre Oppermann if (cap.ifcap & CSUM_TSO) { 372591d6cfa6SBjoern A. Zeeb tp->t_flags |= TF_TSO; 37263c914c54SAndre Oppermann tp->t_tsomax = cap.tsomax; 37279fd573c3SHans Petter Selasky tp->t_tsomaxsegcount = cap.tsomaxsegcount; 37289fd573c3SHans Petter Selasky tp->t_tsomaxsegsize = cap.tsomaxsegsize; 37293c914c54SAndre Oppermann } 3730a0292f23SGarrett Wollman } 3731a0292f23SGarrett Wollman 3732a0292f23SGarrett Wollman /* 3733a0292f23SGarrett Wollman * Determine the MSS option to send on an outgoing SYN. 3734a0292f23SGarrett Wollman */ 3735a0292f23SGarrett Wollman int 3736ad3f9ab3SAndre Oppermann tcp_mssopt(struct in_conninfo *inc) 3737a0292f23SGarrett Wollman { 373897d8d152SAndre Oppermann int mss = 0; 37393ac12506SJonathan T. Looney uint32_t thcmtu = 0; 37403ac12506SJonathan T. Looney uint32_t maxmtu = 0; 374197d8d152SAndre Oppermann size_t min_protoh; 3742a0292f23SGarrett Wollman 374397d8d152SAndre Oppermann KASSERT(inc != NULL, ("tcp_mssopt with NULL in_conninfo pointer")); 3744a0292f23SGarrett Wollman 374531b3783cSHajimu UMEMOTO #ifdef INET6 3746dcdb4371SBjoern A. Zeeb if (inc->inc_flags & INC_ISIPV6) { 3747603724d3SBjoern A. Zeeb mss = V_tcp_v6mssdflt; 3748233dcce1SAndre Oppermann maxmtu = tcp_maxmtu6(inc, NULL); 374997d8d152SAndre Oppermann min_protoh = sizeof(struct ip6_hdr) + sizeof(struct tcphdr); 3750b287c6c7SBjoern A. Zeeb } 375131b3783cSHajimu UMEMOTO #endif 3752b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6) 3753b287c6c7SBjoern A. Zeeb else 3754b287c6c7SBjoern A. Zeeb #endif 3755b287c6c7SBjoern A. Zeeb #ifdef INET 375697d8d152SAndre Oppermann { 3757603724d3SBjoern A. Zeeb mss = V_tcp_mssdflt; 3758233dcce1SAndre Oppermann maxmtu = tcp_maxmtu(inc, NULL); 375997d8d152SAndre Oppermann min_protoh = sizeof(struct tcpiphdr); 376097d8d152SAndre Oppermann } 3761b287c6c7SBjoern A. Zeeb #endif 37623a9391deSBjoern A. Zeeb #if defined(INET6) || defined(INET) 37633a9391deSBjoern A. Zeeb thcmtu = tcp_hc_getmtu(inc); /* IPv4 and IPv6 */ 37643a9391deSBjoern A. Zeeb #endif 37653a9391deSBjoern A. Zeeb 376697d8d152SAndre Oppermann if (maxmtu && thcmtu) 376797d8d152SAndre Oppermann mss = min(maxmtu, thcmtu) - min_protoh; 376897d8d152SAndre Oppermann else if (maxmtu || thcmtu) 376997d8d152SAndre Oppermann mss = max(maxmtu, thcmtu) - min_protoh; 377097d8d152SAndre Oppermann 377197d8d152SAndre Oppermann return (mss); 3772df8bae1dSRodney W. Grimes } 377346f58482SJonathan Lemon 377446f58482SJonathan Lemon 377546f58482SJonathan Lemon /* 3776c068736aSJeffrey Hsu * On a partial ack arrives, force the retransmission of the 3777c068736aSJeffrey Hsu * next unacknowledged segment. Do not clear tp->t_dupacks. 3778c068736aSJeffrey Hsu * By setting snd_nxt to ti_ack, this forces retransmission timer to 3779c068736aSJeffrey Hsu * be started again. 378046f58482SJonathan Lemon */ 378155bceb1eSRandall Stewart void 3782ad3f9ab3SAndre Oppermann tcp_newreno_partial_ack(struct tcpcb *tp, struct tcphdr *th) 378346f58482SJonathan Lemon { 378446f58482SJonathan Lemon tcp_seq onxt = tp->snd_nxt; 37853ac12506SJonathan T. Looney uint32_t ocwnd = tp->snd_cwnd; 37860c39d38dSGleb Smirnoff u_int maxseg = tcp_maxseg(tp); 378746f58482SJonathan Lemon 37888501a69cSRobert Watson INP_WLOCK_ASSERT(tp->t_inpcb); 37897a3244ccSRobert Watson 3790b8152ba7SAndre Oppermann tcp_timer_activate(tp, TT_REXMT, 0); 379146f58482SJonathan Lemon tp->t_rtttime = 0; 379246f58482SJonathan Lemon tp->snd_nxt = th->th_ack; 37936b2a5f92SJayanth Vijayaraghavan /* 3794c068736aSJeffrey Hsu * Set snd_cwnd to one segment beyond acknowledged offset. 3795c068736aSJeffrey Hsu * (tp->snd_una has not yet been updated when this function is called.) 37966b2a5f92SJayanth Vijayaraghavan */ 37970c39d38dSGleb Smirnoff tp->snd_cwnd = maxseg + BYTES_THIS_ACK(tp, th); 3798a84db8f4SMatthew Dillon tp->t_flags |= TF_ACKNOW; 379955bceb1eSRandall Stewart (void) tp->t_fb->tfb_tcp_output(tp); 380046f58482SJonathan Lemon tp->snd_cwnd = ocwnd; 380146f58482SJonathan Lemon if (SEQ_GT(onxt, tp->snd_nxt)) 380246f58482SJonathan Lemon tp->snd_nxt = onxt; 380346f58482SJonathan Lemon /* 380446f58482SJonathan Lemon * Partial window deflation. Relies on fact that tp->snd_una 380546f58482SJonathan Lemon * not updated yet. 380646f58482SJonathan Lemon */ 3807dbc42409SLawrence Stewart if (tp->snd_cwnd > BYTES_THIS_ACK(tp, th)) 3808dbc42409SLawrence Stewart tp->snd_cwnd -= BYTES_THIS_ACK(tp, th); 3809d7587117SPaul Saab else 3810d7587117SPaul Saab tp->snd_cwnd = 0; 38110c39d38dSGleb Smirnoff tp->snd_cwnd += maxseg; 381246f58482SJonathan Lemon } 381312eeb81fSHiren Panchasara 381412eeb81fSHiren Panchasara int 381512eeb81fSHiren Panchasara tcp_compute_pipe(struct tcpcb *tp) 381612eeb81fSHiren Panchasara { 381712eeb81fSHiren Panchasara return (tp->snd_max - tp->snd_una + 381812eeb81fSHiren Panchasara tp->sackhint.sack_bytes_rexmit - 381912eeb81fSHiren Panchasara tp->sackhint.sacked_bytes); 382012eeb81fSHiren Panchasara } 3821